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

48949 строки
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. }
  1904. //species
  1905. function getSpeciesInfo(speciesList) {
  1906. let result = new Set();
  1907. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1908. result.add(entry)
  1909. });
  1910. return Array.from(result);
  1911. };
  1912. function getSpeciesInfoHelper(species) {
  1913. if (!speciesData[species]) {
  1914. console.warn(species + " doesn't exist");
  1915. return [];
  1916. }
  1917. if (speciesData[species].parents) {
  1918. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1919. } else {
  1920. return [species];
  1921. }
  1922. }
  1923. characterMakers.push(() => makeCharacter(
  1924. {
  1925. name: "Fen",
  1926. species: ["crux"],
  1927. description: {
  1928. title: "Bio",
  1929. text: "Very furry. Sheds on everything."
  1930. },
  1931. tags: [
  1932. "anthro",
  1933. "goo"
  1934. ]
  1935. },
  1936. {
  1937. front: {
  1938. height: math.unit(12, "feet"),
  1939. weight: math.unit(2400, "lb"),
  1940. name: "Front",
  1941. image: {
  1942. source: "./media/characters/fen/front.svg",
  1943. extra: 1804/1562,
  1944. bottom: 205/2009
  1945. }
  1946. },
  1947. diving: {
  1948. height: math.unit(4.9, "meters"),
  1949. weight: math.unit(2400, "lb"),
  1950. name: "Diving",
  1951. image: {
  1952. source: "./media/characters/fen/diving.svg"
  1953. }
  1954. },
  1955. goo: {
  1956. height: math.unit(12, "feet"),
  1957. weight: math.unit(3600, "lb"),
  1958. volume: math.unit(1000, "liters"),
  1959. capacity: math.unit(6, "people"),
  1960. name: "Goo",
  1961. image: {
  1962. source: "./media/characters/fen/goo.svg",
  1963. extra: 1307/1071,
  1964. bottom: 134/1441
  1965. }
  1966. },
  1967. maw: {
  1968. height: math.unit(5.03, "feet"),
  1969. name: "Maw",
  1970. image: {
  1971. source: "./media/characters/fen/maw.svg"
  1972. }
  1973. },
  1974. gooCeiling: {
  1975. height: math.unit(6.6, "feet"),
  1976. weight: math.unit(3000, "lb"),
  1977. volume: math.unit(1000, "liters"),
  1978. capacity: math.unit(6, "people"),
  1979. name: "Goo (Ceiling)",
  1980. image: {
  1981. source: "./media/characters/fen/goo-ceiling.svg"
  1982. }
  1983. },
  1984. back: {
  1985. height: math.unit(12, "feet"),
  1986. weight: math.unit(2400, "lb"),
  1987. name: "Back",
  1988. image: {
  1989. source: "./media/characters/fen/back.svg",
  1990. },
  1991. info: {
  1992. description: {
  1993. mode: "append",
  1994. text: "\n\nHe is not currently looking at you."
  1995. }
  1996. }
  1997. },
  1998. full: {
  1999. height: math.unit(1.6, "meter"),
  2000. weight: math.unit(3200, "lb"),
  2001. name: "Full",
  2002. image: {
  2003. source: "./media/characters/fen/full.svg",
  2004. extra: 1133/859,
  2005. bottom: 145/1278
  2006. },
  2007. info: {
  2008. description: {
  2009. mode: "append",
  2010. text: "\n\nMunch."
  2011. }
  2012. }
  2013. },
  2014. gooLounging: {
  2015. height: math.unit(4.53, "feet"),
  2016. weight: math.unit(3000, "lb"),
  2017. capacity: math.unit(6, "people"),
  2018. name: "Goo (Lounging)",
  2019. image: {
  2020. source: "./media/characters/fen/goo-lounging.svg",
  2021. bottom: 116 / 613
  2022. }
  2023. },
  2024. lounging: {
  2025. height: math.unit(10.52, "feet"),
  2026. weight: math.unit(2400, "lb"),
  2027. name: "Lounging",
  2028. image: {
  2029. source: "./media/characters/fen/lounging.svg"
  2030. }
  2031. },
  2032. },
  2033. [
  2034. {
  2035. name: "Small",
  2036. height: math.unit(2.2428, "meter")
  2037. },
  2038. {
  2039. name: "Normal",
  2040. height: math.unit(12, "feet"),
  2041. default: true,
  2042. },
  2043. {
  2044. name: "Big",
  2045. height: math.unit(20, "feet")
  2046. },
  2047. {
  2048. name: "Minimacro",
  2049. height: math.unit(40, "feet"),
  2050. info: {
  2051. description: {
  2052. mode: "append",
  2053. text: "\n\nTOO DAMN BIG"
  2054. }
  2055. }
  2056. },
  2057. {
  2058. name: "Macro",
  2059. height: math.unit(100, "feet"),
  2060. info: {
  2061. description: {
  2062. mode: "append",
  2063. text: "\n\nTOO DAMN BIG"
  2064. }
  2065. }
  2066. },
  2067. {
  2068. name: "Megamacro",
  2069. height: math.unit(2, "miles")
  2070. },
  2071. {
  2072. name: "Gigamacro",
  2073. height: math.unit(10, "earths")
  2074. },
  2075. ]
  2076. ))
  2077. characterMakers.push(() => makeCharacter(
  2078. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2079. {
  2080. front: {
  2081. height: math.unit(183, "cm"),
  2082. weight: math.unit(80, "kg"),
  2083. name: "Front",
  2084. image: {
  2085. source: "./media/characters/sofia-fluttertail/front.svg",
  2086. bottom: 0.01,
  2087. extra: 2154 / 2081
  2088. }
  2089. },
  2090. frontAlt: {
  2091. height: math.unit(183, "cm"),
  2092. weight: math.unit(80, "kg"),
  2093. name: "Front (alt)",
  2094. image: {
  2095. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2096. }
  2097. },
  2098. back: {
  2099. height: math.unit(183, "cm"),
  2100. weight: math.unit(80, "kg"),
  2101. name: "Back",
  2102. image: {
  2103. source: "./media/characters/sofia-fluttertail/back.svg"
  2104. }
  2105. },
  2106. kneeling: {
  2107. height: math.unit(125, "cm"),
  2108. weight: math.unit(80, "kg"),
  2109. name: "Kneeling",
  2110. image: {
  2111. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2112. extra: 1033 / 977,
  2113. bottom: 23.7 / 1057
  2114. }
  2115. },
  2116. maw: {
  2117. height: math.unit(183 / 5, "cm"),
  2118. name: "Maw",
  2119. image: {
  2120. source: "./media/characters/sofia-fluttertail/maw.svg"
  2121. }
  2122. },
  2123. mawcloseup: {
  2124. height: math.unit(183 / 5 * 0.41, "cm"),
  2125. name: "Maw (Closeup)",
  2126. image: {
  2127. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2128. }
  2129. },
  2130. paws: {
  2131. height: math.unit(1.17, "feet"),
  2132. name: "Paws",
  2133. image: {
  2134. source: "./media/characters/sofia-fluttertail/paws.svg",
  2135. extra: 851 / 851,
  2136. bottom: 17 / 868
  2137. }
  2138. },
  2139. },
  2140. [
  2141. {
  2142. name: "Normal",
  2143. height: math.unit(1.83, "meter")
  2144. },
  2145. {
  2146. name: "Size Thief",
  2147. height: math.unit(18, "feet")
  2148. },
  2149. {
  2150. name: "50 Foot Collie",
  2151. height: math.unit(50, "feet")
  2152. },
  2153. {
  2154. name: "Macro",
  2155. height: math.unit(96, "feet"),
  2156. default: true
  2157. },
  2158. {
  2159. name: "Megamerger",
  2160. height: math.unit(650, "feet")
  2161. },
  2162. ]
  2163. ))
  2164. characterMakers.push(() => makeCharacter(
  2165. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2166. {
  2167. front: {
  2168. height: math.unit(7, "feet"),
  2169. weight: math.unit(100, "kg"),
  2170. name: "Front",
  2171. image: {
  2172. source: "./media/characters/march/front.svg",
  2173. extra: 1992/1851,
  2174. bottom: 39/2031
  2175. }
  2176. },
  2177. foot: {
  2178. height: math.unit(0.9, "feet"),
  2179. name: "Foot",
  2180. image: {
  2181. source: "./media/characters/march/foot.svg"
  2182. }
  2183. },
  2184. },
  2185. [
  2186. {
  2187. name: "Normal",
  2188. height: math.unit(7.9, "feet")
  2189. },
  2190. {
  2191. name: "Macro",
  2192. height: math.unit(220, "meters")
  2193. },
  2194. {
  2195. name: "Megamacro",
  2196. height: math.unit(2.98, "km"),
  2197. default: true
  2198. },
  2199. {
  2200. name: "Gigamacro",
  2201. height: math.unit(15963, "km")
  2202. },
  2203. {
  2204. name: "Teramacro",
  2205. height: math.unit(2980000000, "km")
  2206. },
  2207. {
  2208. name: "Examacro",
  2209. height: math.unit(250, "parsecs")
  2210. },
  2211. ]
  2212. ))
  2213. characterMakers.push(() => makeCharacter(
  2214. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2215. {
  2216. front: {
  2217. height: math.unit(6, "feet"),
  2218. weight: math.unit(60, "kg"),
  2219. name: "Front",
  2220. image: {
  2221. source: "./media/characters/noir/front.svg",
  2222. extra: 1,
  2223. bottom: 0.032
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(6.6, "feet")
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(500, "feet")
  2235. },
  2236. {
  2237. name: "Megamacro",
  2238. height: math.unit(2.5, "km"),
  2239. default: true
  2240. },
  2241. {
  2242. name: "Gigamacro",
  2243. height: math.unit(22500, "km")
  2244. },
  2245. {
  2246. name: "Teramacro",
  2247. height: math.unit(2500000000, "km")
  2248. },
  2249. {
  2250. name: "Examacro",
  2251. height: math.unit(200, "parsecs")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(7, "feet"),
  2260. weight: math.unit(100, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/okuri/front.svg",
  2264. extra: 739/665,
  2265. bottom: 39/778
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(7, "feet"),
  2270. weight: math.unit(100, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/okuri/back.svg",
  2274. extra: 734/653,
  2275. bottom: 13/747
  2276. }
  2277. },
  2278. sitting: {
  2279. height: math.unit(2.95, "feet"),
  2280. weight: math.unit(100, "kg"),
  2281. name: "Sitting",
  2282. image: {
  2283. source: "./media/characters/okuri/sitting.svg",
  2284. extra: 370/318,
  2285. bottom: 99/469
  2286. }
  2287. },
  2288. },
  2289. [
  2290. {
  2291. name: "Smallest",
  2292. height: math.unit(5 + 2/12, "feet")
  2293. },
  2294. {
  2295. name: "Smaller",
  2296. height: math.unit(300, "feet")
  2297. },
  2298. {
  2299. name: "Small",
  2300. height: math.unit(1000, "feet")
  2301. },
  2302. {
  2303. name: "Macro",
  2304. height: math.unit(1, "mile")
  2305. },
  2306. {
  2307. name: "Mega Macro (Small)",
  2308. height: math.unit(20, "km")
  2309. },
  2310. {
  2311. name: "Mega Macro (Large)",
  2312. height: math.unit(600, "km")
  2313. },
  2314. {
  2315. name: "Giga Macro",
  2316. height: math.unit(10000, "km")
  2317. },
  2318. {
  2319. name: "Normal",
  2320. height: math.unit(577560, "km"),
  2321. default: true
  2322. },
  2323. {
  2324. name: "Large",
  2325. height: math.unit(4, "galaxies")
  2326. },
  2327. {
  2328. name: "Largest",
  2329. height: math.unit(15, "multiverses")
  2330. },
  2331. ]
  2332. ))
  2333. characterMakers.push(() => makeCharacter(
  2334. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2335. {
  2336. front: {
  2337. height: math.unit(7, "feet"),
  2338. weight: math.unit(100, "kg"),
  2339. name: "Front",
  2340. image: {
  2341. source: "./media/characters/manny/front.svg",
  2342. extra: 1,
  2343. bottom: 0.06
  2344. }
  2345. },
  2346. back: {
  2347. height: math.unit(7, "feet"),
  2348. weight: math.unit(100, "kg"),
  2349. name: "Back",
  2350. image: {
  2351. source: "./media/characters/manny/back.svg",
  2352. extra: 1,
  2353. bottom: 0.014
  2354. }
  2355. },
  2356. },
  2357. [
  2358. {
  2359. name: "Normal",
  2360. height: math.unit(7, "feet"),
  2361. },
  2362. {
  2363. name: "Macro",
  2364. height: math.unit(78, "feet"),
  2365. default: true
  2366. },
  2367. {
  2368. name: "Macro+",
  2369. height: math.unit(300, "meters")
  2370. },
  2371. {
  2372. name: "Macro++",
  2373. height: math.unit(2400, "meters")
  2374. },
  2375. {
  2376. name: "Megamacro",
  2377. height: math.unit(5167, "meters")
  2378. },
  2379. {
  2380. name: "Gigamacro",
  2381. height: math.unit(41769, "miles")
  2382. },
  2383. ]
  2384. ))
  2385. characterMakers.push(() => makeCharacter(
  2386. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2387. {
  2388. front: {
  2389. height: math.unit(7, "feet"),
  2390. weight: math.unit(100, "kg"),
  2391. name: "Front",
  2392. image: {
  2393. source: "./media/characters/adake/front-1.svg"
  2394. }
  2395. },
  2396. frontAlt: {
  2397. height: math.unit(7, "feet"),
  2398. weight: math.unit(100, "kg"),
  2399. name: "Front (Alt)",
  2400. image: {
  2401. source: "./media/characters/adake/front-2.svg",
  2402. extra: 1,
  2403. bottom: 0.01
  2404. }
  2405. },
  2406. back: {
  2407. height: math.unit(7, "feet"),
  2408. weight: math.unit(100, "kg"),
  2409. name: "Back",
  2410. image: {
  2411. source: "./media/characters/adake/back.svg",
  2412. }
  2413. },
  2414. kneel: {
  2415. height: math.unit(5.385, "feet"),
  2416. weight: math.unit(100, "kg"),
  2417. name: "Kneeling",
  2418. image: {
  2419. source: "./media/characters/adake/kneel.svg",
  2420. bottom: 0.052
  2421. }
  2422. },
  2423. },
  2424. [
  2425. {
  2426. name: "Normal",
  2427. height: math.unit(7, "feet"),
  2428. },
  2429. {
  2430. name: "Macro",
  2431. height: math.unit(78, "feet"),
  2432. default: true
  2433. },
  2434. {
  2435. name: "Macro+",
  2436. height: math.unit(300, "meters")
  2437. },
  2438. {
  2439. name: "Macro++",
  2440. height: math.unit(2400, "meters")
  2441. },
  2442. {
  2443. name: "Megamacro",
  2444. height: math.unit(5167, "meters")
  2445. },
  2446. {
  2447. name: "Gigamacro",
  2448. height: math.unit(41769, "miles")
  2449. },
  2450. ]
  2451. ))
  2452. characterMakers.push(() => makeCharacter(
  2453. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2454. {
  2455. front: {
  2456. height: math.unit(1.65, "meters"),
  2457. weight: math.unit(50, "kg"),
  2458. name: "Front",
  2459. image: {
  2460. source: "./media/characters/elijah/front.svg",
  2461. extra: 858 / 830,
  2462. bottom: 95.5 / 953.8559
  2463. }
  2464. },
  2465. back: {
  2466. height: math.unit(1.65, "meters"),
  2467. weight: math.unit(50, "kg"),
  2468. name: "Back",
  2469. image: {
  2470. source: "./media/characters/elijah/back.svg",
  2471. extra: 895 / 850,
  2472. bottom: 5.3 / 897.956
  2473. }
  2474. },
  2475. frontNsfw: {
  2476. height: math.unit(1.65, "meters"),
  2477. weight: math.unit(50, "kg"),
  2478. name: "Front (NSFW)",
  2479. image: {
  2480. source: "./media/characters/elijah/front-nsfw.svg",
  2481. extra: 858 / 830,
  2482. bottom: 95.5 / 953.8559
  2483. }
  2484. },
  2485. backNsfw: {
  2486. height: math.unit(1.65, "meters"),
  2487. weight: math.unit(50, "kg"),
  2488. name: "Back (NSFW)",
  2489. image: {
  2490. source: "./media/characters/elijah/back-nsfw.svg",
  2491. extra: 895 / 850,
  2492. bottom: 5.3 / 897.956
  2493. }
  2494. },
  2495. dick: {
  2496. height: math.unit(1, "feet"),
  2497. name: "Dick",
  2498. image: {
  2499. source: "./media/characters/elijah/dick.svg"
  2500. }
  2501. },
  2502. beakOpen: {
  2503. height: math.unit(1.25, "feet"),
  2504. name: "Beak (Open)",
  2505. image: {
  2506. source: "./media/characters/elijah/beak-open.svg"
  2507. }
  2508. },
  2509. beakShut: {
  2510. height: math.unit(1.25, "feet"),
  2511. name: "Beak (Shut)",
  2512. image: {
  2513. source: "./media/characters/elijah/beak-shut.svg"
  2514. }
  2515. },
  2516. footFlexing: {
  2517. height: math.unit(1.61, "feet"),
  2518. name: "Foot (Flexing)",
  2519. image: {
  2520. source: "./media/characters/elijah/foot-flexing.svg"
  2521. }
  2522. },
  2523. footStepping: {
  2524. height: math.unit(1.44, "feet"),
  2525. name: "Foot (Stepping)",
  2526. image: {
  2527. source: "./media/characters/elijah/foot-stepping.svg"
  2528. }
  2529. },
  2530. plantigradeLeg: {
  2531. height: math.unit(2.34, "feet"),
  2532. name: "Plantigrade Leg",
  2533. image: {
  2534. source: "./media/characters/elijah/plantigrade-leg.svg"
  2535. }
  2536. },
  2537. plantigradeFootLeft: {
  2538. height: math.unit(0.9, "feet"),
  2539. name: "Plantigrade Foot (Left)",
  2540. image: {
  2541. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2542. }
  2543. },
  2544. plantigradeFootRight: {
  2545. height: math.unit(0.9, "feet"),
  2546. name: "Plantigrade Foot (Right)",
  2547. image: {
  2548. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2549. }
  2550. },
  2551. },
  2552. [
  2553. {
  2554. name: "Normal",
  2555. height: math.unit(1.65, "meters")
  2556. },
  2557. {
  2558. name: "Macro",
  2559. height: math.unit(55, "meters"),
  2560. default: true
  2561. },
  2562. {
  2563. name: "Macro+",
  2564. height: math.unit(105, "meters")
  2565. },
  2566. ]
  2567. ))
  2568. characterMakers.push(() => makeCharacter(
  2569. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2570. {
  2571. front: {
  2572. height: math.unit(7 + 2/12, "feet"),
  2573. weight: math.unit(320, "kg"),
  2574. name: "Front",
  2575. image: {
  2576. source: "./media/characters/rai/front.svg",
  2577. extra: 1802/1696,
  2578. bottom: 68/1870
  2579. }
  2580. },
  2581. frontDressed: {
  2582. height: math.unit(7 + 2/12, "feet"),
  2583. weight: math.unit(320, "kg"),
  2584. name: "Front (Dressed)",
  2585. image: {
  2586. source: "./media/characters/rai/front-dressed.svg",
  2587. extra: 1802/1696,
  2588. bottom: 68/1870
  2589. }
  2590. },
  2591. side: {
  2592. height: math.unit(7 + 2/12, "feet"),
  2593. weight: math.unit(320, "kg"),
  2594. name: "Side",
  2595. image: {
  2596. source: "./media/characters/rai/side.svg",
  2597. extra: 1789/1710,
  2598. bottom: 115/1904
  2599. }
  2600. },
  2601. back: {
  2602. height: math.unit(7 + 2/12, "feet"),
  2603. weight: math.unit(320, "kg"),
  2604. name: "Back",
  2605. image: {
  2606. source: "./media/characters/rai/back.svg",
  2607. extra: 1770/1707,
  2608. bottom: 28/1798
  2609. }
  2610. },
  2611. feral: {
  2612. height: math.unit(9.5, "feet"),
  2613. weight: math.unit(640, "kg"),
  2614. name: "Feral",
  2615. image: {
  2616. source: "./media/characters/rai/feral.svg",
  2617. extra: 945/553,
  2618. bottom: 176/1121
  2619. }
  2620. },
  2621. dragon: {
  2622. height: math.unit(23, "feet"),
  2623. weight: math.unit(50000, "lb"),
  2624. name: "Dragon",
  2625. image: {
  2626. source: "./media/characters/rai/dragon.svg",
  2627. extra: 2498 / 2030,
  2628. bottom: 85.2 / 2584
  2629. }
  2630. },
  2631. maw: {
  2632. height: math.unit(1.69, "feet"),
  2633. name: "Maw",
  2634. image: {
  2635. source: "./media/characters/rai/maw.svg"
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Normal",
  2642. height: math.unit(7 + 2/12, "feet")
  2643. },
  2644. {
  2645. name: "Big",
  2646. height: math.unit(11, "feet")
  2647. },
  2648. {
  2649. name: "Macro",
  2650. height: math.unit(302, "feet"),
  2651. default: true
  2652. },
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2657. {
  2658. frontDressed: {
  2659. height: math.unit(216, "feet"),
  2660. weight: math.unit(7000000, "lb"),
  2661. name: "Front (Dressed)",
  2662. image: {
  2663. source: "./media/characters/jazzy/front-dressed.svg",
  2664. extra: 2738 / 2651,
  2665. bottom: 41.8 / 2786
  2666. }
  2667. },
  2668. backDressed: {
  2669. height: math.unit(216, "feet"),
  2670. weight: math.unit(7000000, "lb"),
  2671. name: "Back (Dressed)",
  2672. image: {
  2673. source: "./media/characters/jazzy/back-dressed.svg",
  2674. extra: 2775 / 2673,
  2675. bottom: 36.8 / 2817
  2676. }
  2677. },
  2678. front: {
  2679. height: math.unit(216, "feet"),
  2680. weight: math.unit(7000000, "lb"),
  2681. name: "Front",
  2682. image: {
  2683. source: "./media/characters/jazzy/front.svg",
  2684. extra: 2738 / 2651,
  2685. bottom: 41.8 / 2786
  2686. }
  2687. },
  2688. back: {
  2689. height: math.unit(216, "feet"),
  2690. weight: math.unit(7000000, "lb"),
  2691. name: "Back",
  2692. image: {
  2693. source: "./media/characters/jazzy/back.svg",
  2694. extra: 2775 / 2673,
  2695. bottom: 36.8 / 2817
  2696. }
  2697. },
  2698. maw: {
  2699. height: math.unit(20, "feet"),
  2700. name: "Maw",
  2701. image: {
  2702. source: "./media/characters/jazzy/maw.svg"
  2703. }
  2704. },
  2705. paws: {
  2706. height: math.unit(27.5, "feet"),
  2707. name: "Paws",
  2708. image: {
  2709. source: "./media/characters/jazzy/paws.svg"
  2710. }
  2711. },
  2712. eye: {
  2713. height: math.unit(4.4, "feet"),
  2714. name: "Eye",
  2715. image: {
  2716. source: "./media/characters/jazzy/eye.svg"
  2717. }
  2718. },
  2719. droneOffense: {
  2720. height: math.unit(9.5, "inches"),
  2721. name: "Drone (Offense)",
  2722. image: {
  2723. source: "./media/characters/jazzy/drone-offense.svg"
  2724. }
  2725. },
  2726. droneRecon: {
  2727. height: math.unit(9.5, "inches"),
  2728. name: "Drone (Recon)",
  2729. image: {
  2730. source: "./media/characters/jazzy/drone-recon.svg"
  2731. }
  2732. },
  2733. droneDefense: {
  2734. height: math.unit(9.5, "inches"),
  2735. name: "Drone (Defense)",
  2736. image: {
  2737. source: "./media/characters/jazzy/drone-defense.svg"
  2738. }
  2739. },
  2740. },
  2741. [
  2742. {
  2743. name: "Macro",
  2744. height: math.unit(216, "feet"),
  2745. default: true
  2746. },
  2747. ]
  2748. ))
  2749. characterMakers.push(() => makeCharacter(
  2750. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2751. {
  2752. front: {
  2753. height: math.unit(9 + 6/12, "feet"),
  2754. weight: math.unit(700, "lb"),
  2755. name: "Front",
  2756. image: {
  2757. source: "./media/characters/flamm/front.svg",
  2758. extra: 1751/1632,
  2759. bottom: 46/1797
  2760. }
  2761. },
  2762. buff: {
  2763. height: math.unit(9 + 6/12, "feet"),
  2764. weight: math.unit(950, "lb"),
  2765. name: "Buff",
  2766. image: {
  2767. source: "./media/characters/flamm/buff.svg",
  2768. extra: 3018/2874,
  2769. bottom: 221/3239
  2770. }
  2771. },
  2772. },
  2773. [
  2774. {
  2775. name: "Normal",
  2776. height: math.unit(9.5, "feet")
  2777. },
  2778. {
  2779. name: "Macro",
  2780. height: math.unit(200, "feet"),
  2781. default: true
  2782. },
  2783. ]
  2784. ))
  2785. characterMakers.push(() => makeCharacter(
  2786. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2787. {
  2788. front: {
  2789. height: math.unit(5 + 3/12, "feet"),
  2790. weight: math.unit(60, "kg"),
  2791. name: "Front",
  2792. image: {
  2793. source: "./media/characters/zephiro/front.svg",
  2794. extra: 2309 / 2162,
  2795. bottom: 0.069
  2796. }
  2797. },
  2798. side: {
  2799. height: math.unit(5 + 3/12, "feet"),
  2800. weight: math.unit(60, "kg"),
  2801. name: "Side",
  2802. image: {
  2803. source: "./media/characters/zephiro/side.svg",
  2804. extra: 2403 / 2279,
  2805. bottom: 0.015
  2806. }
  2807. },
  2808. back: {
  2809. height: math.unit(5 + 3/12, "feet"),
  2810. weight: math.unit(60, "kg"),
  2811. name: "Back",
  2812. image: {
  2813. source: "./media/characters/zephiro/back.svg",
  2814. extra: 2373 / 2244,
  2815. bottom: 0.013
  2816. }
  2817. },
  2818. hand: {
  2819. height: math.unit(0.68, "feet"),
  2820. name: "Hand",
  2821. image: {
  2822. source: "./media/characters/zephiro/hand.svg"
  2823. }
  2824. },
  2825. paw: {
  2826. height: math.unit(1, "feet"),
  2827. name: "Paw",
  2828. image: {
  2829. source: "./media/characters/zephiro/paw.svg"
  2830. }
  2831. },
  2832. beans: {
  2833. height: math.unit(0.93, "feet"),
  2834. name: "Beans",
  2835. image: {
  2836. source: "./media/characters/zephiro/beans.svg"
  2837. }
  2838. },
  2839. },
  2840. [
  2841. {
  2842. name: "Micro",
  2843. height: math.unit(3, "inches")
  2844. },
  2845. {
  2846. name: "Normal",
  2847. height: math.unit(5 + 3 / 12, "feet"),
  2848. default: true
  2849. },
  2850. {
  2851. name: "Macro",
  2852. height: math.unit(118, "feet")
  2853. },
  2854. ]
  2855. ))
  2856. characterMakers.push(() => makeCharacter(
  2857. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2858. {
  2859. front: {
  2860. height: math.unit(5, "feet"),
  2861. weight: math.unit(90, "kg"),
  2862. name: "Front",
  2863. image: {
  2864. source: "./media/characters/fory/front.svg",
  2865. extra: 2862 / 2674,
  2866. bottom: 180 / 3043.8
  2867. }
  2868. },
  2869. back: {
  2870. height: math.unit(5, "feet"),
  2871. weight: math.unit(90, "kg"),
  2872. name: "Back",
  2873. image: {
  2874. source: "./media/characters/fory/back.svg",
  2875. extra: 2962 / 2791,
  2876. bottom: 106 / 3071.8
  2877. }
  2878. },
  2879. foot: {
  2880. height: math.unit(2.14, "feet"),
  2881. name: "Foot",
  2882. image: {
  2883. source: "./media/characters/fory/foot.svg"
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Normal",
  2890. height: math.unit(5, "feet")
  2891. },
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(50, "feet"),
  2895. default: true
  2896. },
  2897. {
  2898. name: "Megamacro",
  2899. height: math.unit(10, "miles")
  2900. },
  2901. {
  2902. name: "Gigamacro",
  2903. height: math.unit(5, "earths")
  2904. },
  2905. ]
  2906. ))
  2907. characterMakers.push(() => makeCharacter(
  2908. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2909. {
  2910. front: {
  2911. height: math.unit(7, "feet"),
  2912. weight: math.unit(90, "kg"),
  2913. name: "Front",
  2914. image: {
  2915. source: "./media/characters/kurrikage/front.svg",
  2916. extra: 1845/1733,
  2917. bottom: 119/1964
  2918. }
  2919. },
  2920. back: {
  2921. height: math.unit(7, "feet"),
  2922. weight: math.unit(90, "kg"),
  2923. name: "Back",
  2924. image: {
  2925. source: "./media/characters/kurrikage/back.svg",
  2926. extra: 1790/1677,
  2927. bottom: 61/1851
  2928. }
  2929. },
  2930. dressed: {
  2931. height: math.unit(7, "feet"),
  2932. weight: math.unit(90, "kg"),
  2933. name: "Dressed",
  2934. image: {
  2935. source: "./media/characters/kurrikage/dressed.svg",
  2936. extra: 1845/1733,
  2937. bottom: 119/1964
  2938. }
  2939. },
  2940. foot: {
  2941. height: math.unit(1.5, "feet"),
  2942. name: "Foot",
  2943. image: {
  2944. source: "./media/characters/kurrikage/foot.svg"
  2945. }
  2946. },
  2947. staff: {
  2948. height: math.unit(6.7, "feet"),
  2949. name: "Staff",
  2950. image: {
  2951. source: "./media/characters/kurrikage/staff.svg"
  2952. }
  2953. },
  2954. peek: {
  2955. height: math.unit(1.05, "feet"),
  2956. name: "Peeking",
  2957. image: {
  2958. source: "./media/characters/kurrikage/peek.svg",
  2959. bottom: 0.08
  2960. }
  2961. },
  2962. },
  2963. [
  2964. {
  2965. name: "Normal",
  2966. height: math.unit(12, "feet"),
  2967. default: true
  2968. },
  2969. {
  2970. name: "Big",
  2971. height: math.unit(20, "feet")
  2972. },
  2973. {
  2974. name: "Macro",
  2975. height: math.unit(500, "feet")
  2976. },
  2977. {
  2978. name: "Megamacro",
  2979. height: math.unit(20, "miles")
  2980. },
  2981. ]
  2982. ))
  2983. characterMakers.push(() => makeCharacter(
  2984. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2985. {
  2986. front: {
  2987. height: math.unit(6, "feet"),
  2988. weight: math.unit(75, "kg"),
  2989. name: "Front",
  2990. image: {
  2991. source: "./media/characters/shingo/front.svg",
  2992. extra: 1900/1825,
  2993. bottom: 82/1982
  2994. }
  2995. },
  2996. side: {
  2997. height: math.unit(6, "feet"),
  2998. weight: math.unit(75, "kg"),
  2999. name: "Side",
  3000. image: {
  3001. source: "./media/characters/shingo/side.svg",
  3002. extra: 1930/1865,
  3003. bottom: 16/1946
  3004. }
  3005. },
  3006. back: {
  3007. height: math.unit(6, "feet"),
  3008. weight: math.unit(75, "kg"),
  3009. name: "Back",
  3010. image: {
  3011. source: "./media/characters/shingo/back.svg",
  3012. extra: 1922/1852,
  3013. bottom: 16/1938
  3014. }
  3015. },
  3016. frontDressed: {
  3017. height: math.unit(6, "feet"),
  3018. weight: math.unit(150, "lb"),
  3019. name: "Front-dressed",
  3020. image: {
  3021. source: "./media/characters/shingo/front-dressed.svg",
  3022. extra: 1900/1825,
  3023. bottom: 82/1982
  3024. }
  3025. },
  3026. paw: {
  3027. height: math.unit(1.29, "feet"),
  3028. name: "Paw",
  3029. image: {
  3030. source: "./media/characters/shingo/paw.svg"
  3031. }
  3032. },
  3033. hand: {
  3034. height: math.unit(1.07, "feet"),
  3035. name: "Hand",
  3036. image: {
  3037. source: "./media/characters/shingo/hand.svg"
  3038. }
  3039. },
  3040. frontAlt: {
  3041. height: math.unit(6, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Front (Alt)",
  3044. image: {
  3045. source: "./media/characters/shingo/front-alt.svg",
  3046. extra: 3511 / 3338,
  3047. bottom: 0.005
  3048. }
  3049. },
  3050. frontAlt2: {
  3051. height: math.unit(6, "feet"),
  3052. weight: math.unit(75, "kg"),
  3053. name: "Front (Alt 2)",
  3054. image: {
  3055. source: "./media/characters/shingo/front-alt-2.svg",
  3056. extra: 706/681,
  3057. bottom: 11/717
  3058. }
  3059. },
  3060. pawAlt: {
  3061. height: math.unit(1, "feet"),
  3062. name: "Paw (Alt)",
  3063. image: {
  3064. source: "./media/characters/shingo/paw-alt.svg"
  3065. }
  3066. },
  3067. },
  3068. [
  3069. {
  3070. name: "Micro",
  3071. height: math.unit(4, "inches")
  3072. },
  3073. {
  3074. name: "Normal",
  3075. height: math.unit(6, "feet"),
  3076. default: true
  3077. },
  3078. {
  3079. name: "Macro",
  3080. height: math.unit(108, "feet")
  3081. },
  3082. {
  3083. name: "Macro+",
  3084. height: math.unit(1500, "feet")
  3085. },
  3086. ]
  3087. ))
  3088. characterMakers.push(() => makeCharacter(
  3089. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3090. {
  3091. side: {
  3092. height: math.unit(6, "feet"),
  3093. weight: math.unit(75, "kg"),
  3094. name: "Side",
  3095. image: {
  3096. source: "./media/characters/aigey/side.svg"
  3097. }
  3098. },
  3099. },
  3100. [
  3101. {
  3102. name: "Macro",
  3103. height: math.unit(200, "feet"),
  3104. default: true
  3105. },
  3106. {
  3107. name: "Megamacro",
  3108. height: math.unit(100, "miles")
  3109. },
  3110. ]
  3111. )
  3112. )
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3115. {
  3116. front: {
  3117. height: math.unit(5 + 5 / 12, "feet"),
  3118. weight: math.unit(75, "kg"),
  3119. name: "Front",
  3120. image: {
  3121. source: "./media/characters/natasha/front.svg",
  3122. extra: 859 / 824,
  3123. bottom: 23 / 879.6
  3124. }
  3125. },
  3126. frontNsfw: {
  3127. height: math.unit(5 + 5 / 12, "feet"),
  3128. weight: math.unit(75, "kg"),
  3129. name: "Front (NSFW)",
  3130. image: {
  3131. source: "./media/characters/natasha/front-nsfw.svg",
  3132. extra: 859 / 824,
  3133. bottom: 23 / 879.6
  3134. }
  3135. },
  3136. frontErect: {
  3137. height: math.unit(5 + 5 / 12, "feet"),
  3138. weight: math.unit(75, "kg"),
  3139. name: "Front (Erect)",
  3140. image: {
  3141. source: "./media/characters/natasha/front-erect.svg",
  3142. extra: 859 / 824,
  3143. bottom: 23 / 879.6
  3144. }
  3145. },
  3146. back: {
  3147. height: math.unit(5 + 5 / 12, "feet"),
  3148. weight: math.unit(75, "kg"),
  3149. name: "Back",
  3150. image: {
  3151. source: "./media/characters/natasha/back.svg",
  3152. extra: 887.9 / 852.6,
  3153. bottom: 9.7 / 896.4
  3154. }
  3155. },
  3156. backAlt: {
  3157. height: math.unit(5 + 5 / 12, "feet"),
  3158. weight: math.unit(75, "kg"),
  3159. name: "Back (Alt)",
  3160. image: {
  3161. source: "./media/characters/natasha/back-alt.svg",
  3162. extra: 1236.7 / 1192,
  3163. bottom: 22.3 / 1258.2
  3164. }
  3165. },
  3166. dick: {
  3167. height: math.unit(1.772, "feet"),
  3168. name: "Dick",
  3169. image: {
  3170. source: "./media/characters/natasha/dick.svg"
  3171. }
  3172. },
  3173. paw: {
  3174. height: math.unit(0.250, "meters"),
  3175. name: "Paw",
  3176. image: {
  3177. source: "./media/characters/natasha/paw.svg"
  3178. }
  3179. },
  3180. },
  3181. [
  3182. {
  3183. name: "Normal",
  3184. height: math.unit(5 + 5 / 12, "feet")
  3185. },
  3186. {
  3187. name: "Large",
  3188. height: math.unit(12, "feet")
  3189. },
  3190. {
  3191. name: "Macro",
  3192. height: math.unit(100, "feet"),
  3193. default: true
  3194. },
  3195. {
  3196. name: "Macro+",
  3197. height: math.unit(260, "feet")
  3198. },
  3199. {
  3200. name: "Macro++",
  3201. height: math.unit(1, "mile")
  3202. },
  3203. ]
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3207. {
  3208. front: {
  3209. height: math.unit(6, "feet"),
  3210. weight: math.unit(75, "kg"),
  3211. name: "Front",
  3212. image: {
  3213. source: "./media/characters/malik/front.svg"
  3214. }
  3215. },
  3216. side: {
  3217. height: math.unit(6, "feet"),
  3218. weight: math.unit(75, "kg"),
  3219. name: "Side",
  3220. image: {
  3221. source: "./media/characters/malik/side.svg",
  3222. extra: 1.1539
  3223. }
  3224. },
  3225. back: {
  3226. height: math.unit(6, "feet"),
  3227. weight: math.unit(75, "kg"),
  3228. name: "Back",
  3229. image: {
  3230. source: "./media/characters/malik/back.svg"
  3231. }
  3232. },
  3233. },
  3234. [
  3235. {
  3236. name: "Macro",
  3237. height: math.unit(156, "feet"),
  3238. default: true
  3239. },
  3240. {
  3241. name: "Macro+",
  3242. height: math.unit(1188, "feet")
  3243. },
  3244. ]
  3245. ))
  3246. characterMakers.push(() => makeCharacter(
  3247. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3248. {
  3249. front: {
  3250. height: math.unit(6, "feet"),
  3251. weight: math.unit(75, "kg"),
  3252. name: "Front",
  3253. image: {
  3254. source: "./media/characters/sefer/front.svg",
  3255. extra: 848 / 659,
  3256. bottom: 28.3 / 876.442
  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/sefer/back.svg",
  3265. extra: 864 / 695,
  3266. bottom: 10 / 871
  3267. }
  3268. },
  3269. frontDressed: {
  3270. height: math.unit(6, "feet"),
  3271. weight: math.unit(75, "kg"),
  3272. name: "Front (Dressed)",
  3273. image: {
  3274. source: "./media/characters/sefer/front-dressed.svg",
  3275. extra: 839 / 653,
  3276. bottom: 37.6 / 878
  3277. }
  3278. },
  3279. },
  3280. [
  3281. {
  3282. name: "Normal",
  3283. height: math.unit(6, "feet"),
  3284. default: true
  3285. },
  3286. ]
  3287. ))
  3288. characterMakers.push(() => makeCharacter(
  3289. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3290. {
  3291. body: {
  3292. height: math.unit(2.2428, "meter"),
  3293. weight: math.unit(124.738, "kg"),
  3294. name: "Body",
  3295. image: {
  3296. extra: 1225 / 1050,
  3297. source: "./media/characters/north/front.svg"
  3298. }
  3299. }
  3300. },
  3301. [
  3302. {
  3303. name: "Micro",
  3304. height: math.unit(4, "inches")
  3305. },
  3306. {
  3307. name: "Macro",
  3308. height: math.unit(63, "meters")
  3309. },
  3310. {
  3311. name: "Megamacro",
  3312. height: math.unit(101, "miles"),
  3313. default: true
  3314. }
  3315. ]
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3319. {
  3320. angled: {
  3321. height: math.unit(4, "meter"),
  3322. weight: math.unit(150, "kg"),
  3323. name: "Angled",
  3324. image: {
  3325. source: "./media/characters/talan/angled-sfw.svg",
  3326. bottom: 29 / 3734
  3327. }
  3328. },
  3329. angledNsfw: {
  3330. height: math.unit(4, "meter"),
  3331. weight: math.unit(150, "kg"),
  3332. name: "Angled (NSFW)",
  3333. image: {
  3334. source: "./media/characters/talan/angled-nsfw.svg",
  3335. bottom: 29 / 3734
  3336. }
  3337. },
  3338. frontNsfw: {
  3339. height: math.unit(4, "meter"),
  3340. weight: math.unit(150, "kg"),
  3341. name: "Front (NSFW)",
  3342. image: {
  3343. source: "./media/characters/talan/front-nsfw.svg",
  3344. bottom: 29 / 3734
  3345. }
  3346. },
  3347. sideNsfw: {
  3348. height: math.unit(4, "meter"),
  3349. weight: math.unit(150, "kg"),
  3350. name: "Side (NSFW)",
  3351. image: {
  3352. source: "./media/characters/talan/side-nsfw.svg",
  3353. bottom: 29 / 3734
  3354. }
  3355. },
  3356. back: {
  3357. height: math.unit(4, "meter"),
  3358. weight: math.unit(150, "kg"),
  3359. name: "Back",
  3360. image: {
  3361. source: "./media/characters/talan/back.svg"
  3362. }
  3363. },
  3364. dickBottom: {
  3365. height: math.unit(0.621, "meter"),
  3366. name: "Dick (Bottom)",
  3367. image: {
  3368. source: "./media/characters/talan/dick-bottom.svg"
  3369. }
  3370. },
  3371. dickTop: {
  3372. height: math.unit(0.621, "meter"),
  3373. name: "Dick (Top)",
  3374. image: {
  3375. source: "./media/characters/talan/dick-top.svg"
  3376. }
  3377. },
  3378. dickSide: {
  3379. height: math.unit(0.305, "meter"),
  3380. name: "Dick (Side)",
  3381. image: {
  3382. source: "./media/characters/talan/dick-side.svg"
  3383. }
  3384. },
  3385. dickFront: {
  3386. height: math.unit(0.305, "meter"),
  3387. name: "Dick (Front)",
  3388. image: {
  3389. source: "./media/characters/talan/dick-front.svg"
  3390. }
  3391. },
  3392. },
  3393. [
  3394. {
  3395. name: "Normal",
  3396. height: math.unit(4, "meters")
  3397. },
  3398. {
  3399. name: "Macro",
  3400. height: math.unit(100, "meters")
  3401. },
  3402. {
  3403. name: "Megamacro",
  3404. height: math.unit(2, "miles"),
  3405. default: true
  3406. },
  3407. {
  3408. name: "Gigamacro",
  3409. height: math.unit(5000, "miles")
  3410. },
  3411. {
  3412. name: "Teramacro",
  3413. height: math.unit(100, "parsecs")
  3414. }
  3415. ]
  3416. ))
  3417. characterMakers.push(() => makeCharacter(
  3418. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3419. {
  3420. front: {
  3421. height: math.unit(2, "meter"),
  3422. weight: math.unit(90, "kg"),
  3423. name: "Front",
  3424. image: {
  3425. source: "./media/characters/gael'rathus/front.svg"
  3426. }
  3427. },
  3428. frontAlt: {
  3429. height: math.unit(2, "meter"),
  3430. weight: math.unit(90, "kg"),
  3431. name: "Front (alt)",
  3432. image: {
  3433. source: "./media/characters/gael'rathus/front-alt.svg"
  3434. }
  3435. },
  3436. frontAlt2: {
  3437. height: math.unit(2, "meter"),
  3438. weight: math.unit(90, "kg"),
  3439. name: "Front (alt 2)",
  3440. image: {
  3441. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3442. }
  3443. }
  3444. },
  3445. [
  3446. {
  3447. name: "Normal",
  3448. height: math.unit(9, "feet"),
  3449. default: true
  3450. },
  3451. {
  3452. name: "Large",
  3453. height: math.unit(25, "feet")
  3454. },
  3455. {
  3456. name: "Macro",
  3457. height: math.unit(0.25, "miles")
  3458. },
  3459. {
  3460. name: "Megamacro",
  3461. height: math.unit(10, "miles")
  3462. }
  3463. ]
  3464. ))
  3465. characterMakers.push(() => makeCharacter(
  3466. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3467. {
  3468. side: {
  3469. height: math.unit(2, "meter"),
  3470. weight: math.unit(140, "kg"),
  3471. name: "Side",
  3472. image: {
  3473. source: "./media/characters/sosha/side.svg",
  3474. bottom: 0.042
  3475. }
  3476. },
  3477. },
  3478. [
  3479. {
  3480. name: "Normal",
  3481. height: math.unit(12, "feet"),
  3482. default: true
  3483. }
  3484. ]
  3485. ))
  3486. characterMakers.push(() => makeCharacter(
  3487. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3488. {
  3489. side: {
  3490. height: math.unit(5 + 5 / 12, "feet"),
  3491. weight: math.unit(170, "kg"),
  3492. name: "Side",
  3493. image: {
  3494. source: "./media/characters/runnola/side.svg",
  3495. extra: 741 / 448,
  3496. bottom: 0.05
  3497. }
  3498. },
  3499. },
  3500. [
  3501. {
  3502. name: "Small",
  3503. height: math.unit(3, "feet")
  3504. },
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(5 + 5 / 12, "feet"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Big",
  3512. height: math.unit(10, "feet")
  3513. },
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3518. {
  3519. front: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(50, "kg"),
  3522. name: "Front",
  3523. image: {
  3524. source: "./media/characters/kurribird/front.svg",
  3525. bottom: 0.015
  3526. }
  3527. },
  3528. frontAlt: {
  3529. height: math.unit(1.5, "meter"),
  3530. weight: math.unit(50, "kg"),
  3531. name: "Front (Alt)",
  3532. image: {
  3533. source: "./media/characters/kurribird/front-alt.svg",
  3534. extra: 1.45
  3535. }
  3536. },
  3537. },
  3538. [
  3539. {
  3540. name: "Normal",
  3541. height: math.unit(7, "feet")
  3542. },
  3543. {
  3544. name: "Big",
  3545. height: math.unit(12, "feet"),
  3546. default: true
  3547. },
  3548. {
  3549. name: "Macro",
  3550. height: math.unit(1500, "feet")
  3551. },
  3552. {
  3553. name: "Megamacro",
  3554. height: math.unit(2, "miles")
  3555. }
  3556. ]
  3557. ))
  3558. characterMakers.push(() => makeCharacter(
  3559. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3560. {
  3561. front: {
  3562. height: math.unit(2, "meter"),
  3563. weight: math.unit(80, "kg"),
  3564. name: "Front",
  3565. image: {
  3566. source: "./media/characters/elbial/front.svg",
  3567. extra: 1643 / 1556,
  3568. bottom: 60.2 / 1696
  3569. }
  3570. },
  3571. side: {
  3572. height: math.unit(2, "meter"),
  3573. weight: math.unit(80, "kg"),
  3574. name: "Side",
  3575. image: {
  3576. source: "./media/characters/elbial/side.svg",
  3577. extra: 1601/1528,
  3578. bottom: 97/1698
  3579. }
  3580. },
  3581. back: {
  3582. height: math.unit(2, "meter"),
  3583. weight: math.unit(80, "kg"),
  3584. name: "Back",
  3585. image: {
  3586. source: "./media/characters/elbial/back.svg",
  3587. extra: 1653/1569,
  3588. bottom: 20/1673
  3589. }
  3590. },
  3591. frontDressed: {
  3592. height: math.unit(2, "meter"),
  3593. weight: math.unit(80, "kg"),
  3594. name: "Front (Dressed)",
  3595. image: {
  3596. source: "./media/characters/elbial/front-dressed.svg",
  3597. extra: 1638/1569,
  3598. bottom: 70/1708
  3599. }
  3600. },
  3601. genitals: {
  3602. height: math.unit(2 / 3.367, "meter"),
  3603. name: "Genitals",
  3604. image: {
  3605. source: "./media/characters/elbial/genitals.svg"
  3606. }
  3607. },
  3608. },
  3609. [
  3610. {
  3611. name: "Large",
  3612. height: math.unit(100, "feet")
  3613. },
  3614. {
  3615. name: "Macro",
  3616. height: math.unit(500, "feet"),
  3617. default: true
  3618. },
  3619. {
  3620. name: "Megamacro",
  3621. height: math.unit(10, "miles")
  3622. },
  3623. {
  3624. name: "Gigamacro",
  3625. height: math.unit(25000, "miles")
  3626. },
  3627. {
  3628. name: "Full-Size",
  3629. height: math.unit(8000000, "gigaparsecs")
  3630. }
  3631. ]
  3632. ))
  3633. characterMakers.push(() => makeCharacter(
  3634. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3635. {
  3636. front: {
  3637. height: math.unit(2, "meter"),
  3638. weight: math.unit(60, "kg"),
  3639. name: "Front",
  3640. image: {
  3641. source: "./media/characters/noah/front.svg"
  3642. }
  3643. },
  3644. talons: {
  3645. height: math.unit(0.315, "meter"),
  3646. name: "Talons",
  3647. image: {
  3648. source: "./media/characters/noah/talons.svg"
  3649. }
  3650. }
  3651. },
  3652. [
  3653. {
  3654. name: "Large",
  3655. height: math.unit(50, "feet")
  3656. },
  3657. {
  3658. name: "Macro",
  3659. height: math.unit(750, "feet"),
  3660. default: true
  3661. },
  3662. {
  3663. name: "Megamacro",
  3664. height: math.unit(50, "miles")
  3665. },
  3666. {
  3667. name: "Gigamacro",
  3668. height: math.unit(100000, "miles")
  3669. },
  3670. {
  3671. name: "Full-Size",
  3672. height: math.unit(3000000000, "miles")
  3673. }
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(2, "meter"),
  3681. weight: math.unit(80, "kg"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/natalya/front.svg"
  3685. }
  3686. },
  3687. back: {
  3688. height: math.unit(2, "meter"),
  3689. weight: math.unit(80, "kg"),
  3690. name: "Back",
  3691. image: {
  3692. source: "./media/characters/natalya/back.svg"
  3693. }
  3694. }
  3695. },
  3696. [
  3697. {
  3698. name: "Normal",
  3699. height: math.unit(150, "feet"),
  3700. default: true
  3701. },
  3702. {
  3703. name: "Megamacro",
  3704. height: math.unit(5, "miles")
  3705. },
  3706. {
  3707. name: "Full-Size",
  3708. height: math.unit(600, "kiloparsecs")
  3709. }
  3710. ]
  3711. ))
  3712. characterMakers.push(() => makeCharacter(
  3713. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3714. {
  3715. front: {
  3716. height: math.unit(2, "meter"),
  3717. weight: math.unit(50, "kg"),
  3718. name: "Front",
  3719. image: {
  3720. source: "./media/characters/erestrebah/front.svg",
  3721. extra: 1262/1162,
  3722. bottom: 96/1358
  3723. }
  3724. },
  3725. back: {
  3726. height: math.unit(2, "meter"),
  3727. weight: math.unit(50, "kg"),
  3728. name: "Back",
  3729. image: {
  3730. source: "./media/characters/erestrebah/back.svg",
  3731. extra: 1257/1139,
  3732. bottom: 13/1270
  3733. }
  3734. },
  3735. wing: {
  3736. height: math.unit(2, "meter"),
  3737. weight: math.unit(50, "kg"),
  3738. name: "Wing",
  3739. image: {
  3740. source: "./media/characters/erestrebah/wing.svg",
  3741. extra: 1262/1162,
  3742. bottom: 96/1358
  3743. }
  3744. },
  3745. mouth: {
  3746. height: math.unit(0.39, "feet"),
  3747. name: "Mouth",
  3748. image: {
  3749. source: "./media/characters/erestrebah/mouth.svg"
  3750. }
  3751. }
  3752. },
  3753. [
  3754. {
  3755. name: "Normal",
  3756. height: math.unit(10, "feet")
  3757. },
  3758. {
  3759. name: "Large",
  3760. height: math.unit(50, "feet"),
  3761. default: true
  3762. },
  3763. {
  3764. name: "Macro",
  3765. height: math.unit(300, "feet")
  3766. },
  3767. {
  3768. name: "Macro+",
  3769. height: math.unit(750, "feet")
  3770. },
  3771. {
  3772. name: "Megamacro",
  3773. height: math.unit(3, "miles")
  3774. }
  3775. ]
  3776. ))
  3777. characterMakers.push(() => makeCharacter(
  3778. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3779. {
  3780. front: {
  3781. height: math.unit(2, "meter"),
  3782. weight: math.unit(80, "kg"),
  3783. name: "Front",
  3784. image: {
  3785. source: "./media/characters/jennifer/front.svg",
  3786. bottom: 0.11,
  3787. extra: 1.16
  3788. }
  3789. },
  3790. frontAlt: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(80, "kg"),
  3793. name: "Front (Alt)",
  3794. image: {
  3795. source: "./media/characters/jennifer/front-alt.svg"
  3796. }
  3797. }
  3798. },
  3799. [
  3800. {
  3801. name: "Canon Height",
  3802. height: math.unit(120, "feet"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Macro+",
  3807. height: math.unit(300, "feet")
  3808. },
  3809. {
  3810. name: "Megamacro",
  3811. height: math.unit(20000, "feet")
  3812. }
  3813. ]
  3814. ))
  3815. characterMakers.push(() => makeCharacter(
  3816. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3817. {
  3818. front: {
  3819. height: math.unit(2, "meter"),
  3820. weight: math.unit(50, "kg"),
  3821. name: "Front",
  3822. image: {
  3823. source: "./media/characters/kalista/front.svg",
  3824. extra: 1314/1145,
  3825. bottom: 101/1415
  3826. }
  3827. },
  3828. back: {
  3829. height: math.unit(2, "meter"),
  3830. weight: math.unit(50, "kg"),
  3831. name: "Back",
  3832. image: {
  3833. source: "./media/characters/kalista/back.svg",
  3834. extra: 1366 / 1156,
  3835. bottom: 33.9 / 1362.78
  3836. }
  3837. }
  3838. },
  3839. [
  3840. {
  3841. name: "Uncomfortably Small",
  3842. height: math.unit(10, "feet")
  3843. },
  3844. {
  3845. name: "Small",
  3846. height: math.unit(30, "feet")
  3847. },
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(100, "feet"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Macro+",
  3855. height: math.unit(2000, "feet")
  3856. },
  3857. {
  3858. name: "True Form",
  3859. height: math.unit(8924, "miles")
  3860. }
  3861. ]
  3862. ))
  3863. characterMakers.push(() => makeCharacter(
  3864. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3865. {
  3866. front: {
  3867. height: math.unit(2, "meter"),
  3868. weight: math.unit(120, "kg"),
  3869. name: "Front",
  3870. image: {
  3871. source: "./media/characters/ggv/front.svg"
  3872. }
  3873. },
  3874. side: {
  3875. height: math.unit(2, "meter"),
  3876. weight: math.unit(120, "kg"),
  3877. name: "Side",
  3878. image: {
  3879. source: "./media/characters/ggv/side.svg"
  3880. }
  3881. }
  3882. },
  3883. [
  3884. {
  3885. name: "Extremely Puny",
  3886. height: math.unit(9 + 5 / 12, "feet")
  3887. },
  3888. {
  3889. name: "Horribly Small",
  3890. height: math.unit(47.7, "miles"),
  3891. default: true
  3892. },
  3893. {
  3894. name: "Reasonably Sized",
  3895. height: math.unit(25000, "parsecs")
  3896. },
  3897. {
  3898. name: "Slightly Uncompressed",
  3899. height: math.unit(7.77e31, "parsecs")
  3900. },
  3901. {
  3902. name: "Omniversal",
  3903. height: math.unit(1e300, "meters")
  3904. },
  3905. ]
  3906. ))
  3907. characterMakers.push(() => makeCharacter(
  3908. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3909. {
  3910. front: {
  3911. height: math.unit(2, "meter"),
  3912. weight: math.unit(75, "lb"),
  3913. name: "Front",
  3914. image: {
  3915. source: "./media/characters/napalm/front.svg"
  3916. }
  3917. },
  3918. back: {
  3919. height: math.unit(2, "meter"),
  3920. weight: math.unit(75, "lb"),
  3921. name: "Back",
  3922. image: {
  3923. source: "./media/characters/napalm/back.svg"
  3924. }
  3925. }
  3926. },
  3927. [
  3928. {
  3929. name: "Standard",
  3930. height: math.unit(55, "feet"),
  3931. default: true
  3932. }
  3933. ]
  3934. ))
  3935. characterMakers.push(() => makeCharacter(
  3936. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3937. {
  3938. front: {
  3939. height: math.unit(7 + 5 / 6, "feet"),
  3940. weight: math.unit(325, "lb"),
  3941. name: "Front",
  3942. image: {
  3943. source: "./media/characters/asana/front.svg",
  3944. extra: 1133 / 1060,
  3945. bottom: 15.2 / 1148.6
  3946. }
  3947. },
  3948. back: {
  3949. height: math.unit(7 + 5 / 6, "feet"),
  3950. weight: math.unit(325, "lb"),
  3951. name: "Back",
  3952. image: {
  3953. source: "./media/characters/asana/back.svg",
  3954. extra: 1114 / 1043,
  3955. bottom: 5 / 1120
  3956. }
  3957. },
  3958. dressedDark: {
  3959. height: math.unit(7 + 5 / 6, "feet"),
  3960. weight: math.unit(325, "lb"),
  3961. name: "Dressed (Dark)",
  3962. image: {
  3963. source: "./media/characters/asana/dressed-dark.svg",
  3964. extra: 1133 / 1060,
  3965. bottom: 15.2 / 1148.6
  3966. }
  3967. },
  3968. dressedLight: {
  3969. height: math.unit(7 + 5 / 6, "feet"),
  3970. weight: math.unit(325, "lb"),
  3971. name: "Dressed (Light)",
  3972. image: {
  3973. source: "./media/characters/asana/dressed-light.svg",
  3974. extra: 1133 / 1060,
  3975. bottom: 15.2 / 1148.6
  3976. }
  3977. },
  3978. },
  3979. [
  3980. {
  3981. name: "Standard",
  3982. height: math.unit(7 + 5 / 6, "feet"),
  3983. default: true
  3984. },
  3985. {
  3986. name: "Large",
  3987. height: math.unit(10, "meters")
  3988. },
  3989. {
  3990. name: "Macro",
  3991. height: math.unit(2500, "meters")
  3992. },
  3993. {
  3994. name: "Megamacro",
  3995. height: math.unit(5e6, "meters")
  3996. },
  3997. {
  3998. name: "Examacro",
  3999. height: math.unit(5e12, "lightyears")
  4000. },
  4001. {
  4002. name: "Max Size",
  4003. height: math.unit(1e31, "lightyears")
  4004. }
  4005. ]
  4006. ))
  4007. characterMakers.push(() => makeCharacter(
  4008. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4009. {
  4010. front: {
  4011. height: math.unit(2, "meter"),
  4012. weight: math.unit(60, "kg"),
  4013. name: "Front",
  4014. image: {
  4015. source: "./media/characters/ebony/front.svg",
  4016. bottom: 0.03,
  4017. extra: 1045 / 810 + 0.03
  4018. }
  4019. },
  4020. side: {
  4021. height: math.unit(2, "meter"),
  4022. weight: math.unit(60, "kg"),
  4023. name: "Side",
  4024. image: {
  4025. source: "./media/characters/ebony/side.svg",
  4026. bottom: 0.03,
  4027. extra: 1045 / 810 + 0.03
  4028. }
  4029. },
  4030. back: {
  4031. height: math.unit(2, "meter"),
  4032. weight: math.unit(60, "kg"),
  4033. name: "Back",
  4034. image: {
  4035. source: "./media/characters/ebony/back.svg",
  4036. bottom: 0.01,
  4037. extra: 1045 / 810 + 0.01
  4038. }
  4039. },
  4040. },
  4041. [
  4042. // TODO check why I did this lol
  4043. {
  4044. name: "Standard",
  4045. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4046. default: true
  4047. },
  4048. {
  4049. name: "Macro",
  4050. height: math.unit(200, "feet")
  4051. },
  4052. {
  4053. name: "Gigamacro",
  4054. height: math.unit(13000, "km")
  4055. }
  4056. ]
  4057. ))
  4058. characterMakers.push(() => makeCharacter(
  4059. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4060. {
  4061. front: {
  4062. height: math.unit(6, "feet"),
  4063. weight: math.unit(175, "lb"),
  4064. name: "Front",
  4065. image: {
  4066. source: "./media/characters/mountain/front.svg",
  4067. extra: 972 / 955,
  4068. bottom: 64 / 1036.6
  4069. }
  4070. },
  4071. back: {
  4072. height: math.unit(6, "feet"),
  4073. weight: math.unit(175, "lb"),
  4074. name: "Back",
  4075. image: {
  4076. source: "./media/characters/mountain/back.svg",
  4077. extra: 970 / 950,
  4078. bottom: 28.25 / 999
  4079. }
  4080. },
  4081. },
  4082. [
  4083. {
  4084. name: "Large",
  4085. height: math.unit(20, "meters")
  4086. },
  4087. {
  4088. name: "Macro",
  4089. height: math.unit(300, "meters")
  4090. },
  4091. {
  4092. name: "Gigamacro",
  4093. height: math.unit(10000, "km"),
  4094. default: true
  4095. },
  4096. {
  4097. name: "Examacro",
  4098. height: math.unit(10e9, "lightyears")
  4099. }
  4100. ]
  4101. ))
  4102. characterMakers.push(() => makeCharacter(
  4103. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4104. {
  4105. front: {
  4106. height: math.unit(8, "feet"),
  4107. weight: math.unit(500, "lb"),
  4108. name: "Front",
  4109. image: {
  4110. source: "./media/characters/rick/front.svg"
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Normal",
  4117. height: math.unit(8, "feet"),
  4118. default: true
  4119. },
  4120. {
  4121. name: "Macro",
  4122. height: math.unit(5, "km")
  4123. }
  4124. ]
  4125. ))
  4126. characterMakers.push(() => makeCharacter(
  4127. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4128. {
  4129. front: {
  4130. height: math.unit(8, "feet"),
  4131. weight: math.unit(120, "lb"),
  4132. name: "Front",
  4133. image: {
  4134. source: "./media/characters/ona/front.svg"
  4135. }
  4136. },
  4137. frontAlt: {
  4138. height: math.unit(8, "feet"),
  4139. weight: math.unit(120, "lb"),
  4140. name: "Front (Alt)",
  4141. image: {
  4142. source: "./media/characters/ona/front-alt.svg"
  4143. }
  4144. },
  4145. back: {
  4146. height: math.unit(8, "feet"),
  4147. weight: math.unit(120, "lb"),
  4148. name: "Back",
  4149. image: {
  4150. source: "./media/characters/ona/back.svg"
  4151. }
  4152. },
  4153. foot: {
  4154. height: math.unit(1.1, "feet"),
  4155. name: "Foot",
  4156. image: {
  4157. source: "./media/characters/ona/foot.svg"
  4158. }
  4159. }
  4160. },
  4161. [
  4162. {
  4163. name: "Megamacro",
  4164. height: math.unit(70, "km"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Gigamacro",
  4169. height: math.unit(681818, "miles")
  4170. },
  4171. {
  4172. name: "Examacro",
  4173. height: math.unit(3800000, "lightyears")
  4174. },
  4175. ]
  4176. ))
  4177. characterMakers.push(() => makeCharacter(
  4178. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4179. {
  4180. front: {
  4181. height: math.unit(12, "feet"),
  4182. weight: math.unit(3000, "lb"),
  4183. name: "Front",
  4184. image: {
  4185. source: "./media/characters/mech/front.svg",
  4186. extra: 2900 / 2770,
  4187. bottom: 110 / 3010
  4188. }
  4189. },
  4190. back: {
  4191. height: math.unit(12, "feet"),
  4192. weight: math.unit(3000, "lb"),
  4193. name: "Back",
  4194. image: {
  4195. source: "./media/characters/mech/back.svg",
  4196. extra: 3011 / 2890,
  4197. bottom: 94 / 3105
  4198. }
  4199. },
  4200. maw: {
  4201. height: math.unit(3.07, "feet"),
  4202. name: "Maw",
  4203. image: {
  4204. source: "./media/characters/mech/maw.svg"
  4205. }
  4206. },
  4207. head: {
  4208. height: math.unit(2.82, "feet"),
  4209. name: "Head",
  4210. image: {
  4211. source: "./media/characters/mech/head.svg"
  4212. }
  4213. },
  4214. dick: {
  4215. height: math.unit(1.43, "feet"),
  4216. name: "Dick",
  4217. image: {
  4218. source: "./media/characters/mech/dick.svg"
  4219. }
  4220. },
  4221. },
  4222. [
  4223. {
  4224. name: "Normal",
  4225. height: math.unit(12, "feet")
  4226. },
  4227. {
  4228. name: "Macro",
  4229. height: math.unit(300, "feet"),
  4230. default: true
  4231. },
  4232. {
  4233. name: "Macro+",
  4234. height: math.unit(1500, "feet")
  4235. },
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4240. {
  4241. front: {
  4242. height: math.unit(1.3, "meter"),
  4243. weight: math.unit(30, "kg"),
  4244. name: "Front",
  4245. image: {
  4246. source: "./media/characters/gregory/front.svg",
  4247. }
  4248. }
  4249. },
  4250. [
  4251. {
  4252. name: "Normal",
  4253. height: math.unit(1.3, "meter"),
  4254. default: true
  4255. },
  4256. {
  4257. name: "Macro",
  4258. height: math.unit(20, "meter")
  4259. }
  4260. ]
  4261. ))
  4262. characterMakers.push(() => makeCharacter(
  4263. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4264. {
  4265. front: {
  4266. height: math.unit(2.8, "meter"),
  4267. weight: math.unit(200, "kg"),
  4268. name: "Front",
  4269. image: {
  4270. source: "./media/characters/elory/front.svg",
  4271. }
  4272. }
  4273. },
  4274. [
  4275. {
  4276. name: "Normal",
  4277. height: math.unit(2.8, "meter"),
  4278. default: true
  4279. },
  4280. {
  4281. name: "Macro",
  4282. height: math.unit(38, "meter")
  4283. }
  4284. ]
  4285. ))
  4286. characterMakers.push(() => makeCharacter(
  4287. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4288. {
  4289. front: {
  4290. height: math.unit(470, "feet"),
  4291. weight: math.unit(924, "tons"),
  4292. name: "Front",
  4293. image: {
  4294. source: "./media/characters/angelpatamon/front.svg",
  4295. }
  4296. }
  4297. },
  4298. [
  4299. {
  4300. name: "Normal",
  4301. height: math.unit(470, "feet"),
  4302. default: true
  4303. },
  4304. {
  4305. name: "Deity Size I",
  4306. height: math.unit(28651.2, "km")
  4307. },
  4308. {
  4309. name: "Deity Size II",
  4310. height: math.unit(171907.2, "km")
  4311. }
  4312. ]
  4313. ))
  4314. characterMakers.push(() => makeCharacter(
  4315. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4316. {
  4317. side: {
  4318. height: math.unit(7.2, "meter"),
  4319. weight: math.unit(8.2, "tons"),
  4320. name: "Side",
  4321. image: {
  4322. source: "./media/characters/cryae/side.svg",
  4323. extra: 3500 / 1500
  4324. }
  4325. }
  4326. },
  4327. [
  4328. {
  4329. name: "Normal",
  4330. height: math.unit(7.2, "meter"),
  4331. default: true
  4332. }
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(6, "feet"),
  4340. weight: math.unit(175, "lb"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/xera/front.svg",
  4344. extra: 2377 / 1972,
  4345. bottom: 75.5 / 2452
  4346. }
  4347. },
  4348. side: {
  4349. height: math.unit(6, "feet"),
  4350. weight: math.unit(175, "lb"),
  4351. name: "Side",
  4352. image: {
  4353. source: "./media/characters/xera/side.svg",
  4354. extra: 2345 / 2019,
  4355. bottom: 39.7 / 2384
  4356. }
  4357. },
  4358. back: {
  4359. height: math.unit(6, "feet"),
  4360. weight: math.unit(175, "lb"),
  4361. name: "Back",
  4362. image: {
  4363. source: "./media/characters/xera/back.svg",
  4364. extra: 2095 / 1984,
  4365. bottom: 67 / 2166
  4366. }
  4367. },
  4368. },
  4369. [
  4370. {
  4371. name: "Small",
  4372. height: math.unit(10, "feet")
  4373. },
  4374. {
  4375. name: "Macro",
  4376. height: math.unit(500, "meters"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Macro+",
  4381. height: math.unit(10, "km")
  4382. },
  4383. {
  4384. name: "Gigamacro",
  4385. height: math.unit(25000, "km")
  4386. },
  4387. {
  4388. name: "Teramacro",
  4389. height: math.unit(3e6, "km")
  4390. }
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4395. {
  4396. front: {
  4397. height: math.unit(6, "feet"),
  4398. weight: math.unit(175, "lb"),
  4399. name: "Front",
  4400. image: {
  4401. source: "./media/characters/nebula/front.svg",
  4402. extra: 2566 / 2362,
  4403. bottom: 81 / 2644
  4404. }
  4405. }
  4406. },
  4407. [
  4408. {
  4409. name: "Small",
  4410. height: math.unit(4.5, "meters")
  4411. },
  4412. {
  4413. name: "Macro",
  4414. height: math.unit(1500, "meters"),
  4415. default: true
  4416. },
  4417. {
  4418. name: "Megamacro",
  4419. height: math.unit(150, "km")
  4420. },
  4421. {
  4422. name: "Gigamacro",
  4423. height: math.unit(27000, "km")
  4424. }
  4425. ]
  4426. ))
  4427. characterMakers.push(() => makeCharacter(
  4428. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4429. {
  4430. front: {
  4431. height: math.unit(6, "feet"),
  4432. weight: math.unit(225, "lb"),
  4433. name: "Front",
  4434. image: {
  4435. source: "./media/characters/abysgar/front.svg"
  4436. }
  4437. }
  4438. },
  4439. [
  4440. {
  4441. name: "Small",
  4442. height: math.unit(4.5, "meters")
  4443. },
  4444. {
  4445. name: "Macro",
  4446. height: math.unit(1250, "meters"),
  4447. default: true
  4448. },
  4449. {
  4450. name: "Megamacro",
  4451. height: math.unit(125, "km")
  4452. },
  4453. {
  4454. name: "Gigamacro",
  4455. height: math.unit(26000, "km")
  4456. }
  4457. ]
  4458. ))
  4459. characterMakers.push(() => makeCharacter(
  4460. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4461. {
  4462. front: {
  4463. height: math.unit(6, "feet"),
  4464. weight: math.unit(180, "lb"),
  4465. name: "Front",
  4466. image: {
  4467. source: "./media/characters/yakuz/front.svg"
  4468. }
  4469. }
  4470. },
  4471. [
  4472. {
  4473. name: "Small",
  4474. height: math.unit(5, "meters")
  4475. },
  4476. {
  4477. name: "Macro",
  4478. height: math.unit(1500, "meters"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Megamacro",
  4483. height: math.unit(200, "km")
  4484. },
  4485. {
  4486. name: "Gigamacro",
  4487. height: math.unit(100000, "km")
  4488. }
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(6, "feet"),
  4496. weight: math.unit(175, "lb"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/mirova/front.svg",
  4500. extra: 3334 / 3071,
  4501. bottom: 42 / 3375.6
  4502. }
  4503. }
  4504. },
  4505. [
  4506. {
  4507. name: "Small",
  4508. height: math.unit(5, "meters")
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(900, "meters"),
  4513. default: true
  4514. },
  4515. {
  4516. name: "Megamacro",
  4517. height: math.unit(135, "km")
  4518. },
  4519. {
  4520. name: "Gigamacro",
  4521. height: math.unit(20000, "km")
  4522. }
  4523. ]
  4524. ))
  4525. characterMakers.push(() => makeCharacter(
  4526. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4527. {
  4528. side: {
  4529. height: math.unit(28.35, "feet"),
  4530. weight: math.unit(99.75, "tons"),
  4531. name: "Side",
  4532. image: {
  4533. source: "./media/characters/asana-mech/side.svg",
  4534. extra: 923 / 699,
  4535. bottom: 50 / 975
  4536. }
  4537. },
  4538. chaingun: {
  4539. height: math.unit(7, "feet"),
  4540. weight: math.unit(2400, "lb"),
  4541. name: "Chaingun",
  4542. image: {
  4543. source: "./media/characters/asana-mech/chaingun.svg"
  4544. }
  4545. },
  4546. laser: {
  4547. height: math.unit(7.12, "feet"),
  4548. weight: math.unit(2000, "lb"),
  4549. name: "Laser",
  4550. image: {
  4551. source: "./media/characters/asana-mech/laser.svg"
  4552. }
  4553. },
  4554. },
  4555. [
  4556. {
  4557. name: "Normal",
  4558. height: math.unit(28.35, "feet"),
  4559. default: true
  4560. },
  4561. {
  4562. name: "Macro",
  4563. height: math.unit(2500, "feet")
  4564. },
  4565. {
  4566. name: "Megamacro",
  4567. height: math.unit(25, "miles")
  4568. },
  4569. {
  4570. name: "Examacro",
  4571. height: math.unit(6e8, "lightyears")
  4572. },
  4573. ]
  4574. ))
  4575. characterMakers.push(() => makeCharacter(
  4576. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4577. {
  4578. front: {
  4579. height: math.unit(5, "meters"),
  4580. weight: math.unit(1000, "kg"),
  4581. name: "Front",
  4582. image: {
  4583. source: "./media/characters/asche/front.svg",
  4584. extra: 1258 / 1190,
  4585. bottom: 47 / 1305
  4586. }
  4587. },
  4588. frontUnderwear: {
  4589. height: math.unit(5, "meters"),
  4590. weight: math.unit(1000, "kg"),
  4591. name: "Front (Underwear)",
  4592. image: {
  4593. source: "./media/characters/asche/front-underwear.svg",
  4594. extra: 1258 / 1190,
  4595. bottom: 47 / 1305
  4596. }
  4597. },
  4598. frontDressed: {
  4599. height: math.unit(5, "meters"),
  4600. weight: math.unit(1000, "kg"),
  4601. name: "Front (Dressed)",
  4602. image: {
  4603. source: "./media/characters/asche/front-dressed.svg",
  4604. extra: 1258 / 1190,
  4605. bottom: 47 / 1305
  4606. }
  4607. },
  4608. frontArmor: {
  4609. height: math.unit(5, "meters"),
  4610. weight: math.unit(1000, "kg"),
  4611. name: "Front (Armored)",
  4612. image: {
  4613. source: "./media/characters/asche/front-armored.svg",
  4614. extra: 1374 / 1308,
  4615. bottom: 23 / 1397
  4616. }
  4617. },
  4618. mp724: {
  4619. height: math.unit(0.96, "meters"),
  4620. weight: math.unit(38, "kg"),
  4621. name: "H&K MP724",
  4622. image: {
  4623. source: "./media/characters/asche/h&k-mp724.svg"
  4624. }
  4625. },
  4626. side: {
  4627. height: math.unit(5, "meters"),
  4628. weight: math.unit(1000, "kg"),
  4629. name: "Side",
  4630. image: {
  4631. source: "./media/characters/asche/side.svg",
  4632. extra: 1717 / 1609,
  4633. bottom: 0.005
  4634. }
  4635. },
  4636. back: {
  4637. height: math.unit(5, "meters"),
  4638. weight: math.unit(1000, "kg"),
  4639. name: "Back",
  4640. image: {
  4641. source: "./media/characters/asche/back.svg",
  4642. extra: 1570 / 1501
  4643. }
  4644. },
  4645. },
  4646. [
  4647. {
  4648. name: "DEFCON 5",
  4649. height: math.unit(5, "meters")
  4650. },
  4651. {
  4652. name: "DEFCON 4",
  4653. height: math.unit(500, "meters"),
  4654. default: true
  4655. },
  4656. {
  4657. name: "DEFCON 3",
  4658. height: math.unit(5, "km")
  4659. },
  4660. {
  4661. name: "DEFCON 2",
  4662. height: math.unit(500, "km")
  4663. },
  4664. {
  4665. name: "DEFCON 1",
  4666. height: math.unit(500000, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 0",
  4670. height: math.unit(3, "gigaparsecs")
  4671. },
  4672. ]
  4673. ))
  4674. characterMakers.push(() => makeCharacter(
  4675. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4676. {
  4677. front: {
  4678. height: math.unit(2, "meters"),
  4679. weight: math.unit(76, "kg"),
  4680. name: "Front",
  4681. image: {
  4682. source: "./media/characters/gale/front.svg"
  4683. }
  4684. },
  4685. frontAlt1: {
  4686. height: math.unit(2, "meters"),
  4687. weight: math.unit(76, "kg"),
  4688. name: "Front (Alt 1)",
  4689. image: {
  4690. source: "./media/characters/gale/front-alt-1.svg"
  4691. }
  4692. },
  4693. frontAlt2: {
  4694. height: math.unit(2, "meters"),
  4695. weight: math.unit(76, "kg"),
  4696. name: "Front (Alt 2)",
  4697. image: {
  4698. source: "./media/characters/gale/front-alt-2.svg"
  4699. }
  4700. },
  4701. },
  4702. [
  4703. {
  4704. name: "Normal",
  4705. height: math.unit(7, "feet")
  4706. },
  4707. {
  4708. name: "Macro",
  4709. height: math.unit(150, "feet"),
  4710. default: true
  4711. },
  4712. {
  4713. name: "Macro+",
  4714. height: math.unit(300, "feet")
  4715. },
  4716. ]
  4717. ))
  4718. characterMakers.push(() => makeCharacter(
  4719. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4720. {
  4721. front: {
  4722. height: math.unit(5 + 10/12, "feet"),
  4723. weight: math.unit(67, "kg"),
  4724. name: "Front",
  4725. image: {
  4726. source: "./media/characters/draylen/front.svg",
  4727. extra: 832/777,
  4728. bottom: 85/917
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Normal",
  4735. height: math.unit(5 + 10/12, "feet")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(150, "feet"),
  4740. default: true
  4741. }
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(7 + 9 / 12, "feet"),
  4749. weight: math.unit(379, "lbs"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/chez/front.svg"
  4753. }
  4754. },
  4755. side: {
  4756. height: math.unit(7 + 9 / 12, "feet"),
  4757. weight: math.unit(379, "lbs"),
  4758. name: "Side",
  4759. image: {
  4760. source: "./media/characters/chez/side.svg"
  4761. }
  4762. }
  4763. },
  4764. [
  4765. {
  4766. name: "Normal",
  4767. height: math.unit(7 + 9 / 12, "feet"),
  4768. default: true
  4769. },
  4770. {
  4771. name: "God King",
  4772. height: math.unit(9750000, "meters")
  4773. }
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(275, "lbs"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/kaylum/front.svg",
  4785. bottom: 0.01,
  4786. extra: 1166 / 1031
  4787. }
  4788. },
  4789. frontWingless: {
  4790. height: math.unit(6, "feet"),
  4791. weight: math.unit(275, "lbs"),
  4792. name: "Front (Wingless)",
  4793. image: {
  4794. source: "./media/characters/kaylum/front-wingless.svg",
  4795. bottom: 0.01,
  4796. extra: 1117 / 1031
  4797. }
  4798. }
  4799. },
  4800. [
  4801. {
  4802. name: "Normal",
  4803. height: math.unit(3.05, "meters")
  4804. },
  4805. {
  4806. name: "Master",
  4807. height: math.unit(5.5, "meters")
  4808. },
  4809. {
  4810. name: "Rampage",
  4811. height: math.unit(19, "meters")
  4812. },
  4813. {
  4814. name: "Macro Lite",
  4815. height: math.unit(37, "meters")
  4816. },
  4817. {
  4818. name: "Hyper Predator",
  4819. height: math.unit(61, "meters")
  4820. },
  4821. {
  4822. name: "Macro",
  4823. height: math.unit(138, "meters"),
  4824. default: true
  4825. }
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4830. {
  4831. front: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(150, "lbs"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/geta/front.svg"
  4837. }
  4838. }
  4839. },
  4840. [
  4841. {
  4842. name: "Micro",
  4843. height: math.unit(3, "inches"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Normal",
  4848. height: math.unit(5 + 5 / 12, "feet")
  4849. }
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4854. {
  4855. front: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(300, "lbs"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/tyrnn/front.svg"
  4861. }
  4862. }
  4863. },
  4864. [
  4865. {
  4866. name: "Main Height",
  4867. height: math.unit(355, "feet"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Fave. Height",
  4872. height: math.unit(2400, "feet")
  4873. }
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4878. {
  4879. front: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(300, "lbs"),
  4882. name: "Front",
  4883. image: {
  4884. source: "./media/characters/appledectomy/front.svg"
  4885. }
  4886. }
  4887. },
  4888. [
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(2500, "feet")
  4892. },
  4893. {
  4894. name: "Megamacro",
  4895. height: math.unit(50, "miles"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Gigamacro",
  4900. height: math.unit(5000, "miles")
  4901. },
  4902. {
  4903. name: "Teramacro",
  4904. height: math.unit(250000, "miles")
  4905. },
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(6, "feet"),
  4913. weight: math.unit(200, "lbs"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/vulpes/front.svg",
  4917. extra: 573 / 543,
  4918. bottom: 0.033
  4919. }
  4920. },
  4921. side: {
  4922. height: math.unit(6, "feet"),
  4923. weight: math.unit(200, "lbs"),
  4924. name: "Side",
  4925. image: {
  4926. source: "./media/characters/vulpes/side.svg",
  4927. extra: 577 / 549,
  4928. bottom: 11 / 588
  4929. }
  4930. },
  4931. back: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(200, "lbs"),
  4934. name: "Back",
  4935. image: {
  4936. source: "./media/characters/vulpes/back.svg",
  4937. extra: 573 / 549,
  4938. bottom: 20 / 593
  4939. }
  4940. },
  4941. feet: {
  4942. height: math.unit(1.276, "feet"),
  4943. name: "Feet",
  4944. image: {
  4945. source: "./media/characters/vulpes/feet.svg"
  4946. }
  4947. },
  4948. maw: {
  4949. height: math.unit(1.18, "feet"),
  4950. name: "Maw",
  4951. image: {
  4952. source: "./media/characters/vulpes/maw.svg"
  4953. }
  4954. },
  4955. },
  4956. [
  4957. {
  4958. name: "Micro",
  4959. height: math.unit(2, "inches")
  4960. },
  4961. {
  4962. name: "Normal",
  4963. height: math.unit(6.3, "feet")
  4964. },
  4965. {
  4966. name: "Macro",
  4967. height: math.unit(850, "feet")
  4968. },
  4969. {
  4970. name: "Megamacro",
  4971. height: math.unit(7500, "feet"),
  4972. default: true
  4973. },
  4974. {
  4975. name: "Gigamacro",
  4976. height: math.unit(570000, "miles")
  4977. }
  4978. ]
  4979. ))
  4980. characterMakers.push(() => makeCharacter(
  4981. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4982. {
  4983. front: {
  4984. height: math.unit(6, "feet"),
  4985. weight: math.unit(210, "lbs"),
  4986. name: "Front",
  4987. image: {
  4988. source: "./media/characters/rain-fallen/front.svg"
  4989. }
  4990. },
  4991. side: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(210, "lbs"),
  4994. name: "Side",
  4995. image: {
  4996. source: "./media/characters/rain-fallen/side.svg"
  4997. }
  4998. },
  4999. back: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(210, "lbs"),
  5002. name: "Back",
  5003. image: {
  5004. source: "./media/characters/rain-fallen/back.svg"
  5005. }
  5006. },
  5007. feral: {
  5008. height: math.unit(9, "feet"),
  5009. weight: math.unit(700, "lbs"),
  5010. name: "Feral",
  5011. image: {
  5012. source: "./media/characters/rain-fallen/feral.svg"
  5013. }
  5014. },
  5015. },
  5016. [
  5017. {
  5018. name: "Meddling with Mortals",
  5019. height: math.unit(8 + 8/12, "feet")
  5020. },
  5021. {
  5022. name: "Normal",
  5023. height: math.unit(5, "meter")
  5024. },
  5025. {
  5026. name: "Macro",
  5027. height: math.unit(150, "meter"),
  5028. default: true
  5029. },
  5030. {
  5031. name: "Megamacro",
  5032. height: math.unit(278e6, "meter")
  5033. },
  5034. {
  5035. name: "Gigamacro",
  5036. height: math.unit(2e9, "meter")
  5037. },
  5038. {
  5039. name: "Teramacro",
  5040. height: math.unit(8e12, "meter")
  5041. },
  5042. {
  5043. name: "Devourer",
  5044. height: math.unit(14, "zettameters")
  5045. },
  5046. {
  5047. name: "Scarlet King",
  5048. height: math.unit(18, "yottameters")
  5049. },
  5050. {
  5051. name: "Void",
  5052. height: math.unit(1e88, "yottameters")
  5053. }
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5058. {
  5059. standing: {
  5060. height: math.unit(6, "feet"),
  5061. weight: math.unit(180, "lbs"),
  5062. name: "Standing",
  5063. image: {
  5064. source: "./media/characters/zaakira/standing.svg",
  5065. extra: 1599/1504,
  5066. bottom: 39/1638
  5067. }
  5068. },
  5069. laying: {
  5070. height: math.unit(3, "feet"),
  5071. weight: math.unit(180, "lbs"),
  5072. name: "Laying",
  5073. image: {
  5074. source: "./media/characters/zaakira/laying.svg"
  5075. }
  5076. },
  5077. },
  5078. [
  5079. {
  5080. name: "Normal",
  5081. height: math.unit(12, "feet")
  5082. },
  5083. {
  5084. name: "Macro",
  5085. height: math.unit(279, "feet"),
  5086. default: true
  5087. }
  5088. ]
  5089. ))
  5090. characterMakers.push(() => makeCharacter(
  5091. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5092. {
  5093. femSfw: {
  5094. height: math.unit(8, "feet"),
  5095. weight: math.unit(350, "lb"),
  5096. name: "Fem",
  5097. image: {
  5098. source: "./media/characters/sigvald/fem-sfw.svg",
  5099. extra: 182 / 164,
  5100. bottom: 8.7 / 190.5
  5101. }
  5102. },
  5103. femNsfw: {
  5104. height: math.unit(8, "feet"),
  5105. weight: math.unit(350, "lb"),
  5106. name: "Fem (NSFW)",
  5107. image: {
  5108. source: "./media/characters/sigvald/fem-nsfw.svg",
  5109. extra: 182 / 164,
  5110. bottom: 8.7 / 190.5
  5111. }
  5112. },
  5113. maleNsfw: {
  5114. height: math.unit(8, "feet"),
  5115. weight: math.unit(350, "lb"),
  5116. name: "Male (NSFW)",
  5117. image: {
  5118. source: "./media/characters/sigvald/male-nsfw.svg",
  5119. extra: 182 / 164,
  5120. bottom: 8.7 / 190.5
  5121. }
  5122. },
  5123. hermNsfw: {
  5124. height: math.unit(8, "feet"),
  5125. weight: math.unit(350, "lb"),
  5126. name: "Herm (NSFW)",
  5127. image: {
  5128. source: "./media/characters/sigvald/herm-nsfw.svg",
  5129. extra: 182 / 164,
  5130. bottom: 8.7 / 190.5
  5131. }
  5132. },
  5133. dick: {
  5134. height: math.unit(2.36, "feet"),
  5135. name: "Dick",
  5136. image: {
  5137. source: "./media/characters/sigvald/dick.svg"
  5138. }
  5139. },
  5140. eye: {
  5141. height: math.unit(0.31, "feet"),
  5142. name: "Eye",
  5143. image: {
  5144. source: "./media/characters/sigvald/eye.svg"
  5145. }
  5146. },
  5147. mouth: {
  5148. height: math.unit(0.92, "feet"),
  5149. name: "Mouth",
  5150. image: {
  5151. source: "./media/characters/sigvald/mouth.svg"
  5152. }
  5153. },
  5154. paws: {
  5155. height: math.unit(2.2, "feet"),
  5156. name: "Paws",
  5157. image: {
  5158. source: "./media/characters/sigvald/paws.svg"
  5159. }
  5160. }
  5161. },
  5162. [
  5163. {
  5164. name: "Normal",
  5165. height: math.unit(8, "feet")
  5166. },
  5167. {
  5168. name: "Large",
  5169. height: math.unit(12, "feet")
  5170. },
  5171. {
  5172. name: "Larger",
  5173. height: math.unit(20, "feet")
  5174. },
  5175. {
  5176. name: "Macro",
  5177. height: math.unit(150, "feet")
  5178. },
  5179. {
  5180. name: "Macro+",
  5181. height: math.unit(200, "feet"),
  5182. default: true
  5183. },
  5184. ]
  5185. ))
  5186. characterMakers.push(() => makeCharacter(
  5187. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5188. {
  5189. side: {
  5190. height: math.unit(12, "feet"),
  5191. weight: math.unit(2000, "kg"),
  5192. name: "Side",
  5193. image: {
  5194. source: "./media/characters/scott/side.svg",
  5195. extra: 754 / 724,
  5196. bottom: 0.069
  5197. }
  5198. },
  5199. upright: {
  5200. height: math.unit(12, "feet"),
  5201. weight: math.unit(2000, "kg"),
  5202. name: "Upright",
  5203. image: {
  5204. source: "./media/characters/scott/upright.svg",
  5205. extra: 3881 / 3722,
  5206. bottom: 0.05
  5207. }
  5208. },
  5209. },
  5210. [
  5211. {
  5212. name: "Normal",
  5213. height: math.unit(12, "feet"),
  5214. default: true
  5215. },
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5220. {
  5221. side: {
  5222. height: math.unit(8, "meters"),
  5223. weight: math.unit(84755, "lbs"),
  5224. name: "Side",
  5225. image: {
  5226. source: "./media/characters/tobias/side.svg",
  5227. extra: 1474 / 1096,
  5228. bottom: 38.9 / 1513.1235
  5229. }
  5230. },
  5231. },
  5232. [
  5233. {
  5234. name: "Normal",
  5235. height: math.unit(8, "meters"),
  5236. default: true
  5237. },
  5238. ]
  5239. ))
  5240. characterMakers.push(() => makeCharacter(
  5241. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5242. {
  5243. front: {
  5244. height: math.unit(5.5, "feet"),
  5245. weight: math.unit(400, "lbs"),
  5246. name: "Front",
  5247. image: {
  5248. source: "./media/characters/kieran/front.svg",
  5249. extra: 2694 / 2364,
  5250. bottom: 217 / 2908
  5251. }
  5252. },
  5253. side: {
  5254. height: math.unit(5.5, "feet"),
  5255. weight: math.unit(400, "lbs"),
  5256. name: "Side",
  5257. image: {
  5258. source: "./media/characters/kieran/side.svg",
  5259. extra: 875 / 777,
  5260. bottom: 84.6 / 959
  5261. }
  5262. },
  5263. },
  5264. [
  5265. {
  5266. name: "Normal",
  5267. height: math.unit(5.5, "feet"),
  5268. default: true
  5269. },
  5270. ]
  5271. ))
  5272. characterMakers.push(() => makeCharacter(
  5273. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5274. {
  5275. side: {
  5276. height: math.unit(2, "meters"),
  5277. weight: math.unit(70, "kg"),
  5278. name: "Side",
  5279. image: {
  5280. source: "./media/characters/sanya/side.svg",
  5281. bottom: 0.02,
  5282. extra: 1.02
  5283. }
  5284. },
  5285. },
  5286. [
  5287. {
  5288. name: "Small",
  5289. height: math.unit(2, "meters")
  5290. },
  5291. {
  5292. name: "Normal",
  5293. height: math.unit(3, "meters")
  5294. },
  5295. {
  5296. name: "Macro",
  5297. height: math.unit(16, "meters"),
  5298. default: true
  5299. },
  5300. ]
  5301. ))
  5302. characterMakers.push(() => makeCharacter(
  5303. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5304. {
  5305. front: {
  5306. height: math.unit(2, "meters"),
  5307. weight: math.unit(120, "kg"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/miranda/front.svg",
  5311. extra: 195 / 185,
  5312. bottom: 10.9 / 206.5
  5313. }
  5314. },
  5315. back: {
  5316. height: math.unit(2, "meters"),
  5317. weight: math.unit(120, "kg"),
  5318. name: "Back",
  5319. image: {
  5320. source: "./media/characters/miranda/back.svg",
  5321. extra: 201 / 193,
  5322. bottom: 2.3 / 203.7
  5323. }
  5324. },
  5325. },
  5326. [
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(10, "feet"),
  5330. default: true
  5331. }
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "James", species: ["deer"], tags: ["anthro"] },
  5336. {
  5337. side: {
  5338. height: math.unit(2, "meters"),
  5339. weight: math.unit(100, "kg"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/james/front.svg",
  5343. extra: 10 / 8.5
  5344. }
  5345. },
  5346. },
  5347. [
  5348. {
  5349. name: "Normal",
  5350. height: math.unit(8.5, "feet"),
  5351. default: true
  5352. }
  5353. ]
  5354. ))
  5355. characterMakers.push(() => makeCharacter(
  5356. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5357. {
  5358. side: {
  5359. height: math.unit(9.5, "feet"),
  5360. weight: math.unit(2500, "lbs"),
  5361. name: "Side",
  5362. image: {
  5363. source: "./media/characters/heather/side.svg"
  5364. }
  5365. },
  5366. },
  5367. [
  5368. {
  5369. name: "Normal",
  5370. height: math.unit(9.5, "feet"),
  5371. default: true
  5372. }
  5373. ]
  5374. ))
  5375. characterMakers.push(() => makeCharacter(
  5376. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5377. {
  5378. side: {
  5379. height: math.unit(6.5, "feet"),
  5380. weight: math.unit(400, "lbs"),
  5381. name: "Side",
  5382. image: {
  5383. source: "./media/characters/lukas/side.svg",
  5384. extra: 7.25 / 6.5
  5385. }
  5386. },
  5387. },
  5388. [
  5389. {
  5390. name: "Normal",
  5391. height: math.unit(6.5, "feet"),
  5392. default: true
  5393. }
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5398. {
  5399. side: {
  5400. height: math.unit(5, "feet"),
  5401. weight: math.unit(3000, "lbs"),
  5402. name: "Side",
  5403. image: {
  5404. source: "./media/characters/louise/side.svg"
  5405. }
  5406. },
  5407. },
  5408. [
  5409. {
  5410. name: "Normal",
  5411. height: math.unit(5, "feet"),
  5412. default: true
  5413. }
  5414. ]
  5415. ))
  5416. characterMakers.push(() => makeCharacter(
  5417. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5418. {
  5419. side: {
  5420. height: math.unit(6, "feet"),
  5421. weight: math.unit(150, "lbs"),
  5422. name: "Side",
  5423. image: {
  5424. source: "./media/characters/ramona/side.svg",
  5425. extra: 871/854,
  5426. bottom: 41/912
  5427. }
  5428. },
  5429. },
  5430. [
  5431. {
  5432. name: "Normal",
  5433. height: math.unit(5.3, "meters"),
  5434. default: true
  5435. },
  5436. {
  5437. name: "Macro",
  5438. height: math.unit(20, "stories")
  5439. },
  5440. {
  5441. name: "Macro+",
  5442. height: math.unit(50, "stories")
  5443. },
  5444. ]
  5445. ))
  5446. characterMakers.push(() => makeCharacter(
  5447. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5448. {
  5449. standing: {
  5450. height: math.unit(5.75, "feet"),
  5451. weight: math.unit(160, "lbs"),
  5452. name: "Standing",
  5453. image: {
  5454. source: "./media/characters/deerpuff/standing.svg",
  5455. extra: 682 / 624
  5456. }
  5457. },
  5458. sitting: {
  5459. height: math.unit(5.75 / 1.79, "feet"),
  5460. weight: math.unit(160, "lbs"),
  5461. name: "Sitting",
  5462. image: {
  5463. source: "./media/characters/deerpuff/sitting.svg",
  5464. bottom: 44 / 400,
  5465. extra: 1
  5466. }
  5467. },
  5468. taurLaying: {
  5469. height: math.unit(6, "feet"),
  5470. weight: math.unit(400, "lbs"),
  5471. name: "Taur (Laying)",
  5472. image: {
  5473. source: "./media/characters/deerpuff/taur-laying.svg"
  5474. }
  5475. },
  5476. },
  5477. [
  5478. {
  5479. name: "Puffball",
  5480. height: math.unit(6, "inches")
  5481. },
  5482. {
  5483. name: "Normalpuff",
  5484. height: math.unit(5.75, "feet")
  5485. },
  5486. {
  5487. name: "Macropuff",
  5488. height: math.unit(1500, "feet"),
  5489. default: true
  5490. },
  5491. {
  5492. name: "Megapuff",
  5493. height: math.unit(500, "miles")
  5494. },
  5495. {
  5496. name: "Gigapuff",
  5497. height: math.unit(250000, "miles")
  5498. },
  5499. {
  5500. name: "Omegapuff",
  5501. height: math.unit(1000, "lightyears")
  5502. },
  5503. ]
  5504. ))
  5505. characterMakers.push(() => makeCharacter(
  5506. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5507. {
  5508. stomping: {
  5509. height: math.unit(6, "feet"),
  5510. weight: math.unit(170, "lbs"),
  5511. name: "Stomping",
  5512. image: {
  5513. source: "./media/characters/vivian/stomping.svg"
  5514. }
  5515. },
  5516. sitting: {
  5517. height: math.unit(6 / 1.75, "feet"),
  5518. weight: math.unit(170, "lbs"),
  5519. name: "Sitting",
  5520. image: {
  5521. source: "./media/characters/vivian/sitting.svg",
  5522. bottom: 1 / 6.4,
  5523. extra: 1,
  5524. }
  5525. },
  5526. },
  5527. [
  5528. {
  5529. name: "Normal",
  5530. height: math.unit(7, "feet"),
  5531. default: true
  5532. },
  5533. {
  5534. name: "Macro",
  5535. height: math.unit(10, "stories")
  5536. },
  5537. {
  5538. name: "Macro+",
  5539. height: math.unit(30, "stories")
  5540. },
  5541. {
  5542. name: "Megamacro",
  5543. height: math.unit(10, "miles")
  5544. },
  5545. {
  5546. name: "Megamacro+",
  5547. height: math.unit(2750000, "meters")
  5548. },
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5553. {
  5554. front: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(160, "lbs"),
  5557. name: "Front",
  5558. image: {
  5559. source: "./media/characters/prince/front.svg",
  5560. extra: 3400 / 3000
  5561. }
  5562. },
  5563. jumping: {
  5564. height: math.unit(6, "feet"),
  5565. weight: math.unit(160, "lbs"),
  5566. name: "Jumping",
  5567. image: {
  5568. source: "./media/characters/prince/jump.svg",
  5569. extra: 2555 / 2134
  5570. }
  5571. },
  5572. },
  5573. [
  5574. {
  5575. name: "Normal",
  5576. height: math.unit(7.75, "feet"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Not cute",
  5581. height: math.unit(17, "feet")
  5582. },
  5583. {
  5584. name: "I said NOT",
  5585. height: math.unit(91, "feet")
  5586. },
  5587. {
  5588. name: "Please stop",
  5589. height: math.unit(560, "feet")
  5590. },
  5591. {
  5592. name: "What have you done",
  5593. height: math.unit(2200, "feet")
  5594. },
  5595. {
  5596. name: "Deer God",
  5597. height: math.unit(3.6, "miles")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5603. {
  5604. standing: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(300, "lbs"),
  5607. name: "Standing",
  5608. image: {
  5609. source: "./media/characters/psymon/standing.svg",
  5610. extra: 1888 / 1810,
  5611. bottom: 0.05
  5612. }
  5613. },
  5614. slithering: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(300, "lbs"),
  5617. name: "Slithering",
  5618. image: {
  5619. source: "./media/characters/psymon/slithering.svg",
  5620. extra: 1330 / 1224
  5621. }
  5622. },
  5623. slitheringAlt: {
  5624. height: math.unit(6, "feet"),
  5625. weight: math.unit(300, "lbs"),
  5626. name: "Slithering (Alt)",
  5627. image: {
  5628. source: "./media/characters/psymon/slithering-alt.svg",
  5629. extra: 1330 / 1224
  5630. }
  5631. },
  5632. },
  5633. [
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(11.25, "feet"),
  5637. default: true
  5638. },
  5639. {
  5640. name: "Large",
  5641. height: math.unit(27, "feet")
  5642. },
  5643. {
  5644. name: "Giant",
  5645. height: math.unit(87, "feet")
  5646. },
  5647. {
  5648. name: "Macro",
  5649. height: math.unit(365, "feet")
  5650. },
  5651. {
  5652. name: "Megamacro",
  5653. height: math.unit(3, "miles")
  5654. },
  5655. {
  5656. name: "World Serpent",
  5657. height: math.unit(8000, "miles")
  5658. },
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(6, "feet"),
  5666. weight: math.unit(180, "lbs"),
  5667. name: "Front",
  5668. image: {
  5669. source: "./media/characters/daimos/front.svg",
  5670. extra: 4160 / 3897,
  5671. bottom: 0.021
  5672. }
  5673. }
  5674. },
  5675. [
  5676. {
  5677. name: "Normal",
  5678. height: math.unit(8, "feet"),
  5679. default: true
  5680. },
  5681. {
  5682. name: "Big Dog",
  5683. height: math.unit(22, "feet")
  5684. },
  5685. {
  5686. name: "Macro",
  5687. height: math.unit(127, "feet")
  5688. },
  5689. {
  5690. name: "Megamacro",
  5691. height: math.unit(3600, "feet")
  5692. },
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5697. {
  5698. side: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(180, "lbs"),
  5701. name: "Side",
  5702. image: {
  5703. source: "./media/characters/blake/side.svg",
  5704. extra: 1212 / 1120,
  5705. bottom: 0.05
  5706. }
  5707. },
  5708. crouched: {
  5709. height: math.unit(6 * 0.57, "feet"),
  5710. weight: math.unit(180, "lbs"),
  5711. name: "Crouched",
  5712. image: {
  5713. source: "./media/characters/blake/crouched.svg",
  5714. extra: 840 / 587,
  5715. bottom: 0.04
  5716. }
  5717. },
  5718. bent: {
  5719. height: math.unit(6 * 0.75, "feet"),
  5720. weight: math.unit(180, "lbs"),
  5721. name: "Bent",
  5722. image: {
  5723. source: "./media/characters/blake/bent.svg",
  5724. extra: 592 / 544,
  5725. bottom: 0.035
  5726. }
  5727. },
  5728. },
  5729. [
  5730. {
  5731. name: "Normal",
  5732. height: math.unit(8 + 1 / 6, "feet"),
  5733. default: true
  5734. },
  5735. {
  5736. name: "Big Backside",
  5737. height: math.unit(37, "feet")
  5738. },
  5739. {
  5740. name: "Subway Shredder",
  5741. height: math.unit(72, "feet")
  5742. },
  5743. {
  5744. name: "City Carver",
  5745. height: math.unit(1675, "feet")
  5746. },
  5747. {
  5748. name: "Tectonic Tweaker",
  5749. height: math.unit(2300, "miles")
  5750. },
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5755. {
  5756. front: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(180, "lbs"),
  5759. name: "Front",
  5760. image: {
  5761. source: "./media/characters/guisetto/front.svg",
  5762. extra: 856 / 817,
  5763. bottom: 0.06
  5764. }
  5765. },
  5766. airborne: {
  5767. height: math.unit(6, "feet"),
  5768. weight: math.unit(180, "lbs"),
  5769. name: "Airborne",
  5770. image: {
  5771. source: "./media/characters/guisetto/airborne.svg",
  5772. extra: 584 / 525
  5773. }
  5774. },
  5775. },
  5776. [
  5777. {
  5778. name: "Normal",
  5779. height: math.unit(10 + 11 / 12, "feet"),
  5780. default: true
  5781. },
  5782. {
  5783. name: "Large",
  5784. height: math.unit(35, "feet")
  5785. },
  5786. {
  5787. name: "Macro",
  5788. height: math.unit(475, "feet")
  5789. },
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5794. {
  5795. front: {
  5796. height: math.unit(6, "feet"),
  5797. weight: math.unit(180, "lbs"),
  5798. name: "Front",
  5799. image: {
  5800. source: "./media/characters/luxor/front.svg",
  5801. extra: 2940 / 2152
  5802. }
  5803. },
  5804. back: {
  5805. height: math.unit(6, "feet"),
  5806. weight: math.unit(180, "lbs"),
  5807. name: "Back",
  5808. image: {
  5809. source: "./media/characters/luxor/back.svg",
  5810. extra: 1083 / 960
  5811. }
  5812. },
  5813. },
  5814. [
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(5 + 5 / 6, "feet"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Lamp",
  5822. height: math.unit(50, "feet")
  5823. },
  5824. {
  5825. name: "Lämp",
  5826. height: math.unit(300, "feet")
  5827. },
  5828. {
  5829. name: "The sun is a lamp",
  5830. height: math.unit(250000, "miles")
  5831. },
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5836. {
  5837. front: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(50, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/huoyan/front.svg"
  5843. }
  5844. },
  5845. side: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(180, "lbs"),
  5848. name: "Side",
  5849. image: {
  5850. source: "./media/characters/huoyan/side.svg"
  5851. }
  5852. },
  5853. },
  5854. [
  5855. {
  5856. name: "Chef",
  5857. height: math.unit(9, "feet")
  5858. },
  5859. {
  5860. name: "Normal",
  5861. height: math.unit(65, "feet"),
  5862. default: true
  5863. },
  5864. {
  5865. name: "Macro",
  5866. height: math.unit(780, "feet")
  5867. },
  5868. {
  5869. name: "Flaming Mountain",
  5870. height: math.unit(4.8, "miles")
  5871. },
  5872. {
  5873. name: "Celestial",
  5874. height: math.unit(765000, "miles")
  5875. },
  5876. ]
  5877. ))
  5878. characterMakers.push(() => makeCharacter(
  5879. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5880. {
  5881. front: {
  5882. height: math.unit(5 + 3 / 4, "feet"),
  5883. weight: math.unit(120, "lbs"),
  5884. name: "Front",
  5885. image: {
  5886. source: "./media/characters/tails/front.svg"
  5887. }
  5888. }
  5889. },
  5890. [
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(5 + 3 / 4, "feet"),
  5894. default: true
  5895. }
  5896. ]
  5897. ))
  5898. characterMakers.push(() => makeCharacter(
  5899. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5900. {
  5901. front: {
  5902. height: math.unit(4, "feet"),
  5903. weight: math.unit(50, "lbs"),
  5904. name: "Front",
  5905. image: {
  5906. source: "./media/characters/rainy/front.svg"
  5907. }
  5908. }
  5909. },
  5910. [
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(800, "feet"),
  5914. default: true
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5920. {
  5921. front: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(150, "lbs"),
  5924. name: "Front",
  5925. image: {
  5926. source: "./media/characters/rainier/front.svg"
  5927. }
  5928. }
  5929. },
  5930. [
  5931. {
  5932. name: "Micro",
  5933. height: math.unit(2, "mm"),
  5934. default: true
  5935. }
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5940. {
  5941. front: {
  5942. height: math.unit(8 + 4/12, "feet"),
  5943. name: "Front",
  5944. image: {
  5945. source: "./media/characters/andy-renard/front.svg",
  5946. extra: 1839/1726,
  5947. bottom: 134/1973
  5948. }
  5949. },
  5950. back: {
  5951. height: math.unit(8 + 4/12, "feet"),
  5952. name: "Back",
  5953. image: {
  5954. source: "./media/characters/andy-renard/back.svg",
  5955. extra: 1838/1710,
  5956. bottom: 105/1943
  5957. }
  5958. },
  5959. },
  5960. [
  5961. {
  5962. name: "Tall",
  5963. height: math.unit(8 + 4/12, "feet")
  5964. },
  5965. {
  5966. name: "Mini Macro",
  5967. height: math.unit(15, "feet"),
  5968. default: true
  5969. },
  5970. {
  5971. name: "Macro",
  5972. height: math.unit(100, "feet")
  5973. },
  5974. {
  5975. name: "Mega Macro",
  5976. height: math.unit(1000, "feet")
  5977. },
  5978. {
  5979. name: "Giga Macro",
  5980. height: math.unit(10, "miles")
  5981. },
  5982. {
  5983. name: "God Macro",
  5984. height: math.unit(1, "multiverse")
  5985. },
  5986. ]
  5987. ))
  5988. characterMakers.push(() => makeCharacter(
  5989. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5990. {
  5991. front: {
  5992. height: math.unit(6, "feet"),
  5993. weight: math.unit(210, "lbs"),
  5994. name: "Front",
  5995. image: {
  5996. source: "./media/characters/cimmaron/front-sfw.svg",
  5997. extra: 701 / 676,
  5998. bottom: 0.046
  5999. }
  6000. },
  6001. back: {
  6002. height: math.unit(6, "feet"),
  6003. weight: math.unit(210, "lbs"),
  6004. name: "Back",
  6005. image: {
  6006. source: "./media/characters/cimmaron/back-sfw.svg",
  6007. extra: 701 / 676,
  6008. bottom: 0.046
  6009. }
  6010. },
  6011. frontNsfw: {
  6012. height: math.unit(6, "feet"),
  6013. weight: math.unit(210, "lbs"),
  6014. name: "Front (NSFW)",
  6015. image: {
  6016. source: "./media/characters/cimmaron/front-nsfw.svg",
  6017. extra: 701 / 676,
  6018. bottom: 0.046
  6019. }
  6020. },
  6021. backNsfw: {
  6022. height: math.unit(6, "feet"),
  6023. weight: math.unit(210, "lbs"),
  6024. name: "Back (NSFW)",
  6025. image: {
  6026. source: "./media/characters/cimmaron/back-nsfw.svg",
  6027. extra: 701 / 676,
  6028. bottom: 0.046
  6029. }
  6030. },
  6031. dick: {
  6032. height: math.unit(1.714, "feet"),
  6033. name: "Dick",
  6034. image: {
  6035. source: "./media/characters/cimmaron/dick.svg"
  6036. }
  6037. },
  6038. },
  6039. [
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(6, "feet"),
  6043. default: true
  6044. },
  6045. {
  6046. name: "Macro Mayor",
  6047. height: math.unit(350, "meters")
  6048. },
  6049. ]
  6050. ))
  6051. characterMakers.push(() => makeCharacter(
  6052. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6053. {
  6054. front: {
  6055. height: math.unit(6, "feet"),
  6056. weight: math.unit(200, "lbs"),
  6057. name: "Front",
  6058. image: {
  6059. source: "./media/characters/akari/front.svg",
  6060. extra: 962 / 901,
  6061. bottom: 0.04
  6062. }
  6063. }
  6064. },
  6065. [
  6066. {
  6067. name: "Micro",
  6068. height: math.unit(5, "inches"),
  6069. default: true
  6070. },
  6071. {
  6072. name: "Normal",
  6073. height: math.unit(7, "feet")
  6074. },
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6079. {
  6080. front: {
  6081. height: math.unit(6, "feet"),
  6082. weight: math.unit(140, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/cynosura/front.svg",
  6086. extra: 896 / 847
  6087. }
  6088. },
  6089. back: {
  6090. height: math.unit(6, "feet"),
  6091. weight: math.unit(140, "lbs"),
  6092. name: "Back",
  6093. image: {
  6094. source: "./media/characters/cynosura/back.svg",
  6095. extra: 1365 / 1250
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Micro",
  6102. height: math.unit(4, "inches")
  6103. },
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(5.75, "feet"),
  6107. default: true
  6108. },
  6109. {
  6110. name: "Tall",
  6111. height: math.unit(10, "feet")
  6112. },
  6113. {
  6114. name: "Big",
  6115. height: math.unit(20, "feet")
  6116. },
  6117. {
  6118. name: "Macro",
  6119. height: math.unit(50, "feet")
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6125. {
  6126. front: {
  6127. height: math.unit(13 + 2/12, "feet"),
  6128. weight: math.unit(800, "kg"),
  6129. name: "Front",
  6130. image: {
  6131. source: "./media/characters/gin/front.svg",
  6132. extra: 1312/1191,
  6133. bottom: 45/1357
  6134. }
  6135. },
  6136. mouth: {
  6137. height: math.unit(2.39 * 1.8, "feet"),
  6138. name: "Mouth",
  6139. image: {
  6140. source: "./media/characters/gin/mouth.svg"
  6141. }
  6142. },
  6143. hand: {
  6144. height: math.unit(1.57 * 2.19, "feet"),
  6145. name: "Hand",
  6146. image: {
  6147. source: "./media/characters/gin/hand.svg"
  6148. }
  6149. },
  6150. foot: {
  6151. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6152. name: "Foot",
  6153. image: {
  6154. source: "./media/characters/gin/foot.svg"
  6155. }
  6156. },
  6157. sole: {
  6158. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6159. name: "Sole",
  6160. image: {
  6161. source: "./media/characters/gin/sole.svg"
  6162. }
  6163. },
  6164. },
  6165. [
  6166. {
  6167. name: "Very Small",
  6168. height: math.unit(13 + 2 / 12, "feet")
  6169. },
  6170. {
  6171. name: "Micro",
  6172. height: math.unit(600, "miles")
  6173. },
  6174. {
  6175. name: "Regular",
  6176. height: math.unit(20, "earths"),
  6177. default: true
  6178. },
  6179. {
  6180. name: "Macro",
  6181. height: math.unit(2.2, "solarradii")
  6182. },
  6183. {
  6184. name: "Teramacro",
  6185. height: math.unit(1.2, "galaxies")
  6186. },
  6187. {
  6188. name: "Omegamacro",
  6189. height: math.unit(200, "universes")
  6190. },
  6191. ]
  6192. ))
  6193. characterMakers.push(() => makeCharacter(
  6194. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6195. {
  6196. front: {
  6197. height: math.unit(6 + 1 / 6, "feet"),
  6198. weight: math.unit(178, "lbs"),
  6199. name: "Front",
  6200. image: {
  6201. source: "./media/characters/guy/front.svg"
  6202. }
  6203. }
  6204. },
  6205. [
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(6 + 1 / 6, "feet"),
  6209. default: true
  6210. },
  6211. {
  6212. name: "Large",
  6213. height: math.unit(25 + 7 / 12, "feet")
  6214. },
  6215. {
  6216. name: "Macro",
  6217. height: math.unit(60 + 9 / 12, "feet")
  6218. },
  6219. {
  6220. name: "Macro+",
  6221. height: math.unit(246, "feet")
  6222. },
  6223. {
  6224. name: "Macro++",
  6225. height: math.unit(878, "feet")
  6226. }
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6231. {
  6232. front: {
  6233. height: math.unit(9, "feet"),
  6234. weight: math.unit(800, "lbs"),
  6235. name: "Front",
  6236. image: {
  6237. source: "./media/characters/tiberius/front.svg",
  6238. extra: 2295 / 2071
  6239. }
  6240. },
  6241. back: {
  6242. height: math.unit(9, "feet"),
  6243. weight: math.unit(800, "lbs"),
  6244. name: "Back",
  6245. image: {
  6246. source: "./media/characters/tiberius/back.svg",
  6247. extra: 2373 / 2160
  6248. }
  6249. },
  6250. },
  6251. [
  6252. {
  6253. name: "Normal",
  6254. height: math.unit(9, "feet"),
  6255. default: true
  6256. }
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6261. {
  6262. front: {
  6263. height: math.unit(6, "feet"),
  6264. weight: math.unit(600, "lbs"),
  6265. name: "Front",
  6266. image: {
  6267. source: "./media/characters/surgo/front.svg",
  6268. extra: 3591 / 2227
  6269. }
  6270. },
  6271. back: {
  6272. height: math.unit(6, "feet"),
  6273. weight: math.unit(600, "lbs"),
  6274. name: "Back",
  6275. image: {
  6276. source: "./media/characters/surgo/back.svg",
  6277. extra: 3557 / 2228
  6278. }
  6279. },
  6280. laying: {
  6281. height: math.unit(6 * 0.85, "feet"),
  6282. weight: math.unit(600, "lbs"),
  6283. name: "Laying",
  6284. image: {
  6285. source: "./media/characters/surgo/laying.svg"
  6286. }
  6287. },
  6288. },
  6289. [
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(6, "feet"),
  6293. default: true
  6294. }
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6299. {
  6300. side: {
  6301. height: math.unit(6, "feet"),
  6302. weight: math.unit(150, "lbs"),
  6303. name: "Side",
  6304. image: {
  6305. source: "./media/characters/cibus/side.svg",
  6306. extra: 800 / 400
  6307. }
  6308. },
  6309. },
  6310. [
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(6, "feet"),
  6314. default: true
  6315. }
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6320. {
  6321. front: {
  6322. height: math.unit(6, "feet"),
  6323. weight: math.unit(240, "lbs"),
  6324. name: "Front",
  6325. image: {
  6326. source: "./media/characters/nibbles/front.svg"
  6327. }
  6328. },
  6329. side: {
  6330. height: math.unit(6, "feet"),
  6331. weight: math.unit(240, "lbs"),
  6332. name: "Side",
  6333. image: {
  6334. source: "./media/characters/nibbles/side.svg"
  6335. }
  6336. },
  6337. },
  6338. [
  6339. {
  6340. name: "Normal",
  6341. height: math.unit(9, "feet"),
  6342. default: true
  6343. }
  6344. ]
  6345. ))
  6346. characterMakers.push(() => makeCharacter(
  6347. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6348. {
  6349. side: {
  6350. height: math.unit(5 + 1 / 6, "feet"),
  6351. weight: math.unit(130, "lbs"),
  6352. name: "Side",
  6353. image: {
  6354. source: "./media/characters/rikky/side.svg",
  6355. extra: 851 / 801
  6356. }
  6357. },
  6358. },
  6359. [
  6360. {
  6361. name: "Normal",
  6362. height: math.unit(5 + 1 / 6, "feet")
  6363. },
  6364. {
  6365. name: "Macro",
  6366. height: math.unit(152, "feet"),
  6367. default: true
  6368. },
  6369. {
  6370. name: "Megamacro",
  6371. height: math.unit(7, "miles")
  6372. }
  6373. ]
  6374. ))
  6375. characterMakers.push(() => makeCharacter(
  6376. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6377. {
  6378. side: {
  6379. height: math.unit(370, "cm"),
  6380. weight: math.unit(350, "lbs"),
  6381. name: "Side",
  6382. image: {
  6383. source: "./media/characters/malfressa/side.svg"
  6384. }
  6385. },
  6386. walking: {
  6387. height: math.unit(370, "cm"),
  6388. weight: math.unit(350, "lbs"),
  6389. name: "Walking",
  6390. image: {
  6391. source: "./media/characters/malfressa/walking.svg"
  6392. }
  6393. },
  6394. feral: {
  6395. height: math.unit(2500, "cm"),
  6396. weight: math.unit(100000, "lbs"),
  6397. name: "Feral",
  6398. image: {
  6399. source: "./media/characters/malfressa/feral.svg",
  6400. extra: 2108 / 837,
  6401. bottom: 0.02
  6402. }
  6403. },
  6404. },
  6405. [
  6406. {
  6407. name: "Normal",
  6408. height: math.unit(370, "cm")
  6409. },
  6410. {
  6411. name: "Macro",
  6412. height: math.unit(300, "meters"),
  6413. default: true
  6414. }
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(60, "kg"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/jaro/front.svg",
  6426. extra: 845/817,
  6427. bottom: 45/890
  6428. }
  6429. },
  6430. back: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(60, "kg"),
  6433. name: "Back",
  6434. image: {
  6435. source: "./media/characters/jaro/back.svg",
  6436. extra: 847/817,
  6437. bottom: 34/881
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Micro",
  6444. height: math.unit(7, "inches")
  6445. },
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(5.5, "feet"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Minimacro",
  6453. height: math.unit(20, "feet")
  6454. },
  6455. {
  6456. name: "Macro",
  6457. height: math.unit(200, "meters")
  6458. }
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6463. {
  6464. front: {
  6465. height: math.unit(6, "feet"),
  6466. weight: math.unit(195, "lb"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/rogue/front.svg"
  6470. }
  6471. },
  6472. },
  6473. [
  6474. {
  6475. name: "Macro",
  6476. height: math.unit(90, "feet"),
  6477. default: true
  6478. },
  6479. ]
  6480. ))
  6481. characterMakers.push(() => makeCharacter(
  6482. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6483. {
  6484. front: {
  6485. height: math.unit(5 + 8 / 12, "feet"),
  6486. weight: math.unit(140, "lb"),
  6487. name: "Front",
  6488. image: {
  6489. source: "./media/characters/piper/front.svg",
  6490. extra: 3948/3655,
  6491. bottom: 0/3948
  6492. }
  6493. },
  6494. },
  6495. [
  6496. {
  6497. name: "Micro",
  6498. height: math.unit(2, "inches")
  6499. },
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(5 + 8 / 12, "feet")
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(250, "feet"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Megamacro",
  6511. height: math.unit(7, "miles")
  6512. },
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6517. {
  6518. front: {
  6519. height: math.unit(6, "feet"),
  6520. weight: math.unit(220, "lb"),
  6521. name: "Front",
  6522. image: {
  6523. source: "./media/characters/gemini/front.svg"
  6524. }
  6525. },
  6526. back: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(220, "lb"),
  6529. name: "Back",
  6530. image: {
  6531. source: "./media/characters/gemini/back.svg"
  6532. }
  6533. },
  6534. kneeling: {
  6535. height: math.unit(6 / 1.5, "feet"),
  6536. weight: math.unit(220, "lb"),
  6537. name: "Kneeling",
  6538. image: {
  6539. source: "./media/characters/gemini/kneeling.svg",
  6540. bottom: 0.02
  6541. }
  6542. },
  6543. },
  6544. [
  6545. {
  6546. name: "Macro",
  6547. height: math.unit(300, "meters"),
  6548. default: true
  6549. },
  6550. {
  6551. name: "Megamacro",
  6552. height: math.unit(6900, "meters")
  6553. },
  6554. ]
  6555. ))
  6556. characterMakers.push(() => makeCharacter(
  6557. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6558. {
  6559. anthro: {
  6560. height: math.unit(2.35, "meters"),
  6561. weight: math.unit(73, "kg"),
  6562. name: "Anthro",
  6563. image: {
  6564. source: "./media/characters/alicia/anthro.svg",
  6565. extra: 2571 / 2385,
  6566. bottom: 75 / 2648
  6567. }
  6568. },
  6569. paw: {
  6570. height: math.unit(1.32, "feet"),
  6571. name: "Paw",
  6572. image: {
  6573. source: "./media/characters/alicia/paw.svg"
  6574. }
  6575. },
  6576. feral: {
  6577. height: math.unit(1.69, "meters"),
  6578. weight: math.unit(73, "kg"),
  6579. name: "Feral",
  6580. image: {
  6581. source: "./media/characters/alicia/feral.svg",
  6582. extra: 2123 / 1715,
  6583. bottom: 222 / 2349
  6584. }
  6585. },
  6586. },
  6587. [
  6588. {
  6589. name: "Normal",
  6590. height: math.unit(2.35, "meters")
  6591. },
  6592. {
  6593. name: "Macro",
  6594. height: math.unit(60, "meters"),
  6595. default: true
  6596. },
  6597. {
  6598. name: "Megamacro",
  6599. height: math.unit(10000, "kilometers")
  6600. },
  6601. ]
  6602. ))
  6603. characterMakers.push(() => makeCharacter(
  6604. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6605. {
  6606. front: {
  6607. height: math.unit(7, "feet"),
  6608. weight: math.unit(250, "lbs"),
  6609. name: "Front",
  6610. image: {
  6611. source: "./media/characters/archy/front.svg"
  6612. }
  6613. }
  6614. },
  6615. [
  6616. {
  6617. name: "Micro",
  6618. height: math.unit(1, "inch")
  6619. },
  6620. {
  6621. name: "Shorty",
  6622. height: math.unit(5, "feet")
  6623. },
  6624. {
  6625. name: "Normal",
  6626. height: math.unit(7, "feet")
  6627. },
  6628. {
  6629. name: "Macro",
  6630. height: math.unit(600, "meters"),
  6631. default: true
  6632. },
  6633. {
  6634. name: "Megamacro",
  6635. height: math.unit(1, "mile")
  6636. },
  6637. ]
  6638. ))
  6639. characterMakers.push(() => makeCharacter(
  6640. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6641. {
  6642. front: {
  6643. height: math.unit(1.65, "meters"),
  6644. weight: math.unit(74, "kg"),
  6645. name: "Front",
  6646. image: {
  6647. source: "./media/characters/berri/front.svg",
  6648. extra: 857 / 837,
  6649. bottom: 18 / 877
  6650. }
  6651. },
  6652. bum: {
  6653. height: math.unit(1.46, "feet"),
  6654. name: "Bum",
  6655. image: {
  6656. source: "./media/characters/berri/bum.svg"
  6657. }
  6658. },
  6659. mouth: {
  6660. height: math.unit(0.44, "feet"),
  6661. name: "Mouth",
  6662. image: {
  6663. source: "./media/characters/berri/mouth.svg"
  6664. }
  6665. },
  6666. paw: {
  6667. height: math.unit(0.826, "feet"),
  6668. name: "Paw",
  6669. image: {
  6670. source: "./media/characters/berri/paw.svg"
  6671. }
  6672. },
  6673. },
  6674. [
  6675. {
  6676. name: "Normal",
  6677. height: math.unit(1.65, "meters")
  6678. },
  6679. {
  6680. name: "Macro",
  6681. height: math.unit(60, "m"),
  6682. default: true
  6683. },
  6684. {
  6685. name: "Megamacro",
  6686. height: math.unit(9.213, "km")
  6687. },
  6688. {
  6689. name: "Planet Eater",
  6690. height: math.unit(489, "megameters")
  6691. },
  6692. {
  6693. name: "Teramacro",
  6694. height: math.unit(2471635000000, "meters")
  6695. },
  6696. {
  6697. name: "Examacro",
  6698. height: math.unit(8.0624e+26, "meters")
  6699. }
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(1.72, "meters"),
  6707. weight: math.unit(68, "kg"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/lexi/front.svg"
  6711. }
  6712. }
  6713. },
  6714. [
  6715. {
  6716. name: "Very Smol",
  6717. height: math.unit(10, "mm")
  6718. },
  6719. {
  6720. name: "Micro",
  6721. height: math.unit(6.8, "cm"),
  6722. default: true
  6723. },
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(1.72, "m")
  6727. }
  6728. ]
  6729. ))
  6730. characterMakers.push(() => makeCharacter(
  6731. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6732. {
  6733. front: {
  6734. height: math.unit(1.69, "meters"),
  6735. weight: math.unit(68, "kg"),
  6736. name: "Front",
  6737. image: {
  6738. source: "./media/characters/martin/front.svg",
  6739. extra: 596 / 581
  6740. }
  6741. }
  6742. },
  6743. [
  6744. {
  6745. name: "Micro",
  6746. height: math.unit(6.85, "cm"),
  6747. default: true
  6748. },
  6749. {
  6750. name: "Normal",
  6751. height: math.unit(1.69, "m")
  6752. }
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(1.69, "meters"),
  6760. weight: math.unit(68, "kg"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/juno/front.svg"
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Micro",
  6770. height: math.unit(7, "cm")
  6771. },
  6772. {
  6773. name: "Normal",
  6774. height: math.unit(1.89, "m")
  6775. },
  6776. {
  6777. name: "Macro",
  6778. height: math.unit(353, "meters"),
  6779. default: true
  6780. }
  6781. ]
  6782. ))
  6783. characterMakers.push(() => makeCharacter(
  6784. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6785. {
  6786. front: {
  6787. height: math.unit(1.93, "meters"),
  6788. weight: math.unit(83, "kg"),
  6789. name: "Front",
  6790. image: {
  6791. source: "./media/characters/samantha/front.svg"
  6792. }
  6793. },
  6794. frontClothed: {
  6795. height: math.unit(1.93, "meters"),
  6796. weight: math.unit(83, "kg"),
  6797. name: "Front (Clothed)",
  6798. image: {
  6799. source: "./media/characters/samantha/front-clothed.svg"
  6800. }
  6801. },
  6802. back: {
  6803. height: math.unit(1.93, "meters"),
  6804. weight: math.unit(83, "kg"),
  6805. name: "Back",
  6806. image: {
  6807. source: "./media/characters/samantha/back.svg"
  6808. }
  6809. },
  6810. },
  6811. [
  6812. {
  6813. name: "Normal",
  6814. height: math.unit(1.93, "m")
  6815. },
  6816. {
  6817. name: "Macro",
  6818. height: math.unit(74, "meters"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Macro+",
  6823. height: math.unit(223, "meters"),
  6824. },
  6825. {
  6826. name: "Megamacro",
  6827. height: math.unit(8381, "meters"),
  6828. },
  6829. {
  6830. name: "Megamacro+",
  6831. height: math.unit(12000, "kilometers")
  6832. },
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6837. {
  6838. front: {
  6839. height: math.unit(1.92, "meters"),
  6840. weight: math.unit(80, "kg"),
  6841. name: "Front",
  6842. image: {
  6843. source: "./media/characters/dr-clay/front.svg"
  6844. }
  6845. },
  6846. frontClothed: {
  6847. height: math.unit(1.92, "meters"),
  6848. weight: math.unit(80, "kg"),
  6849. name: "Front (Clothed)",
  6850. image: {
  6851. source: "./media/characters/dr-clay/front-clothed.svg"
  6852. }
  6853. }
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(1.92, "m")
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(214, "meters"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Macro+",
  6867. height: math.unit(12.237, "meters"),
  6868. },
  6869. {
  6870. name: "Megamacro",
  6871. height: math.unit(557, "megameters"),
  6872. },
  6873. {
  6874. name: "Unimaginable",
  6875. height: math.unit(120e9, "lightyears")
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(2, "meters"),
  6884. weight: math.unit(80, "kg"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6888. }
  6889. }
  6890. },
  6891. [
  6892. {
  6893. name: "Teramacro",
  6894. height: math.unit(500000, "lightyears"),
  6895. default: true
  6896. },
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6901. {
  6902. crux: {
  6903. height: math.unit(2, "meters"),
  6904. weight: math.unit(150, "kg"),
  6905. name: "Crux",
  6906. image: {
  6907. source: "./media/characters/vemus/crux.svg",
  6908. extra: 1074/936,
  6909. bottom: 23/1097
  6910. }
  6911. },
  6912. skunkTanuki: {
  6913. height: math.unit(2, "meters"),
  6914. weight: math.unit(150, "kg"),
  6915. name: "Skunk-Tanuki",
  6916. image: {
  6917. source: "./media/characters/vemus/skunk-tanuki.svg",
  6918. extra: 926/893,
  6919. bottom: 20/946
  6920. }
  6921. },
  6922. },
  6923. [
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(3.75, "meters"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Big",
  6931. height: math.unit(8, "meters")
  6932. },
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(100, "meters")
  6936. },
  6937. {
  6938. name: "Macro+",
  6939. height: math.unit(1500, "meters")
  6940. },
  6941. {
  6942. name: "Stellar",
  6943. height: math.unit(14e8, "meters")
  6944. },
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(2, "meters"),
  6952. weight: math.unit(70, "kg"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/beherit/front.svg",
  6956. extra: 1234/1109,
  6957. bottom: 55/1289
  6958. }
  6959. }
  6960. },
  6961. [
  6962. {
  6963. name: "Normal",
  6964. height: math.unit(6, "feet")
  6965. },
  6966. {
  6967. name: "Lorg",
  6968. height: math.unit(25, "feet"),
  6969. default: true
  6970. },
  6971. {
  6972. name: "Lorger",
  6973. height: math.unit(75, "feet")
  6974. },
  6975. {
  6976. name: "Macro",
  6977. height: math.unit(200, "meters")
  6978. },
  6979. ]
  6980. ))
  6981. characterMakers.push(() => makeCharacter(
  6982. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6983. {
  6984. front: {
  6985. height: math.unit(2, "meters"),
  6986. weight: math.unit(150, "kg"),
  6987. name: "Front",
  6988. image: {
  6989. source: "./media/characters/everett/front.svg",
  6990. extra: 1017/866,
  6991. bottom: 86/1103
  6992. }
  6993. },
  6994. paw: {
  6995. height: math.unit(2 / 3.6, "meters"),
  6996. name: "Paw",
  6997. image: {
  6998. source: "./media/characters/everett/paw.svg"
  6999. }
  7000. },
  7001. },
  7002. [
  7003. {
  7004. name: "Normal",
  7005. height: math.unit(15, "feet"),
  7006. default: true
  7007. },
  7008. {
  7009. name: "Lorg",
  7010. height: math.unit(70, "feet"),
  7011. default: true
  7012. },
  7013. {
  7014. name: "Lorger",
  7015. height: math.unit(250, "feet")
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(500, "meters")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(2, "meters"),
  7028. weight: math.unit(86, "kg"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/rose/front.svg",
  7032. extra: 1785/1636,
  7033. bottom: 30/1815
  7034. }
  7035. },
  7036. frontSporty: {
  7037. height: math.unit(2, "meters"),
  7038. weight: math.unit(86, "kg"),
  7039. name: "Front (Sporty)",
  7040. image: {
  7041. source: "./media/characters/rose/front-sporty.svg",
  7042. extra: 350/335,
  7043. bottom: 10/360
  7044. }
  7045. },
  7046. frontAlt: {
  7047. height: math.unit(1.6, "meters"),
  7048. weight: math.unit(86, "kg"),
  7049. name: "Front (Alt)",
  7050. image: {
  7051. source: "./media/characters/rose/front-alt.svg",
  7052. extra: 299/283,
  7053. bottom: 3/302
  7054. }
  7055. },
  7056. plush: {
  7057. height: math.unit(2, "meters"),
  7058. weight: math.unit(86/3, "kg"),
  7059. name: "Plush",
  7060. image: {
  7061. source: "./media/characters/rose/plush.svg",
  7062. extra: 361/337,
  7063. bottom: 11/372
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "True Micro",
  7070. height: math.unit(9, "cm")
  7071. },
  7072. {
  7073. name: "Micro",
  7074. height: math.unit(16, "cm")
  7075. },
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(1.85, "meters"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Mini-Macro",
  7083. height: math.unit(5, "meters")
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(15, "meters")
  7088. },
  7089. {
  7090. name: "True Macro",
  7091. height: math.unit(40, "meters")
  7092. },
  7093. {
  7094. name: "City Scale",
  7095. height: math.unit(1, "km")
  7096. },
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(2, "meters"),
  7104. weight: math.unit(350, "lbs"),
  7105. name: "Front",
  7106. image: {
  7107. source: "./media/characters/regal/front.svg"
  7108. }
  7109. },
  7110. back: {
  7111. height: math.unit(2, "meters"),
  7112. weight: math.unit(350, "lbs"),
  7113. name: "Back",
  7114. image: {
  7115. source: "./media/characters/regal/back.svg"
  7116. }
  7117. },
  7118. },
  7119. [
  7120. {
  7121. name: "Macro",
  7122. height: math.unit(350, "feet"),
  7123. default: true
  7124. }
  7125. ]
  7126. ))
  7127. characterMakers.push(() => makeCharacter(
  7128. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7129. {
  7130. front: {
  7131. height: math.unit(4 + 11 / 12, "feet"),
  7132. weight: math.unit(100, "lbs"),
  7133. name: "Front",
  7134. image: {
  7135. source: "./media/characters/opal/front.svg"
  7136. }
  7137. },
  7138. frontAlt: {
  7139. height: math.unit(4 + 11 / 12, "feet"),
  7140. weight: math.unit(100, "lbs"),
  7141. name: "Front (Alt)",
  7142. image: {
  7143. source: "./media/characters/opal/front-alt.svg"
  7144. }
  7145. },
  7146. },
  7147. [
  7148. {
  7149. name: "Small",
  7150. height: math.unit(4 + 11 / 12, "feet")
  7151. },
  7152. {
  7153. name: "Normal",
  7154. height: math.unit(20, "feet"),
  7155. default: true
  7156. },
  7157. {
  7158. name: "Macro",
  7159. height: math.unit(120, "feet")
  7160. },
  7161. {
  7162. name: "Megamacro",
  7163. height: math.unit(80, "miles")
  7164. },
  7165. {
  7166. name: "True Size",
  7167. height: math.unit(100000, "lightyears")
  7168. },
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7173. {
  7174. front: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(200, "lbs"),
  7177. name: "Front",
  7178. image: {
  7179. source: "./media/characters/vector-wuff/front.svg"
  7180. }
  7181. }
  7182. },
  7183. [
  7184. {
  7185. name: "Normal",
  7186. height: math.unit(2.8, "meters")
  7187. },
  7188. {
  7189. name: "Macro",
  7190. height: math.unit(450, "meters"),
  7191. default: true
  7192. },
  7193. {
  7194. name: "Megamacro",
  7195. height: math.unit(15, "kilometers")
  7196. }
  7197. ]
  7198. ))
  7199. characterMakers.push(() => makeCharacter(
  7200. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7201. {
  7202. front: {
  7203. height: math.unit(6, "feet"),
  7204. weight: math.unit(256, "lbs"),
  7205. name: "Front",
  7206. image: {
  7207. source: "./media/characters/dannik/front.svg"
  7208. }
  7209. }
  7210. },
  7211. [
  7212. {
  7213. name: "Macro",
  7214. height: math.unit(69.57, "meters"),
  7215. default: true
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7221. {
  7222. front: {
  7223. height: math.unit(6, "feet"),
  7224. weight: math.unit(120, "lbs"),
  7225. name: "Front",
  7226. image: {
  7227. source: "./media/characters/azura-saharah/front.svg"
  7228. }
  7229. },
  7230. back: {
  7231. height: math.unit(6, "feet"),
  7232. weight: math.unit(120, "lbs"),
  7233. name: "Back",
  7234. image: {
  7235. source: "./media/characters/azura-saharah/back.svg"
  7236. }
  7237. },
  7238. },
  7239. [
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(100, "feet"),
  7243. default: true
  7244. },
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7249. {
  7250. side: {
  7251. height: math.unit(5 + 4 / 12, "feet"),
  7252. weight: math.unit(163, "lbs"),
  7253. name: "Side",
  7254. image: {
  7255. source: "./media/characters/kennedy/side.svg"
  7256. }
  7257. }
  7258. },
  7259. [
  7260. {
  7261. name: "Standard Doggo",
  7262. height: math.unit(5 + 4 / 12, "feet")
  7263. },
  7264. {
  7265. name: "Big Doggo",
  7266. height: math.unit(25 + 3 / 12, "feet"),
  7267. default: true
  7268. },
  7269. ]
  7270. ))
  7271. characterMakers.push(() => makeCharacter(
  7272. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7273. {
  7274. front: {
  7275. height: math.unit(5 + 5/12, "feet"),
  7276. weight: math.unit(100, "lbs"),
  7277. name: "Front",
  7278. image: {
  7279. source: "./media/characters/odios-de-lunar/front.svg",
  7280. extra: 1468/1323,
  7281. bottom: 22/1490
  7282. }
  7283. }
  7284. },
  7285. [
  7286. {
  7287. name: "Micro",
  7288. height: math.unit(3, "inches")
  7289. },
  7290. {
  7291. name: "Normal",
  7292. height: math.unit(5.5, "feet"),
  7293. default: true
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(100, "feet")
  7298. },
  7299. ]
  7300. ))
  7301. characterMakers.push(() => makeCharacter(
  7302. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7303. {
  7304. back: {
  7305. height: math.unit(6, "feet"),
  7306. weight: math.unit(220, "lbs"),
  7307. name: "Back",
  7308. image: {
  7309. source: "./media/characters/mandake/back.svg"
  7310. }
  7311. }
  7312. },
  7313. [
  7314. {
  7315. name: "Normal",
  7316. height: math.unit(7, "feet"),
  7317. default: true
  7318. },
  7319. {
  7320. name: "Macro",
  7321. height: math.unit(78, "feet")
  7322. },
  7323. {
  7324. name: "Macro+",
  7325. height: math.unit(300, "meters")
  7326. },
  7327. {
  7328. name: "Macro++",
  7329. height: math.unit(2400, "feet")
  7330. },
  7331. {
  7332. name: "Megamacro",
  7333. height: math.unit(5167, "meters")
  7334. },
  7335. {
  7336. name: "Gigamacro",
  7337. height: math.unit(41769, "miles")
  7338. },
  7339. ]
  7340. ))
  7341. characterMakers.push(() => makeCharacter(
  7342. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7343. {
  7344. front: {
  7345. height: math.unit(6, "feet"),
  7346. weight: math.unit(120, "lbs"),
  7347. name: "Front",
  7348. image: {
  7349. source: "./media/characters/yozey/front.svg"
  7350. }
  7351. },
  7352. frontAlt: {
  7353. height: math.unit(6, "feet"),
  7354. weight: math.unit(120, "lbs"),
  7355. name: "Front (Alt)",
  7356. image: {
  7357. source: "./media/characters/yozey/front-alt.svg"
  7358. }
  7359. },
  7360. side: {
  7361. height: math.unit(6, "feet"),
  7362. weight: math.unit(120, "lbs"),
  7363. name: "Side",
  7364. image: {
  7365. source: "./media/characters/yozey/side.svg"
  7366. }
  7367. },
  7368. },
  7369. [
  7370. {
  7371. name: "Micro",
  7372. height: math.unit(3, "inches"),
  7373. default: true
  7374. },
  7375. {
  7376. name: "Normal",
  7377. height: math.unit(6, "feet")
  7378. }
  7379. ]
  7380. ))
  7381. characterMakers.push(() => makeCharacter(
  7382. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7383. {
  7384. front: {
  7385. height: math.unit(6, "feet"),
  7386. weight: math.unit(103, "lbs"),
  7387. name: "Front",
  7388. image: {
  7389. source: "./media/characters/valeska-voss/front.svg"
  7390. }
  7391. }
  7392. },
  7393. [
  7394. {
  7395. name: "Mini-Sized Sub",
  7396. height: math.unit(3.1, "inches")
  7397. },
  7398. {
  7399. name: "Mid-Sized Sub",
  7400. height: math.unit(6.2, "inches")
  7401. },
  7402. {
  7403. name: "Full-Sized Sub",
  7404. height: math.unit(9.3, "inches")
  7405. },
  7406. {
  7407. name: "Normal",
  7408. height: math.unit(5 + 2 / 12, "foot"),
  7409. default: true
  7410. },
  7411. ]
  7412. ))
  7413. characterMakers.push(() => makeCharacter(
  7414. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7415. {
  7416. front: {
  7417. height: math.unit(6, "feet"),
  7418. weight: math.unit(160, "lbs"),
  7419. name: "Front",
  7420. image: {
  7421. source: "./media/characters/gene-zeta/front.svg",
  7422. extra: 3006 / 2826,
  7423. bottom: 182 / 3188
  7424. }
  7425. }
  7426. },
  7427. [
  7428. {
  7429. name: "Micro",
  7430. height: math.unit(6, "inches")
  7431. },
  7432. {
  7433. name: "Normal",
  7434. height: math.unit(5 + 11 / 12, "foot"),
  7435. default: true
  7436. },
  7437. {
  7438. name: "Macro",
  7439. height: math.unit(140, "feet")
  7440. },
  7441. {
  7442. name: "Supercharged",
  7443. height: math.unit(2500, "feet")
  7444. },
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(350, "lbs"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/razinox/front.svg",
  7456. extra: 1686 / 1548,
  7457. bottom: 28.2 / 1868
  7458. }
  7459. },
  7460. back: {
  7461. height: math.unit(6, "feet"),
  7462. weight: math.unit(350, "lbs"),
  7463. name: "Back",
  7464. image: {
  7465. source: "./media/characters/razinox/back.svg",
  7466. extra: 1660 / 1590,
  7467. bottom: 15 / 1665
  7468. }
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "Normal",
  7474. height: math.unit(10 + 8 / 12, "foot")
  7475. },
  7476. {
  7477. name: "Minimacro",
  7478. height: math.unit(15, "foot")
  7479. },
  7480. {
  7481. name: "Macro",
  7482. height: math.unit(60, "foot"),
  7483. default: true
  7484. },
  7485. {
  7486. name: "Megamacro",
  7487. height: math.unit(5, "miles")
  7488. },
  7489. {
  7490. name: "Gigamacro",
  7491. height: math.unit(6000, "miles")
  7492. },
  7493. ]
  7494. ))
  7495. characterMakers.push(() => makeCharacter(
  7496. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7497. {
  7498. front: {
  7499. height: math.unit(6, "feet"),
  7500. weight: math.unit(150, "lbs"),
  7501. name: "Front",
  7502. image: {
  7503. source: "./media/characters/cobalt/front.svg"
  7504. }
  7505. }
  7506. },
  7507. [
  7508. {
  7509. name: "Normal",
  7510. height: math.unit(8 + 1 / 12, "foot")
  7511. },
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(111, "foot"),
  7515. default: true
  7516. },
  7517. {
  7518. name: "Supracosmic",
  7519. height: math.unit(1e42, "feet")
  7520. },
  7521. ]
  7522. ))
  7523. characterMakers.push(() => makeCharacter(
  7524. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7525. {
  7526. front: {
  7527. height: math.unit(6, "feet"),
  7528. weight: math.unit(140, "lbs"),
  7529. name: "Front",
  7530. image: {
  7531. source: "./media/characters/amanda/front.svg"
  7532. }
  7533. }
  7534. },
  7535. [
  7536. {
  7537. name: "Micro",
  7538. height: math.unit(5, "inches"),
  7539. default: true
  7540. },
  7541. ]
  7542. ))
  7543. characterMakers.push(() => makeCharacter(
  7544. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7545. {
  7546. front: {
  7547. height: math.unit(2.75, "meters"),
  7548. weight: math.unit(1200, "lb"),
  7549. name: "Front",
  7550. image: {
  7551. source: "./media/characters/teal/front.svg",
  7552. extra: 2463 / 2320,
  7553. bottom: 166 / 2629
  7554. }
  7555. },
  7556. back: {
  7557. height: math.unit(2.75, "meters"),
  7558. weight: math.unit(1200, "lb"),
  7559. name: "Back",
  7560. image: {
  7561. source: "./media/characters/teal/back.svg",
  7562. extra: 2580 / 2489,
  7563. bottom: 151 / 2731
  7564. }
  7565. },
  7566. sitting: {
  7567. height: math.unit(1.9, "meters"),
  7568. weight: math.unit(1200, "lb"),
  7569. name: "Sitting",
  7570. image: {
  7571. source: "./media/characters/teal/sitting.svg",
  7572. extra: 623 / 590,
  7573. bottom: 121 / 744
  7574. }
  7575. },
  7576. standing: {
  7577. height: math.unit(2.75, "meters"),
  7578. weight: math.unit(1200, "lb"),
  7579. name: "Standing",
  7580. image: {
  7581. source: "./media/characters/teal/standing.svg",
  7582. extra: 923 / 893,
  7583. bottom: 60 / 983
  7584. }
  7585. },
  7586. stretching: {
  7587. height: math.unit(3.65, "meters"),
  7588. weight: math.unit(1200, "lb"),
  7589. name: "Stretching",
  7590. image: {
  7591. source: "./media/characters/teal/stretching.svg",
  7592. extra: 1276 / 1244,
  7593. bottom: 0 / 1276
  7594. }
  7595. },
  7596. legged: {
  7597. height: math.unit(1.3, "meters"),
  7598. weight: math.unit(100, "lb"),
  7599. name: "Legged",
  7600. image: {
  7601. source: "./media/characters/teal/legged.svg",
  7602. extra: 462 / 437,
  7603. bottom: 24 / 486
  7604. }
  7605. },
  7606. naga: {
  7607. height: math.unit(5.4, "meters"),
  7608. weight: math.unit(4000, "lb"),
  7609. name: "Naga",
  7610. image: {
  7611. source: "./media/characters/teal/naga.svg",
  7612. extra: 1902 / 1858,
  7613. bottom: 0 / 1902
  7614. }
  7615. },
  7616. hand: {
  7617. height: math.unit(0.52, "meters"),
  7618. name: "Hand",
  7619. image: {
  7620. source: "./media/characters/teal/hand.svg"
  7621. }
  7622. },
  7623. maw: {
  7624. height: math.unit(0.43, "meters"),
  7625. name: "Maw",
  7626. image: {
  7627. source: "./media/characters/teal/maw.svg"
  7628. }
  7629. },
  7630. slit: {
  7631. height: math.unit(0.25, "meters"),
  7632. name: "Slit",
  7633. image: {
  7634. source: "./media/characters/teal/slit.svg"
  7635. }
  7636. },
  7637. },
  7638. [
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(2.75, "meters"),
  7642. default: true
  7643. },
  7644. {
  7645. name: "Macro",
  7646. height: math.unit(300, "feet")
  7647. },
  7648. {
  7649. name: "Macro+",
  7650. height: math.unit(2000, "feet")
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7656. {
  7657. frontCat: {
  7658. height: math.unit(6, "feet"),
  7659. weight: math.unit(180, "lbs"),
  7660. name: "Front (Cat)",
  7661. image: {
  7662. source: "./media/characters/ravin-amulet/front-cat.svg"
  7663. }
  7664. },
  7665. frontCatAlt: {
  7666. height: math.unit(6, "feet"),
  7667. weight: math.unit(180, "lbs"),
  7668. name: "Front (Alt, Cat)",
  7669. image: {
  7670. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7671. }
  7672. },
  7673. frontWerewolf: {
  7674. height: math.unit(6 * 1.2, "feet"),
  7675. weight: math.unit(225, "lbs"),
  7676. name: "Front (Werewolf)",
  7677. image: {
  7678. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7679. }
  7680. },
  7681. backWerewolf: {
  7682. height: math.unit(6 * 1.2, "feet"),
  7683. weight: math.unit(225, "lbs"),
  7684. name: "Back (Werewolf)",
  7685. image: {
  7686. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7687. }
  7688. },
  7689. },
  7690. [
  7691. {
  7692. name: "Nano",
  7693. height: math.unit(1, "micrometer")
  7694. },
  7695. {
  7696. name: "Micro",
  7697. height: math.unit(1, "inch")
  7698. },
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(6, "feet"),
  7702. default: true
  7703. },
  7704. {
  7705. name: "Macro",
  7706. height: math.unit(60, "feet")
  7707. }
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7712. {
  7713. front: {
  7714. height: math.unit(6, "feet"),
  7715. weight: math.unit(165, "lbs"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/fluoresce/front.svg"
  7719. }
  7720. }
  7721. },
  7722. [
  7723. {
  7724. name: "Micro",
  7725. height: math.unit(6, "cm")
  7726. },
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(5 + 7 / 12, "feet"),
  7730. default: true
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(56, "feet")
  7735. },
  7736. {
  7737. name: "Megamacro",
  7738. height: math.unit(1.9, "miles")
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7744. {
  7745. front: {
  7746. height: math.unit(9 + 6 / 12, "feet"),
  7747. weight: math.unit(523, "lbs"),
  7748. name: "Side",
  7749. image: {
  7750. source: "./media/characters/aurora/side.svg"
  7751. }
  7752. }
  7753. },
  7754. [
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(9 + 6 / 12, "feet")
  7758. },
  7759. {
  7760. name: "Macro",
  7761. height: math.unit(96, "feet"),
  7762. default: true
  7763. },
  7764. {
  7765. name: "Macro+",
  7766. height: math.unit(243, "feet")
  7767. },
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7772. {
  7773. front: {
  7774. height: math.unit(194, "cm"),
  7775. weight: math.unit(90, "kg"),
  7776. name: "Front",
  7777. image: {
  7778. source: "./media/characters/ranek/front.svg"
  7779. }
  7780. },
  7781. side: {
  7782. height: math.unit(194, "cm"),
  7783. weight: math.unit(90, "kg"),
  7784. name: "Side",
  7785. image: {
  7786. source: "./media/characters/ranek/side.svg"
  7787. }
  7788. },
  7789. back: {
  7790. height: math.unit(194, "cm"),
  7791. weight: math.unit(90, "kg"),
  7792. name: "Back",
  7793. image: {
  7794. source: "./media/characters/ranek/back.svg"
  7795. }
  7796. },
  7797. feral: {
  7798. height: math.unit(30, "cm"),
  7799. weight: math.unit(1.6, "lbs"),
  7800. name: "Feral",
  7801. image: {
  7802. source: "./media/characters/ranek/feral.svg"
  7803. }
  7804. },
  7805. },
  7806. [
  7807. {
  7808. name: "Normal",
  7809. height: math.unit(194, "cm"),
  7810. default: true
  7811. },
  7812. {
  7813. name: "Macro",
  7814. height: math.unit(100, "meters")
  7815. },
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7820. {
  7821. front: {
  7822. height: math.unit(5 + 6 / 12, "feet"),
  7823. weight: math.unit(153, "lbs"),
  7824. name: "Front",
  7825. image: {
  7826. source: "./media/characters/andrew-cooper/front.svg"
  7827. }
  7828. },
  7829. },
  7830. [
  7831. {
  7832. name: "Nano",
  7833. height: math.unit(1, "mm")
  7834. },
  7835. {
  7836. name: "Micro",
  7837. height: math.unit(2, "inches")
  7838. },
  7839. {
  7840. name: "Normal",
  7841. height: math.unit(5 + 6 / 12, "feet"),
  7842. default: true
  7843. }
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7848. {
  7849. front: {
  7850. height: math.unit(6, "feet"),
  7851. weight: math.unit(180, "lbs"),
  7852. name: "Front",
  7853. image: {
  7854. source: "./media/characters/akane-sato/front.svg",
  7855. extra: 1219 / 1140
  7856. }
  7857. },
  7858. back: {
  7859. height: math.unit(6, "feet"),
  7860. weight: math.unit(180, "lbs"),
  7861. name: "Back",
  7862. image: {
  7863. source: "./media/characters/akane-sato/back.svg",
  7864. extra: 1219 / 1170
  7865. }
  7866. },
  7867. },
  7868. [
  7869. {
  7870. name: "Normal",
  7871. height: math.unit(2.5, "meters")
  7872. },
  7873. {
  7874. name: "Macro",
  7875. height: math.unit(250, "meters"),
  7876. default: true
  7877. },
  7878. {
  7879. name: "Megamacro",
  7880. height: math.unit(25, "km")
  7881. },
  7882. ]
  7883. ))
  7884. characterMakers.push(() => makeCharacter(
  7885. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7886. {
  7887. front: {
  7888. height: math.unit(6, "feet"),
  7889. weight: math.unit(65, "kg"),
  7890. name: "Front",
  7891. image: {
  7892. source: "./media/characters/rook/front.svg",
  7893. extra: 960 / 950
  7894. }
  7895. }
  7896. },
  7897. [
  7898. {
  7899. name: "Normal",
  7900. height: math.unit(8.8, "feet")
  7901. },
  7902. {
  7903. name: "Macro",
  7904. height: math.unit(88, "feet"),
  7905. default: true
  7906. },
  7907. {
  7908. name: "Megamacro",
  7909. height: math.unit(8, "miles")
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7915. {
  7916. front: {
  7917. height: math.unit(12 + 2 / 12, "feet"),
  7918. weight: math.unit(808, "lbs"),
  7919. name: "Front",
  7920. image: {
  7921. source: "./media/characters/prodigy/front.svg"
  7922. }
  7923. }
  7924. },
  7925. [
  7926. {
  7927. name: "Normal",
  7928. height: math.unit(12 + 2 / 12, "feet"),
  7929. default: true
  7930. },
  7931. {
  7932. name: "Macro",
  7933. height: math.unit(143, "feet")
  7934. },
  7935. {
  7936. name: "Macro+",
  7937. height: math.unit(400, "feet")
  7938. },
  7939. ]
  7940. ))
  7941. characterMakers.push(() => makeCharacter(
  7942. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7943. {
  7944. front: {
  7945. height: math.unit(6, "feet"),
  7946. weight: math.unit(225, "lbs"),
  7947. name: "Front",
  7948. image: {
  7949. source: "./media/characters/daniel/front.svg"
  7950. }
  7951. },
  7952. leaning: {
  7953. height: math.unit(6, "feet"),
  7954. weight: math.unit(225, "lbs"),
  7955. name: "Leaning",
  7956. image: {
  7957. source: "./media/characters/daniel/leaning.svg"
  7958. }
  7959. },
  7960. },
  7961. [
  7962. {
  7963. name: "Macro",
  7964. height: math.unit(1000, "feet"),
  7965. default: true
  7966. },
  7967. ]
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7971. {
  7972. front: {
  7973. height: math.unit(6, "feet"),
  7974. weight: math.unit(88, "lbs"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/chiros/front.svg",
  7978. extra: 306 / 226
  7979. }
  7980. },
  7981. side: {
  7982. height: math.unit(6, "feet"),
  7983. weight: math.unit(88, "lbs"),
  7984. name: "Side",
  7985. image: {
  7986. source: "./media/characters/chiros/side.svg",
  7987. extra: 306 / 226
  7988. }
  7989. },
  7990. },
  7991. [
  7992. {
  7993. name: "Normal",
  7994. height: math.unit(6, "cm"),
  7995. default: true
  7996. },
  7997. ]
  7998. ))
  7999. characterMakers.push(() => makeCharacter(
  8000. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8001. {
  8002. front: {
  8003. height: math.unit(6, "feet"),
  8004. weight: math.unit(100, "lbs"),
  8005. name: "Front",
  8006. image: {
  8007. source: "./media/characters/selka/front.svg",
  8008. extra: 947 / 887
  8009. }
  8010. }
  8011. },
  8012. [
  8013. {
  8014. name: "Normal",
  8015. height: math.unit(5, "cm"),
  8016. default: true
  8017. },
  8018. ]
  8019. ))
  8020. characterMakers.push(() => makeCharacter(
  8021. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8022. {
  8023. front: {
  8024. height: math.unit(8 + 3 / 12, "feet"),
  8025. weight: math.unit(424, "lbs"),
  8026. name: "Front",
  8027. image: {
  8028. source: "./media/characters/verin/front.svg",
  8029. extra: 1845 / 1550
  8030. }
  8031. },
  8032. frontArmored: {
  8033. height: math.unit(8 + 3 / 12, "feet"),
  8034. weight: math.unit(424, "lbs"),
  8035. name: "Front (Armored)",
  8036. image: {
  8037. source: "./media/characters/verin/front-armor.svg",
  8038. extra: 1845 / 1550,
  8039. bottom: 0.01
  8040. }
  8041. },
  8042. back: {
  8043. height: math.unit(8 + 3 / 12, "feet"),
  8044. weight: math.unit(424, "lbs"),
  8045. name: "Back",
  8046. image: {
  8047. source: "./media/characters/verin/back.svg",
  8048. bottom: 0.1,
  8049. extra: 1
  8050. }
  8051. },
  8052. foot: {
  8053. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8054. name: "Foot",
  8055. image: {
  8056. source: "./media/characters/verin/foot.svg"
  8057. }
  8058. },
  8059. },
  8060. [
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(8 + 3 / 12, "feet")
  8064. },
  8065. {
  8066. name: "Minimacro",
  8067. height: math.unit(21, "feet"),
  8068. default: true
  8069. },
  8070. {
  8071. name: "Macro",
  8072. height: math.unit(626, "feet")
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8078. {
  8079. front: {
  8080. height: math.unit(2.718, "meters"),
  8081. weight: math.unit(150, "lbs"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/sovrim-terraquian/front.svg",
  8085. extra: 1752/1689,
  8086. bottom: 36/1788
  8087. }
  8088. },
  8089. back: {
  8090. height: math.unit(2.718, "meters"),
  8091. weight: math.unit(150, "lbs"),
  8092. name: "Back",
  8093. image: {
  8094. source: "./media/characters/sovrim-terraquian/back.svg",
  8095. extra: 1698/1657,
  8096. bottom: 58/1756
  8097. }
  8098. },
  8099. tongue: {
  8100. height: math.unit(2.865, "feet"),
  8101. name: "Tongue",
  8102. image: {
  8103. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8104. }
  8105. },
  8106. hand: {
  8107. height: math.unit(1.61, "feet"),
  8108. name: "Hand",
  8109. image: {
  8110. source: "./media/characters/sovrim-terraquian/hand.svg"
  8111. }
  8112. },
  8113. foot: {
  8114. height: math.unit(1.05, "feet"),
  8115. name: "Foot",
  8116. image: {
  8117. source: "./media/characters/sovrim-terraquian/foot.svg"
  8118. }
  8119. },
  8120. footAlt: {
  8121. height: math.unit(0.88, "feet"),
  8122. name: "Foot (Alt)",
  8123. image: {
  8124. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8125. }
  8126. },
  8127. },
  8128. [
  8129. {
  8130. name: "Micro",
  8131. height: math.unit(2, "inches")
  8132. },
  8133. {
  8134. name: "Small",
  8135. height: math.unit(1, "meter")
  8136. },
  8137. {
  8138. name: "Normal",
  8139. height: math.unit(Math.E, "meters"),
  8140. default: true
  8141. },
  8142. {
  8143. name: "Macro",
  8144. height: math.unit(20, "meters")
  8145. },
  8146. {
  8147. name: "Macro+",
  8148. height: math.unit(400, "meters")
  8149. },
  8150. ]
  8151. ))
  8152. characterMakers.push(() => makeCharacter(
  8153. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8154. {
  8155. front: {
  8156. height: math.unit(7, "feet"),
  8157. weight: math.unit(489, "lbs"),
  8158. name: "Front",
  8159. image: {
  8160. source: "./media/characters/reece-silvermane/front.svg",
  8161. bottom: 0.02,
  8162. extra: 1
  8163. }
  8164. },
  8165. },
  8166. [
  8167. {
  8168. name: "Macro",
  8169. height: math.unit(1.5, "miles"),
  8170. default: true
  8171. },
  8172. ]
  8173. ))
  8174. characterMakers.push(() => makeCharacter(
  8175. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8176. {
  8177. front: {
  8178. height: math.unit(6, "feet"),
  8179. weight: math.unit(78, "kg"),
  8180. name: "Front",
  8181. image: {
  8182. source: "./media/characters/kane/front.svg",
  8183. extra: 978 / 899
  8184. }
  8185. },
  8186. },
  8187. [
  8188. {
  8189. name: "Normal",
  8190. height: math.unit(2.1, "m"),
  8191. },
  8192. {
  8193. name: "Macro",
  8194. height: math.unit(1, "km"),
  8195. default: true
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(6, "feet"),
  8204. weight: math.unit(200, "kg"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/tegon/front.svg",
  8208. bottom: 0.01,
  8209. extra: 1
  8210. }
  8211. },
  8212. },
  8213. [
  8214. {
  8215. name: "Micro",
  8216. height: math.unit(1, "inch")
  8217. },
  8218. {
  8219. name: "Normal",
  8220. height: math.unit(6 + 3 / 12, "feet"),
  8221. default: true
  8222. },
  8223. {
  8224. name: "Macro",
  8225. height: math.unit(300, "feet")
  8226. },
  8227. {
  8228. name: "Megamacro",
  8229. height: math.unit(69, "miles")
  8230. },
  8231. ]
  8232. ))
  8233. characterMakers.push(() => makeCharacter(
  8234. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8235. {
  8236. side: {
  8237. height: math.unit(6, "feet"),
  8238. weight: math.unit(2304, "lbs"),
  8239. name: "Side",
  8240. image: {
  8241. source: "./media/characters/arcturax/side.svg",
  8242. extra: 790 / 376,
  8243. bottom: 0.01
  8244. }
  8245. },
  8246. },
  8247. [
  8248. {
  8249. name: "Micro",
  8250. height: math.unit(2, "inch")
  8251. },
  8252. {
  8253. name: "Normal",
  8254. height: math.unit(6, "feet")
  8255. },
  8256. {
  8257. name: "Macro",
  8258. height: math.unit(39, "feet"),
  8259. default: true
  8260. },
  8261. {
  8262. name: "Megamacro",
  8263. height: math.unit(7, "miles")
  8264. },
  8265. ]
  8266. ))
  8267. characterMakers.push(() => makeCharacter(
  8268. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8269. {
  8270. front: {
  8271. height: math.unit(6, "feet"),
  8272. weight: math.unit(50, "lbs"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/sentri/front.svg",
  8276. extra: 1750 / 1570,
  8277. bottom: 0.025
  8278. }
  8279. },
  8280. frontAlt: {
  8281. height: math.unit(6, "feet"),
  8282. weight: math.unit(50, "lbs"),
  8283. name: "Front (Alt)",
  8284. image: {
  8285. source: "./media/characters/sentri/front-alt.svg",
  8286. extra: 1750 / 1570,
  8287. bottom: 0.025
  8288. }
  8289. },
  8290. },
  8291. [
  8292. {
  8293. name: "Normal",
  8294. height: math.unit(15, "feet"),
  8295. default: true
  8296. },
  8297. {
  8298. name: "Macro",
  8299. height: math.unit(2500, "feet")
  8300. }
  8301. ]
  8302. ))
  8303. characterMakers.push(() => makeCharacter(
  8304. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8305. {
  8306. front: {
  8307. height: math.unit(5 + 8 / 12, "feet"),
  8308. weight: math.unit(130, "lbs"),
  8309. name: "Front",
  8310. image: {
  8311. source: "./media/characters/corvin/front.svg",
  8312. extra: 1803 / 1629
  8313. }
  8314. },
  8315. frontShirt: {
  8316. height: math.unit(5 + 8 / 12, "feet"),
  8317. weight: math.unit(130, "lbs"),
  8318. name: "Front (Shirt)",
  8319. image: {
  8320. source: "./media/characters/corvin/front-shirt.svg",
  8321. extra: 1803 / 1629
  8322. }
  8323. },
  8324. frontPoncho: {
  8325. height: math.unit(5 + 8 / 12, "feet"),
  8326. weight: math.unit(130, "lbs"),
  8327. name: "Front (Poncho)",
  8328. image: {
  8329. source: "./media/characters/corvin/front-poncho.svg",
  8330. extra: 1803 / 1629
  8331. }
  8332. },
  8333. side: {
  8334. height: math.unit(5 + 8 / 12, "feet"),
  8335. weight: math.unit(130, "lbs"),
  8336. name: "Side",
  8337. image: {
  8338. source: "./media/characters/corvin/side.svg",
  8339. extra: 1012 / 945
  8340. }
  8341. },
  8342. back: {
  8343. height: math.unit(5 + 8 / 12, "feet"),
  8344. weight: math.unit(130, "lbs"),
  8345. name: "Back",
  8346. image: {
  8347. source: "./media/characters/corvin/back.svg",
  8348. extra: 1803 / 1629
  8349. }
  8350. },
  8351. },
  8352. [
  8353. {
  8354. name: "Micro",
  8355. height: math.unit(3, "inches")
  8356. },
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(5 + 8 / 12, "feet")
  8360. },
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(300, "feet"),
  8364. default: true
  8365. },
  8366. {
  8367. name: "Megamacro",
  8368. height: math.unit(500, "miles")
  8369. }
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(135, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/q/front.svg",
  8381. extra: 854 / 752,
  8382. bottom: 0.005
  8383. }
  8384. },
  8385. back: {
  8386. height: math.unit(6, "feet"),
  8387. weight: math.unit(130, "lbs"),
  8388. name: "Back",
  8389. image: {
  8390. source: "./media/characters/q/back.svg",
  8391. extra: 854 / 752
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Macro",
  8398. height: math.unit(90, "feet"),
  8399. default: true
  8400. },
  8401. {
  8402. name: "Extra Macro",
  8403. height: math.unit(300, "feet"),
  8404. },
  8405. {
  8406. name: "BIG WALF",
  8407. height: math.unit(750, "feet"),
  8408. },
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8413. {
  8414. front: {
  8415. height: math.unit(6, "feet"),
  8416. weight: math.unit(150, "lbs"),
  8417. name: "Front",
  8418. image: {
  8419. source: "./media/characters/carley/front.svg",
  8420. extra: 3927 / 3540,
  8421. bottom: 29.2 / 735
  8422. }
  8423. }
  8424. },
  8425. [
  8426. {
  8427. name: "Normal",
  8428. height: math.unit(6 + 3 / 12, "feet")
  8429. },
  8430. {
  8431. name: "Macro",
  8432. height: math.unit(185, "feet"),
  8433. default: true
  8434. },
  8435. {
  8436. name: "Megamacro",
  8437. height: math.unit(8, "miles"),
  8438. },
  8439. ]
  8440. ))
  8441. characterMakers.push(() => makeCharacter(
  8442. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8443. {
  8444. front: {
  8445. height: math.unit(3, "feet"),
  8446. weight: math.unit(28, "lbs"),
  8447. name: "Front",
  8448. image: {
  8449. source: "./media/characters/citrine/front.svg"
  8450. }
  8451. }
  8452. },
  8453. [
  8454. {
  8455. name: "Normal",
  8456. height: math.unit(3, "feet"),
  8457. default: true
  8458. }
  8459. ]
  8460. ))
  8461. characterMakers.push(() => makeCharacter(
  8462. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8463. {
  8464. front: {
  8465. height: math.unit(14, "feet"),
  8466. weight: math.unit(1450, "kg"),
  8467. capacity: math.unit(15, "people"),
  8468. name: "Front",
  8469. image: {
  8470. source: "./media/characters/aura-starwind/front.svg",
  8471. extra: 1440/1327,
  8472. bottom: 11/1451
  8473. }
  8474. },
  8475. side: {
  8476. height: math.unit(14, "feet"),
  8477. weight: math.unit(1450, "kg"),
  8478. capacity: math.unit(15, "people"),
  8479. name: "Side",
  8480. image: {
  8481. source: "./media/characters/aura-starwind/side.svg",
  8482. extra: 1654 / 1497
  8483. }
  8484. },
  8485. taur: {
  8486. height: math.unit(18, "feet"),
  8487. weight: math.unit(5500, "kg"),
  8488. capacity: math.unit(50, "people"),
  8489. name: "Taur",
  8490. image: {
  8491. source: "./media/characters/aura-starwind/taur.svg",
  8492. extra: 1760 / 1650
  8493. }
  8494. },
  8495. feral: {
  8496. height: math.unit(46, "feet"),
  8497. weight: math.unit(25000, "kg"),
  8498. capacity: math.unit(120, "people"),
  8499. name: "Feral",
  8500. image: {
  8501. source: "./media/characters/aura-starwind/feral.svg"
  8502. }
  8503. },
  8504. },
  8505. [
  8506. {
  8507. name: "Normal",
  8508. height: math.unit(14, "feet"),
  8509. default: true
  8510. },
  8511. {
  8512. name: "Macro",
  8513. height: math.unit(50, "meters")
  8514. },
  8515. {
  8516. name: "Megamacro",
  8517. height: math.unit(5000, "meters")
  8518. },
  8519. {
  8520. name: "Gigamacro",
  8521. height: math.unit(100000, "kilometers")
  8522. },
  8523. ]
  8524. ))
  8525. characterMakers.push(() => makeCharacter(
  8526. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8527. {
  8528. front: {
  8529. height: math.unit(2 + 7 / 12, "feet"),
  8530. weight: math.unit(32, "lbs"),
  8531. name: "Front",
  8532. image: {
  8533. source: "./media/characters/rivet/front.svg",
  8534. extra: 1716 / 1658,
  8535. bottom: 0.03
  8536. }
  8537. },
  8538. foot: {
  8539. height: math.unit(0.551, "feet"),
  8540. name: "Rivet's Foot",
  8541. image: {
  8542. source: "./media/characters/rivet/foot.svg"
  8543. },
  8544. rename: true
  8545. }
  8546. },
  8547. [
  8548. {
  8549. name: "Micro",
  8550. height: math.unit(1.5, "inches"),
  8551. },
  8552. {
  8553. name: "Normal",
  8554. height: math.unit(2 + 7 / 12, "feet"),
  8555. default: true
  8556. },
  8557. {
  8558. name: "Macro",
  8559. height: math.unit(85, "feet")
  8560. },
  8561. {
  8562. name: "Megamacro",
  8563. height: math.unit(2.2, "km")
  8564. }
  8565. ]
  8566. ))
  8567. characterMakers.push(() => makeCharacter(
  8568. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8569. {
  8570. front: {
  8571. height: math.unit(5 + 9 / 12, "feet"),
  8572. weight: math.unit(150, "lbs"),
  8573. name: "Front",
  8574. image: {
  8575. source: "./media/characters/coffee/front.svg",
  8576. extra: 3666 / 3032,
  8577. bottom: 0.04
  8578. }
  8579. },
  8580. foot: {
  8581. height: math.unit(1.29, "feet"),
  8582. name: "Foot",
  8583. image: {
  8584. source: "./media/characters/coffee/foot.svg"
  8585. }
  8586. },
  8587. },
  8588. [
  8589. {
  8590. name: "Micro",
  8591. height: math.unit(2, "inches"),
  8592. },
  8593. {
  8594. name: "Normal",
  8595. height: math.unit(5 + 9 / 12, "feet"),
  8596. default: true
  8597. },
  8598. {
  8599. name: "Macro",
  8600. height: math.unit(800, "feet")
  8601. },
  8602. {
  8603. name: "Megamacro",
  8604. height: math.unit(25, "miles")
  8605. }
  8606. ]
  8607. ))
  8608. characterMakers.push(() => makeCharacter(
  8609. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8610. {
  8611. front: {
  8612. height: math.unit(6, "feet"),
  8613. weight: math.unit(200, "lbs"),
  8614. name: "Front",
  8615. image: {
  8616. source: "./media/characters/chari-gal/front.svg",
  8617. extra: 1568 / 1385,
  8618. bottom: 0.047
  8619. }
  8620. },
  8621. gigantamax: {
  8622. height: math.unit(6 * 16, "feet"),
  8623. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8624. name: "Gigantamax",
  8625. image: {
  8626. source: "./media/characters/chari-gal/gigantamax.svg",
  8627. extra: 1124 / 888,
  8628. bottom: 0.03
  8629. }
  8630. },
  8631. },
  8632. [
  8633. {
  8634. name: "Normal",
  8635. height: math.unit(5 + 7 / 12, "feet")
  8636. },
  8637. {
  8638. name: "Macro",
  8639. height: math.unit(200, "feet"),
  8640. default: true
  8641. }
  8642. ]
  8643. ))
  8644. characterMakers.push(() => makeCharacter(
  8645. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8646. {
  8647. front: {
  8648. height: math.unit(6, "feet"),
  8649. weight: math.unit(150, "lbs"),
  8650. name: "Front",
  8651. image: {
  8652. source: "./media/characters/nova/front.svg",
  8653. extra: 5000 / 4722,
  8654. bottom: 0.02
  8655. }
  8656. }
  8657. },
  8658. [
  8659. {
  8660. name: "Micro-",
  8661. height: math.unit(0.8, "inches")
  8662. },
  8663. {
  8664. name: "Micro",
  8665. height: math.unit(2, "inches"),
  8666. default: true
  8667. },
  8668. ]
  8669. ))
  8670. characterMakers.push(() => makeCharacter(
  8671. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8672. {
  8673. front: {
  8674. height: math.unit(3 + 1 / 12, "feet"),
  8675. weight: math.unit(21.7, "lbs"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/argent/front.svg",
  8679. extra: 1471 / 1331,
  8680. bottom: 100.8 / 1575.5
  8681. }
  8682. }
  8683. },
  8684. [
  8685. {
  8686. name: "Micro",
  8687. height: math.unit(2, "inches")
  8688. },
  8689. {
  8690. name: "Normal",
  8691. height: math.unit(3 + 1 / 12, "feet"),
  8692. default: true
  8693. },
  8694. {
  8695. name: "Macro",
  8696. height: math.unit(120, "feet")
  8697. },
  8698. ]
  8699. ))
  8700. characterMakers.push(() => makeCharacter(
  8701. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8702. {
  8703. lamp: {
  8704. height: math.unit(7 * 1559 / 989, "feet"),
  8705. name: "Magic Lamp",
  8706. image: {
  8707. source: "./media/characters/mira-al-cul/lamp.svg",
  8708. extra: 1617 / 1559
  8709. }
  8710. },
  8711. front: {
  8712. height: math.unit(7, "feet"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/mira-al-cul/front.svg",
  8716. extra: 1044 / 990
  8717. }
  8718. },
  8719. },
  8720. [
  8721. {
  8722. name: "Heavily Restricted",
  8723. height: math.unit(7 * 1559 / 989, "feet")
  8724. },
  8725. {
  8726. name: "Freshly Freed",
  8727. height: math.unit(50 * 1559 / 989, "feet")
  8728. },
  8729. {
  8730. name: "World Encompassing",
  8731. height: math.unit(10000 * 1559 / 989, "miles")
  8732. },
  8733. {
  8734. name: "Galactic",
  8735. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8736. },
  8737. {
  8738. name: "Palmed Universe",
  8739. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8740. default: true
  8741. },
  8742. {
  8743. name: "Multiversal Matriarch",
  8744. height: math.unit(8.87e10, "yottameters")
  8745. },
  8746. {
  8747. name: "Void Mother",
  8748. height: math.unit(3.14e110, "yottaparsecs")
  8749. },
  8750. {
  8751. name: "Toying with Transcendence",
  8752. height: math.unit(1e307, "meters")
  8753. },
  8754. ]
  8755. ))
  8756. characterMakers.push(() => makeCharacter(
  8757. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8758. {
  8759. front: {
  8760. height: math.unit(17 + 1 / 12, "feet"),
  8761. weight: math.unit(476.2 * 5, "lbs"),
  8762. name: "Front",
  8763. image: {
  8764. source: "./media/characters/kuro-shi-uchū/front.svg",
  8765. extra: 2329 / 1835,
  8766. bottom: 0.02
  8767. }
  8768. },
  8769. },
  8770. [
  8771. {
  8772. name: "Micro",
  8773. height: math.unit(2, "inches")
  8774. },
  8775. {
  8776. name: "Normal",
  8777. height: math.unit(12, "meters")
  8778. },
  8779. {
  8780. name: "Planetary",
  8781. height: math.unit(0.00929, "AU"),
  8782. default: true
  8783. },
  8784. {
  8785. name: "Universal",
  8786. height: math.unit(20, "gigaparsecs")
  8787. },
  8788. ]
  8789. ))
  8790. characterMakers.push(() => makeCharacter(
  8791. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8792. {
  8793. front: {
  8794. height: math.unit(5 + 2 / 12, "feet"),
  8795. weight: math.unit(120, "lbs"),
  8796. name: "Front",
  8797. image: {
  8798. source: "./media/characters/katherine/front.svg",
  8799. extra: 2075 / 1969
  8800. }
  8801. },
  8802. dress: {
  8803. height: math.unit(5 + 2 / 12, "feet"),
  8804. weight: math.unit(120, "lbs"),
  8805. name: "Dress",
  8806. image: {
  8807. source: "./media/characters/katherine/dress.svg",
  8808. extra: 2258 / 2064
  8809. }
  8810. },
  8811. },
  8812. [
  8813. {
  8814. name: "Micro",
  8815. height: math.unit(1, "inches"),
  8816. default: true
  8817. },
  8818. {
  8819. name: "Normal",
  8820. height: math.unit(5 + 2 / 12, "feet")
  8821. },
  8822. {
  8823. name: "Macro",
  8824. height: math.unit(100, "meters")
  8825. },
  8826. {
  8827. name: "Megamacro",
  8828. height: math.unit(80, "miles")
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(7 + 8 / 12, "feet"),
  8837. weight: math.unit(250, "lbs"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/yevis/front.svg",
  8841. extra: 1938 / 1755
  8842. }
  8843. }
  8844. },
  8845. [
  8846. {
  8847. name: "Mortal",
  8848. height: math.unit(7 + 8 / 12, "feet")
  8849. },
  8850. {
  8851. name: "Battle",
  8852. height: math.unit(25 + 11 / 12, "feet")
  8853. },
  8854. {
  8855. name: "Wrath",
  8856. height: math.unit(1654 + 11 / 12, "feet")
  8857. },
  8858. {
  8859. name: "Planet Destroyer",
  8860. height: math.unit(12000, "miles")
  8861. },
  8862. {
  8863. name: "Galaxy Conqueror",
  8864. height: math.unit(1.45, "zettameters"),
  8865. default: true
  8866. },
  8867. {
  8868. name: "Universal War",
  8869. height: math.unit(184, "gigaparsecs")
  8870. },
  8871. {
  8872. name: "Eternity War",
  8873. height: math.unit(1.98e55, "yottaparsecs")
  8874. },
  8875. ]
  8876. ))
  8877. characterMakers.push(() => makeCharacter(
  8878. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8879. {
  8880. front: {
  8881. height: math.unit(5 + 8 / 12, "feet"),
  8882. weight: math.unit(63, "kg"),
  8883. name: "Front",
  8884. image: {
  8885. source: "./media/characters/xavier/front.svg",
  8886. extra: 944 / 883
  8887. }
  8888. },
  8889. frontStretch: {
  8890. height: math.unit(5 + 8 / 12, "feet"),
  8891. weight: math.unit(63, "kg"),
  8892. name: "Stretching",
  8893. image: {
  8894. source: "./media/characters/xavier/front-stretch.svg",
  8895. extra: 962 / 820
  8896. }
  8897. },
  8898. },
  8899. [
  8900. {
  8901. name: "Normal",
  8902. height: math.unit(5 + 8 / 12, "feet")
  8903. },
  8904. {
  8905. name: "Macro",
  8906. height: math.unit(100, "meters"),
  8907. default: true
  8908. },
  8909. {
  8910. name: "McLargeHuge",
  8911. height: math.unit(10, "miles")
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8917. {
  8918. front: {
  8919. height: math.unit(5 + 5 / 12, "feet"),
  8920. weight: math.unit(150, "lb"),
  8921. name: "Front",
  8922. image: {
  8923. source: "./media/characters/joshii/front.svg",
  8924. extra: 765 / 653,
  8925. bottom: 51 / 816
  8926. }
  8927. },
  8928. foot: {
  8929. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8930. name: "Foot",
  8931. image: {
  8932. source: "./media/characters/joshii/foot.svg"
  8933. }
  8934. },
  8935. },
  8936. [
  8937. {
  8938. name: "Micro",
  8939. height: math.unit(2, "inches"),
  8940. default: true
  8941. },
  8942. {
  8943. name: "Normal",
  8944. height: math.unit(5 + 5 / 12, "feet")
  8945. },
  8946. {
  8947. name: "Macro",
  8948. height: math.unit(785, "feet")
  8949. },
  8950. {
  8951. name: "Megamacro",
  8952. height: math.unit(24.5, "miles")
  8953. },
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8958. {
  8959. front: {
  8960. height: math.unit(6, "feet"),
  8961. weight: math.unit(150, "lb"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/goddess-elizabeth/front.svg",
  8965. extra: 1800 / 1525,
  8966. bottom: 0.005
  8967. }
  8968. },
  8969. foot: {
  8970. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8971. name: "Foot",
  8972. image: {
  8973. source: "./media/characters/goddess-elizabeth/foot.svg"
  8974. }
  8975. },
  8976. mouth: {
  8977. height: math.unit(6, "feet"),
  8978. name: "Mouth",
  8979. image: {
  8980. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8981. }
  8982. },
  8983. },
  8984. [
  8985. {
  8986. name: "Micro",
  8987. height: math.unit(12, "feet")
  8988. },
  8989. {
  8990. name: "Normal",
  8991. height: math.unit(80, "miles"),
  8992. default: true
  8993. },
  8994. {
  8995. name: "Macro",
  8996. height: math.unit(15000, "parsecs")
  8997. },
  8998. ]
  8999. ))
  9000. characterMakers.push(() => makeCharacter(
  9001. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9002. {
  9003. front: {
  9004. height: math.unit(5 + 9 / 12, "feet"),
  9005. weight: math.unit(144, "lb"),
  9006. name: "Front",
  9007. image: {
  9008. source: "./media/characters/kara/front.svg"
  9009. }
  9010. },
  9011. feet: {
  9012. height: math.unit(6 / 6.765, "feet"),
  9013. name: "Kara's Feet",
  9014. rename: true,
  9015. image: {
  9016. source: "./media/characters/kara/feet.svg"
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Normal",
  9023. height: math.unit(5 + 9 / 12, "feet")
  9024. },
  9025. {
  9026. name: "Macro",
  9027. height: math.unit(174, "feet"),
  9028. default: true
  9029. },
  9030. ]
  9031. ))
  9032. characterMakers.push(() => makeCharacter(
  9033. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9034. {
  9035. front: {
  9036. height: math.unit(18, "feet"),
  9037. weight: math.unit(4050, "lb"),
  9038. name: "Front",
  9039. image: {
  9040. source: "./media/characters/tyrone/front.svg",
  9041. extra: 2405 / 2270,
  9042. bottom: 182 / 2587
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Normal",
  9049. height: math.unit(18, "feet"),
  9050. default: true
  9051. },
  9052. {
  9053. name: "Macro",
  9054. height: math.unit(300, "feet")
  9055. },
  9056. {
  9057. name: "Megamacro",
  9058. height: math.unit(15, "km")
  9059. },
  9060. {
  9061. name: "Gigamacro",
  9062. height: math.unit(500, "km")
  9063. },
  9064. {
  9065. name: "Teramacro",
  9066. height: math.unit(0.5, "gigameters")
  9067. },
  9068. {
  9069. name: "Omnimacro",
  9070. height: math.unit(1e252, "yottauniverse")
  9071. },
  9072. ]
  9073. ))
  9074. characterMakers.push(() => makeCharacter(
  9075. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9076. {
  9077. front: {
  9078. height: math.unit(7 + 8 / 12, "feet"),
  9079. weight: math.unit(120, "lb"),
  9080. name: "Front",
  9081. image: {
  9082. source: "./media/characters/danny/front.svg",
  9083. extra: 1490 / 1350
  9084. }
  9085. },
  9086. back: {
  9087. height: math.unit(7 + 8 / 12, "feet"),
  9088. weight: math.unit(120, "lb"),
  9089. name: "Back",
  9090. image: {
  9091. source: "./media/characters/danny/back.svg",
  9092. extra: 1490 / 1350
  9093. }
  9094. },
  9095. },
  9096. [
  9097. {
  9098. name: "Normal",
  9099. height: math.unit(7 + 8 / 12, "feet"),
  9100. default: true
  9101. },
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(3.5, "inches"),
  9109. weight: math.unit(19, "grams"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/mallow/front.svg",
  9113. extra: 471 / 431
  9114. }
  9115. },
  9116. back: {
  9117. height: math.unit(3.5, "inches"),
  9118. weight: math.unit(19, "grams"),
  9119. name: "Back",
  9120. image: {
  9121. source: "./media/characters/mallow/back.svg",
  9122. extra: 471 / 431
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(3.5, "inches"),
  9130. default: true
  9131. },
  9132. ]
  9133. ))
  9134. characterMakers.push(() => makeCharacter(
  9135. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9136. {
  9137. front: {
  9138. height: math.unit(9, "feet"),
  9139. weight: math.unit(230, "kg"),
  9140. name: "Front",
  9141. image: {
  9142. source: "./media/characters/starry-aqua/front.svg"
  9143. }
  9144. },
  9145. back: {
  9146. height: math.unit(9, "feet"),
  9147. weight: math.unit(230, "kg"),
  9148. name: "Back",
  9149. image: {
  9150. source: "./media/characters/starry-aqua/back.svg"
  9151. }
  9152. },
  9153. hand: {
  9154. height: math.unit(9 * 0.1168, "feet"),
  9155. name: "Hand",
  9156. image: {
  9157. source: "./media/characters/starry-aqua/hand.svg"
  9158. }
  9159. },
  9160. foot: {
  9161. height: math.unit(9 * 0.18, "feet"),
  9162. name: "Foot",
  9163. image: {
  9164. source: "./media/characters/starry-aqua/foot.svg"
  9165. }
  9166. }
  9167. },
  9168. [
  9169. {
  9170. name: "Micro",
  9171. height: math.unit(3, "inches")
  9172. },
  9173. {
  9174. name: "Normal",
  9175. height: math.unit(9, "feet")
  9176. },
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(300, "feet"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Megamacro",
  9184. height: math.unit(3200, "feet")
  9185. }
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9190. {
  9191. front: {
  9192. height: math.unit(15, "feet"),
  9193. weight: math.unit(5026, "lb"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/luka-towers/front.svg",
  9197. extra: 1269/1133,
  9198. bottom: 51/1320
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Normal",
  9205. height: math.unit(15, "feet"),
  9206. default: true
  9207. },
  9208. {
  9209. name: "Minimacro",
  9210. height: math.unit(25, "feet")
  9211. },
  9212. {
  9213. name: "Macro",
  9214. height: math.unit(320, "feet")
  9215. },
  9216. {
  9217. name: "Megamacro",
  9218. height: math.unit(35000, "feet")
  9219. },
  9220. {
  9221. name: "Gigamacro",
  9222. height: math.unit(4000, "miles")
  9223. },
  9224. {
  9225. name: "Teramacro",
  9226. height: math.unit(15000, "miles")
  9227. },
  9228. ]
  9229. ))
  9230. characterMakers.push(() => makeCharacter(
  9231. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9232. {
  9233. front: {
  9234. height: math.unit(6, "feet"),
  9235. weight: math.unit(150, "lb"),
  9236. name: "Front",
  9237. image: {
  9238. source: "./media/characters/natalie-nightring/front.svg",
  9239. extra: 1,
  9240. bottom: 0.06
  9241. }
  9242. },
  9243. },
  9244. [
  9245. {
  9246. name: "Uh Oh",
  9247. height: math.unit(0.1, "mm")
  9248. },
  9249. {
  9250. name: "Small",
  9251. height: math.unit(3, "inches")
  9252. },
  9253. {
  9254. name: "Human Scale",
  9255. height: math.unit(6, "feet")
  9256. },
  9257. {
  9258. name: "Librarian",
  9259. height: math.unit(50, "feet"),
  9260. default: true
  9261. },
  9262. {
  9263. name: "Immense",
  9264. height: math.unit(200, "miles")
  9265. },
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9270. {
  9271. front: {
  9272. height: math.unit(6, "feet"),
  9273. weight: math.unit(180, "lbs"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/danni-rosie/front.svg",
  9277. extra: 1260 / 1128,
  9278. bottom: 0.022
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Micro",
  9285. height: math.unit(2, "inches"),
  9286. default: true
  9287. },
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9292. {
  9293. front: {
  9294. height: math.unit(5 + 9 / 12, "feet"),
  9295. weight: math.unit(220, "lb"),
  9296. name: "Front",
  9297. image: {
  9298. source: "./media/characters/samantha-kruse/front.svg",
  9299. extra: (985 / 935),
  9300. bottom: 0.03
  9301. }
  9302. },
  9303. frontUndressed: {
  9304. height: math.unit(5 + 9 / 12, "feet"),
  9305. weight: math.unit(220, "lb"),
  9306. name: "Front (Undressed)",
  9307. image: {
  9308. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9309. extra: (973 / 923),
  9310. bottom: 0.025
  9311. }
  9312. },
  9313. fat: {
  9314. height: math.unit(5 + 9 / 12, "feet"),
  9315. weight: math.unit(900, "lb"),
  9316. name: "Front (Fat)",
  9317. image: {
  9318. source: "./media/characters/samantha-kruse/fat.svg",
  9319. extra: 2688 / 2561
  9320. }
  9321. },
  9322. },
  9323. [
  9324. {
  9325. name: "Normal",
  9326. height: math.unit(5 + 9 / 12, "feet"),
  9327. default: true
  9328. }
  9329. ]
  9330. ))
  9331. characterMakers.push(() => makeCharacter(
  9332. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9333. {
  9334. back: {
  9335. height: math.unit(5 + 4 / 12, "feet"),
  9336. weight: math.unit(4963, "lb"),
  9337. name: "Back",
  9338. image: {
  9339. source: "./media/characters/amelia-rosie/back.svg",
  9340. extra: 1113 / 963,
  9341. bottom: 0.01
  9342. }
  9343. },
  9344. },
  9345. [
  9346. {
  9347. name: "Level 0",
  9348. height: math.unit(5 + 4 / 12, "feet")
  9349. },
  9350. {
  9351. name: "Level 1",
  9352. height: math.unit(164597, "feet"),
  9353. default: true
  9354. },
  9355. {
  9356. name: "Level 2",
  9357. height: math.unit(956243, "miles")
  9358. },
  9359. {
  9360. name: "Level 3",
  9361. height: math.unit(29421709423, "miles")
  9362. },
  9363. {
  9364. name: "Level 4",
  9365. height: math.unit(154, "lightyears")
  9366. },
  9367. {
  9368. name: "Level 5",
  9369. height: math.unit(4738272, "lightyears")
  9370. },
  9371. {
  9372. name: "Level 6",
  9373. height: math.unit(145787152896, "lightyears")
  9374. },
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9379. {
  9380. front: {
  9381. height: math.unit(5 + 11 / 12, "feet"),
  9382. weight: math.unit(65, "kg"),
  9383. name: "Front",
  9384. image: {
  9385. source: "./media/characters/rook-kitara/front.svg",
  9386. extra: 1347 / 1274,
  9387. bottom: 0.005
  9388. }
  9389. },
  9390. },
  9391. [
  9392. {
  9393. name: "Totally Unfair",
  9394. height: math.unit(1.8, "mm")
  9395. },
  9396. {
  9397. name: "Lap Rookie",
  9398. height: math.unit(1.4, "feet")
  9399. },
  9400. {
  9401. name: "Normal",
  9402. height: math.unit(5 + 11 / 12, "feet"),
  9403. default: true
  9404. },
  9405. {
  9406. name: "How Did This Happen",
  9407. height: math.unit(80, "miles")
  9408. }
  9409. ]
  9410. ))
  9411. characterMakers.push(() => makeCharacter(
  9412. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9413. {
  9414. front: {
  9415. height: math.unit(7, "feet"),
  9416. weight: math.unit(300, "lb"),
  9417. name: "Front",
  9418. image: {
  9419. source: "./media/characters/pisces/front.svg",
  9420. extra: 2255 / 2115,
  9421. bottom: 0.03
  9422. }
  9423. },
  9424. back: {
  9425. height: math.unit(7, "feet"),
  9426. weight: math.unit(300, "lb"),
  9427. name: "Back",
  9428. image: {
  9429. source: "./media/characters/pisces/back.svg",
  9430. extra: 2146 / 2055,
  9431. bottom: 0.04
  9432. }
  9433. },
  9434. },
  9435. [
  9436. {
  9437. name: "Normal",
  9438. height: math.unit(7, "feet"),
  9439. default: true
  9440. },
  9441. {
  9442. name: "Swimming Pool",
  9443. height: math.unit(12.2, "meters")
  9444. },
  9445. {
  9446. name: "Olympic Swimming Pool",
  9447. height: math.unit(56.3, "meters")
  9448. },
  9449. {
  9450. name: "Lake Superior",
  9451. height: math.unit(93900, "meters")
  9452. },
  9453. {
  9454. name: "Mediterranean Sea",
  9455. height: math.unit(644457, "meters")
  9456. },
  9457. {
  9458. name: "World's Oceans",
  9459. height: math.unit(4567491, "meters")
  9460. },
  9461. ]
  9462. ))
  9463. characterMakers.push(() => makeCharacter(
  9464. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9465. {
  9466. front: {
  9467. height: math.unit(2.3, "meters"),
  9468. weight: math.unit(120, "kg"),
  9469. name: "Front",
  9470. image: {
  9471. source: "./media/characters/zelas/front.svg"
  9472. }
  9473. },
  9474. side: {
  9475. height: math.unit(2.3, "meters"),
  9476. weight: math.unit(120, "kg"),
  9477. name: "Side",
  9478. image: {
  9479. source: "./media/characters/zelas/side.svg"
  9480. }
  9481. },
  9482. back: {
  9483. height: math.unit(2.3, "meters"),
  9484. weight: math.unit(120, "kg"),
  9485. name: "Back",
  9486. image: {
  9487. source: "./media/characters/zelas/back.svg"
  9488. }
  9489. },
  9490. foot: {
  9491. height: math.unit(1.116, "feet"),
  9492. name: "Foot",
  9493. image: {
  9494. source: "./media/characters/zelas/foot.svg"
  9495. }
  9496. },
  9497. },
  9498. [
  9499. {
  9500. name: "Normal",
  9501. height: math.unit(2.3, "meters")
  9502. },
  9503. {
  9504. name: "Macro",
  9505. height: math.unit(30, "meters"),
  9506. default: true
  9507. },
  9508. ]
  9509. ))
  9510. characterMakers.push(() => makeCharacter(
  9511. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9512. {
  9513. front: {
  9514. height: math.unit(1, "inch"),
  9515. weight: math.unit(0.21, "grams"),
  9516. name: "Front",
  9517. image: {
  9518. source: "./media/characters/talbot/front.svg",
  9519. extra: 594 / 544
  9520. }
  9521. },
  9522. },
  9523. [
  9524. {
  9525. name: "Micro",
  9526. height: math.unit(1, "inch"),
  9527. default: true
  9528. },
  9529. ]
  9530. ))
  9531. characterMakers.push(() => makeCharacter(
  9532. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9533. {
  9534. front: {
  9535. height: math.unit(3 + 3 / 12, "feet"),
  9536. weight: math.unit(51.8, "lb"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/fliss/front.svg",
  9540. extra: 840 / 640
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Teeny Tiny",
  9547. height: math.unit(1, "mm")
  9548. },
  9549. {
  9550. name: "Small",
  9551. height: math.unit(1, "inch"),
  9552. default: true
  9553. },
  9554. {
  9555. name: "Standard Sylveon",
  9556. height: math.unit(3 + 3 / 12, "feet")
  9557. },
  9558. {
  9559. name: "Large Nuisance",
  9560. height: math.unit(33, "feet")
  9561. },
  9562. {
  9563. name: "City Filler",
  9564. height: math.unit(3000, "feet")
  9565. },
  9566. {
  9567. name: "New Horizon",
  9568. height: math.unit(6000, "miles")
  9569. },
  9570. ]
  9571. ))
  9572. characterMakers.push(() => makeCharacter(
  9573. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9574. {
  9575. front: {
  9576. height: math.unit(5, "cm"),
  9577. weight: math.unit(1.94, "g"),
  9578. name: "Front",
  9579. image: {
  9580. source: "./media/characters/fleta/front.svg",
  9581. extra: 835 / 803
  9582. }
  9583. },
  9584. back: {
  9585. height: math.unit(5, "cm"),
  9586. weight: math.unit(1.94, "g"),
  9587. name: "Back",
  9588. image: {
  9589. source: "./media/characters/fleta/back.svg",
  9590. extra: 835 / 803
  9591. }
  9592. },
  9593. },
  9594. [
  9595. {
  9596. name: "Micro",
  9597. height: math.unit(5, "cm"),
  9598. default: true
  9599. },
  9600. ]
  9601. ))
  9602. characterMakers.push(() => makeCharacter(
  9603. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9604. {
  9605. front: {
  9606. height: math.unit(6, "feet"),
  9607. weight: math.unit(225, "lb"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/dominic/front.svg",
  9611. extra: 1770 / 1620,
  9612. bottom: 0.025
  9613. }
  9614. },
  9615. back: {
  9616. height: math.unit(6, "feet"),
  9617. weight: math.unit(225, "lb"),
  9618. name: "Back",
  9619. image: {
  9620. source: "./media/characters/dominic/back.svg",
  9621. extra: 1745 / 1620,
  9622. bottom: 0.065
  9623. }
  9624. },
  9625. },
  9626. [
  9627. {
  9628. name: "Nano",
  9629. height: math.unit(0.1, "mm")
  9630. },
  9631. {
  9632. name: "Micro-",
  9633. height: math.unit(1, "mm")
  9634. },
  9635. {
  9636. name: "Micro",
  9637. height: math.unit(4, "inches")
  9638. },
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(6 + 4 / 12, "feet"),
  9642. default: true
  9643. },
  9644. {
  9645. name: "Macro",
  9646. height: math.unit(115, "feet")
  9647. },
  9648. {
  9649. name: "Macro+",
  9650. height: math.unit(955, "feet")
  9651. },
  9652. {
  9653. name: "Megamacro",
  9654. height: math.unit(8990, "feet")
  9655. },
  9656. {
  9657. name: "Gigmacro",
  9658. height: math.unit(9310, "miles")
  9659. },
  9660. {
  9661. name: "Teramacro",
  9662. height: math.unit(1567005010, "miles")
  9663. },
  9664. {
  9665. name: "Examacro",
  9666. height: math.unit(1425, "parsecs")
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9672. {
  9673. front: {
  9674. height: math.unit(400, "feet"),
  9675. weight: math.unit(44444444, "lb"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/major-colonel/front.svg"
  9679. }
  9680. },
  9681. back: {
  9682. height: math.unit(400, "feet"),
  9683. weight: math.unit(44444444, "lb"),
  9684. name: "Back",
  9685. image: {
  9686. source: "./media/characters/major-colonel/back.svg"
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Macro",
  9693. height: math.unit(400, "feet"),
  9694. default: true
  9695. },
  9696. ]
  9697. ))
  9698. characterMakers.push(() => makeCharacter(
  9699. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9700. {
  9701. catFront: {
  9702. height: math.unit(6, "feet"),
  9703. weight: math.unit(120, "lb"),
  9704. name: "Front (Cat Side)",
  9705. image: {
  9706. source: "./media/characters/axel-lycan/cat-front.svg",
  9707. extra: 430 / 402,
  9708. bottom: 43 / 472.35
  9709. }
  9710. },
  9711. catBack: {
  9712. height: math.unit(6, "feet"),
  9713. weight: math.unit(120, "lb"),
  9714. name: "Back (Cat Side)",
  9715. image: {
  9716. source: "./media/characters/axel-lycan/cat-back.svg",
  9717. extra: 447 / 419,
  9718. bottom: 23.3 / 469
  9719. }
  9720. },
  9721. wolfFront: {
  9722. height: math.unit(6, "feet"),
  9723. weight: math.unit(120, "lb"),
  9724. name: "Front (Wolf Side)",
  9725. image: {
  9726. source: "./media/characters/axel-lycan/wolf-front.svg",
  9727. extra: 485 / 456,
  9728. bottom: 19 / 504
  9729. }
  9730. },
  9731. wolfBack: {
  9732. height: math.unit(6, "feet"),
  9733. weight: math.unit(120, "lb"),
  9734. name: "Back (Wolf Side)",
  9735. image: {
  9736. source: "./media/characters/axel-lycan/wolf-back.svg",
  9737. extra: 475 / 438,
  9738. bottom: 39.2 / 514
  9739. }
  9740. },
  9741. },
  9742. [
  9743. {
  9744. name: "Macro",
  9745. height: math.unit(1, "km"),
  9746. default: true
  9747. },
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9752. {
  9753. front: {
  9754. height: math.unit(5 + 9 / 12, "feet"),
  9755. weight: math.unit(175, "lb"),
  9756. name: "Front",
  9757. image: {
  9758. source: "./media/characters/vanrel-hyena/front.svg",
  9759. extra: 1086 / 1010,
  9760. bottom: 0.04
  9761. }
  9762. },
  9763. },
  9764. [
  9765. {
  9766. name: "Normal",
  9767. height: math.unit(5 + 9 / 12, "feet"),
  9768. default: true
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9774. {
  9775. front: {
  9776. height: math.unit(6, "feet"),
  9777. weight: math.unit(103, "lb"),
  9778. name: "Front",
  9779. image: {
  9780. source: "./media/characters/abbott-absol/front.svg",
  9781. extra: 2010 / 1842
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Megamicro",
  9788. height: math.unit(0.1, "mm")
  9789. },
  9790. {
  9791. name: "Micro",
  9792. height: math.unit(1, "inch")
  9793. },
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(6, "feet"),
  9797. default: true
  9798. },
  9799. ]
  9800. ))
  9801. characterMakers.push(() => makeCharacter(
  9802. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9803. {
  9804. front: {
  9805. height: math.unit(6, "feet"),
  9806. weight: math.unit(264, "lb"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/hector/front.svg",
  9810. extra: 2280 / 2130,
  9811. bottom: 0.07
  9812. }
  9813. },
  9814. },
  9815. [
  9816. {
  9817. name: "Normal",
  9818. height: math.unit(12.25, "foot"),
  9819. default: true
  9820. },
  9821. {
  9822. name: "Macro",
  9823. height: math.unit(160, "feet")
  9824. },
  9825. ]
  9826. ))
  9827. characterMakers.push(() => makeCharacter(
  9828. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9829. {
  9830. front: {
  9831. height: math.unit(6, "feet"),
  9832. weight: math.unit(150, "lb"),
  9833. name: "Front",
  9834. image: {
  9835. source: "./media/characters/sal/front.svg",
  9836. extra: 1846 / 1699,
  9837. bottom: 0.04
  9838. }
  9839. },
  9840. },
  9841. [
  9842. {
  9843. name: "Megamacro",
  9844. height: math.unit(10, "miles"),
  9845. default: true
  9846. },
  9847. ]
  9848. ))
  9849. characterMakers.push(() => makeCharacter(
  9850. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9851. {
  9852. front: {
  9853. height: math.unit(3, "meters"),
  9854. weight: math.unit(450, "kg"),
  9855. name: "front",
  9856. image: {
  9857. source: "./media/characters/ranger/front.svg",
  9858. extra: 2401 / 2243,
  9859. bottom: 0.05
  9860. }
  9861. },
  9862. },
  9863. [
  9864. {
  9865. name: "Normal",
  9866. height: math.unit(3, "meters"),
  9867. default: true
  9868. },
  9869. ]
  9870. ))
  9871. characterMakers.push(() => makeCharacter(
  9872. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9873. {
  9874. front: {
  9875. height: math.unit(14, "feet"),
  9876. weight: math.unit(800, "kg"),
  9877. name: "Front",
  9878. image: {
  9879. source: "./media/characters/theresa/front.svg",
  9880. extra: 3575 / 3346,
  9881. bottom: 0.03
  9882. }
  9883. },
  9884. },
  9885. [
  9886. {
  9887. name: "Normal",
  9888. height: math.unit(14, "feet"),
  9889. default: true
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9895. {
  9896. front: {
  9897. height: math.unit(6, "feet"),
  9898. weight: math.unit(3, "kg"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/ine/front.svg",
  9902. extra: 678 / 539,
  9903. bottom: 0.023
  9904. }
  9905. },
  9906. },
  9907. [
  9908. {
  9909. name: "Normal",
  9910. height: math.unit(2.265, "feet"),
  9911. default: true
  9912. },
  9913. ]
  9914. ))
  9915. characterMakers.push(() => makeCharacter(
  9916. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9917. {
  9918. front: {
  9919. height: math.unit(5, "feet"),
  9920. weight: math.unit(30, "kg"),
  9921. name: "Front",
  9922. image: {
  9923. source: "./media/characters/vial/front.svg",
  9924. extra: 1365 / 1277,
  9925. bottom: 0.04
  9926. }
  9927. },
  9928. },
  9929. [
  9930. {
  9931. name: "Normal",
  9932. height: math.unit(5, "feet"),
  9933. default: true
  9934. },
  9935. ]
  9936. ))
  9937. characterMakers.push(() => makeCharacter(
  9938. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9939. {
  9940. side: {
  9941. height: math.unit(3.4, "meters"),
  9942. weight: math.unit(1000, "lb"),
  9943. name: "Side",
  9944. image: {
  9945. source: "./media/characters/rovoska/side.svg",
  9946. extra: 4403 / 1515
  9947. }
  9948. },
  9949. },
  9950. [
  9951. {
  9952. name: "Normal",
  9953. height: math.unit(3.4, "meters"),
  9954. default: true
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9960. {
  9961. front: {
  9962. height: math.unit(8, "feet"),
  9963. weight: math.unit(315, "lb"),
  9964. name: "Front",
  9965. image: {
  9966. source: "./media/characters/gunner-rotthbauer/front.svg"
  9967. }
  9968. },
  9969. back: {
  9970. height: math.unit(8, "feet"),
  9971. weight: math.unit(315, "lb"),
  9972. name: "Back",
  9973. image: {
  9974. source: "./media/characters/gunner-rotthbauer/back.svg"
  9975. }
  9976. },
  9977. },
  9978. [
  9979. {
  9980. name: "Micro",
  9981. height: math.unit(3.5, "inches")
  9982. },
  9983. {
  9984. name: "Normal",
  9985. height: math.unit(8, "feet"),
  9986. default: true
  9987. },
  9988. {
  9989. name: "Macro",
  9990. height: math.unit(250, "feet")
  9991. },
  9992. {
  9993. name: "Megamacro",
  9994. height: math.unit(1, "AU")
  9995. },
  9996. ]
  9997. ))
  9998. characterMakers.push(() => makeCharacter(
  9999. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10000. {
  10001. front: {
  10002. height: math.unit(5 + 5 / 12, "feet"),
  10003. weight: math.unit(140, "lb"),
  10004. name: "Front",
  10005. image: {
  10006. source: "./media/characters/allatia/front.svg",
  10007. extra: 1227 / 1180,
  10008. bottom: 0.027
  10009. }
  10010. },
  10011. },
  10012. [
  10013. {
  10014. name: "Normal",
  10015. height: math.unit(5 + 5 / 12, "feet")
  10016. },
  10017. {
  10018. name: "Macro",
  10019. height: math.unit(250, "feet"),
  10020. default: true
  10021. },
  10022. {
  10023. name: "Megamacro",
  10024. height: math.unit(8, "miles")
  10025. }
  10026. ]
  10027. ))
  10028. characterMakers.push(() => makeCharacter(
  10029. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10030. {
  10031. front: {
  10032. height: math.unit(6, "feet"),
  10033. weight: math.unit(120, "lb"),
  10034. name: "Front",
  10035. image: {
  10036. source: "./media/characters/tene/front.svg",
  10037. extra: 1728 / 1578,
  10038. bottom: 0.022
  10039. }
  10040. },
  10041. stomping: {
  10042. height: math.unit(2.025, "meters"),
  10043. weight: math.unit(120, "lb"),
  10044. name: "Stomping",
  10045. image: {
  10046. source: "./media/characters/tene/stomping.svg",
  10047. extra: 938 / 873,
  10048. bottom: 0.01
  10049. }
  10050. },
  10051. sitting: {
  10052. height: math.unit(1, "meter"),
  10053. weight: math.unit(120, "lb"),
  10054. name: "Sitting",
  10055. image: {
  10056. source: "./media/characters/tene/sitting.svg",
  10057. extra: 437 / 415,
  10058. bottom: 0.1
  10059. }
  10060. },
  10061. feral: {
  10062. height: math.unit(3.9, "feet"),
  10063. weight: math.unit(250, "lb"),
  10064. name: "Feral",
  10065. image: {
  10066. source: "./media/characters/tene/feral.svg",
  10067. extra: 717 / 458,
  10068. bottom: 0.179
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Normal",
  10075. height: math.unit(6, "feet")
  10076. },
  10077. {
  10078. name: "Macro",
  10079. height: math.unit(300, "feet"),
  10080. default: true
  10081. },
  10082. {
  10083. name: "Megamacro",
  10084. height: math.unit(5, "miles")
  10085. },
  10086. ]
  10087. ))
  10088. characterMakers.push(() => makeCharacter(
  10089. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10090. {
  10091. side: {
  10092. height: math.unit(6, "feet"),
  10093. name: "Side",
  10094. image: {
  10095. source: "./media/characters/evander/side.svg",
  10096. extra: 877 / 477
  10097. }
  10098. },
  10099. },
  10100. [
  10101. {
  10102. name: "Normal",
  10103. height: math.unit(0.83, "meters"),
  10104. default: true
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10110. {
  10111. front: {
  10112. height: math.unit(12, "feet"),
  10113. weight: math.unit(1000, "lb"),
  10114. name: "Front",
  10115. image: {
  10116. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10117. extra: 1762 / 1611
  10118. }
  10119. },
  10120. back: {
  10121. height: math.unit(12, "feet"),
  10122. weight: math.unit(1000, "lb"),
  10123. name: "Back",
  10124. image: {
  10125. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10126. extra: 1762 / 1611
  10127. }
  10128. },
  10129. },
  10130. [
  10131. {
  10132. name: "Normal",
  10133. height: math.unit(12, "feet"),
  10134. default: true
  10135. },
  10136. {
  10137. name: "Kaiju",
  10138. height: math.unit(150, "feet")
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(6, "feet"),
  10147. weight: math.unit(150, "lb"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/zero-alurus/front.svg"
  10151. }
  10152. },
  10153. back: {
  10154. height: math.unit(6, "feet"),
  10155. weight: math.unit(150, "lb"),
  10156. name: "Back",
  10157. image: {
  10158. source: "./media/characters/zero-alurus/back.svg"
  10159. }
  10160. },
  10161. },
  10162. [
  10163. {
  10164. name: "Normal",
  10165. height: math.unit(5 + 10 / 12, "feet")
  10166. },
  10167. {
  10168. name: "Macro",
  10169. height: math.unit(60, "feet"),
  10170. default: true
  10171. },
  10172. {
  10173. name: "Macro+",
  10174. height: math.unit(450, "feet")
  10175. },
  10176. ]
  10177. ))
  10178. characterMakers.push(() => makeCharacter(
  10179. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10180. {
  10181. front: {
  10182. height: math.unit(6, "feet"),
  10183. weight: math.unit(200, "lb"),
  10184. name: "Front",
  10185. image: {
  10186. source: "./media/characters/mega-shi/front.svg",
  10187. extra: 1279 / 1250,
  10188. bottom: 0.02
  10189. }
  10190. },
  10191. back: {
  10192. height: math.unit(6, "feet"),
  10193. weight: math.unit(200, "lb"),
  10194. name: "Back",
  10195. image: {
  10196. source: "./media/characters/mega-shi/back.svg",
  10197. extra: 1279 / 1250,
  10198. bottom: 0.02
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Micro",
  10205. height: math.unit(16 + 6 / 12, "feet")
  10206. },
  10207. {
  10208. name: "Third Dimension",
  10209. height: math.unit(40, "meters")
  10210. },
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(660, "feet"),
  10214. default: true
  10215. },
  10216. {
  10217. name: "Megamacro",
  10218. height: math.unit(10, "miles")
  10219. },
  10220. {
  10221. name: "Planetary Launch",
  10222. height: math.unit(500, "miles")
  10223. },
  10224. {
  10225. name: "Interstellar",
  10226. height: math.unit(1e9, "miles")
  10227. },
  10228. {
  10229. name: "Leaving the Universe",
  10230. height: math.unit(1, "gigaparsec")
  10231. },
  10232. {
  10233. name: "Travelling Universes",
  10234. height: math.unit(30e15, "parsecs")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(5 + 4/12, "feet"),
  10243. weight: math.unit(120, "lb"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/odyssey/front.svg",
  10247. extra: 1747/1571,
  10248. bottom: 47/1794
  10249. }
  10250. },
  10251. side: {
  10252. height: math.unit(5.1, "feet"),
  10253. weight: math.unit(120, "lb"),
  10254. name: "Side",
  10255. image: {
  10256. source: "./media/characters/odyssey/side.svg",
  10257. extra: 1847/1619,
  10258. bottom: 47/1894
  10259. }
  10260. },
  10261. lounging: {
  10262. height: math.unit(1.464, "feet"),
  10263. weight: math.unit(120, "lb"),
  10264. name: "Lounging",
  10265. image: {
  10266. source: "./media/characters/odyssey/lounging.svg",
  10267. extra: 1235/837,
  10268. bottom: 551/1786
  10269. }
  10270. },
  10271. },
  10272. [
  10273. {
  10274. name: "Normal",
  10275. height: math.unit(5 + 4 / 12, "feet")
  10276. },
  10277. {
  10278. name: "Macro",
  10279. height: math.unit(1, "km")
  10280. },
  10281. {
  10282. name: "Megamacro",
  10283. height: math.unit(3000, "km")
  10284. },
  10285. {
  10286. name: "Gigamacro",
  10287. height: math.unit(1, "AU"),
  10288. default: true
  10289. },
  10290. {
  10291. name: "Omniversal",
  10292. height: math.unit(100e14, "lightyears")
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10298. {
  10299. front: {
  10300. height: math.unit(6, "feet"),
  10301. weight: math.unit(300, "lb"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/mekuto/front.svg",
  10305. extra: 921 / 832,
  10306. bottom: 0.03
  10307. }
  10308. },
  10309. hand: {
  10310. height: math.unit(6 / 10.24, "feet"),
  10311. name: "Hand",
  10312. image: {
  10313. source: "./media/characters/mekuto/hand.svg"
  10314. }
  10315. },
  10316. foot: {
  10317. height: math.unit(6 / 5.05, "feet"),
  10318. name: "Foot",
  10319. image: {
  10320. source: "./media/characters/mekuto/foot.svg"
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Minimicro",
  10327. height: math.unit(0.2, "inches")
  10328. },
  10329. {
  10330. name: "Micro",
  10331. height: math.unit(1.5, "inches")
  10332. },
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(5 + 11 / 12, "feet"),
  10336. default: true
  10337. },
  10338. {
  10339. name: "Minimacro",
  10340. height: math.unit(17 + 9 / 12, "feet")
  10341. },
  10342. {
  10343. name: "Macro",
  10344. height: math.unit(177.5, "feet")
  10345. },
  10346. {
  10347. name: "Megamacro",
  10348. height: math.unit(152, "miles")
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10354. {
  10355. front: {
  10356. height: math.unit(6.5, "inches"),
  10357. weight: math.unit(13, "oz"),
  10358. name: "Front",
  10359. image: {
  10360. source: "./media/characters/dafydd-tomos/front.svg",
  10361. extra: 2990 / 2603,
  10362. bottom: 0.03
  10363. }
  10364. },
  10365. },
  10366. [
  10367. {
  10368. name: "Micro",
  10369. height: math.unit(6.5, "inches"),
  10370. default: true
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10376. {
  10377. front: {
  10378. height: math.unit(6, "feet"),
  10379. weight: math.unit(150, "lb"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/splinter/front.svg",
  10383. extra: 2990 / 2882,
  10384. bottom: 0.04
  10385. }
  10386. },
  10387. back: {
  10388. height: math.unit(6, "feet"),
  10389. weight: math.unit(150, "lb"),
  10390. name: "Back",
  10391. image: {
  10392. source: "./media/characters/splinter/back.svg",
  10393. extra: 2990 / 2882,
  10394. bottom: 0.04
  10395. }
  10396. },
  10397. },
  10398. [
  10399. {
  10400. name: "Normal",
  10401. height: math.unit(6, "feet")
  10402. },
  10403. {
  10404. name: "Macro",
  10405. height: math.unit(230, "meters"),
  10406. default: true
  10407. },
  10408. ]
  10409. ))
  10410. characterMakers.push(() => makeCharacter(
  10411. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10412. {
  10413. front: {
  10414. height: math.unit(4 + 10 / 12, "feet"),
  10415. weight: math.unit(480, "lb"),
  10416. name: "Front",
  10417. image: {
  10418. source: "./media/characters/snow-gabumon/front.svg",
  10419. extra: 1140 / 963,
  10420. bottom: 0.058
  10421. }
  10422. },
  10423. back: {
  10424. height: math.unit(4 + 10 / 12, "feet"),
  10425. weight: math.unit(480, "lb"),
  10426. name: "Back",
  10427. image: {
  10428. source: "./media/characters/snow-gabumon/back.svg",
  10429. extra: 1115 / 962,
  10430. bottom: 0.041
  10431. }
  10432. },
  10433. frontUndresed: {
  10434. height: math.unit(4 + 10 / 12, "feet"),
  10435. weight: math.unit(480, "lb"),
  10436. name: "Front (Undressed)",
  10437. image: {
  10438. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10439. extra: 1061 / 960,
  10440. bottom: 0.045
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Micro",
  10447. height: math.unit(1, "inch")
  10448. },
  10449. {
  10450. name: "Normal",
  10451. height: math.unit(4 + 10 / 12, "feet"),
  10452. default: true
  10453. },
  10454. {
  10455. name: "Macro",
  10456. height: math.unit(200, "feet")
  10457. },
  10458. {
  10459. name: "Megamacro",
  10460. height: math.unit(120, "miles")
  10461. },
  10462. {
  10463. name: "Gigamacro",
  10464. height: math.unit(9800, "miles")
  10465. },
  10466. ]
  10467. ))
  10468. characterMakers.push(() => makeCharacter(
  10469. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10470. {
  10471. front: {
  10472. height: math.unit(1.7, "meters"),
  10473. weight: math.unit(140, "lb"),
  10474. name: "Front",
  10475. image: {
  10476. source: "./media/characters/moody/front.svg",
  10477. extra: 3226 / 3007,
  10478. bottom: 0.087
  10479. }
  10480. },
  10481. },
  10482. [
  10483. {
  10484. name: "Micro",
  10485. height: math.unit(1, "mm")
  10486. },
  10487. {
  10488. name: "Normal",
  10489. height: math.unit(1.7, "meters"),
  10490. default: true
  10491. },
  10492. {
  10493. name: "Macro",
  10494. height: math.unit(80, "meters")
  10495. },
  10496. {
  10497. name: "Macro+",
  10498. height: math.unit(500, "meters")
  10499. },
  10500. ]
  10501. ))
  10502. characterMakers.push(() => makeCharacter(
  10503. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10504. {
  10505. front: {
  10506. height: math.unit(6, "feet"),
  10507. weight: math.unit(150, "lb"),
  10508. name: "Front",
  10509. image: {
  10510. source: "./media/characters/zyas/front.svg",
  10511. extra: 1180 / 1120,
  10512. bottom: 0.045
  10513. }
  10514. },
  10515. },
  10516. [
  10517. {
  10518. name: "Normal",
  10519. height: math.unit(10, "feet"),
  10520. default: true
  10521. },
  10522. {
  10523. name: "Macro",
  10524. height: math.unit(500, "feet")
  10525. },
  10526. {
  10527. name: "Megamacro",
  10528. height: math.unit(5, "miles")
  10529. },
  10530. {
  10531. name: "Teramacro",
  10532. height: math.unit(150000, "miles")
  10533. },
  10534. ]
  10535. ))
  10536. characterMakers.push(() => makeCharacter(
  10537. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10538. {
  10539. front: {
  10540. height: math.unit(6, "feet"),
  10541. weight: math.unit(150, "lb"),
  10542. name: "Front",
  10543. image: {
  10544. source: "./media/characters/cuon/front.svg",
  10545. extra: 1390 / 1320,
  10546. bottom: 0.008
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Micro",
  10553. height: math.unit(3, "inches")
  10554. },
  10555. {
  10556. name: "Normal",
  10557. height: math.unit(18 + 9 / 12, "feet"),
  10558. default: true
  10559. },
  10560. {
  10561. name: "Macro",
  10562. height: math.unit(360, "feet")
  10563. },
  10564. {
  10565. name: "Megamacro",
  10566. height: math.unit(360, "miles")
  10567. },
  10568. ]
  10569. ))
  10570. characterMakers.push(() => makeCharacter(
  10571. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10572. {
  10573. front: {
  10574. height: math.unit(2.4, "meters"),
  10575. weight: math.unit(70, "kg"),
  10576. name: "Front",
  10577. image: {
  10578. source: "./media/characters/nyanuxk/front.svg",
  10579. extra: 1172 / 1084,
  10580. bottom: 0.065
  10581. }
  10582. },
  10583. side: {
  10584. height: math.unit(2.4, "meters"),
  10585. weight: math.unit(70, "kg"),
  10586. name: "Side",
  10587. image: {
  10588. source: "./media/characters/nyanuxk/side.svg",
  10589. extra: 1190 / 1132,
  10590. bottom: 0.007
  10591. }
  10592. },
  10593. back: {
  10594. height: math.unit(2.4, "meters"),
  10595. weight: math.unit(70, "kg"),
  10596. name: "Back",
  10597. image: {
  10598. source: "./media/characters/nyanuxk/back.svg",
  10599. extra: 1200 / 1141,
  10600. bottom: 0.015
  10601. }
  10602. },
  10603. foot: {
  10604. height: math.unit(0.52, "meters"),
  10605. name: "Foot",
  10606. image: {
  10607. source: "./media/characters/nyanuxk/foot.svg"
  10608. }
  10609. },
  10610. },
  10611. [
  10612. {
  10613. name: "Micro",
  10614. height: math.unit(2, "cm")
  10615. },
  10616. {
  10617. name: "Normal",
  10618. height: math.unit(2.4, "meters"),
  10619. default: true
  10620. },
  10621. {
  10622. name: "Smaller Macro",
  10623. height: math.unit(120, "meters")
  10624. },
  10625. {
  10626. name: "Bigger Macro",
  10627. height: math.unit(1.2, "km")
  10628. },
  10629. {
  10630. name: "Megamacro",
  10631. height: math.unit(15, "kilometers")
  10632. },
  10633. {
  10634. name: "Gigamacro",
  10635. height: math.unit(2000, "km")
  10636. },
  10637. {
  10638. name: "Teramacro",
  10639. height: math.unit(500000, "km")
  10640. },
  10641. ]
  10642. ))
  10643. characterMakers.push(() => makeCharacter(
  10644. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10645. {
  10646. side: {
  10647. height: math.unit(6, "feet"),
  10648. name: "Side",
  10649. image: {
  10650. source: "./media/characters/ailbhe/side.svg",
  10651. extra: 757 / 464,
  10652. bottom: 0.041
  10653. }
  10654. },
  10655. },
  10656. [
  10657. {
  10658. name: "Normal",
  10659. height: math.unit(1.07, "meters"),
  10660. default: true
  10661. },
  10662. ]
  10663. ))
  10664. characterMakers.push(() => makeCharacter(
  10665. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10666. {
  10667. front: {
  10668. height: math.unit(6, "feet"),
  10669. weight: math.unit(120, "kg"),
  10670. name: "Front",
  10671. image: {
  10672. source: "./media/characters/zevulfius/front.svg",
  10673. extra: 965 / 903
  10674. }
  10675. },
  10676. side: {
  10677. height: math.unit(6, "feet"),
  10678. weight: math.unit(120, "kg"),
  10679. name: "Side",
  10680. image: {
  10681. source: "./media/characters/zevulfius/side.svg",
  10682. extra: 939 / 900
  10683. }
  10684. },
  10685. back: {
  10686. height: math.unit(6, "feet"),
  10687. weight: math.unit(120, "kg"),
  10688. name: "Back",
  10689. image: {
  10690. source: "./media/characters/zevulfius/back.svg",
  10691. extra: 918 / 854,
  10692. bottom: 0.005
  10693. }
  10694. },
  10695. foot: {
  10696. height: math.unit(6 / 3.72, "feet"),
  10697. name: "Foot",
  10698. image: {
  10699. source: "./media/characters/zevulfius/foot.svg"
  10700. }
  10701. },
  10702. },
  10703. [
  10704. {
  10705. name: "Macro",
  10706. height: math.unit(750, "meters")
  10707. },
  10708. {
  10709. name: "Megamacro",
  10710. height: math.unit(20, "km"),
  10711. default: true
  10712. },
  10713. {
  10714. name: "Gigamacro",
  10715. height: math.unit(2000, "km")
  10716. },
  10717. {
  10718. name: "Teramacro",
  10719. height: math.unit(250000, "km")
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10725. {
  10726. front: {
  10727. height: math.unit(100, "feet"),
  10728. weight: math.unit(350, "kg"),
  10729. name: "Front",
  10730. image: {
  10731. source: "./media/characters/rikes/front.svg",
  10732. extra: 1565 / 1483,
  10733. bottom: 0.017
  10734. }
  10735. },
  10736. },
  10737. [
  10738. {
  10739. name: "Macro",
  10740. height: math.unit(100, "feet"),
  10741. default: true
  10742. },
  10743. ]
  10744. ))
  10745. characterMakers.push(() => makeCharacter(
  10746. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10747. {
  10748. front: {
  10749. height: math.unit(8, "feet"),
  10750. weight: math.unit(356, "lb"),
  10751. name: "Front",
  10752. image: {
  10753. source: "./media/characters/adam-silver-mane/front.svg",
  10754. extra: 1036/937,
  10755. bottom: 63/1099
  10756. }
  10757. },
  10758. side: {
  10759. height: math.unit(8, "feet"),
  10760. weight: math.unit(356, "lb"),
  10761. name: "Side",
  10762. image: {
  10763. source: "./media/characters/adam-silver-mane/side.svg",
  10764. extra: 997/901,
  10765. bottom: 59/1056
  10766. }
  10767. },
  10768. frontNsfw: {
  10769. height: math.unit(8, "feet"),
  10770. weight: math.unit(356, "lb"),
  10771. name: "Front (NSFW)",
  10772. image: {
  10773. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10774. extra: 1036/937,
  10775. bottom: 63/1099
  10776. }
  10777. },
  10778. sideNsfw: {
  10779. height: math.unit(8, "feet"),
  10780. weight: math.unit(356, "lb"),
  10781. name: "Side (NSFW)",
  10782. image: {
  10783. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10784. extra: 997/901,
  10785. bottom: 59/1056
  10786. }
  10787. },
  10788. dick: {
  10789. height: math.unit(2.1, "feet"),
  10790. name: "Dick",
  10791. image: {
  10792. source: "./media/characters/adam-silver-mane/dick.svg"
  10793. }
  10794. },
  10795. taur: {
  10796. height: math.unit(16, "feet"),
  10797. weight: math.unit(1500, "kg"),
  10798. name: "Taur",
  10799. image: {
  10800. source: "./media/characters/adam-silver-mane/taur.svg",
  10801. extra: 1713 / 1571,
  10802. bottom: 0.01
  10803. }
  10804. },
  10805. },
  10806. [
  10807. {
  10808. name: "Normal",
  10809. height: math.unit(8, "feet")
  10810. },
  10811. {
  10812. name: "Minimacro",
  10813. height: math.unit(80, "feet")
  10814. },
  10815. {
  10816. name: "MDA",
  10817. height: math.unit(80, "meters")
  10818. },
  10819. {
  10820. name: "Macro",
  10821. height: math.unit(800, "feet"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Megamacro",
  10826. height: math.unit(8000, "feet")
  10827. },
  10828. {
  10829. name: "Gigamacro",
  10830. height: math.unit(800, "miles")
  10831. },
  10832. {
  10833. name: "Teramacro",
  10834. height: math.unit(80000, "miles")
  10835. },
  10836. {
  10837. name: "Celestial",
  10838. height: math.unit(8e6, "miles")
  10839. },
  10840. {
  10841. name: "Star Dragon",
  10842. height: math.unit(800000, "parsecs")
  10843. },
  10844. {
  10845. name: "Godly",
  10846. height: math.unit(800, "teraparsecs")
  10847. },
  10848. ]
  10849. ))
  10850. characterMakers.push(() => makeCharacter(
  10851. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10852. {
  10853. front: {
  10854. height: math.unit(6, "feet"),
  10855. weight: math.unit(150, "lb"),
  10856. name: "Front",
  10857. image: {
  10858. source: "./media/characters/ky'owin/front.svg",
  10859. extra: 3888 / 3068,
  10860. bottom: 0.015
  10861. }
  10862. },
  10863. },
  10864. [
  10865. {
  10866. name: "Normal",
  10867. height: math.unit(6 + 8 / 12, "feet")
  10868. },
  10869. {
  10870. name: "Large",
  10871. height: math.unit(68, "feet")
  10872. },
  10873. {
  10874. name: "Macro",
  10875. height: math.unit(132, "feet")
  10876. },
  10877. {
  10878. name: "Macro+",
  10879. height: math.unit(340, "feet")
  10880. },
  10881. {
  10882. name: "Macro++",
  10883. height: math.unit(680, "feet"),
  10884. default: true
  10885. },
  10886. {
  10887. name: "Megamacro",
  10888. height: math.unit(1, "mile")
  10889. },
  10890. {
  10891. name: "Megamacro+",
  10892. height: math.unit(10, "miles")
  10893. },
  10894. ]
  10895. ))
  10896. characterMakers.push(() => makeCharacter(
  10897. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10898. {
  10899. front: {
  10900. height: math.unit(4, "feet"),
  10901. weight: math.unit(50, "lb"),
  10902. name: "Front",
  10903. image: {
  10904. source: "./media/characters/mal/front.svg",
  10905. extra: 785 / 724,
  10906. bottom: 0.07
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Micro",
  10913. height: math.unit(4, "inches")
  10914. },
  10915. {
  10916. name: "Normal",
  10917. height: math.unit(4, "feet"),
  10918. default: true
  10919. },
  10920. {
  10921. name: "Macro",
  10922. height: math.unit(200, "feet")
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10928. {
  10929. front: {
  10930. height: math.unit(6, "feet"),
  10931. weight: math.unit(150, "lb"),
  10932. name: "Front",
  10933. image: {
  10934. source: "./media/characters/jordan-deware/front.svg",
  10935. extra: 1191 / 1012
  10936. }
  10937. },
  10938. },
  10939. [
  10940. {
  10941. name: "Nano",
  10942. height: math.unit(0.01, "mm")
  10943. },
  10944. {
  10945. name: "Minimicro",
  10946. height: math.unit(1, "mm")
  10947. },
  10948. {
  10949. name: "Micro",
  10950. height: math.unit(0.5, "inches")
  10951. },
  10952. {
  10953. name: "Normal",
  10954. height: math.unit(4, "feet"),
  10955. default: true
  10956. },
  10957. {
  10958. name: "Minimacro",
  10959. height: math.unit(40, "meters")
  10960. },
  10961. {
  10962. name: "Small Macro",
  10963. height: math.unit(400, "meters")
  10964. },
  10965. {
  10966. name: "Macro",
  10967. height: math.unit(4, "miles")
  10968. },
  10969. {
  10970. name: "Megamacro",
  10971. height: math.unit(40, "miles")
  10972. },
  10973. {
  10974. name: "Megamacro+",
  10975. height: math.unit(400, "miles")
  10976. },
  10977. {
  10978. name: "Gigamacro",
  10979. height: math.unit(400000, "miles")
  10980. },
  10981. ]
  10982. ))
  10983. characterMakers.push(() => makeCharacter(
  10984. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10985. {
  10986. side: {
  10987. height: math.unit(6, "feet"),
  10988. weight: math.unit(150, "lb"),
  10989. name: "Side",
  10990. image: {
  10991. source: "./media/characters/kimiko/side.svg",
  10992. extra: 600 / 358
  10993. }
  10994. },
  10995. },
  10996. [
  10997. {
  10998. name: "Normal",
  10999. height: math.unit(15, "feet"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Macro",
  11004. height: math.unit(220, "feet")
  11005. },
  11006. {
  11007. name: "Macro+",
  11008. height: math.unit(1450, "feet")
  11009. },
  11010. {
  11011. name: "Megamacro",
  11012. height: math.unit(11500, "feet")
  11013. },
  11014. {
  11015. name: "Gigamacro",
  11016. height: math.unit(9500, "miles")
  11017. },
  11018. {
  11019. name: "Teramacro",
  11020. height: math.unit(2208005005, "miles")
  11021. },
  11022. {
  11023. name: "Examacro",
  11024. height: math.unit(2750, "parsecs")
  11025. },
  11026. {
  11027. name: "Zettamacro",
  11028. height: math.unit(101500, "parsecs")
  11029. },
  11030. ]
  11031. ))
  11032. characterMakers.push(() => makeCharacter(
  11033. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11034. {
  11035. front: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(70, "kg"),
  11038. name: "Front",
  11039. image: {
  11040. source: "./media/characters/andrew-sleepy/front.svg"
  11041. }
  11042. },
  11043. side: {
  11044. height: math.unit(6, "feet"),
  11045. weight: math.unit(70, "kg"),
  11046. name: "Side",
  11047. image: {
  11048. source: "./media/characters/andrew-sleepy/side.svg"
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Micro",
  11055. height: math.unit(1, "mm"),
  11056. default: true
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(150, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/judio/front.svg",
  11069. extra: 1258 / 1110
  11070. }
  11071. },
  11072. },
  11073. [
  11074. {
  11075. name: "Normal",
  11076. height: math.unit(5 + 6 / 12, "feet")
  11077. },
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(1000, "feet"),
  11081. default: true
  11082. },
  11083. {
  11084. name: "Megamacro",
  11085. height: math.unit(10, "miles")
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11091. {
  11092. frontDressed: {
  11093. height: math.unit(6, "feet"),
  11094. weight: math.unit(68, "kg"),
  11095. name: "Front (Dressed)",
  11096. image: {
  11097. source: "./media/characters/nomaxice/front-dressed.svg",
  11098. extra: 1137/824,
  11099. bottom: 74/1211
  11100. }
  11101. },
  11102. frontShorts: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(68, "kg"),
  11105. name: "Front (Shorts)",
  11106. image: {
  11107. source: "./media/characters/nomaxice/front-shorts.svg",
  11108. extra: 1137/824,
  11109. bottom: 74/1211
  11110. }
  11111. },
  11112. back: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(68, "kg"),
  11115. name: "Back",
  11116. image: {
  11117. source: "./media/characters/nomaxice/back.svg",
  11118. extra: 822/786,
  11119. bottom: 39/861
  11120. }
  11121. },
  11122. hand: {
  11123. height: math.unit(0.565, "feet"),
  11124. name: "Hand",
  11125. image: {
  11126. source: "./media/characters/nomaxice/hand.svg"
  11127. }
  11128. },
  11129. foot: {
  11130. height: math.unit(1, "feet"),
  11131. name: "Foot",
  11132. image: {
  11133. source: "./media/characters/nomaxice/foot.svg"
  11134. }
  11135. },
  11136. },
  11137. [
  11138. {
  11139. name: "Micro",
  11140. height: math.unit(8, "cm")
  11141. },
  11142. {
  11143. name: "Norm",
  11144. height: math.unit(1.82, "m")
  11145. },
  11146. {
  11147. name: "Norm+",
  11148. height: math.unit(8.8, "feet"),
  11149. default: true
  11150. },
  11151. {
  11152. name: "Big",
  11153. height: math.unit(8, "meters")
  11154. },
  11155. {
  11156. name: "Macro",
  11157. height: math.unit(18, "meters")
  11158. },
  11159. {
  11160. name: "Macro+",
  11161. height: math.unit(88, "meters")
  11162. },
  11163. ]
  11164. ))
  11165. characterMakers.push(() => makeCharacter(
  11166. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11167. {
  11168. front: {
  11169. height: math.unit(12, "feet"),
  11170. weight: math.unit(1.5, "tons"),
  11171. name: "Front",
  11172. image: {
  11173. source: "./media/characters/dydros/front.svg",
  11174. extra: 863 / 800,
  11175. bottom: 0.015
  11176. }
  11177. },
  11178. back: {
  11179. height: math.unit(12, "feet"),
  11180. weight: math.unit(1.5, "tons"),
  11181. name: "Back",
  11182. image: {
  11183. source: "./media/characters/dydros/back.svg",
  11184. extra: 900 / 843,
  11185. bottom: 0.005
  11186. }
  11187. },
  11188. },
  11189. [
  11190. {
  11191. name: "Normal",
  11192. height: math.unit(12, "feet"),
  11193. default: true
  11194. },
  11195. ]
  11196. ))
  11197. characterMakers.push(() => makeCharacter(
  11198. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11199. {
  11200. front: {
  11201. height: math.unit(6, "feet"),
  11202. weight: math.unit(100, "kg"),
  11203. name: "Front",
  11204. image: {
  11205. source: "./media/characters/riggi/front.svg",
  11206. extra: 5787 / 5303
  11207. }
  11208. },
  11209. hyper: {
  11210. height: math.unit(6 * 5 / 3, "feet"),
  11211. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11212. name: "Hyper",
  11213. image: {
  11214. source: "./media/characters/riggi/hyper.svg",
  11215. extra: 3595 / 3485
  11216. }
  11217. },
  11218. },
  11219. [
  11220. {
  11221. name: "Small Macro",
  11222. height: math.unit(50, "feet")
  11223. },
  11224. {
  11225. name: "Default",
  11226. height: math.unit(200, "feet"),
  11227. default: true
  11228. },
  11229. {
  11230. name: "Loom",
  11231. height: math.unit(10000, "feet")
  11232. },
  11233. {
  11234. name: "Cruising Altitude",
  11235. height: math.unit(30000, "feet")
  11236. },
  11237. {
  11238. name: "Megamacro",
  11239. height: math.unit(100, "miles")
  11240. },
  11241. {
  11242. name: "Continent Sized",
  11243. height: math.unit(2800, "miles")
  11244. },
  11245. {
  11246. name: "Earth Sized",
  11247. height: math.unit(8000, "miles")
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11253. {
  11254. front: {
  11255. height: math.unit(6, "feet"),
  11256. weight: math.unit(250, "lb"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/alexi/front.svg",
  11260. extra: 3483 / 3291,
  11261. bottom: 0.04
  11262. }
  11263. },
  11264. back: {
  11265. height: math.unit(6, "feet"),
  11266. weight: math.unit(250, "lb"),
  11267. name: "Back",
  11268. image: {
  11269. source: "./media/characters/alexi/back.svg",
  11270. extra: 3533 / 3356,
  11271. bottom: 0.021
  11272. }
  11273. },
  11274. frontTransforming: {
  11275. height: math.unit(8.58, "feet"),
  11276. weight: math.unit(1300, "lb"),
  11277. name: "Transforming",
  11278. image: {
  11279. source: "./media/characters/alexi/front-transforming.svg",
  11280. extra: 437 / 409,
  11281. bottom: 19 / 458.66
  11282. }
  11283. },
  11284. frontTransformed: {
  11285. height: math.unit(12.5, "feet"),
  11286. weight: math.unit(4000, "lb"),
  11287. name: "Transformed",
  11288. image: {
  11289. source: "./media/characters/alexi/front-transformed.svg",
  11290. extra: 639 / 614,
  11291. bottom: 30.55 / 671
  11292. }
  11293. },
  11294. },
  11295. [
  11296. {
  11297. name: "Normal",
  11298. height: math.unit(14, "feet"),
  11299. default: true
  11300. },
  11301. {
  11302. name: "Minimacro",
  11303. height: math.unit(30, "meters")
  11304. },
  11305. {
  11306. name: "Macro",
  11307. height: math.unit(500, "meters")
  11308. },
  11309. {
  11310. name: "Megamacro",
  11311. height: math.unit(9000, "km")
  11312. },
  11313. {
  11314. name: "Teramacro",
  11315. height: math.unit(384000, "km")
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(6, "feet"),
  11324. weight: math.unit(150, "lb"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/kayroo/front.svg",
  11328. extra: 1153 / 1038,
  11329. bottom: 0.06
  11330. }
  11331. },
  11332. foot: {
  11333. height: math.unit(6, "feet"),
  11334. weight: math.unit(150, "lb"),
  11335. name: "Foot",
  11336. image: {
  11337. source: "./media/characters/kayroo/foot.svg"
  11338. }
  11339. },
  11340. },
  11341. [
  11342. {
  11343. name: "Normal",
  11344. height: math.unit(8, "feet"),
  11345. default: true
  11346. },
  11347. {
  11348. name: "Minimacro",
  11349. height: math.unit(250, "feet")
  11350. },
  11351. {
  11352. name: "Macro",
  11353. height: math.unit(2800, "feet")
  11354. },
  11355. {
  11356. name: "Megamacro",
  11357. height: math.unit(5200, "feet")
  11358. },
  11359. {
  11360. name: "Gigamacro",
  11361. height: math.unit(27000, "feet")
  11362. },
  11363. {
  11364. name: "Omega",
  11365. height: math.unit(45000, "feet")
  11366. },
  11367. ]
  11368. ))
  11369. characterMakers.push(() => makeCharacter(
  11370. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11371. {
  11372. front: {
  11373. height: math.unit(18, "feet"),
  11374. weight: math.unit(5800, "lb"),
  11375. name: "Front",
  11376. image: {
  11377. source: "./media/characters/rhys/front.svg",
  11378. extra: 3386 / 3090,
  11379. bottom: 0.07
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Normal",
  11386. height: math.unit(18, "feet"),
  11387. default: true
  11388. },
  11389. {
  11390. name: "Working Size",
  11391. height: math.unit(200, "feet")
  11392. },
  11393. {
  11394. name: "Demolition Size",
  11395. height: math.unit(2000, "feet")
  11396. },
  11397. {
  11398. name: "Maximum Licensed Size",
  11399. height: math.unit(5, "miles")
  11400. },
  11401. {
  11402. name: "Maximum Observed Size",
  11403. height: math.unit(10, "yottameters")
  11404. },
  11405. ]
  11406. ))
  11407. characterMakers.push(() => makeCharacter(
  11408. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11409. {
  11410. front: {
  11411. height: math.unit(6, "feet"),
  11412. weight: math.unit(250, "lb"),
  11413. name: "Front",
  11414. image: {
  11415. source: "./media/characters/toto/front.svg",
  11416. extra: 527 / 479,
  11417. bottom: 0.05
  11418. }
  11419. },
  11420. },
  11421. [
  11422. {
  11423. name: "Micro",
  11424. height: math.unit(3, "feet")
  11425. },
  11426. {
  11427. name: "Normal",
  11428. height: math.unit(10, "feet")
  11429. },
  11430. {
  11431. name: "Macro",
  11432. height: math.unit(150, "feet"),
  11433. default: true
  11434. },
  11435. {
  11436. name: "Megamacro",
  11437. height: math.unit(1200, "feet")
  11438. },
  11439. ]
  11440. ))
  11441. characterMakers.push(() => makeCharacter(
  11442. { name: "King", species: ["lion"], tags: ["anthro"] },
  11443. {
  11444. back: {
  11445. height: math.unit(6, "feet"),
  11446. weight: math.unit(150, "lb"),
  11447. name: "Back",
  11448. image: {
  11449. source: "./media/characters/king/back.svg"
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Micro",
  11456. height: math.unit(2, "inches")
  11457. },
  11458. {
  11459. name: "Normal",
  11460. height: math.unit(8, "feet")
  11461. },
  11462. {
  11463. name: "Macro",
  11464. height: math.unit(200, "feet"),
  11465. default: true
  11466. },
  11467. {
  11468. name: "Megamacro",
  11469. height: math.unit(50, "miles")
  11470. },
  11471. ]
  11472. ))
  11473. characterMakers.push(() => makeCharacter(
  11474. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11475. {
  11476. front: {
  11477. height: math.unit(11, "feet"),
  11478. weight: math.unit(1400, "lb"),
  11479. name: "Front",
  11480. image: {
  11481. source: "./media/characters/cordite/front.svg",
  11482. extra: 1919/1827,
  11483. bottom: 40/1959
  11484. }
  11485. },
  11486. side: {
  11487. height: math.unit(11, "feet"),
  11488. weight: math.unit(1400, "lb"),
  11489. name: "Side",
  11490. image: {
  11491. source: "./media/characters/cordite/side.svg",
  11492. extra: 1908/1793,
  11493. bottom: 38/1946
  11494. }
  11495. },
  11496. back: {
  11497. height: math.unit(11, "feet"),
  11498. weight: math.unit(1400, "lb"),
  11499. name: "Back",
  11500. image: {
  11501. source: "./media/characters/cordite/back.svg",
  11502. extra: 1938/1837,
  11503. bottom: 10/1948
  11504. }
  11505. },
  11506. feral: {
  11507. height: math.unit(2, "feet"),
  11508. weight: math.unit(90, "lb"),
  11509. name: "Feral",
  11510. image: {
  11511. source: "./media/characters/cordite/feral.svg",
  11512. extra: 1260 / 755,
  11513. bottom: 0.05
  11514. }
  11515. },
  11516. },
  11517. [
  11518. {
  11519. name: "Normal",
  11520. height: math.unit(11, "feet"),
  11521. default: true
  11522. },
  11523. ]
  11524. ))
  11525. characterMakers.push(() => makeCharacter(
  11526. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11527. {
  11528. front: {
  11529. height: math.unit(6, "feet"),
  11530. weight: math.unit(150, "lb"),
  11531. name: "Front",
  11532. image: {
  11533. source: "./media/characters/pianostrong/front.svg",
  11534. extra: 6577 / 6254,
  11535. bottom: 0.02
  11536. }
  11537. },
  11538. side: {
  11539. height: math.unit(6, "feet"),
  11540. weight: math.unit(150, "lb"),
  11541. name: "Side",
  11542. image: {
  11543. source: "./media/characters/pianostrong/side.svg",
  11544. extra: 6106 / 5730
  11545. }
  11546. },
  11547. back: {
  11548. height: math.unit(6, "feet"),
  11549. weight: math.unit(150, "lb"),
  11550. name: "Back",
  11551. image: {
  11552. source: "./media/characters/pianostrong/back.svg",
  11553. extra: 6085 / 5733,
  11554. bottom: 0.01
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Macro",
  11561. height: math.unit(100, "feet")
  11562. },
  11563. {
  11564. name: "Macro+",
  11565. height: math.unit(300, "feet"),
  11566. default: true
  11567. },
  11568. {
  11569. name: "Macro++",
  11570. height: math.unit(1000, "feet")
  11571. },
  11572. ]
  11573. ))
  11574. characterMakers.push(() => makeCharacter(
  11575. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11576. {
  11577. front: {
  11578. height: math.unit(6, "feet"),
  11579. weight: math.unit(150, "lb"),
  11580. name: "Front",
  11581. image: {
  11582. source: "./media/characters/kona/front.svg",
  11583. extra: 2960 / 2629,
  11584. bottom: 0.005
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Normal",
  11591. height: math.unit(11 + 8 / 12, "feet")
  11592. },
  11593. {
  11594. name: "Macro",
  11595. height: math.unit(850, "feet"),
  11596. default: true
  11597. },
  11598. {
  11599. name: "Macro+",
  11600. height: math.unit(1.5, "km"),
  11601. default: true
  11602. },
  11603. {
  11604. name: "Megamacro",
  11605. height: math.unit(80, "miles")
  11606. },
  11607. {
  11608. name: "Gigamacro",
  11609. height: math.unit(3500, "miles")
  11610. },
  11611. ]
  11612. ))
  11613. characterMakers.push(() => makeCharacter(
  11614. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11615. {
  11616. side: {
  11617. height: math.unit(1.9, "meters"),
  11618. weight: math.unit(326, "kg"),
  11619. name: "Side",
  11620. image: {
  11621. source: "./media/characters/levi/side.svg",
  11622. extra: 1704 / 1334,
  11623. bottom: 0.02
  11624. }
  11625. },
  11626. },
  11627. [
  11628. {
  11629. name: "Normal",
  11630. height: math.unit(1.9, "meters"),
  11631. default: true
  11632. },
  11633. {
  11634. name: "Macro",
  11635. height: math.unit(20, "meters")
  11636. },
  11637. {
  11638. name: "Macro+",
  11639. height: math.unit(200, "meters")
  11640. },
  11641. {
  11642. name: "Megamacro",
  11643. height: math.unit(2, "km")
  11644. },
  11645. {
  11646. name: "Megamacro+",
  11647. height: math.unit(20, "km")
  11648. },
  11649. {
  11650. name: "Gigamacro",
  11651. height: math.unit(2500, "km")
  11652. },
  11653. {
  11654. name: "Gigamacro+",
  11655. height: math.unit(120000, "km")
  11656. },
  11657. {
  11658. name: "Teramacro",
  11659. height: math.unit(7.77e6, "km")
  11660. },
  11661. ]
  11662. ))
  11663. characterMakers.push(() => makeCharacter(
  11664. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11665. {
  11666. front: {
  11667. height: math.unit(6 + 4/12, "feet"),
  11668. weight: math.unit(190, "lb"),
  11669. name: "Front",
  11670. image: {
  11671. source: "./media/characters/bmc/front.svg",
  11672. extra: 1626/1472,
  11673. bottom: 79/1705
  11674. }
  11675. },
  11676. back: {
  11677. height: math.unit(6 + 4/12, "feet"),
  11678. weight: math.unit(190, "lb"),
  11679. name: "Back",
  11680. image: {
  11681. source: "./media/characters/bmc/back.svg",
  11682. extra: 1640/1479,
  11683. bottom: 45/1685
  11684. }
  11685. },
  11686. frontArmor: {
  11687. height: math.unit(6 + 4/12, "feet"),
  11688. weight: math.unit(190, "lb"),
  11689. name: "Front-armor",
  11690. image: {
  11691. source: "./media/characters/bmc/front-armor.svg",
  11692. extra: 1538/1468,
  11693. bottom: 79/1617
  11694. }
  11695. },
  11696. },
  11697. [
  11698. {
  11699. name: "Human-sized",
  11700. height: math.unit(6 + 4 / 12, "feet")
  11701. },
  11702. {
  11703. name: "Interactive Size",
  11704. height: math.unit(25, "feet")
  11705. },
  11706. {
  11707. name: "Small",
  11708. height: math.unit(250, "feet")
  11709. },
  11710. {
  11711. name: "Normal",
  11712. height: math.unit(1250, "feet"),
  11713. default: true
  11714. },
  11715. {
  11716. name: "Good Day",
  11717. height: math.unit(88, "miles")
  11718. },
  11719. {
  11720. name: "Largest Measured Size",
  11721. height: math.unit(105.960, "galaxies")
  11722. },
  11723. ]
  11724. ))
  11725. characterMakers.push(() => makeCharacter(
  11726. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11727. {
  11728. front: {
  11729. height: math.unit(20, "feet"),
  11730. weight: math.unit(2016, "kg"),
  11731. name: "Front",
  11732. image: {
  11733. source: "./media/characters/sven-the-kaiju/front.svg",
  11734. extra: 1277/1250,
  11735. bottom: 35/1312
  11736. }
  11737. },
  11738. mouth: {
  11739. height: math.unit(1.85, "feet"),
  11740. name: "Mouth",
  11741. image: {
  11742. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11743. }
  11744. },
  11745. },
  11746. [
  11747. {
  11748. name: "Fairy",
  11749. height: math.unit(6, "inches")
  11750. },
  11751. {
  11752. name: "Normal",
  11753. height: math.unit(20, "feet"),
  11754. default: true
  11755. },
  11756. {
  11757. name: "Rampage",
  11758. height: math.unit(200, "feet")
  11759. },
  11760. {
  11761. name: "Archfey Forest Guardian",
  11762. height: math.unit(1, "mile")
  11763. },
  11764. ]
  11765. ))
  11766. characterMakers.push(() => makeCharacter(
  11767. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11768. {
  11769. front: {
  11770. height: math.unit(4, "meters"),
  11771. weight: math.unit(2, "tons"),
  11772. name: "Front",
  11773. image: {
  11774. source: "./media/characters/marik/front.svg",
  11775. extra: 1057 / 1003,
  11776. bottom: 0.08
  11777. }
  11778. },
  11779. },
  11780. [
  11781. {
  11782. name: "Normal",
  11783. height: math.unit(4, "meters"),
  11784. default: true
  11785. },
  11786. {
  11787. name: "Macro",
  11788. height: math.unit(20, "meters")
  11789. },
  11790. {
  11791. name: "Megamacro",
  11792. height: math.unit(50, "km")
  11793. },
  11794. {
  11795. name: "Gigamacro",
  11796. height: math.unit(100, "km")
  11797. },
  11798. {
  11799. name: "Alpha Macro",
  11800. height: math.unit(7.88e7, "yottameters")
  11801. },
  11802. ]
  11803. ))
  11804. characterMakers.push(() => makeCharacter(
  11805. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11806. {
  11807. front: {
  11808. height: math.unit(6, "feet"),
  11809. weight: math.unit(110, "lb"),
  11810. name: "Front",
  11811. image: {
  11812. source: "./media/characters/mel/front.svg",
  11813. extra: 736 / 617,
  11814. bottom: 0.017
  11815. }
  11816. },
  11817. },
  11818. [
  11819. {
  11820. name: "Pico",
  11821. height: math.unit(3, "pm")
  11822. },
  11823. {
  11824. name: "Nano",
  11825. height: math.unit(3, "nm")
  11826. },
  11827. {
  11828. name: "Micro",
  11829. height: math.unit(0.3, "mm"),
  11830. default: true
  11831. },
  11832. {
  11833. name: "Micro+",
  11834. height: math.unit(3, "mm")
  11835. },
  11836. {
  11837. name: "Normal",
  11838. height: math.unit(5 + 10.5 / 12, "feet")
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11844. {
  11845. kaiju: {
  11846. height: math.unit(1.75, "meters"),
  11847. weight: math.unit(55, "kg"),
  11848. name: "Kaiju",
  11849. image: {
  11850. source: "./media/characters/lykonous/kaiju.svg",
  11851. extra: 1055 / 946,
  11852. bottom: 0.135
  11853. }
  11854. },
  11855. },
  11856. [
  11857. {
  11858. name: "Normal",
  11859. height: math.unit(2.5, "meters"),
  11860. default: true
  11861. },
  11862. {
  11863. name: "Kaiju Dragon",
  11864. height: math.unit(60, "meters")
  11865. },
  11866. {
  11867. name: "Mega Kaiju",
  11868. height: math.unit(120, "km")
  11869. },
  11870. {
  11871. name: "Giga Kaiju",
  11872. height: math.unit(200, "megameters")
  11873. },
  11874. {
  11875. name: "Terra Kaiju",
  11876. height: math.unit(400, "gigameters")
  11877. },
  11878. {
  11879. name: "Kaiju Dragon God",
  11880. height: math.unit(13000, "exaparsecs")
  11881. },
  11882. ]
  11883. ))
  11884. characterMakers.push(() => makeCharacter(
  11885. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11886. {
  11887. front: {
  11888. height: math.unit(6, "feet"),
  11889. weight: math.unit(150, "lb"),
  11890. name: "Front",
  11891. image: {
  11892. source: "./media/characters/blü/front.svg",
  11893. extra: 1883 / 1564,
  11894. bottom: 0.031
  11895. }
  11896. },
  11897. },
  11898. [
  11899. {
  11900. name: "Normal",
  11901. height: math.unit(13, "feet"),
  11902. default: true
  11903. },
  11904. {
  11905. name: "Big Boi",
  11906. height: math.unit(150, "meters")
  11907. },
  11908. {
  11909. name: "Mini Stomper",
  11910. height: math.unit(300, "meters")
  11911. },
  11912. {
  11913. name: "Macro",
  11914. height: math.unit(1000, "meters")
  11915. },
  11916. {
  11917. name: "Megamacro",
  11918. height: math.unit(11000, "meters")
  11919. },
  11920. {
  11921. name: "Gigamacro",
  11922. height: math.unit(11000, "km")
  11923. },
  11924. {
  11925. name: "Teramacro",
  11926. height: math.unit(420000, "km")
  11927. },
  11928. {
  11929. name: "Examacro",
  11930. height: math.unit(120, "parsecs")
  11931. },
  11932. {
  11933. name: "God Tho",
  11934. height: math.unit(98000000000, "parsecs")
  11935. },
  11936. ]
  11937. ))
  11938. characterMakers.push(() => makeCharacter(
  11939. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11940. {
  11941. taurFront: {
  11942. height: math.unit(6, "feet"),
  11943. weight: math.unit(200, "lb"),
  11944. name: "Taur (Front)",
  11945. image: {
  11946. source: "./media/characters/scales/taur-front.svg",
  11947. extra: 1,
  11948. bottom: 0.05
  11949. }
  11950. },
  11951. taurBack: {
  11952. height: math.unit(6, "feet"),
  11953. weight: math.unit(200, "lb"),
  11954. name: "Taur (Back)",
  11955. image: {
  11956. source: "./media/characters/scales/taur-back.svg",
  11957. extra: 1,
  11958. bottom: 0.08
  11959. }
  11960. },
  11961. anthro: {
  11962. height: math.unit(6 * 7 / 12, "feet"),
  11963. weight: math.unit(100, "lb"),
  11964. name: "Anthro",
  11965. image: {
  11966. source: "./media/characters/scales/anthro.svg",
  11967. extra: 1,
  11968. bottom: 0.06
  11969. }
  11970. },
  11971. },
  11972. [
  11973. {
  11974. name: "Normal",
  11975. height: math.unit(12, "feet"),
  11976. default: true
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(6, "feet"),
  11985. weight: math.unit(150, "lb"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/koragos/front.svg",
  11989. extra: 841 / 794,
  11990. bottom: 0.035
  11991. }
  11992. },
  11993. back: {
  11994. height: math.unit(6, "feet"),
  11995. weight: math.unit(150, "lb"),
  11996. name: "Back",
  11997. image: {
  11998. source: "./media/characters/koragos/back.svg",
  11999. extra: 841 / 810,
  12000. bottom: 0.022
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Normal",
  12007. height: math.unit(6 + 11 / 12, "feet"),
  12008. default: true
  12009. },
  12010. {
  12011. name: "Macro",
  12012. height: math.unit(490, "feet")
  12013. },
  12014. {
  12015. name: "Megamacro",
  12016. height: math.unit(10, "miles")
  12017. },
  12018. {
  12019. name: "Gigamacro",
  12020. height: math.unit(50, "miles")
  12021. },
  12022. ]
  12023. ))
  12024. characterMakers.push(() => makeCharacter(
  12025. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12026. {
  12027. front: {
  12028. height: math.unit(6, "feet"),
  12029. weight: math.unit(250, "lb"),
  12030. name: "Front",
  12031. image: {
  12032. source: "./media/characters/xylrem/front.svg",
  12033. extra: 3323 / 3050,
  12034. bottom: 0.065
  12035. }
  12036. },
  12037. },
  12038. [
  12039. {
  12040. name: "Micro",
  12041. height: math.unit(4, "feet")
  12042. },
  12043. {
  12044. name: "Normal",
  12045. height: math.unit(16, "feet"),
  12046. default: true
  12047. },
  12048. {
  12049. name: "Macro",
  12050. height: math.unit(2720, "feet")
  12051. },
  12052. {
  12053. name: "Megamacro",
  12054. height: math.unit(25000, "miles")
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12060. {
  12061. front: {
  12062. height: math.unit(8, "feet"),
  12063. weight: math.unit(250, "kg"),
  12064. name: "Front",
  12065. image: {
  12066. source: "./media/characters/ikideru/front.svg",
  12067. extra: 930 / 870,
  12068. bottom: 0.087
  12069. }
  12070. },
  12071. back: {
  12072. height: math.unit(8, "feet"),
  12073. weight: math.unit(250, "kg"),
  12074. name: "Back",
  12075. image: {
  12076. source: "./media/characters/ikideru/back.svg",
  12077. extra: 919 / 852,
  12078. bottom: 0.055
  12079. }
  12080. },
  12081. },
  12082. [
  12083. {
  12084. name: "Rare",
  12085. height: math.unit(8, "feet"),
  12086. default: true
  12087. },
  12088. {
  12089. name: "Playful Loom",
  12090. height: math.unit(80, "feet")
  12091. },
  12092. {
  12093. name: "City Leaner",
  12094. height: math.unit(230, "feet")
  12095. },
  12096. {
  12097. name: "Megamacro",
  12098. height: math.unit(2500, "feet")
  12099. },
  12100. {
  12101. name: "Gigamacro",
  12102. height: math.unit(26400, "feet")
  12103. },
  12104. {
  12105. name: "Tectonic Shifter",
  12106. height: math.unit(1.7, "megameters")
  12107. },
  12108. {
  12109. name: "Planet Carer",
  12110. height: math.unit(21, "megameters")
  12111. },
  12112. {
  12113. name: "God",
  12114. height: math.unit(11157.22, "parsecs")
  12115. },
  12116. ]
  12117. ))
  12118. characterMakers.push(() => makeCharacter(
  12119. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12120. {
  12121. front: {
  12122. height: math.unit(6, "feet"),
  12123. weight: math.unit(120, "lb"),
  12124. name: "Front",
  12125. image: {
  12126. source: "./media/characters/neo/front.svg"
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Micro",
  12133. height: math.unit(2, "inches"),
  12134. default: true
  12135. },
  12136. {
  12137. name: "Human Size",
  12138. height: math.unit(5 + 8 / 12, "feet")
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(13 + 10 / 12, "feet"),
  12147. weight: math.unit(5320, "lb"),
  12148. name: "Front",
  12149. image: {
  12150. source: "./media/characters/chauncey-chantz/front.svg",
  12151. extra: 1587 / 1435,
  12152. bottom: 0.02
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Normal",
  12159. height: math.unit(13 + 10 / 12, "feet"),
  12160. default: true
  12161. },
  12162. {
  12163. name: "Macro",
  12164. height: math.unit(45, "feet")
  12165. },
  12166. {
  12167. name: "Megamacro",
  12168. height: math.unit(250, "miles")
  12169. },
  12170. {
  12171. name: "Planetary",
  12172. height: math.unit(10000, "miles")
  12173. },
  12174. {
  12175. name: "Galactic",
  12176. height: math.unit(40000, "parsecs")
  12177. },
  12178. {
  12179. name: "Universal",
  12180. height: math.unit(1, "yottameter")
  12181. },
  12182. ]
  12183. ))
  12184. characterMakers.push(() => makeCharacter(
  12185. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12186. {
  12187. front: {
  12188. height: math.unit(6, "feet"),
  12189. weight: math.unit(150, "lb"),
  12190. name: "Front",
  12191. image: {
  12192. source: "./media/characters/epifox/front.svg",
  12193. extra: 1,
  12194. bottom: 0.075
  12195. }
  12196. },
  12197. },
  12198. [
  12199. {
  12200. name: "Micro",
  12201. height: math.unit(6, "inches")
  12202. },
  12203. {
  12204. name: "Normal",
  12205. height: math.unit(12, "feet"),
  12206. default: true
  12207. },
  12208. {
  12209. name: "Macro",
  12210. height: math.unit(3810, "feet")
  12211. },
  12212. {
  12213. name: "Megamacro",
  12214. height: math.unit(500, "miles")
  12215. },
  12216. ]
  12217. ))
  12218. characterMakers.push(() => makeCharacter(
  12219. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12220. {
  12221. front: {
  12222. height: math.unit(1.8796, "m"),
  12223. weight: math.unit(230, "lb"),
  12224. name: "Front",
  12225. image: {
  12226. source: "./media/characters/colin-t/front.svg",
  12227. extra: 1272 / 1193,
  12228. bottom: 0.07
  12229. }
  12230. },
  12231. },
  12232. [
  12233. {
  12234. name: "Micro",
  12235. height: math.unit(0.571, "meters")
  12236. },
  12237. {
  12238. name: "Normal",
  12239. height: math.unit(1.8796, "meters"),
  12240. default: true
  12241. },
  12242. {
  12243. name: "Tall",
  12244. height: math.unit(4, "meters")
  12245. },
  12246. {
  12247. name: "Macro",
  12248. height: math.unit(67.241, "meters")
  12249. },
  12250. {
  12251. name: "Megamacro",
  12252. height: math.unit(371.856, "meters")
  12253. },
  12254. {
  12255. name: "Planetary",
  12256. height: math.unit(12631.5689, "km")
  12257. },
  12258. ]
  12259. ))
  12260. characterMakers.push(() => makeCharacter(
  12261. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12262. {
  12263. front: {
  12264. height: math.unit(1.85, "meters"),
  12265. weight: math.unit(80, "kg"),
  12266. name: "Front",
  12267. image: {
  12268. source: "./media/characters/matvei/front.svg",
  12269. extra: 614 / 594,
  12270. bottom: 0.01
  12271. }
  12272. },
  12273. },
  12274. [
  12275. {
  12276. name: "Normal",
  12277. height: math.unit(1.85, "meters"),
  12278. default: true
  12279. },
  12280. ]
  12281. ))
  12282. characterMakers.push(() => makeCharacter(
  12283. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12284. {
  12285. front: {
  12286. height: math.unit(5 + 9 / 12, "feet"),
  12287. weight: math.unit(70, "lb"),
  12288. name: "Front",
  12289. image: {
  12290. source: "./media/characters/quincy/front.svg",
  12291. extra: 3041 / 2751
  12292. }
  12293. },
  12294. back: {
  12295. height: math.unit(5 + 9 / 12, "feet"),
  12296. weight: math.unit(70, "lb"),
  12297. name: "Back",
  12298. image: {
  12299. source: "./media/characters/quincy/back.svg",
  12300. extra: 3041 / 2751
  12301. }
  12302. },
  12303. flying: {
  12304. height: math.unit(5 + 4 / 12, "feet"),
  12305. weight: math.unit(70, "lb"),
  12306. name: "Flying",
  12307. image: {
  12308. source: "./media/characters/quincy/flying.svg",
  12309. extra: 1044 / 930
  12310. }
  12311. },
  12312. },
  12313. [
  12314. {
  12315. name: "Micro",
  12316. height: math.unit(3, "cm")
  12317. },
  12318. {
  12319. name: "Normal",
  12320. height: math.unit(5 + 9 / 12, "feet")
  12321. },
  12322. {
  12323. name: "Macro",
  12324. height: math.unit(200, "meters"),
  12325. default: true
  12326. },
  12327. {
  12328. name: "Megamacro",
  12329. height: math.unit(1000, "meters")
  12330. },
  12331. ]
  12332. ))
  12333. characterMakers.push(() => makeCharacter(
  12334. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12335. {
  12336. front: {
  12337. height: math.unit(3 + 11/12, "feet"),
  12338. weight: math.unit(50, "lb"),
  12339. name: "Front",
  12340. image: {
  12341. source: "./media/characters/vanrel/front.svg",
  12342. extra: 1104/949,
  12343. bottom: 52/1156
  12344. }
  12345. },
  12346. back: {
  12347. height: math.unit(3 + 11/12, "feet"),
  12348. weight: math.unit(50, "lb"),
  12349. name: "Back",
  12350. image: {
  12351. source: "./media/characters/vanrel/back.svg",
  12352. extra: 1119/976,
  12353. bottom: 37/1156
  12354. }
  12355. },
  12356. tome: {
  12357. height: math.unit(1.35, "feet"),
  12358. weight: math.unit(10, "lb"),
  12359. name: "Vanrel's Tome",
  12360. rename: true,
  12361. image: {
  12362. source: "./media/characters/vanrel/tome.svg"
  12363. }
  12364. },
  12365. beans: {
  12366. height: math.unit(0.89, "feet"),
  12367. name: "Beans",
  12368. image: {
  12369. source: "./media/characters/vanrel/beans.svg"
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Normal",
  12376. height: math.unit(3 + 11/12, "feet"),
  12377. default: true
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12383. {
  12384. front: {
  12385. height: math.unit(7 + 5 / 12, "feet"),
  12386. name: "Front",
  12387. image: {
  12388. source: "./media/characters/kuiper-vanrel/front.svg",
  12389. extra: 1219/1169,
  12390. bottom: 69/1288
  12391. }
  12392. },
  12393. back: {
  12394. height: math.unit(7 + 5 / 12, "feet"),
  12395. name: "Back",
  12396. image: {
  12397. source: "./media/characters/kuiper-vanrel/back.svg",
  12398. extra: 1236/1193,
  12399. bottom: 27/1263
  12400. }
  12401. },
  12402. foot: {
  12403. height: math.unit(0.55, "meters"),
  12404. name: "Foot",
  12405. image: {
  12406. source: "./media/characters/kuiper-vanrel/foot.svg",
  12407. }
  12408. },
  12409. battle: {
  12410. height: math.unit(6.824, "feet"),
  12411. name: "Battle",
  12412. image: {
  12413. source: "./media/characters/kuiper-vanrel/battle.svg",
  12414. extra: 1466 / 1327,
  12415. bottom: 29 / 1492.5
  12416. }
  12417. },
  12418. meerkui: {
  12419. height: math.unit(18, "inches"),
  12420. name: "Meerkui",
  12421. image: {
  12422. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12423. extra: 1354/1289,
  12424. bottom: 69/1423
  12425. }
  12426. },
  12427. },
  12428. [
  12429. {
  12430. name: "Normal",
  12431. height: math.unit(7 + 5 / 12, "feet"),
  12432. default: true
  12433. },
  12434. ]
  12435. ))
  12436. characterMakers.push(() => makeCharacter(
  12437. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12438. {
  12439. front: {
  12440. height: math.unit(8 + 5 / 12, "feet"),
  12441. name: "Front",
  12442. image: {
  12443. source: "./media/characters/keset-vanrel/front.svg",
  12444. extra: 1231/1148,
  12445. bottom: 82/1313
  12446. }
  12447. },
  12448. back: {
  12449. height: math.unit(8 + 5 / 12, "feet"),
  12450. name: "Back",
  12451. image: {
  12452. source: "./media/characters/keset-vanrel/back.svg",
  12453. extra: 1240/1174,
  12454. bottom: 33/1273
  12455. }
  12456. },
  12457. hand: {
  12458. height: math.unit(0.6, "meters"),
  12459. name: "Hand",
  12460. image: {
  12461. source: "./media/characters/keset-vanrel/hand.svg"
  12462. }
  12463. },
  12464. foot: {
  12465. height: math.unit(0.94978, "meters"),
  12466. name: "Foot",
  12467. image: {
  12468. source: "./media/characters/keset-vanrel/foot.svg"
  12469. }
  12470. },
  12471. battle: {
  12472. height: math.unit(7.408, "feet"),
  12473. name: "Battle",
  12474. image: {
  12475. source: "./media/characters/keset-vanrel/battle.svg",
  12476. extra: 1890 / 1386,
  12477. bottom: 73.28 / 1970
  12478. }
  12479. },
  12480. },
  12481. [
  12482. {
  12483. name: "Normal",
  12484. height: math.unit(8 + 5 / 12, "feet"),
  12485. default: true
  12486. },
  12487. ]
  12488. ))
  12489. characterMakers.push(() => makeCharacter(
  12490. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12491. {
  12492. front: {
  12493. height: math.unit(6, "feet"),
  12494. weight: math.unit(150, "lb"),
  12495. name: "Front",
  12496. image: {
  12497. source: "./media/characters/neos/front.svg",
  12498. extra: 1696 / 992,
  12499. bottom: 0.14
  12500. }
  12501. },
  12502. },
  12503. [
  12504. {
  12505. name: "Normal",
  12506. height: math.unit(54, "cm"),
  12507. default: true
  12508. },
  12509. {
  12510. name: "Macro",
  12511. height: math.unit(100, "m")
  12512. },
  12513. {
  12514. name: "Megamacro",
  12515. height: math.unit(10, "km")
  12516. },
  12517. {
  12518. name: "Megamacro+",
  12519. height: math.unit(100, "km")
  12520. },
  12521. {
  12522. name: "Gigamacro",
  12523. height: math.unit(100, "Mm")
  12524. },
  12525. {
  12526. name: "Teramacro",
  12527. height: math.unit(100, "Gm")
  12528. },
  12529. {
  12530. name: "Examacro",
  12531. height: math.unit(100, "Em")
  12532. },
  12533. {
  12534. name: "Godly",
  12535. height: math.unit(10000, "Ym")
  12536. },
  12537. {
  12538. name: "Beyond Godly",
  12539. height: math.unit(25, "multiverses")
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12545. {
  12546. feminine: {
  12547. height: math.unit(5, "feet"),
  12548. weight: math.unit(100, "lb"),
  12549. name: "Feminine",
  12550. image: {
  12551. source: "./media/characters/sammy-mouse/feminine.svg",
  12552. extra: 2526 / 2425,
  12553. bottom: 0.123
  12554. }
  12555. },
  12556. masculine: {
  12557. height: math.unit(5, "feet"),
  12558. weight: math.unit(100, "lb"),
  12559. name: "Masculine",
  12560. image: {
  12561. source: "./media/characters/sammy-mouse/masculine.svg",
  12562. extra: 2526 / 2425,
  12563. bottom: 0.123
  12564. }
  12565. },
  12566. },
  12567. [
  12568. {
  12569. name: "Micro",
  12570. height: math.unit(5, "inches")
  12571. },
  12572. {
  12573. name: "Normal",
  12574. height: math.unit(5, "feet"),
  12575. default: true
  12576. },
  12577. {
  12578. name: "Macro",
  12579. height: math.unit(60, "feet")
  12580. },
  12581. ]
  12582. ))
  12583. characterMakers.push(() => makeCharacter(
  12584. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12585. {
  12586. front: {
  12587. height: math.unit(4, "feet"),
  12588. weight: math.unit(50, "lb"),
  12589. name: "Front",
  12590. image: {
  12591. source: "./media/characters/kole/front.svg",
  12592. extra: 1423 / 1303,
  12593. bottom: 0.025
  12594. }
  12595. },
  12596. back: {
  12597. height: math.unit(4, "feet"),
  12598. weight: math.unit(50, "lb"),
  12599. name: "Back",
  12600. image: {
  12601. source: "./media/characters/kole/back.svg",
  12602. extra: 1426 / 1280,
  12603. bottom: 0.02
  12604. }
  12605. },
  12606. },
  12607. [
  12608. {
  12609. name: "Normal",
  12610. height: math.unit(4, "feet"),
  12611. default: true
  12612. },
  12613. ]
  12614. ))
  12615. characterMakers.push(() => makeCharacter(
  12616. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12617. {
  12618. front: {
  12619. height: math.unit(2.5, "feet"),
  12620. weight: math.unit(32, "lb"),
  12621. name: "Front",
  12622. image: {
  12623. source: "./media/characters/rufran/front.svg",
  12624. extra: 1313/885,
  12625. bottom: 94/1407
  12626. }
  12627. },
  12628. side: {
  12629. height: math.unit(2.5, "feet"),
  12630. weight: math.unit(32, "lb"),
  12631. name: "Side",
  12632. image: {
  12633. source: "./media/characters/rufran/side.svg",
  12634. extra: 1109/852,
  12635. bottom: 118/1227
  12636. }
  12637. },
  12638. back: {
  12639. height: math.unit(2.5, "feet"),
  12640. weight: math.unit(32, "lb"),
  12641. name: "Back",
  12642. image: {
  12643. source: "./media/characters/rufran/back.svg",
  12644. extra: 1280/878,
  12645. bottom: 131/1411
  12646. }
  12647. },
  12648. mouth: {
  12649. height: math.unit(1.13, "feet"),
  12650. name: "Mouth",
  12651. image: {
  12652. source: "./media/characters/rufran/mouth.svg"
  12653. }
  12654. },
  12655. foot: {
  12656. height: math.unit(1.33, "feet"),
  12657. name: "Foot",
  12658. image: {
  12659. source: "./media/characters/rufran/foot.svg"
  12660. }
  12661. },
  12662. koboldFront: {
  12663. height: math.unit(2 + 6 / 12, "feet"),
  12664. weight: math.unit(20, "lb"),
  12665. name: "Front (Kobold)",
  12666. image: {
  12667. source: "./media/characters/rufran/kobold-front.svg",
  12668. extra: 2041 / 1839,
  12669. bottom: 0.055
  12670. }
  12671. },
  12672. koboldBack: {
  12673. height: math.unit(2 + 6 / 12, "feet"),
  12674. weight: math.unit(20, "lb"),
  12675. name: "Back (Kobold)",
  12676. image: {
  12677. source: "./media/characters/rufran/kobold-back.svg",
  12678. extra: 2054 / 1839,
  12679. bottom: 0.01
  12680. }
  12681. },
  12682. koboldHand: {
  12683. height: math.unit(0.2166, "meters"),
  12684. name: "Hand (Kobold)",
  12685. image: {
  12686. source: "./media/characters/rufran/kobold-hand.svg"
  12687. }
  12688. },
  12689. koboldFoot: {
  12690. height: math.unit(0.185, "meters"),
  12691. name: "Foot (Kobold)",
  12692. image: {
  12693. source: "./media/characters/rufran/kobold-foot.svg"
  12694. }
  12695. },
  12696. },
  12697. [
  12698. {
  12699. name: "Micro",
  12700. height: math.unit(1, "inch")
  12701. },
  12702. {
  12703. name: "Normal",
  12704. height: math.unit(2 + 6 / 12, "feet"),
  12705. default: true
  12706. },
  12707. {
  12708. name: "Big",
  12709. height: math.unit(60, "feet")
  12710. },
  12711. {
  12712. name: "Macro",
  12713. height: math.unit(325, "feet")
  12714. },
  12715. ]
  12716. ))
  12717. characterMakers.push(() => makeCharacter(
  12718. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12719. {
  12720. front: {
  12721. height: math.unit(0.3, "meters"),
  12722. weight: math.unit(3.5, "kg"),
  12723. name: "Front",
  12724. image: {
  12725. source: "./media/characters/chip/front.svg",
  12726. extra: 748 / 674
  12727. }
  12728. },
  12729. },
  12730. [
  12731. {
  12732. name: "Micro",
  12733. height: math.unit(1, "inch"),
  12734. default: true
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12740. {
  12741. side: {
  12742. height: math.unit(2.3, "meters"),
  12743. weight: math.unit(3500, "lb"),
  12744. name: "Side",
  12745. image: {
  12746. source: "./media/characters/torvid/side.svg",
  12747. extra: 1972 / 722,
  12748. bottom: 0.035
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Normal",
  12755. height: math.unit(2.3, "meters"),
  12756. default: true
  12757. },
  12758. ]
  12759. ))
  12760. characterMakers.push(() => makeCharacter(
  12761. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12762. {
  12763. front: {
  12764. height: math.unit(2, "meters"),
  12765. weight: math.unit(150.5, "kg"),
  12766. name: "Front",
  12767. image: {
  12768. source: "./media/characters/susan/front.svg",
  12769. extra: 693 / 635,
  12770. bottom: 0.05
  12771. }
  12772. },
  12773. },
  12774. [
  12775. {
  12776. name: "Megamacro",
  12777. height: math.unit(505, "miles"),
  12778. default: true
  12779. },
  12780. ]
  12781. ))
  12782. characterMakers.push(() => makeCharacter(
  12783. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12784. {
  12785. front: {
  12786. height: math.unit(6, "feet"),
  12787. weight: math.unit(150, "lb"),
  12788. name: "Front",
  12789. image: {
  12790. source: "./media/characters/raindrops/front.svg",
  12791. extra: 2655 / 2461,
  12792. bottom: 49 / 2705
  12793. }
  12794. },
  12795. back: {
  12796. height: math.unit(6, "feet"),
  12797. weight: math.unit(150, "lb"),
  12798. name: "Back",
  12799. image: {
  12800. source: "./media/characters/raindrops/back.svg",
  12801. extra: 2574 / 2400,
  12802. bottom: 65 / 2634
  12803. }
  12804. },
  12805. },
  12806. [
  12807. {
  12808. name: "Micro",
  12809. height: math.unit(6, "inches")
  12810. },
  12811. {
  12812. name: "Normal",
  12813. height: math.unit(6 + 2 / 12, "feet")
  12814. },
  12815. {
  12816. name: "Macro",
  12817. height: math.unit(131, "feet"),
  12818. default: true
  12819. },
  12820. {
  12821. name: "Megamacro",
  12822. height: math.unit(15, "miles")
  12823. },
  12824. {
  12825. name: "Gigamacro",
  12826. height: math.unit(4000, "miles")
  12827. },
  12828. {
  12829. name: "Teramacro",
  12830. height: math.unit(315000, "miles")
  12831. },
  12832. ]
  12833. ))
  12834. characterMakers.push(() => makeCharacter(
  12835. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12836. {
  12837. front: {
  12838. height: math.unit(2.794, "meters"),
  12839. weight: math.unit(325, "kg"),
  12840. name: "Front",
  12841. image: {
  12842. source: "./media/characters/tezwa/front.svg",
  12843. extra: 2083 / 1906,
  12844. bottom: 0.031
  12845. }
  12846. },
  12847. foot: {
  12848. height: math.unit(0.687, "meters"),
  12849. name: "Foot",
  12850. image: {
  12851. source: "./media/characters/tezwa/foot.svg"
  12852. }
  12853. },
  12854. },
  12855. [
  12856. {
  12857. name: "Normal",
  12858. height: math.unit(9 + 2 / 12, "feet"),
  12859. default: true
  12860. },
  12861. ]
  12862. ))
  12863. characterMakers.push(() => makeCharacter(
  12864. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12865. {
  12866. front: {
  12867. height: math.unit(58, "feet"),
  12868. weight: math.unit(89000, "lb"),
  12869. name: "Front",
  12870. image: {
  12871. source: "./media/characters/typhus/front.svg",
  12872. extra: 816 / 800,
  12873. bottom: 0.065
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Macro",
  12880. height: math.unit(58, "feet"),
  12881. default: true
  12882. },
  12883. ]
  12884. ))
  12885. characterMakers.push(() => makeCharacter(
  12886. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12887. {
  12888. front: {
  12889. height: math.unit(12, "feet"),
  12890. weight: math.unit(6, "tonnes"),
  12891. name: "Front",
  12892. image: {
  12893. source: "./media/characters/lyra-von-wulf/front.svg",
  12894. extra: 1,
  12895. bottom: 0.10
  12896. }
  12897. },
  12898. frontMecha: {
  12899. height: math.unit(12, "feet"),
  12900. weight: math.unit(12, "tonnes"),
  12901. name: "Front (Mecha)",
  12902. image: {
  12903. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12904. extra: 1,
  12905. bottom: 0.042
  12906. }
  12907. },
  12908. maw: {
  12909. height: math.unit(2.2, "feet"),
  12910. name: "Maw",
  12911. image: {
  12912. source: "./media/characters/lyra-von-wulf/maw.svg"
  12913. }
  12914. },
  12915. },
  12916. [
  12917. {
  12918. name: "Normal",
  12919. height: math.unit(12, "feet"),
  12920. default: true
  12921. },
  12922. {
  12923. name: "Classic",
  12924. height: math.unit(50, "feet")
  12925. },
  12926. {
  12927. name: "Macro",
  12928. height: math.unit(500, "feet")
  12929. },
  12930. {
  12931. name: "Megamacro",
  12932. height: math.unit(1, "mile")
  12933. },
  12934. {
  12935. name: "Gigamacro",
  12936. height: math.unit(400, "miles")
  12937. },
  12938. {
  12939. name: "Teramacro",
  12940. height: math.unit(22000, "miles")
  12941. },
  12942. {
  12943. name: "Solarmacro",
  12944. height: math.unit(8600000, "miles")
  12945. },
  12946. {
  12947. name: "Galactic",
  12948. height: math.unit(1057000, "lightyears")
  12949. },
  12950. ]
  12951. ))
  12952. characterMakers.push(() => makeCharacter(
  12953. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12954. {
  12955. front: {
  12956. height: math.unit(6 + 10 / 12, "feet"),
  12957. weight: math.unit(150, "lb"),
  12958. name: "Front",
  12959. image: {
  12960. source: "./media/characters/dixon/front.svg",
  12961. extra: 3361 / 3209,
  12962. bottom: 0.01
  12963. }
  12964. },
  12965. },
  12966. [
  12967. {
  12968. name: "Normal",
  12969. height: math.unit(6 + 10 / 12, "feet"),
  12970. default: true
  12971. },
  12972. {
  12973. name: "Big",
  12974. height: math.unit(12, "meters")
  12975. },
  12976. {
  12977. name: "Macro",
  12978. height: math.unit(500, "meters")
  12979. },
  12980. {
  12981. name: "Megamacro",
  12982. height: math.unit(2, "km")
  12983. },
  12984. ]
  12985. ))
  12986. characterMakers.push(() => makeCharacter(
  12987. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12988. {
  12989. front: {
  12990. height: math.unit(185, "cm"),
  12991. weight: math.unit(68, "kg"),
  12992. name: "Front",
  12993. image: {
  12994. source: "./media/characters/kauko/front.svg",
  12995. extra: 1455 / 1421,
  12996. bottom: 0.03
  12997. }
  12998. },
  12999. back: {
  13000. height: math.unit(185, "cm"),
  13001. weight: math.unit(68, "kg"),
  13002. name: "Back",
  13003. image: {
  13004. source: "./media/characters/kauko/back.svg",
  13005. extra: 1455 / 1421,
  13006. bottom: 0.004
  13007. }
  13008. },
  13009. },
  13010. [
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(185, "cm"),
  13014. default: true
  13015. },
  13016. ]
  13017. ))
  13018. characterMakers.push(() => makeCharacter(
  13019. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13020. {
  13021. front: {
  13022. height: math.unit(6, "feet"),
  13023. weight: math.unit(150, "kg"),
  13024. name: "Front",
  13025. image: {
  13026. source: "./media/characters/varg/front.svg",
  13027. extra: 1108 / 1018,
  13028. bottom: 0.0375
  13029. }
  13030. },
  13031. },
  13032. [
  13033. {
  13034. name: "Normal",
  13035. height: math.unit(5, "meters")
  13036. },
  13037. {
  13038. name: "Macro",
  13039. height: math.unit(200, "meters")
  13040. },
  13041. {
  13042. name: "Megamacro",
  13043. height: math.unit(20, "kilometers")
  13044. },
  13045. {
  13046. name: "True Size",
  13047. height: math.unit(211, "km"),
  13048. default: true
  13049. },
  13050. {
  13051. name: "Gigamacro",
  13052. height: math.unit(1000, "km")
  13053. },
  13054. {
  13055. name: "Gigamacro+",
  13056. height: math.unit(8000, "km")
  13057. },
  13058. {
  13059. name: "Teramacro",
  13060. height: math.unit(1000000, "km")
  13061. },
  13062. ]
  13063. ))
  13064. characterMakers.push(() => makeCharacter(
  13065. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13066. {
  13067. front: {
  13068. height: math.unit(7 + 7 / 12, "feet"),
  13069. weight: math.unit(267, "lb"),
  13070. name: "Front",
  13071. image: {
  13072. source: "./media/characters/dayza/front.svg",
  13073. extra: 1262 / 1200,
  13074. bottom: 0.035
  13075. }
  13076. },
  13077. side: {
  13078. height: math.unit(7 + 7 / 12, "feet"),
  13079. weight: math.unit(267, "lb"),
  13080. name: "Side",
  13081. image: {
  13082. source: "./media/characters/dayza/side.svg",
  13083. extra: 1295 / 1245,
  13084. bottom: 0.05
  13085. }
  13086. },
  13087. back: {
  13088. height: math.unit(7 + 7 / 12, "feet"),
  13089. weight: math.unit(267, "lb"),
  13090. name: "Back",
  13091. image: {
  13092. source: "./media/characters/dayza/back.svg",
  13093. extra: 1241 / 1170
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Normal",
  13100. height: math.unit(7 + 7 / 12, "feet"),
  13101. default: true
  13102. },
  13103. {
  13104. name: "Macro",
  13105. height: math.unit(155, "feet")
  13106. },
  13107. ]
  13108. ))
  13109. characterMakers.push(() => makeCharacter(
  13110. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13111. {
  13112. front: {
  13113. height: math.unit(6 + 5 / 12, "feet"),
  13114. weight: math.unit(160, "lb"),
  13115. name: "Front",
  13116. image: {
  13117. source: "./media/characters/xanthos/front.svg",
  13118. extra: 1,
  13119. bottom: 0.04
  13120. }
  13121. },
  13122. back: {
  13123. height: math.unit(6 + 5 / 12, "feet"),
  13124. weight: math.unit(160, "lb"),
  13125. name: "Back",
  13126. image: {
  13127. source: "./media/characters/xanthos/back.svg",
  13128. extra: 1,
  13129. bottom: 0.03
  13130. }
  13131. },
  13132. hand: {
  13133. height: math.unit(0.928, "feet"),
  13134. name: "Hand",
  13135. image: {
  13136. source: "./media/characters/xanthos/hand.svg"
  13137. }
  13138. },
  13139. foot: {
  13140. height: math.unit(1.286, "feet"),
  13141. name: "Foot",
  13142. image: {
  13143. source: "./media/characters/xanthos/foot.svg"
  13144. }
  13145. },
  13146. },
  13147. [
  13148. {
  13149. name: "Normal",
  13150. height: math.unit(6 + 5 / 12, "feet"),
  13151. default: true
  13152. },
  13153. {
  13154. name: "Normal+",
  13155. height: math.unit(6, "meters")
  13156. },
  13157. {
  13158. name: "Macro",
  13159. height: math.unit(40, "feet")
  13160. },
  13161. {
  13162. name: "Macro+",
  13163. height: math.unit(200, "meters")
  13164. },
  13165. {
  13166. name: "Megamacro",
  13167. height: math.unit(20, "km")
  13168. },
  13169. {
  13170. name: "Megamacro+",
  13171. height: math.unit(100, "km")
  13172. },
  13173. {
  13174. name: "Gigamacro",
  13175. height: math.unit(200, "megameters")
  13176. },
  13177. {
  13178. name: "Gigamacro+",
  13179. height: math.unit(1.5, "gigameters")
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13185. {
  13186. front: {
  13187. height: math.unit(6 + 3 / 12, "feet"),
  13188. weight: math.unit(215, "lb"),
  13189. name: "Front",
  13190. image: {
  13191. source: "./media/characters/grynn/front.svg",
  13192. extra: 4627 / 4209,
  13193. bottom: 0.047
  13194. }
  13195. },
  13196. },
  13197. [
  13198. {
  13199. name: "Micro",
  13200. height: math.unit(6, "inches")
  13201. },
  13202. {
  13203. name: "Normal",
  13204. height: math.unit(6 + 3 / 12, "feet"),
  13205. default: true
  13206. },
  13207. {
  13208. name: "Big",
  13209. height: math.unit(104, "feet")
  13210. },
  13211. {
  13212. name: "Macro",
  13213. height: math.unit(944, "feet")
  13214. },
  13215. {
  13216. name: "Macro+",
  13217. height: math.unit(9480, "feet")
  13218. },
  13219. {
  13220. name: "Megamacro",
  13221. height: math.unit(78752, "feet")
  13222. },
  13223. {
  13224. name: "Megamacro+",
  13225. height: math.unit(630128, "feet")
  13226. },
  13227. {
  13228. name: "Megamacro++",
  13229. height: math.unit(3150695, "feet")
  13230. },
  13231. ]
  13232. ))
  13233. characterMakers.push(() => makeCharacter(
  13234. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13235. {
  13236. front: {
  13237. height: math.unit(7 + 5 / 12, "feet"),
  13238. weight: math.unit(450, "lb"),
  13239. name: "Front",
  13240. image: {
  13241. source: "./media/characters/mocha-aura/front.svg",
  13242. extra: 1907 / 1817,
  13243. bottom: 0.04
  13244. }
  13245. },
  13246. back: {
  13247. height: math.unit(7 + 5 / 12, "feet"),
  13248. weight: math.unit(450, "lb"),
  13249. name: "Back",
  13250. image: {
  13251. source: "./media/characters/mocha-aura/back.svg",
  13252. extra: 1900 / 1825,
  13253. bottom: 0.045
  13254. }
  13255. },
  13256. },
  13257. [
  13258. {
  13259. name: "Nano",
  13260. height: math.unit(1, "nm")
  13261. },
  13262. {
  13263. name: "Megamicro",
  13264. height: math.unit(1, "mm")
  13265. },
  13266. {
  13267. name: "Micro",
  13268. height: math.unit(3, "inches")
  13269. },
  13270. {
  13271. name: "Normal",
  13272. height: math.unit(7 + 5 / 12, "feet"),
  13273. default: true
  13274. },
  13275. {
  13276. name: "Macro",
  13277. height: math.unit(30, "feet")
  13278. },
  13279. {
  13280. name: "Megamacro",
  13281. height: math.unit(3500, "feet")
  13282. },
  13283. {
  13284. name: "Teramacro",
  13285. height: math.unit(500000, "miles")
  13286. },
  13287. {
  13288. name: "Petamacro",
  13289. height: math.unit(50000000000000000, "parsecs")
  13290. },
  13291. ]
  13292. ))
  13293. characterMakers.push(() => makeCharacter(
  13294. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13295. {
  13296. front: {
  13297. height: math.unit(6, "feet"),
  13298. weight: math.unit(150, "lb"),
  13299. name: "Front",
  13300. image: {
  13301. source: "./media/characters/ilisha-devya/front.svg",
  13302. extra: 1053/1049,
  13303. bottom: 270/1323
  13304. }
  13305. },
  13306. back: {
  13307. height: math.unit(6, "feet"),
  13308. weight: math.unit(150, "lb"),
  13309. name: "Back",
  13310. image: {
  13311. source: "./media/characters/ilisha-devya/back.svg",
  13312. extra: 1131/1128,
  13313. bottom: 39/1170
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Macro",
  13320. height: math.unit(500, "feet"),
  13321. default: true
  13322. },
  13323. {
  13324. name: "Megamacro",
  13325. height: math.unit(10, "miles")
  13326. },
  13327. {
  13328. name: "Gigamacro",
  13329. height: math.unit(100000, "miles")
  13330. },
  13331. {
  13332. name: "Examacro",
  13333. height: math.unit(1e9, "lightyears")
  13334. },
  13335. {
  13336. name: "Omniversal",
  13337. height: math.unit(1e33, "lightyears")
  13338. },
  13339. {
  13340. name: "Beyond Infinite",
  13341. height: math.unit(1e100, "lightyears")
  13342. },
  13343. ]
  13344. ))
  13345. characterMakers.push(() => makeCharacter(
  13346. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13347. {
  13348. Side: {
  13349. height: math.unit(6, "feet"),
  13350. weight: math.unit(150, "lb"),
  13351. name: "Side",
  13352. image: {
  13353. source: "./media/characters/mira/side.svg",
  13354. extra: 900 / 799,
  13355. bottom: 0.02
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Human Size",
  13362. height: math.unit(6, "feet")
  13363. },
  13364. {
  13365. name: "Macro",
  13366. height: math.unit(100, "feet"),
  13367. default: true
  13368. },
  13369. {
  13370. name: "Megamacro",
  13371. height: math.unit(10, "miles")
  13372. },
  13373. {
  13374. name: "Gigamacro",
  13375. height: math.unit(25000, "miles")
  13376. },
  13377. {
  13378. name: "Teramacro",
  13379. height: math.unit(300, "AU")
  13380. },
  13381. {
  13382. name: "Full Size",
  13383. height: math.unit(4.5e10, "lightyears")
  13384. },
  13385. ]
  13386. ))
  13387. characterMakers.push(() => makeCharacter(
  13388. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13389. {
  13390. front: {
  13391. height: math.unit(6, "feet"),
  13392. weight: math.unit(150, "lb"),
  13393. name: "Front",
  13394. image: {
  13395. source: "./media/characters/holly/front.svg",
  13396. extra: 639 / 606
  13397. }
  13398. },
  13399. back: {
  13400. height: math.unit(6, "feet"),
  13401. weight: math.unit(150, "lb"),
  13402. name: "Back",
  13403. image: {
  13404. source: "./media/characters/holly/back.svg",
  13405. extra: 623 / 598
  13406. }
  13407. },
  13408. frontWorking: {
  13409. height: math.unit(6, "feet"),
  13410. weight: math.unit(150, "lb"),
  13411. name: "Front (Working)",
  13412. image: {
  13413. source: "./media/characters/holly/front-working.svg",
  13414. extra: 607 / 577,
  13415. bottom: 0.048
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Normal",
  13422. height: math.unit(12 + 3 / 12, "feet"),
  13423. default: true
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(150, "lb"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/porter/front.svg",
  13436. extra: 1,
  13437. bottom: 0.01
  13438. }
  13439. },
  13440. frontRobes: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(150, "lb"),
  13443. name: "Front (Robes)",
  13444. image: {
  13445. source: "./media/characters/porter/front-robes.svg",
  13446. extra: 1.01,
  13447. bottom: 0.01
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Normal",
  13454. height: math.unit(11 + 9 / 12, "feet"),
  13455. default: true
  13456. },
  13457. ]
  13458. ))
  13459. characterMakers.push(() => makeCharacter(
  13460. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13461. {
  13462. legendary: {
  13463. height: math.unit(6, "feet"),
  13464. weight: math.unit(150, "lb"),
  13465. name: "Legendary",
  13466. image: {
  13467. source: "./media/characters/lucy/legendary.svg",
  13468. extra: 1355 / 1100,
  13469. bottom: 0.045
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Legendary",
  13476. height: math.unit(86882 * 2, "miles"),
  13477. default: true
  13478. },
  13479. ]
  13480. ))
  13481. characterMakers.push(() => makeCharacter(
  13482. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13483. {
  13484. front: {
  13485. height: math.unit(6, "feet"),
  13486. weight: math.unit(150, "lb"),
  13487. name: "Front",
  13488. image: {
  13489. source: "./media/characters/drusilla/front.svg",
  13490. extra: 678 / 635,
  13491. bottom: 0.03
  13492. }
  13493. },
  13494. back: {
  13495. height: math.unit(6, "feet"),
  13496. weight: math.unit(150, "lb"),
  13497. name: "Back",
  13498. image: {
  13499. source: "./media/characters/drusilla/back.svg",
  13500. extra: 678 / 635,
  13501. bottom: 0.005
  13502. }
  13503. },
  13504. },
  13505. [
  13506. {
  13507. name: "Macro",
  13508. height: math.unit(100, "feet")
  13509. },
  13510. {
  13511. name: "Canon Height",
  13512. height: math.unit(2000, "feet"),
  13513. default: true
  13514. },
  13515. ]
  13516. ))
  13517. characterMakers.push(() => makeCharacter(
  13518. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13519. {
  13520. front: {
  13521. height: math.unit(6, "feet"),
  13522. weight: math.unit(180, "lb"),
  13523. name: "Front",
  13524. image: {
  13525. source: "./media/characters/renard-thatch/front.svg",
  13526. extra: 2411 / 2275,
  13527. bottom: 0.01
  13528. }
  13529. },
  13530. frontPosing: {
  13531. height: math.unit(6, "feet"),
  13532. weight: math.unit(180, "lb"),
  13533. name: "Front (Posing)",
  13534. image: {
  13535. source: "./media/characters/renard-thatch/front-posing.svg",
  13536. extra: 2381 / 2261,
  13537. bottom: 0.01
  13538. }
  13539. },
  13540. back: {
  13541. height: math.unit(6, "feet"),
  13542. weight: math.unit(180, "lb"),
  13543. name: "Back",
  13544. image: {
  13545. source: "./media/characters/renard-thatch/back.svg",
  13546. extra: 2428 / 2288
  13547. }
  13548. },
  13549. },
  13550. [
  13551. {
  13552. name: "Micro",
  13553. height: math.unit(3, "inches")
  13554. },
  13555. {
  13556. name: "Default",
  13557. height: math.unit(6, "feet"),
  13558. default: true
  13559. },
  13560. {
  13561. name: "Macro",
  13562. height: math.unit(75, "feet")
  13563. },
  13564. ]
  13565. ))
  13566. characterMakers.push(() => makeCharacter(
  13567. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13568. {
  13569. front: {
  13570. height: math.unit(1450, "feet"),
  13571. weight: math.unit(1.21e6, "tons"),
  13572. name: "Front",
  13573. image: {
  13574. source: "./media/characters/sekvra/front.svg",
  13575. extra: 1193/1190,
  13576. bottom: 78/1271
  13577. }
  13578. },
  13579. side: {
  13580. height: math.unit(1450, "feet"),
  13581. weight: math.unit(1.21e6, "tons"),
  13582. name: "Side",
  13583. image: {
  13584. source: "./media/characters/sekvra/side.svg",
  13585. extra: 1193/1190,
  13586. bottom: 52/1245
  13587. }
  13588. },
  13589. back: {
  13590. height: math.unit(1450, "feet"),
  13591. weight: math.unit(1.21e6, "tons"),
  13592. name: "Back",
  13593. image: {
  13594. source: "./media/characters/sekvra/back.svg",
  13595. extra: 1219/1216,
  13596. bottom: 21/1240
  13597. }
  13598. },
  13599. frontClothed: {
  13600. height: math.unit(1450, "feet"),
  13601. weight: math.unit(1.21e6, "tons"),
  13602. name: "Front (Clothed)",
  13603. image: {
  13604. source: "./media/characters/sekvra/front-clothed.svg",
  13605. extra: 1192/1189,
  13606. bottom: 79/1271
  13607. }
  13608. },
  13609. },
  13610. [
  13611. {
  13612. name: "Macro",
  13613. height: math.unit(1450, "feet"),
  13614. default: true
  13615. },
  13616. {
  13617. name: "Megamacro",
  13618. height: math.unit(15000, "feet")
  13619. },
  13620. ]
  13621. ))
  13622. characterMakers.push(() => makeCharacter(
  13623. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13624. {
  13625. front: {
  13626. height: math.unit(6, "feet"),
  13627. weight: math.unit(150, "lb"),
  13628. name: "Front",
  13629. image: {
  13630. source: "./media/characters/carmine/front.svg",
  13631. extra: 1,
  13632. bottom: 0.035
  13633. }
  13634. },
  13635. frontArmor: {
  13636. height: math.unit(6, "feet"),
  13637. weight: math.unit(150, "lb"),
  13638. name: "Front (Armor)",
  13639. image: {
  13640. source: "./media/characters/carmine/front-armor.svg",
  13641. extra: 1,
  13642. bottom: 0.035
  13643. }
  13644. },
  13645. },
  13646. [
  13647. {
  13648. name: "Large",
  13649. height: math.unit(1, "mile")
  13650. },
  13651. {
  13652. name: "Huge",
  13653. height: math.unit(40, "miles"),
  13654. default: true
  13655. },
  13656. {
  13657. name: "Colossal",
  13658. height: math.unit(2500, "miles")
  13659. },
  13660. ]
  13661. ))
  13662. characterMakers.push(() => makeCharacter(
  13663. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13664. {
  13665. front: {
  13666. height: math.unit(6, "feet"),
  13667. weight: math.unit(150, "lb"),
  13668. name: "Front",
  13669. image: {
  13670. source: "./media/characters/elyssia/front.svg",
  13671. extra: 2201 / 2035,
  13672. bottom: 0.05
  13673. }
  13674. },
  13675. frontClothed: {
  13676. height: math.unit(6, "feet"),
  13677. weight: math.unit(150, "lb"),
  13678. name: "Front (Clothed)",
  13679. image: {
  13680. source: "./media/characters/elyssia/front-clothed.svg",
  13681. extra: 2201 / 2035,
  13682. bottom: 0.05
  13683. }
  13684. },
  13685. back: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "lb"),
  13688. name: "Back",
  13689. image: {
  13690. source: "./media/characters/elyssia/back.svg",
  13691. extra: 2201 / 2035,
  13692. bottom: 0.013
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Smaller",
  13699. height: math.unit(150, "feet")
  13700. },
  13701. {
  13702. name: "Standard",
  13703. height: math.unit(1400, "feet"),
  13704. default: true
  13705. },
  13706. {
  13707. name: "Distracted",
  13708. height: math.unit(15000, "feet")
  13709. },
  13710. ]
  13711. ))
  13712. characterMakers.push(() => makeCharacter(
  13713. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13714. {
  13715. front: {
  13716. height: math.unit(7 + 4/12, "feet"),
  13717. weight: math.unit(690, "lb"),
  13718. name: "Front",
  13719. image: {
  13720. source: "./media/characters/geno-maxwell/front.svg",
  13721. extra: 984/856,
  13722. bottom: 87/1071
  13723. }
  13724. },
  13725. back: {
  13726. height: math.unit(7 + 4/12, "feet"),
  13727. weight: math.unit(690, "lb"),
  13728. name: "Back",
  13729. image: {
  13730. source: "./media/characters/geno-maxwell/back.svg",
  13731. extra: 981/854,
  13732. bottom: 57/1038
  13733. }
  13734. },
  13735. frontCostume: {
  13736. height: math.unit(7 + 4/12, "feet"),
  13737. weight: math.unit(690, "lb"),
  13738. name: "Front (Costume)",
  13739. image: {
  13740. source: "./media/characters/geno-maxwell/front-costume.svg",
  13741. extra: 984/856,
  13742. bottom: 87/1071
  13743. }
  13744. },
  13745. backcostume: {
  13746. height: math.unit(7 + 4/12, "feet"),
  13747. weight: math.unit(690, "lb"),
  13748. name: "Back (Costume)",
  13749. image: {
  13750. source: "./media/characters/geno-maxwell/back-costume.svg",
  13751. extra: 981/854,
  13752. bottom: 57/1038
  13753. }
  13754. },
  13755. },
  13756. [
  13757. {
  13758. name: "Micro",
  13759. height: math.unit(3, "inches")
  13760. },
  13761. {
  13762. name: "Normal",
  13763. height: math.unit(7 + 4 / 12, "feet"),
  13764. default: true
  13765. },
  13766. {
  13767. name: "Macro",
  13768. height: math.unit(220, "feet")
  13769. },
  13770. {
  13771. name: "Megamacro",
  13772. height: math.unit(11, "miles")
  13773. },
  13774. ]
  13775. ))
  13776. characterMakers.push(() => makeCharacter(
  13777. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13778. {
  13779. front: {
  13780. height: math.unit(7 + 4/12, "feet"),
  13781. weight: math.unit(750, "lb"),
  13782. name: "Front",
  13783. image: {
  13784. source: "./media/characters/regena-maxwell/front.svg",
  13785. extra: 984/856,
  13786. bottom: 87/1071
  13787. }
  13788. },
  13789. back: {
  13790. height: math.unit(7 + 4/12, "feet"),
  13791. weight: math.unit(750, "lb"),
  13792. name: "Back",
  13793. image: {
  13794. source: "./media/characters/regena-maxwell/back.svg",
  13795. extra: 981/854,
  13796. bottom: 57/1038
  13797. }
  13798. },
  13799. frontCostume: {
  13800. height: math.unit(7 + 4/12, "feet"),
  13801. weight: math.unit(750, "lb"),
  13802. name: "Front (Costume)",
  13803. image: {
  13804. source: "./media/characters/regena-maxwell/front-costume.svg",
  13805. extra: 984/856,
  13806. bottom: 87/1071
  13807. }
  13808. },
  13809. backcostume: {
  13810. height: math.unit(7 + 4/12, "feet"),
  13811. weight: math.unit(750, "lb"),
  13812. name: "Back (Costume)",
  13813. image: {
  13814. source: "./media/characters/regena-maxwell/back-costume.svg",
  13815. extra: 981/854,
  13816. bottom: 57/1038
  13817. }
  13818. },
  13819. },
  13820. [
  13821. {
  13822. name: "Normal",
  13823. height: math.unit(7 + 4 / 12, "feet"),
  13824. default: true
  13825. },
  13826. {
  13827. name: "Macro",
  13828. height: math.unit(220, "feet")
  13829. },
  13830. {
  13831. name: "Megamacro",
  13832. height: math.unit(11, "miles")
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], 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/x-gliding-dragon-x/front.svg",
  13845. extra: 860 / 690,
  13846. bottom: 0.03
  13847. }
  13848. },
  13849. },
  13850. [
  13851. {
  13852. name: "Normal",
  13853. height: math.unit(1.7, "meters"),
  13854. default: true
  13855. },
  13856. ]
  13857. ))
  13858. characterMakers.push(() => makeCharacter(
  13859. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13860. {
  13861. front: {
  13862. height: math.unit(6, "feet"),
  13863. weight: math.unit(150, "lb"),
  13864. name: "Front",
  13865. image: {
  13866. source: "./media/characters/quilly/front.svg",
  13867. extra: 890 / 776
  13868. }
  13869. },
  13870. },
  13871. [
  13872. {
  13873. name: "Gigamacro",
  13874. height: math.unit(404090, "miles"),
  13875. default: true
  13876. },
  13877. ]
  13878. ))
  13879. characterMakers.push(() => makeCharacter(
  13880. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13881. {
  13882. front: {
  13883. height: math.unit(7 + 8 / 12, "feet"),
  13884. weight: math.unit(350, "lb"),
  13885. name: "Front",
  13886. image: {
  13887. source: "./media/characters/tempest/front.svg",
  13888. extra: 1175 / 1086,
  13889. bottom: 0.02
  13890. }
  13891. },
  13892. },
  13893. [
  13894. {
  13895. name: "Normal",
  13896. height: math.unit(7 + 8 / 12, "feet"),
  13897. default: true
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13903. {
  13904. side: {
  13905. height: math.unit(4 + 5 / 12, "feet"),
  13906. weight: math.unit(80, "lb"),
  13907. name: "Side",
  13908. image: {
  13909. source: "./media/characters/rodger/side.svg",
  13910. extra: 1235 / 1118
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Micro",
  13917. height: math.unit(1, "inch")
  13918. },
  13919. {
  13920. name: "Normal",
  13921. height: math.unit(4 + 5 / 12, "feet"),
  13922. default: true
  13923. },
  13924. {
  13925. name: "Macro",
  13926. height: math.unit(120, "feet")
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13932. {
  13933. front: {
  13934. height: math.unit(6, "feet"),
  13935. weight: math.unit(150, "lb"),
  13936. name: "Front",
  13937. image: {
  13938. source: "./media/characters/danyel/front.svg",
  13939. extra: 1185 / 1123,
  13940. bottom: 0.05
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Shrunken",
  13947. height: math.unit(0.5, "mm")
  13948. },
  13949. {
  13950. name: "Micro",
  13951. height: math.unit(1, "mm"),
  13952. default: true
  13953. },
  13954. {
  13955. name: "Upsized",
  13956. height: math.unit(5 + 5 / 12, "feet")
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13962. {
  13963. front: {
  13964. height: math.unit(5 + 6 / 12, "feet"),
  13965. weight: math.unit(200, "lb"),
  13966. name: "Front",
  13967. image: {
  13968. source: "./media/characters/vivian-bijoux/front.svg",
  13969. extra: 1217/1209,
  13970. bottom: 76/1293
  13971. }
  13972. },
  13973. back: {
  13974. height: math.unit(5 + 6 / 12, "feet"),
  13975. weight: math.unit(200, "lb"),
  13976. name: "Back",
  13977. image: {
  13978. source: "./media/characters/vivian-bijoux/back.svg",
  13979. extra: 1214/1208,
  13980. bottom: 51/1265
  13981. }
  13982. },
  13983. dressed: {
  13984. height: math.unit(5 + 6 / 12, "feet"),
  13985. weight: math.unit(200, "lb"),
  13986. name: "Dressed",
  13987. image: {
  13988. source: "./media/characters/vivian-bijoux/dressed.svg",
  13989. extra: 1217/1209,
  13990. bottom: 76/1293
  13991. }
  13992. },
  13993. },
  13994. [
  13995. {
  13996. name: "Normal",
  13997. height: math.unit(5 + 6 / 12, "feet"),
  13998. default: true
  13999. },
  14000. {
  14001. name: "Bad Dream",
  14002. height: math.unit(500, "feet")
  14003. },
  14004. {
  14005. name: "Nightmare",
  14006. height: math.unit(500, "miles")
  14007. },
  14008. ]
  14009. ))
  14010. characterMakers.push(() => makeCharacter(
  14011. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14012. {
  14013. front: {
  14014. height: math.unit(6 + 1 / 12, "feet"),
  14015. weight: math.unit(260, "lb"),
  14016. name: "Front",
  14017. image: {
  14018. source: "./media/characters/zeta/front.svg",
  14019. extra: 1968 / 1889,
  14020. bottom: 0.06
  14021. }
  14022. },
  14023. back: {
  14024. height: math.unit(6 + 1 / 12, "feet"),
  14025. weight: math.unit(260, "lb"),
  14026. name: "Back",
  14027. image: {
  14028. source: "./media/characters/zeta/back.svg",
  14029. extra: 1944 / 1858,
  14030. bottom: 0.03
  14031. }
  14032. },
  14033. hand: {
  14034. height: math.unit(1.112, "feet"),
  14035. name: "Hand",
  14036. image: {
  14037. source: "./media/characters/zeta/hand.svg"
  14038. }
  14039. },
  14040. foot: {
  14041. height: math.unit(1.48, "feet"),
  14042. name: "Foot",
  14043. image: {
  14044. source: "./media/characters/zeta/foot.svg"
  14045. }
  14046. },
  14047. },
  14048. [
  14049. {
  14050. name: "Micro",
  14051. height: math.unit(6, "inches")
  14052. },
  14053. {
  14054. name: "Normal",
  14055. height: math.unit(6 + 1 / 12, "feet"),
  14056. default: true
  14057. },
  14058. {
  14059. name: "Macro",
  14060. height: math.unit(20, "feet")
  14061. },
  14062. ]
  14063. ))
  14064. characterMakers.push(() => makeCharacter(
  14065. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14066. {
  14067. front: {
  14068. height: math.unit(6, "feet"),
  14069. weight: math.unit(150, "lb"),
  14070. name: "Front",
  14071. image: {
  14072. source: "./media/characters/jamie-larsen/front.svg",
  14073. extra: 962 / 933,
  14074. bottom: 0.02
  14075. }
  14076. },
  14077. back: {
  14078. height: math.unit(6, "feet"),
  14079. weight: math.unit(150, "lb"),
  14080. name: "Back",
  14081. image: {
  14082. source: "./media/characters/jamie-larsen/back.svg",
  14083. extra: 997 / 946
  14084. }
  14085. },
  14086. },
  14087. [
  14088. {
  14089. name: "Macro",
  14090. height: math.unit(28 + 7 / 12, "feet"),
  14091. default: true
  14092. },
  14093. {
  14094. name: "Macro+",
  14095. height: math.unit(180, "feet")
  14096. },
  14097. {
  14098. name: "Megamacro",
  14099. height: math.unit(10, "miles")
  14100. },
  14101. {
  14102. name: "Gigamacro",
  14103. height: math.unit(200000, "miles")
  14104. },
  14105. ]
  14106. ))
  14107. characterMakers.push(() => makeCharacter(
  14108. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14109. {
  14110. front: {
  14111. height: math.unit(6, "feet"),
  14112. weight: math.unit(120, "lb"),
  14113. name: "Front",
  14114. image: {
  14115. source: "./media/characters/vance/front.svg",
  14116. extra: 1980 / 1890,
  14117. bottom: 0.09
  14118. }
  14119. },
  14120. back: {
  14121. height: math.unit(6, "feet"),
  14122. weight: math.unit(120, "lb"),
  14123. name: "Back",
  14124. image: {
  14125. source: "./media/characters/vance/back.svg",
  14126. extra: 2081 / 1994,
  14127. bottom: 0.014
  14128. }
  14129. },
  14130. hand: {
  14131. height: math.unit(0.88, "feet"),
  14132. name: "Hand",
  14133. image: {
  14134. source: "./media/characters/vance/hand.svg"
  14135. }
  14136. },
  14137. foot: {
  14138. height: math.unit(0.64, "feet"),
  14139. name: "Foot",
  14140. image: {
  14141. source: "./media/characters/vance/foot.svg"
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "Small",
  14148. height: math.unit(90, "feet"),
  14149. default: true
  14150. },
  14151. {
  14152. name: "Macro",
  14153. height: math.unit(100, "meters")
  14154. },
  14155. {
  14156. name: "Megamacro",
  14157. height: math.unit(15, "miles")
  14158. },
  14159. ]
  14160. ))
  14161. characterMakers.push(() => makeCharacter(
  14162. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14163. {
  14164. front: {
  14165. height: math.unit(6, "feet"),
  14166. weight: math.unit(180, "lb"),
  14167. name: "Front",
  14168. image: {
  14169. source: "./media/characters/xochitl/front.svg",
  14170. extra: 2297 / 2261,
  14171. bottom: 0.065
  14172. }
  14173. },
  14174. back: {
  14175. height: math.unit(6, "feet"),
  14176. weight: math.unit(180, "lb"),
  14177. name: "Back",
  14178. image: {
  14179. source: "./media/characters/xochitl/back.svg",
  14180. extra: 2386 / 2354,
  14181. bottom: 0.01
  14182. }
  14183. },
  14184. foot: {
  14185. height: math.unit(6 / 5 * 1.15, "feet"),
  14186. weight: math.unit(150, "lb"),
  14187. name: "Foot",
  14188. image: {
  14189. source: "./media/characters/xochitl/foot.svg"
  14190. }
  14191. },
  14192. },
  14193. [
  14194. {
  14195. name: "Macro",
  14196. height: math.unit(80, "feet")
  14197. },
  14198. {
  14199. name: "Macro+",
  14200. height: math.unit(400, "feet"),
  14201. default: true
  14202. },
  14203. {
  14204. name: "Gigamacro",
  14205. height: math.unit(80000, "miles")
  14206. },
  14207. {
  14208. name: "Gigamacro+",
  14209. height: math.unit(400000, "miles")
  14210. },
  14211. {
  14212. name: "Teramacro",
  14213. height: math.unit(300, "AU")
  14214. },
  14215. ]
  14216. ))
  14217. characterMakers.push(() => makeCharacter(
  14218. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14219. {
  14220. front: {
  14221. height: math.unit(6, "feet"),
  14222. weight: math.unit(150, "lb"),
  14223. name: "Front",
  14224. image: {
  14225. source: "./media/characters/vincent/front.svg",
  14226. extra: 1130 / 1080,
  14227. bottom: 0.055
  14228. }
  14229. },
  14230. beak: {
  14231. height: math.unit(6 * 0.1, "feet"),
  14232. name: "Beak",
  14233. image: {
  14234. source: "./media/characters/vincent/beak.svg"
  14235. }
  14236. },
  14237. hand: {
  14238. height: math.unit(6 * 0.85, "feet"),
  14239. weight: math.unit(150, "lb"),
  14240. name: "Hand",
  14241. image: {
  14242. source: "./media/characters/vincent/hand.svg"
  14243. }
  14244. },
  14245. foot: {
  14246. height: math.unit(6 * 0.19, "feet"),
  14247. weight: math.unit(150, "lb"),
  14248. name: "Foot",
  14249. image: {
  14250. source: "./media/characters/vincent/foot.svg"
  14251. }
  14252. },
  14253. },
  14254. [
  14255. {
  14256. name: "Base",
  14257. height: math.unit(6 + 5 / 12, "feet"),
  14258. default: true
  14259. },
  14260. {
  14261. name: "Macro",
  14262. height: math.unit(300, "feet")
  14263. },
  14264. {
  14265. name: "Megamacro",
  14266. height: math.unit(2, "miles")
  14267. },
  14268. {
  14269. name: "Gigamacro",
  14270. height: math.unit(1000, "miles")
  14271. },
  14272. ]
  14273. ))
  14274. characterMakers.push(() => makeCharacter(
  14275. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14276. {
  14277. front: {
  14278. height: math.unit(2, "meters"),
  14279. weight: math.unit(500, "kg"),
  14280. name: "Front",
  14281. image: {
  14282. source: "./media/characters/coatl/front.svg",
  14283. extra: 3948 / 3500,
  14284. bottom: 0.082
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Normal",
  14291. height: math.unit(4, "meters")
  14292. },
  14293. {
  14294. name: "Macro",
  14295. height: math.unit(100, "meters"),
  14296. default: true
  14297. },
  14298. {
  14299. name: "Macro+",
  14300. height: math.unit(300, "meters")
  14301. },
  14302. {
  14303. name: "Megamacro",
  14304. height: math.unit(3, "gigameters")
  14305. },
  14306. {
  14307. name: "Megamacro+",
  14308. height: math.unit(300, "terameters")
  14309. },
  14310. {
  14311. name: "Megamacro++",
  14312. height: math.unit(3, "lightyears")
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14318. {
  14319. front: {
  14320. height: math.unit(6, "feet"),
  14321. weight: math.unit(50, "kg"),
  14322. name: "front",
  14323. image: {
  14324. source: "./media/characters/shiroryu/front.svg",
  14325. extra: 1990 / 1935
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Mortal Mingling",
  14332. height: math.unit(3, "meters")
  14333. },
  14334. {
  14335. name: "Kaiju-ish",
  14336. height: math.unit(250, "meters")
  14337. },
  14338. {
  14339. name: "Somewhat Godly",
  14340. height: math.unit(400, "km"),
  14341. default: true
  14342. },
  14343. {
  14344. name: "Planetary",
  14345. height: math.unit(300, "megameters")
  14346. },
  14347. {
  14348. name: "Galaxy-dwarfing",
  14349. height: math.unit(450, "kiloparsecs")
  14350. },
  14351. {
  14352. name: "Universe Eater",
  14353. height: math.unit(150, "gigaparsecs")
  14354. },
  14355. {
  14356. name: "Almost Immeasurable",
  14357. height: math.unit(1.3e266, "yottaparsecs")
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14363. {
  14364. front: {
  14365. height: math.unit(6, "feet"),
  14366. weight: math.unit(150, "lb"),
  14367. name: "Front",
  14368. image: {
  14369. source: "./media/characters/umeko/front.svg",
  14370. extra: 1,
  14371. bottom: 0.019
  14372. }
  14373. },
  14374. frontArmored: {
  14375. height: math.unit(6, "feet"),
  14376. weight: math.unit(150, "lb"),
  14377. name: "Front (Armored)",
  14378. image: {
  14379. source: "./media/characters/umeko/front-armored.svg",
  14380. extra: 1,
  14381. bottom: 0.021
  14382. }
  14383. },
  14384. },
  14385. [
  14386. {
  14387. name: "Macro",
  14388. height: math.unit(220, "feet"),
  14389. default: true
  14390. },
  14391. {
  14392. name: "Guardian Dragon",
  14393. height: math.unit(50, "miles")
  14394. },
  14395. {
  14396. name: "Cosmic",
  14397. height: math.unit(800000, "miles")
  14398. },
  14399. ]
  14400. ))
  14401. characterMakers.push(() => makeCharacter(
  14402. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14403. {
  14404. front: {
  14405. height: math.unit(6, "feet"),
  14406. weight: math.unit(150, "lb"),
  14407. name: "Front",
  14408. image: {
  14409. source: "./media/characters/cassidy/front.svg",
  14410. extra: 810/808,
  14411. bottom: 41/851
  14412. }
  14413. },
  14414. },
  14415. [
  14416. {
  14417. name: "Canon Height",
  14418. height: math.unit(120, "feet"),
  14419. default: true
  14420. },
  14421. {
  14422. name: "Macro+",
  14423. height: math.unit(400, "feet")
  14424. },
  14425. {
  14426. name: "Macro++",
  14427. height: math.unit(4000, "feet")
  14428. },
  14429. {
  14430. name: "Megamacro",
  14431. height: math.unit(3, "miles")
  14432. },
  14433. ]
  14434. ))
  14435. characterMakers.push(() => makeCharacter(
  14436. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14437. {
  14438. front: {
  14439. height: math.unit(6, "feet"),
  14440. weight: math.unit(150, "lb"),
  14441. name: "Front",
  14442. image: {
  14443. source: "./media/characters/isaac/front.svg",
  14444. extra: 896 / 815,
  14445. bottom: 0.11
  14446. }
  14447. },
  14448. },
  14449. [
  14450. {
  14451. name: "Human Size",
  14452. height: math.unit(8, "feet"),
  14453. default: true
  14454. },
  14455. {
  14456. name: "Macro",
  14457. height: math.unit(400, "feet")
  14458. },
  14459. {
  14460. name: "Megamacro",
  14461. height: math.unit(50, "miles")
  14462. },
  14463. {
  14464. name: "Canon Height",
  14465. height: math.unit(200, "AU")
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14471. {
  14472. front: {
  14473. height: math.unit(6, "feet"),
  14474. weight: math.unit(72, "kg"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/sleekit/front.svg",
  14478. extra: 4693 / 4487,
  14479. bottom: 0.012
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Minimum Height",
  14486. height: math.unit(10, "meters")
  14487. },
  14488. {
  14489. name: "Smaller",
  14490. height: math.unit(25, "meters")
  14491. },
  14492. {
  14493. name: "Larger",
  14494. height: math.unit(38, "meters"),
  14495. default: true
  14496. },
  14497. {
  14498. name: "Maximum height",
  14499. height: math.unit(100, "meters")
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14505. {
  14506. front: {
  14507. height: math.unit(6, "feet"),
  14508. weight: math.unit(150, "lb"),
  14509. name: "Front",
  14510. image: {
  14511. source: "./media/characters/nillia/front.svg",
  14512. extra: 2195 / 2037,
  14513. bottom: 0.005
  14514. }
  14515. },
  14516. back: {
  14517. height: math.unit(6, "feet"),
  14518. weight: math.unit(150, "lb"),
  14519. name: "Back",
  14520. image: {
  14521. source: "./media/characters/nillia/back.svg",
  14522. extra: 2195 / 2037,
  14523. bottom: 0.005
  14524. }
  14525. },
  14526. },
  14527. [
  14528. {
  14529. name: "Canon Height",
  14530. height: math.unit(489, "feet"),
  14531. default: true
  14532. }
  14533. ]
  14534. ))
  14535. characterMakers.push(() => makeCharacter(
  14536. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], 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/mesmyriza/front.svg",
  14544. extra: 2067 / 1784,
  14545. bottom: 0.035
  14546. }
  14547. },
  14548. foot: {
  14549. height: math.unit(6 / (250 / 35), "feet"),
  14550. name: "Foot",
  14551. image: {
  14552. source: "./media/characters/mesmyriza/foot.svg"
  14553. }
  14554. },
  14555. },
  14556. [
  14557. {
  14558. name: "Macro",
  14559. height: math.unit(457, "meters"),
  14560. default: true
  14561. },
  14562. {
  14563. name: "Megamacro",
  14564. height: math.unit(8, "megameters")
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14570. {
  14571. front: {
  14572. height: math.unit(6, "feet"),
  14573. weight: math.unit(250, "lb"),
  14574. name: "Front",
  14575. image: {
  14576. source: "./media/characters/saudade/front.svg",
  14577. extra: 1172 / 1139,
  14578. bottom: 0.035
  14579. }
  14580. },
  14581. },
  14582. [
  14583. {
  14584. name: "Micro",
  14585. height: math.unit(3, "inches")
  14586. },
  14587. {
  14588. name: "Normal",
  14589. height: math.unit(6, "feet"),
  14590. default: true
  14591. },
  14592. {
  14593. name: "Macro",
  14594. height: math.unit(50, "feet")
  14595. },
  14596. {
  14597. name: "Megamacro",
  14598. height: math.unit(2800, "feet")
  14599. },
  14600. ]
  14601. ))
  14602. characterMakers.push(() => makeCharacter(
  14603. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14604. {
  14605. front: {
  14606. height: math.unit(5 + 4 / 12, "feet"),
  14607. weight: math.unit(100, "lb"),
  14608. name: "Front",
  14609. image: {
  14610. source: "./media/characters/keireer/front.svg",
  14611. extra: 716 / 666,
  14612. bottom: 0.05
  14613. }
  14614. },
  14615. },
  14616. [
  14617. {
  14618. name: "Normal",
  14619. height: math.unit(5 + 4 / 12, "feet"),
  14620. default: true
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14626. {
  14627. front: {
  14628. height: math.unit(6, "feet"),
  14629. weight: math.unit(90, "kg"),
  14630. name: "Front",
  14631. image: {
  14632. source: "./media/characters/mirja/front.svg",
  14633. extra: 1789 / 1683,
  14634. bottom: 0.05
  14635. }
  14636. },
  14637. frontDressed: {
  14638. height: math.unit(6, "feet"),
  14639. weight: math.unit(90, "lb"),
  14640. name: "Front (Dressed)",
  14641. image: {
  14642. source: "./media/characters/mirja/front-dressed.svg",
  14643. extra: 1789 / 1683,
  14644. bottom: 0.05
  14645. }
  14646. },
  14647. back: {
  14648. height: math.unit(6, "feet"),
  14649. weight: math.unit(90, "lb"),
  14650. name: "Back",
  14651. image: {
  14652. source: "./media/characters/mirja/back.svg",
  14653. extra: 953 / 917,
  14654. bottom: 0.017
  14655. }
  14656. },
  14657. },
  14658. [
  14659. {
  14660. name: "\"Incognito\"",
  14661. height: math.unit(3, "meters")
  14662. },
  14663. {
  14664. name: "Strolling Size",
  14665. height: math.unit(15, "km")
  14666. },
  14667. {
  14668. name: "Larger Strolling Size",
  14669. height: math.unit(400, "km")
  14670. },
  14671. {
  14672. name: "Preferred Size",
  14673. height: math.unit(5000, "km")
  14674. },
  14675. {
  14676. name: "True Size",
  14677. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14678. default: true
  14679. },
  14680. ]
  14681. ))
  14682. characterMakers.push(() => makeCharacter(
  14683. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14684. {
  14685. front: {
  14686. height: math.unit(15, "feet"),
  14687. weight: math.unit(880, "kg"),
  14688. name: "Front",
  14689. image: {
  14690. source: "./media/characters/nightraver/front.svg",
  14691. extra: 2444 / 2160,
  14692. bottom: 0.027
  14693. }
  14694. },
  14695. back: {
  14696. height: math.unit(15, "feet"),
  14697. weight: math.unit(880, "kg"),
  14698. name: "Back",
  14699. image: {
  14700. source: "./media/characters/nightraver/back.svg",
  14701. extra: 2309 / 2180,
  14702. bottom: 0.005
  14703. }
  14704. },
  14705. sole: {
  14706. height: math.unit(2.878, "feet"),
  14707. name: "Sole",
  14708. image: {
  14709. source: "./media/characters/nightraver/sole.svg"
  14710. }
  14711. },
  14712. foot: {
  14713. height: math.unit(2.285, "feet"),
  14714. name: "Foot",
  14715. image: {
  14716. source: "./media/characters/nightraver/foot.svg"
  14717. }
  14718. },
  14719. maw: {
  14720. height: math.unit(2.67, "feet"),
  14721. name: "Maw",
  14722. image: {
  14723. source: "./media/characters/nightraver/maw.svg"
  14724. }
  14725. },
  14726. },
  14727. [
  14728. {
  14729. name: "Micro",
  14730. height: math.unit(1, "cm")
  14731. },
  14732. {
  14733. name: "Normal",
  14734. height: math.unit(15, "feet"),
  14735. default: true
  14736. },
  14737. {
  14738. name: "Macro",
  14739. height: math.unit(300, "feet")
  14740. },
  14741. {
  14742. name: "Megamacro",
  14743. height: math.unit(300, "miles")
  14744. },
  14745. {
  14746. name: "Gigamacro",
  14747. height: math.unit(10000, "miles")
  14748. },
  14749. ]
  14750. ))
  14751. characterMakers.push(() => makeCharacter(
  14752. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14753. {
  14754. side: {
  14755. height: math.unit(2, "inches"),
  14756. weight: math.unit(5, "grams"),
  14757. name: "Side",
  14758. image: {
  14759. source: "./media/characters/arc/side.svg"
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Micro",
  14766. height: math.unit(2, "inches"),
  14767. default: true
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14773. {
  14774. front: {
  14775. height: math.unit(1.1938, "meters"),
  14776. weight: math.unit(54, "kg"),
  14777. name: "Front",
  14778. image: {
  14779. source: "./media/characters/nebula-shahar/front.svg",
  14780. extra: 1642 / 1436,
  14781. bottom: 0.06
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Megamicro",
  14788. height: math.unit(0.3, "mm")
  14789. },
  14790. {
  14791. name: "Micro",
  14792. height: math.unit(3, "cm")
  14793. },
  14794. {
  14795. name: "Normal",
  14796. height: math.unit(138, "cm"),
  14797. default: true
  14798. },
  14799. {
  14800. name: "Macro",
  14801. height: math.unit(30, "m")
  14802. },
  14803. ]
  14804. ))
  14805. characterMakers.push(() => makeCharacter(
  14806. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14807. {
  14808. front: {
  14809. height: math.unit(5.24, "feet"),
  14810. weight: math.unit(150, "lb"),
  14811. name: "Front",
  14812. image: {
  14813. source: "./media/characters/shayla/front.svg",
  14814. extra: 1512 / 1414,
  14815. bottom: 0.01
  14816. }
  14817. },
  14818. back: {
  14819. height: math.unit(5.24, "feet"),
  14820. weight: math.unit(150, "lb"),
  14821. name: "Back",
  14822. image: {
  14823. source: "./media/characters/shayla/back.svg",
  14824. extra: 1512 / 1414
  14825. }
  14826. },
  14827. hand: {
  14828. height: math.unit(0.7781496062992126, "feet"),
  14829. name: "Hand",
  14830. image: {
  14831. source: "./media/characters/shayla/hand.svg"
  14832. }
  14833. },
  14834. foot: {
  14835. height: math.unit(1.4206036745406823, "feet"),
  14836. name: "Foot",
  14837. image: {
  14838. source: "./media/characters/shayla/foot.svg"
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Micro",
  14845. height: math.unit(0.32, "feet")
  14846. },
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(5.24, "feet"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "Macro",
  14854. height: math.unit(492.12, "feet")
  14855. },
  14856. {
  14857. name: "Megamacro",
  14858. height: math.unit(186.41, "miles")
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(2.2, "m"),
  14867. weight: math.unit(120, "kg"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/pia-jr/front.svg",
  14871. extra: 1000 / 970,
  14872. bottom: 0.035
  14873. }
  14874. },
  14875. hand: {
  14876. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14877. name: "Hand",
  14878. image: {
  14879. source: "./media/characters/pia-jr/hand.svg"
  14880. }
  14881. },
  14882. paw: {
  14883. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14884. name: "Paw",
  14885. image: {
  14886. source: "./media/characters/pia-jr/paw.svg"
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Micro",
  14893. height: math.unit(1.2, "cm")
  14894. },
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(2.2, "m"),
  14898. default: true
  14899. },
  14900. {
  14901. name: "Macro",
  14902. height: math.unit(180, "m")
  14903. },
  14904. {
  14905. name: "Megamacro",
  14906. height: math.unit(420, "km")
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14912. {
  14913. front: {
  14914. height: math.unit(2, "m"),
  14915. weight: math.unit(115, "kg"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/pia-sr/front.svg",
  14919. extra: 760 / 730,
  14920. bottom: 0.015
  14921. }
  14922. },
  14923. back: {
  14924. height: math.unit(2, "m"),
  14925. weight: math.unit(115, "kg"),
  14926. name: "Back",
  14927. image: {
  14928. source: "./media/characters/pia-sr/back.svg",
  14929. extra: 760 / 730,
  14930. bottom: 0.01
  14931. }
  14932. },
  14933. hand: {
  14934. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14935. name: "Hand",
  14936. image: {
  14937. source: "./media/characters/pia-sr/hand.svg"
  14938. }
  14939. },
  14940. foot: {
  14941. height: math.unit(1.83, "feet"),
  14942. name: "Foot",
  14943. image: {
  14944. source: "./media/characters/pia-sr/foot.svg"
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Micro",
  14951. height: math.unit(88, "mm")
  14952. },
  14953. {
  14954. name: "Normal",
  14955. height: math.unit(2, "m"),
  14956. default: true
  14957. },
  14958. {
  14959. name: "Macro",
  14960. height: math.unit(200, "m")
  14961. },
  14962. {
  14963. name: "Megamacro",
  14964. height: math.unit(420, "km")
  14965. },
  14966. ]
  14967. ))
  14968. characterMakers.push(() => makeCharacter(
  14969. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14970. {
  14971. front: {
  14972. height: math.unit(8 + 2 / 12, "feet"),
  14973. weight: math.unit(300, "lb"),
  14974. name: "Front",
  14975. image: {
  14976. source: "./media/characters/kibibyte/front.svg",
  14977. extra: 2221 / 2098,
  14978. bottom: 0.04
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(8 + 2 / 12, "feet"),
  14986. default: true
  14987. },
  14988. {
  14989. name: "Socialable Macro",
  14990. height: math.unit(50, "feet")
  14991. },
  14992. {
  14993. name: "Macro",
  14994. height: math.unit(300, "feet")
  14995. },
  14996. {
  14997. name: "Megamacro",
  14998. height: math.unit(500, "miles")
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15004. {
  15005. front: {
  15006. height: math.unit(6, "feet"),
  15007. weight: math.unit(150, "lb"),
  15008. name: "Front",
  15009. image: {
  15010. source: "./media/characters/felix/front.svg",
  15011. extra: 762 / 722,
  15012. bottom: 0.02
  15013. }
  15014. },
  15015. frontClothed: {
  15016. height: math.unit(6, "feet"),
  15017. weight: math.unit(150, "lb"),
  15018. name: "Front (Clothed)",
  15019. image: {
  15020. source: "./media/characters/felix/front-clothed.svg",
  15021. extra: 762 / 722,
  15022. bottom: 0.02
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(6 + 8 / 12, "feet"),
  15030. default: true
  15031. },
  15032. {
  15033. name: "Macro",
  15034. height: math.unit(2600, "feet")
  15035. },
  15036. {
  15037. name: "Megamacro",
  15038. height: math.unit(450, "miles")
  15039. },
  15040. ]
  15041. ))
  15042. characterMakers.push(() => makeCharacter(
  15043. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15044. {
  15045. front: {
  15046. height: math.unit(6 + 1 / 12, "feet"),
  15047. weight: math.unit(250, "lb"),
  15048. name: "Front",
  15049. image: {
  15050. source: "./media/characters/tobo/front.svg",
  15051. extra: 608 / 586,
  15052. bottom: 0.023
  15053. }
  15054. },
  15055. back: {
  15056. height: math.unit(6 + 1 / 12, "feet"),
  15057. weight: math.unit(250, "lb"),
  15058. name: "Back",
  15059. image: {
  15060. source: "./media/characters/tobo/back.svg",
  15061. extra: 608 / 586
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Nano",
  15068. height: math.unit(2, "nm")
  15069. },
  15070. {
  15071. name: "Megamicro",
  15072. height: math.unit(0.1, "mm")
  15073. },
  15074. {
  15075. name: "Micro",
  15076. height: math.unit(1, "inch"),
  15077. default: true
  15078. },
  15079. {
  15080. name: "Human-sized",
  15081. height: math.unit(6 + 1 / 12, "feet")
  15082. },
  15083. {
  15084. name: "Macro",
  15085. height: math.unit(250, "feet")
  15086. },
  15087. {
  15088. name: "Megamacro",
  15089. height: math.unit(75, "miles")
  15090. },
  15091. {
  15092. name: "Texas-sized",
  15093. height: math.unit(750, "miles")
  15094. },
  15095. {
  15096. name: "Teramacro",
  15097. height: math.unit(50000, "miles")
  15098. },
  15099. ]
  15100. ))
  15101. characterMakers.push(() => makeCharacter(
  15102. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15103. {
  15104. front: {
  15105. height: math.unit(6, "feet"),
  15106. weight: math.unit(269, "lb"),
  15107. name: "Front",
  15108. image: {
  15109. source: "./media/characters/danny-kapowsky/front.svg",
  15110. extra: 766 / 736,
  15111. bottom: 0.044
  15112. }
  15113. },
  15114. back: {
  15115. height: math.unit(6, "feet"),
  15116. weight: math.unit(269, "lb"),
  15117. name: "Back",
  15118. image: {
  15119. source: "./media/characters/danny-kapowsky/back.svg",
  15120. extra: 797 / 760,
  15121. bottom: 0.025
  15122. }
  15123. },
  15124. },
  15125. [
  15126. {
  15127. name: "Macro",
  15128. height: math.unit(150, "feet"),
  15129. default: true
  15130. },
  15131. {
  15132. name: "Macro+",
  15133. height: math.unit(200, "feet")
  15134. },
  15135. {
  15136. name: "Macro++",
  15137. height: math.unit(300, "feet")
  15138. },
  15139. {
  15140. name: "Macro+++",
  15141. height: math.unit(400, "feet")
  15142. },
  15143. ]
  15144. ))
  15145. characterMakers.push(() => makeCharacter(
  15146. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15147. {
  15148. side: {
  15149. height: math.unit(6, "feet"),
  15150. weight: math.unit(170, "lb"),
  15151. name: "Side",
  15152. image: {
  15153. source: "./media/characters/finn/side.svg",
  15154. extra: 1953 / 1807,
  15155. bottom: 0.057
  15156. }
  15157. },
  15158. },
  15159. [
  15160. {
  15161. name: "Megamacro",
  15162. height: math.unit(14445, "feet"),
  15163. default: true
  15164. },
  15165. ]
  15166. ))
  15167. characterMakers.push(() => makeCharacter(
  15168. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15169. {
  15170. front: {
  15171. height: math.unit(5 + 6 / 12, "feet"),
  15172. weight: math.unit(125, "lb"),
  15173. name: "Front",
  15174. image: {
  15175. source: "./media/characters/roy/front.svg",
  15176. extra: 1,
  15177. bottom: 0.11
  15178. }
  15179. },
  15180. },
  15181. [
  15182. {
  15183. name: "Micro",
  15184. height: math.unit(3, "inches"),
  15185. default: true
  15186. },
  15187. {
  15188. name: "Normal",
  15189. height: math.unit(5 + 6 / 12, "feet")
  15190. },
  15191. {
  15192. name: "Lesser Macro",
  15193. height: math.unit(60, "feet")
  15194. },
  15195. {
  15196. name: "Greater Macro",
  15197. height: math.unit(120, "feet")
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15203. {
  15204. front: {
  15205. height: math.unit(6, "feet"),
  15206. weight: math.unit(100, "lb"),
  15207. name: "Front",
  15208. image: {
  15209. source: "./media/characters/aevsivs/front.svg",
  15210. extra: 1,
  15211. bottom: 0.03
  15212. }
  15213. },
  15214. back: {
  15215. height: math.unit(6, "feet"),
  15216. weight: math.unit(100, "lb"),
  15217. name: "Back",
  15218. image: {
  15219. source: "./media/characters/aevsivs/back.svg"
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Micro",
  15226. height: math.unit(2, "inches"),
  15227. default: true
  15228. },
  15229. {
  15230. name: "Normal",
  15231. height: math.unit(5, "feet")
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15237. {
  15238. front: {
  15239. height: math.unit(5 + 7 / 12, "feet"),
  15240. weight: math.unit(159, "lb"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/hildegard/front.svg",
  15244. extra: 289 / 269,
  15245. bottom: 7.63 / 297.8
  15246. }
  15247. },
  15248. back: {
  15249. height: math.unit(5 + 7 / 12, "feet"),
  15250. weight: math.unit(159, "lb"),
  15251. name: "Back",
  15252. image: {
  15253. source: "./media/characters/hildegard/back.svg",
  15254. extra: 280 / 260,
  15255. bottom: 2.3 / 282
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Normal",
  15262. height: math.unit(5 + 7 / 12, "feet"),
  15263. default: true
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15269. {
  15270. bernard: {
  15271. height: math.unit(2 + 7 / 12, "feet"),
  15272. weight: math.unit(66, "lb"),
  15273. name: "Bernard",
  15274. rename: true,
  15275. image: {
  15276. source: "./media/characters/bernard-wilder/bernard.svg",
  15277. extra: 192 / 128,
  15278. bottom: 0.05
  15279. }
  15280. },
  15281. wilder: {
  15282. height: math.unit(5 + 8 / 12, "feet"),
  15283. weight: math.unit(143, "lb"),
  15284. name: "Wilder",
  15285. rename: true,
  15286. image: {
  15287. source: "./media/characters/bernard-wilder/wilder.svg",
  15288. extra: 361 / 312,
  15289. bottom: 0.02
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(2 + 7 / 12, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15303. {
  15304. anthro: {
  15305. height: math.unit(6 + 1 / 12, "feet"),
  15306. weight: math.unit(155, "lb"),
  15307. name: "Anthro",
  15308. image: {
  15309. source: "./media/characters/hearth/anthro.svg",
  15310. extra: 1178/1136,
  15311. bottom: 28/1206
  15312. }
  15313. },
  15314. feral: {
  15315. height: math.unit(3.78, "feet"),
  15316. weight: math.unit(35, "kg"),
  15317. name: "Feral",
  15318. image: {
  15319. source: "./media/characters/hearth/feral.svg",
  15320. extra: 153 / 135,
  15321. bottom: 0.03
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Normal",
  15328. height: math.unit(6 + 1 / 12, "feet"),
  15329. default: true
  15330. },
  15331. ]
  15332. ))
  15333. characterMakers.push(() => makeCharacter(
  15334. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15335. {
  15336. front: {
  15337. height: math.unit(6, "feet"),
  15338. weight: math.unit(182, "lb"),
  15339. name: "Front",
  15340. image: {
  15341. source: "./media/characters/ingrid/front.svg",
  15342. extra: 294 / 268,
  15343. bottom: 0.027
  15344. }
  15345. },
  15346. },
  15347. [
  15348. {
  15349. name: "Normal",
  15350. height: math.unit(6, "feet"),
  15351. default: true
  15352. },
  15353. ]
  15354. ))
  15355. characterMakers.push(() => makeCharacter(
  15356. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15357. {
  15358. eevee: {
  15359. height: math.unit(2 + 10 / 12, "feet"),
  15360. weight: math.unit(86, "lb"),
  15361. name: "Malgam",
  15362. image: {
  15363. source: "./media/characters/malgam/eevee.svg",
  15364. extra: 952/784,
  15365. bottom: 38/990
  15366. }
  15367. },
  15368. sylveon: {
  15369. height: math.unit(4, "feet"),
  15370. weight: math.unit(101, "lb"),
  15371. name: "Future Malgam",
  15372. rename: true,
  15373. image: {
  15374. source: "./media/characters/malgam/sylveon.svg",
  15375. extra: 371 / 325,
  15376. bottom: 0.015
  15377. }
  15378. },
  15379. gigantamax: {
  15380. height: math.unit(50, "feet"),
  15381. name: "Gigantamax Malgam",
  15382. rename: true,
  15383. image: {
  15384. source: "./media/characters/malgam/gigantamax.svg"
  15385. }
  15386. },
  15387. },
  15388. [
  15389. {
  15390. name: "Normal",
  15391. height: math.unit(2 + 10 / 12, "feet"),
  15392. default: true
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15398. {
  15399. front: {
  15400. height: math.unit(5 + 11 / 12, "feet"),
  15401. weight: math.unit(188, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/fleur/front.svg",
  15405. extra: 309 / 283,
  15406. bottom: 0.007
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Normal",
  15413. height: math.unit(5 + 11 / 12, "feet"),
  15414. default: true
  15415. },
  15416. ]
  15417. ))
  15418. characterMakers.push(() => makeCharacter(
  15419. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15420. {
  15421. front: {
  15422. height: math.unit(5 + 4 / 12, "feet"),
  15423. weight: math.unit(122, "lb"),
  15424. name: "Front",
  15425. image: {
  15426. source: "./media/characters/jude/front.svg",
  15427. extra: 288 / 273,
  15428. bottom: 0.03
  15429. }
  15430. },
  15431. },
  15432. [
  15433. {
  15434. name: "Normal",
  15435. height: math.unit(5 + 4 / 12, "feet"),
  15436. default: true
  15437. },
  15438. ]
  15439. ))
  15440. characterMakers.push(() => makeCharacter(
  15441. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15442. {
  15443. front: {
  15444. height: math.unit(5 + 11 / 12, "feet"),
  15445. weight: math.unit(190, "lb"),
  15446. name: "Front",
  15447. image: {
  15448. source: "./media/characters/seara/front.svg",
  15449. extra: 1,
  15450. bottom: 0.05
  15451. }
  15452. },
  15453. },
  15454. [
  15455. {
  15456. name: "Normal",
  15457. height: math.unit(5 + 11 / 12, "feet"),
  15458. default: true
  15459. },
  15460. ]
  15461. ))
  15462. characterMakers.push(() => makeCharacter(
  15463. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15464. {
  15465. front: {
  15466. height: math.unit(16 + 5 / 12, "feet"),
  15467. weight: math.unit(524, "lb"),
  15468. name: "Front",
  15469. image: {
  15470. source: "./media/characters/caspian/front.svg",
  15471. extra: 1,
  15472. bottom: 0.04
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Normal",
  15479. height: math.unit(16 + 5 / 12, "feet"),
  15480. default: true
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15486. {
  15487. front: {
  15488. height: math.unit(5 + 7 / 12, "feet"),
  15489. weight: math.unit(170, "lb"),
  15490. name: "Front",
  15491. image: {
  15492. source: "./media/characters/mika/front.svg",
  15493. extra: 1,
  15494. bottom: 0.016
  15495. }
  15496. },
  15497. },
  15498. [
  15499. {
  15500. name: "Normal",
  15501. height: math.unit(5 + 7 / 12, "feet"),
  15502. default: true
  15503. },
  15504. ]
  15505. ))
  15506. characterMakers.push(() => makeCharacter(
  15507. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15508. {
  15509. front: {
  15510. height: math.unit(6 + 2 / 12, "feet"),
  15511. weight: math.unit(268, "lb"),
  15512. name: "Front",
  15513. image: {
  15514. source: "./media/characters/sol/front.svg",
  15515. extra: 247 / 231,
  15516. bottom: 0.05
  15517. }
  15518. },
  15519. },
  15520. [
  15521. {
  15522. name: "Normal",
  15523. height: math.unit(6 + 2 / 12, "feet"),
  15524. default: true
  15525. },
  15526. ]
  15527. ))
  15528. characterMakers.push(() => makeCharacter(
  15529. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15530. {
  15531. buizel: {
  15532. height: math.unit(2 + 5 / 12, "feet"),
  15533. weight: math.unit(87, "lb"),
  15534. name: "Front",
  15535. image: {
  15536. source: "./media/characters/umiko/buizel.svg",
  15537. extra: 172 / 157,
  15538. bottom: 0.01
  15539. },
  15540. form: "buizel",
  15541. default: true
  15542. },
  15543. floatzel: {
  15544. height: math.unit(5 + 9 / 12, "feet"),
  15545. weight: math.unit(250, "lb"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/umiko/floatzel.svg",
  15549. extra: 1076/1006,
  15550. bottom: 15/1091
  15551. },
  15552. form: "floatzel",
  15553. default: true
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(2 + 5 / 12, "feet"),
  15560. form: "buizel",
  15561. default: true
  15562. },
  15563. {
  15564. name: "Normal",
  15565. height: math.unit(5 + 9 / 12, "feet"),
  15566. form: "floatzel",
  15567. default: true
  15568. },
  15569. ],
  15570. {
  15571. "buizel": {
  15572. name: "Buizel"
  15573. },
  15574. "floatzel": {
  15575. name: "Floatzel",
  15576. default: true
  15577. }
  15578. }
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(6 + 2 / 12, "feet"),
  15585. weight: math.unit(146, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/iliac/front.svg",
  15589. extra: 389 / 365,
  15590. bottom: 0.035
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Normal",
  15597. height: math.unit(6 + 2 / 12, "feet"),
  15598. default: true
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15604. {
  15605. front: {
  15606. height: math.unit(6, "feet"),
  15607. weight: math.unit(170, "lb"),
  15608. name: "Front",
  15609. image: {
  15610. source: "./media/characters/topaz/front.svg",
  15611. extra: 317 / 303,
  15612. bottom: 0.055
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Normal",
  15619. height: math.unit(6, "feet"),
  15620. default: true
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(5 + 11 / 12, "feet"),
  15629. weight: math.unit(144, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/gabriel/front.svg",
  15633. extra: 285 / 262,
  15634. bottom: 0.004
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Normal",
  15641. height: math.unit(5 + 11 / 12, "feet"),
  15642. default: true
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15648. {
  15649. side: {
  15650. height: math.unit(6 + 5 / 12, "feet"),
  15651. weight: math.unit(300, "lb"),
  15652. name: "Side",
  15653. image: {
  15654. source: "./media/characters/tempest-suicune/side.svg",
  15655. extra: 195 / 154,
  15656. bottom: 0.04
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Normal",
  15663. height: math.unit(6 + 5 / 12, "feet"),
  15664. default: true
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15670. {
  15671. front: {
  15672. height: math.unit(7 + 2 / 12, "feet"),
  15673. weight: math.unit(322, "lb"),
  15674. name: "Front",
  15675. image: {
  15676. source: "./media/characters/vulcan/front.svg",
  15677. extra: 154 / 147,
  15678. bottom: 0.04
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(7 + 2 / 12, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15692. {
  15693. front: {
  15694. height: math.unit(5 + 10 / 12, "feet"),
  15695. weight: math.unit(264, "lb"),
  15696. name: "Front",
  15697. image: {
  15698. source: "./media/characters/gault/front.svg",
  15699. extra: 161 / 140,
  15700. bottom: 0.028
  15701. }
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(5 + 10 / 12, "feet"),
  15708. default: true
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(6, "feet"),
  15717. weight: math.unit(150, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/shard/front.svg",
  15721. extra: 273 / 238,
  15722. bottom: 0.02
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(3 + 6 / 12, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15736. {
  15737. front: {
  15738. height: math.unit(5 + 11 / 12, "feet"),
  15739. weight: math.unit(146, "lb"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/ashe/front.svg",
  15743. extra: 400 / 373,
  15744. bottom: 0.01
  15745. }
  15746. },
  15747. },
  15748. [
  15749. {
  15750. name: "Normal",
  15751. height: math.unit(5 + 11 / 12, "feet"),
  15752. default: true
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15758. {
  15759. front: {
  15760. height: math.unit(5 + 5 / 12, "feet"),
  15761. weight: math.unit(135, "lb"),
  15762. name: "Front",
  15763. image: {
  15764. source: "./media/characters/beatrix/front.svg",
  15765. extra: 392 / 379,
  15766. bottom: 0.01
  15767. }
  15768. },
  15769. },
  15770. [
  15771. {
  15772. name: "Normal",
  15773. height: math.unit(6, "feet"),
  15774. default: true
  15775. },
  15776. ]
  15777. ))
  15778. characterMakers.push(() => makeCharacter(
  15779. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15780. {
  15781. front: {
  15782. height: math.unit(6 + 2/12, "feet"),
  15783. weight: math.unit(135, "lb"),
  15784. name: "Front",
  15785. image: {
  15786. source: "./media/characters/ignatius/front.svg",
  15787. extra: 1380/1259,
  15788. bottom: 27/1407
  15789. }
  15790. },
  15791. },
  15792. [
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(6 + 2/12, "feet"),
  15796. default: true
  15797. },
  15798. ]
  15799. ))
  15800. characterMakers.push(() => makeCharacter(
  15801. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15802. {
  15803. front: {
  15804. height: math.unit(6 + 2 / 12, "feet"),
  15805. weight: math.unit(138, "lb"),
  15806. name: "Front",
  15807. image: {
  15808. source: "./media/characters/mei-li/front.svg",
  15809. extra: 237 / 229,
  15810. bottom: 0.03
  15811. }
  15812. },
  15813. },
  15814. [
  15815. {
  15816. name: "Normal",
  15817. height: math.unit(6 + 2 / 12, "feet"),
  15818. default: true
  15819. },
  15820. ]
  15821. ))
  15822. characterMakers.push(() => makeCharacter(
  15823. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15824. {
  15825. front: {
  15826. height: math.unit(2 + 4 / 12, "feet"),
  15827. weight: math.unit(62, "lb"),
  15828. name: "Front",
  15829. image: {
  15830. source: "./media/characters/puru/front.svg",
  15831. extra: 206 / 149,
  15832. bottom: 0.06
  15833. }
  15834. },
  15835. },
  15836. [
  15837. {
  15838. name: "Normal",
  15839. height: math.unit(2 + 4 / 12, "feet"),
  15840. default: true
  15841. },
  15842. ]
  15843. ))
  15844. characterMakers.push(() => makeCharacter(
  15845. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15846. {
  15847. anthro: {
  15848. height: math.unit(5 + 8/12, "feet"),
  15849. weight: math.unit(200, "lb"),
  15850. energyNeed: math.unit(2000, "kcal"),
  15851. name: "Anthro",
  15852. image: {
  15853. source: "./media/characters/kee/anthro.svg",
  15854. extra: 3251/3184,
  15855. bottom: 250/3501
  15856. }
  15857. },
  15858. taur: {
  15859. height: math.unit(11, "feet"),
  15860. weight: math.unit(500, "lb"),
  15861. energyNeed: math.unit(5000, "kcal"),
  15862. name: "Taur",
  15863. image: {
  15864. source: "./media/characters/kee/taur.svg",
  15865. extra: 1362/1320,
  15866. bottom: 83/1445
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Normal",
  15873. height: math.unit(5 + 8/12, "feet"),
  15874. default: true
  15875. },
  15876. {
  15877. name: "Macro",
  15878. height: math.unit(35, "feet")
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15884. {
  15885. anthro: {
  15886. height: math.unit(7, "feet"),
  15887. weight: math.unit(190, "lb"),
  15888. name: "Anthro",
  15889. image: {
  15890. source: "./media/characters/cobalt-dracha/anthro.svg",
  15891. extra: 231 / 225,
  15892. bottom: 0.04
  15893. }
  15894. },
  15895. feral: {
  15896. height: math.unit(9 + 7 / 12, "feet"),
  15897. weight: math.unit(294, "lb"),
  15898. name: "Feral",
  15899. image: {
  15900. source: "./media/characters/cobalt-dracha/feral.svg",
  15901. extra: 692 / 633,
  15902. bottom: 0.05
  15903. }
  15904. },
  15905. },
  15906. [
  15907. {
  15908. name: "Normal",
  15909. height: math.unit(7, "feet"),
  15910. default: true
  15911. },
  15912. ]
  15913. ))
  15914. characterMakers.push(() => makeCharacter(
  15915. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15916. {
  15917. fallen: {
  15918. height: math.unit(11 + 8 / 12, "feet"),
  15919. weight: math.unit(485, "lb"),
  15920. name: "Java (Fallen)",
  15921. rename: true,
  15922. image: {
  15923. source: "./media/characters/java/fallen.svg",
  15924. extra: 226 / 208,
  15925. bottom: 0.005
  15926. }
  15927. },
  15928. godkin: {
  15929. height: math.unit(10 + 6 / 12, "feet"),
  15930. weight: math.unit(328, "lb"),
  15931. name: "Java (Godkin)",
  15932. rename: true,
  15933. image: {
  15934. source: "./media/characters/java/godkin.svg",
  15935. extra: 1104/1068,
  15936. bottom: 36/1140
  15937. }
  15938. },
  15939. },
  15940. [
  15941. {
  15942. name: "Normal",
  15943. height: math.unit(11 + 8 / 12, "feet"),
  15944. default: true
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15950. {
  15951. front: {
  15952. height: math.unit(5 + 9 / 12, "feet"),
  15953. weight: math.unit(170, "lb"),
  15954. name: "Front",
  15955. image: {
  15956. source: "./media/characters/purna/front.svg",
  15957. extra: 239 / 229,
  15958. bottom: 0.01
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Normal",
  15965. height: math.unit(5 + 9 / 12, "feet"),
  15966. default: true
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15972. {
  15973. front: {
  15974. height: math.unit(5 + 9 / 12, "feet"),
  15975. weight: math.unit(142, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/kuva/front.svg",
  15979. extra: 281 / 271,
  15980. bottom: 0.006
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(5 + 9 / 12, "feet"),
  15988. default: true
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15994. {
  15995. anthro: {
  15996. height: math.unit(9 + 2 / 12, "feet"),
  15997. weight: math.unit(270, "lb"),
  15998. name: "Anthro",
  15999. image: {
  16000. source: "./media/characters/embra/anthro.svg",
  16001. extra: 200 / 187,
  16002. bottom: 0.02
  16003. }
  16004. },
  16005. feral: {
  16006. height: math.unit(18 + 8 / 12, "feet"),
  16007. weight: math.unit(576, "lb"),
  16008. name: "Feral",
  16009. image: {
  16010. source: "./media/characters/embra/feral.svg",
  16011. extra: 152 / 137,
  16012. bottom: 0.037
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Normal",
  16019. height: math.unit(9 + 2 / 12, "feet"),
  16020. default: true
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16026. {
  16027. anthro: {
  16028. height: math.unit(10 + 9 / 12, "feet"),
  16029. weight: math.unit(224, "lb"),
  16030. name: "Anthro",
  16031. image: {
  16032. source: "./media/characters/grottos/anthro.svg",
  16033. extra: 350 / 332,
  16034. bottom: 0.045
  16035. }
  16036. },
  16037. feral: {
  16038. height: math.unit(20 + 7 / 12, "feet"),
  16039. weight: math.unit(629, "lb"),
  16040. name: "Feral",
  16041. image: {
  16042. source: "./media/characters/grottos/feral.svg",
  16043. extra: 207 / 190,
  16044. bottom: 0.05
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Normal",
  16051. height: math.unit(10 + 9 / 12, "feet"),
  16052. default: true
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16058. {
  16059. anthro: {
  16060. height: math.unit(9 + 6 / 12, "feet"),
  16061. weight: math.unit(298, "lb"),
  16062. name: "Anthro",
  16063. image: {
  16064. source: "./media/characters/frifna/anthro.svg",
  16065. extra: 282 / 269,
  16066. bottom: 0.015
  16067. }
  16068. },
  16069. feral: {
  16070. height: math.unit(16 + 2 / 12, "feet"),
  16071. weight: math.unit(624, "lb"),
  16072. name: "Feral",
  16073. image: {
  16074. source: "./media/characters/frifna/feral.svg"
  16075. }
  16076. },
  16077. },
  16078. [
  16079. {
  16080. name: "Normal",
  16081. height: math.unit(9 + 6 / 12, "feet"),
  16082. default: true
  16083. },
  16084. ]
  16085. ))
  16086. characterMakers.push(() => makeCharacter(
  16087. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16088. {
  16089. front: {
  16090. height: math.unit(6 + 2 / 12, "feet"),
  16091. weight: math.unit(168, "lb"),
  16092. name: "Front",
  16093. image: {
  16094. source: "./media/characters/elise/front.svg",
  16095. extra: 276 / 271
  16096. }
  16097. },
  16098. },
  16099. [
  16100. {
  16101. name: "Normal",
  16102. height: math.unit(6 + 2 / 12, "feet"),
  16103. default: true
  16104. },
  16105. ]
  16106. ))
  16107. characterMakers.push(() => makeCharacter(
  16108. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16109. {
  16110. front: {
  16111. height: math.unit(5 + 10 / 12, "feet"),
  16112. weight: math.unit(210, "lb"),
  16113. name: "Front",
  16114. image: {
  16115. source: "./media/characters/glade/front.svg",
  16116. extra: 258 / 247,
  16117. bottom: 0.008
  16118. }
  16119. },
  16120. },
  16121. [
  16122. {
  16123. name: "Normal",
  16124. height: math.unit(5 + 10 / 12, "feet"),
  16125. default: true
  16126. },
  16127. ]
  16128. ))
  16129. characterMakers.push(() => makeCharacter(
  16130. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16131. {
  16132. front: {
  16133. height: math.unit(5 + 10 / 12, "feet"),
  16134. weight: math.unit(129, "lb"),
  16135. name: "Front",
  16136. image: {
  16137. source: "./media/characters/rina/front.svg",
  16138. extra: 266 / 255,
  16139. bottom: 0.005
  16140. }
  16141. },
  16142. },
  16143. [
  16144. {
  16145. name: "Normal",
  16146. height: math.unit(5 + 10 / 12, "feet"),
  16147. default: true
  16148. },
  16149. ]
  16150. ))
  16151. characterMakers.push(() => makeCharacter(
  16152. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16153. {
  16154. front: {
  16155. height: math.unit(6 + 1 / 12, "feet"),
  16156. weight: math.unit(192, "lb"),
  16157. name: "Front",
  16158. image: {
  16159. source: "./media/characters/veronica/front.svg",
  16160. extra: 319 / 309,
  16161. bottom: 0.005
  16162. }
  16163. },
  16164. },
  16165. [
  16166. {
  16167. name: "Normal",
  16168. height: math.unit(6 + 1 / 12, "feet"),
  16169. default: true
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16175. {
  16176. front: {
  16177. height: math.unit(9 + 3 / 12, "feet"),
  16178. weight: math.unit(1100, "lb"),
  16179. name: "Front",
  16180. image: {
  16181. source: "./media/characters/braxton/front.svg",
  16182. extra: 1057 / 984,
  16183. bottom: 0.05
  16184. }
  16185. },
  16186. },
  16187. [
  16188. {
  16189. name: "Normal",
  16190. height: math.unit(9 + 3 / 12, "feet")
  16191. },
  16192. {
  16193. name: "Giant",
  16194. height: math.unit(300, "feet"),
  16195. default: true
  16196. },
  16197. {
  16198. name: "Macro",
  16199. height: math.unit(700, "feet")
  16200. },
  16201. {
  16202. name: "Megamacro",
  16203. height: math.unit(6000, "feet")
  16204. },
  16205. ]
  16206. ))
  16207. characterMakers.push(() => makeCharacter(
  16208. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16209. {
  16210. front: {
  16211. height: math.unit(6 + 7 / 12, "feet"),
  16212. weight: math.unit(150, "lb"),
  16213. name: "Front",
  16214. image: {
  16215. source: "./media/characters/blue-feyonics/front.svg",
  16216. extra: 1403 / 1306,
  16217. bottom: 0.047
  16218. }
  16219. },
  16220. },
  16221. [
  16222. {
  16223. name: "Normal",
  16224. height: math.unit(6 + 7 / 12, "feet"),
  16225. default: true
  16226. },
  16227. ]
  16228. ))
  16229. characterMakers.push(() => makeCharacter(
  16230. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16231. {
  16232. front: {
  16233. height: math.unit(1.8, "meters"),
  16234. weight: math.unit(60, "kg"),
  16235. name: "Front",
  16236. image: {
  16237. source: "./media/characters/maxwell/front.svg",
  16238. extra: 2060 / 1873
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Micro",
  16245. height: math.unit(1, "mm")
  16246. },
  16247. {
  16248. name: "Normal",
  16249. height: math.unit(1.8, "meter"),
  16250. default: true
  16251. },
  16252. {
  16253. name: "Macro",
  16254. height: math.unit(30, "meters")
  16255. },
  16256. {
  16257. name: "Megamacro",
  16258. height: math.unit(10, "km")
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16264. {
  16265. front: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(150, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/jack/front.svg",
  16271. extra: 1754 / 1640,
  16272. bottom: 0.01
  16273. }
  16274. },
  16275. },
  16276. [
  16277. {
  16278. name: "Normal",
  16279. height: math.unit(80000, "feet"),
  16280. default: true
  16281. },
  16282. {
  16283. name: "Max size",
  16284. height: math.unit(10, "lightyears")
  16285. },
  16286. ]
  16287. ))
  16288. characterMakers.push(() => makeCharacter(
  16289. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16290. {
  16291. urban: {
  16292. height: math.unit(5, "feet"),
  16293. weight: math.unit(240, "lb"),
  16294. name: "Urban",
  16295. image: {
  16296. source: "./media/characters/cafat/urban.svg",
  16297. extra: 1223/1126,
  16298. bottom: 205/1428
  16299. }
  16300. },
  16301. summer: {
  16302. height: math.unit(5, "feet"),
  16303. weight: math.unit(240, "lb"),
  16304. name: "Summer",
  16305. image: {
  16306. source: "./media/characters/cafat/summer.svg",
  16307. extra: 1223/1126,
  16308. bottom: 205/1428
  16309. }
  16310. },
  16311. winter: {
  16312. height: math.unit(5, "feet"),
  16313. weight: math.unit(240, "lb"),
  16314. name: "Winter",
  16315. image: {
  16316. source: "./media/characters/cafat/winter.svg",
  16317. extra: 1223/1126,
  16318. bottom: 205/1428
  16319. }
  16320. },
  16321. lingerie: {
  16322. height: math.unit(5, "feet"),
  16323. weight: math.unit(240, "lb"),
  16324. name: "Lingerie",
  16325. image: {
  16326. source: "./media/characters/cafat/lingerie.svg",
  16327. extra: 1223/1126,
  16328. bottom: 205/1428
  16329. }
  16330. },
  16331. upright: {
  16332. height: math.unit(6.3, "feet"),
  16333. weight: math.unit(240, "lb"),
  16334. name: "Upright",
  16335. image: {
  16336. source: "./media/characters/cafat/upright.svg",
  16337. bottom: 0.01
  16338. }
  16339. },
  16340. uprightFull: {
  16341. height: math.unit(6.3, "feet"),
  16342. weight: math.unit(240, "lb"),
  16343. name: "Upright (Full)",
  16344. image: {
  16345. source: "./media/characters/cafat/upright-full.svg",
  16346. bottom: 0.01
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Small",
  16353. height: math.unit(5, "feet"),
  16354. default: true
  16355. },
  16356. {
  16357. name: "Large",
  16358. height: math.unit(13, "feet")
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16364. {
  16365. front: {
  16366. height: math.unit(6, "feet"),
  16367. weight: math.unit(150, "lb"),
  16368. name: "Front",
  16369. image: {
  16370. source: "./media/characters/verin-raharra/front.svg",
  16371. extra: 5019 / 4835,
  16372. bottom: 0.023
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Normal",
  16379. height: math.unit(7 + 5 / 12, "feet"),
  16380. default: true
  16381. },
  16382. {
  16383. name: "Upsized",
  16384. height: math.unit(20, "feet")
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16390. {
  16391. front: {
  16392. height: math.unit(7, "feet"),
  16393. weight: math.unit(230, "lb"),
  16394. name: "Front",
  16395. image: {
  16396. source: "./media/characters/nakata/front.svg",
  16397. extra: 1.005,
  16398. bottom: 0.01
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Normal",
  16405. height: math.unit(7, "feet"),
  16406. default: true
  16407. },
  16408. {
  16409. name: "Big",
  16410. height: math.unit(14, "feet")
  16411. },
  16412. {
  16413. name: "Macro",
  16414. height: math.unit(400, "feet")
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16420. {
  16421. front: {
  16422. height: math.unit(4.91, "feet"),
  16423. weight: math.unit(100, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/lily/front.svg",
  16427. extra: 1585 / 1415,
  16428. bottom: 0.02
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(4.91, "feet"),
  16436. default: true
  16437. },
  16438. ]
  16439. ))
  16440. characterMakers.push(() => makeCharacter(
  16441. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16442. {
  16443. laying: {
  16444. height: math.unit(4 + 4 / 12, "feet"),
  16445. weight: math.unit(600, "lb"),
  16446. name: "Laying",
  16447. image: {
  16448. source: "./media/characters/sheila/laying.svg",
  16449. extra: 1333 / 1265,
  16450. bottom: 0.16
  16451. }
  16452. },
  16453. },
  16454. [
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(4 + 4 / 12, "feet"),
  16458. default: true
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16464. {
  16465. front: {
  16466. height: math.unit(6, "feet"),
  16467. weight: math.unit(190, "lb"),
  16468. name: "Front",
  16469. image: {
  16470. source: "./media/characters/sax/front.svg",
  16471. extra: 1187 / 973,
  16472. bottom: 0.042
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Micro",
  16479. height: math.unit(4, "inches"),
  16480. default: true
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16486. {
  16487. front: {
  16488. height: math.unit(6, "feet"),
  16489. weight: math.unit(150, "lb"),
  16490. name: "Front",
  16491. image: {
  16492. source: "./media/characters/pandora/front.svg",
  16493. extra: 2720 / 2556,
  16494. bottom: 0.015
  16495. }
  16496. },
  16497. back: {
  16498. height: math.unit(6, "feet"),
  16499. weight: math.unit(150, "lb"),
  16500. name: "Back",
  16501. image: {
  16502. source: "./media/characters/pandora/back.svg",
  16503. extra: 2720 / 2556,
  16504. bottom: 0.01
  16505. }
  16506. },
  16507. beans: {
  16508. height: math.unit(6 / 8, "feet"),
  16509. name: "Beans",
  16510. image: {
  16511. source: "./media/characters/pandora/beans.svg"
  16512. }
  16513. },
  16514. collar: {
  16515. height: math.unit(0.31, "feet"),
  16516. name: "Collar",
  16517. image: {
  16518. source: "./media/characters/pandora/collar.svg"
  16519. }
  16520. },
  16521. skirt: {
  16522. height: math.unit(6, "feet"),
  16523. weight: math.unit(150, "lb"),
  16524. name: "Skirt",
  16525. image: {
  16526. source: "./media/characters/pandora/skirt.svg",
  16527. extra: 1622 / 1525,
  16528. bottom: 0.015
  16529. }
  16530. },
  16531. hoodie: {
  16532. height: math.unit(6, "feet"),
  16533. weight: math.unit(150, "lb"),
  16534. name: "Hoodie",
  16535. image: {
  16536. source: "./media/characters/pandora/hoodie.svg",
  16537. extra: 1622 / 1525,
  16538. bottom: 0.015
  16539. }
  16540. },
  16541. casual: {
  16542. height: math.unit(6, "feet"),
  16543. weight: math.unit(150, "lb"),
  16544. name: "Casual",
  16545. image: {
  16546. source: "./media/characters/pandora/casual.svg",
  16547. extra: 1622 / 1525,
  16548. bottom: 0.015
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(6, "feet")
  16556. },
  16557. {
  16558. name: "Big Steppy",
  16559. height: math.unit(1, "km"),
  16560. default: true
  16561. },
  16562. {
  16563. name: "Galactic Steppy",
  16564. height: math.unit(2, "gigameters")
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16570. {
  16571. side: {
  16572. height: math.unit(10, "feet"),
  16573. weight: math.unit(800, "kg"),
  16574. name: "Side",
  16575. image: {
  16576. source: "./media/characters/venio-darcony/side.svg",
  16577. extra: 1373 / 1003,
  16578. bottom: 0.037
  16579. }
  16580. },
  16581. front: {
  16582. height: math.unit(19, "feet"),
  16583. weight: math.unit(800, "kg"),
  16584. name: "Front",
  16585. image: {
  16586. source: "./media/characters/venio-darcony/front.svg"
  16587. }
  16588. },
  16589. back: {
  16590. height: math.unit(19, "feet"),
  16591. weight: math.unit(800, "kg"),
  16592. name: "Back",
  16593. image: {
  16594. source: "./media/characters/venio-darcony/back.svg"
  16595. }
  16596. },
  16597. sideNsfw: {
  16598. height: math.unit(10, "feet"),
  16599. weight: math.unit(800, "kg"),
  16600. name: "Side (NSFW)",
  16601. image: {
  16602. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16603. extra: 1373 / 1003,
  16604. bottom: 0.037
  16605. }
  16606. },
  16607. frontNsfw: {
  16608. height: math.unit(19, "feet"),
  16609. weight: math.unit(800, "kg"),
  16610. name: "Front (NSFW)",
  16611. image: {
  16612. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16613. }
  16614. },
  16615. backNsfw: {
  16616. height: math.unit(19, "feet"),
  16617. weight: math.unit(800, "kg"),
  16618. name: "Back (NSFW)",
  16619. image: {
  16620. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16621. }
  16622. },
  16623. sideArmored: {
  16624. height: math.unit(10, "feet"),
  16625. weight: math.unit(800, "kg"),
  16626. name: "Side (Armored)",
  16627. image: {
  16628. source: "./media/characters/venio-darcony/side-armored.svg",
  16629. extra: 1373 / 1003,
  16630. bottom: 0.037
  16631. }
  16632. },
  16633. frontArmored: {
  16634. height: math.unit(19, "feet"),
  16635. weight: math.unit(900, "kg"),
  16636. name: "Front (Armored)",
  16637. image: {
  16638. source: "./media/characters/venio-darcony/front-armored.svg"
  16639. }
  16640. },
  16641. backArmored: {
  16642. height: math.unit(19, "feet"),
  16643. weight: math.unit(900, "kg"),
  16644. name: "Back (Armored)",
  16645. image: {
  16646. source: "./media/characters/venio-darcony/back-armored.svg"
  16647. }
  16648. },
  16649. sword: {
  16650. height: math.unit(10, "feet"),
  16651. weight: math.unit(50, "lb"),
  16652. name: "Sword",
  16653. image: {
  16654. source: "./media/characters/venio-darcony/sword.svg"
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Normal",
  16661. height: math.unit(10, "feet")
  16662. },
  16663. {
  16664. name: "Macro",
  16665. height: math.unit(130, "feet"),
  16666. default: true
  16667. },
  16668. {
  16669. name: "Macro+",
  16670. height: math.unit(240, "feet")
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16676. {
  16677. front: {
  16678. height: math.unit(6, "feet"),
  16679. weight: math.unit(150, "lb"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/veski/front.svg",
  16683. extra: 1299 / 1225,
  16684. bottom: 0.04
  16685. }
  16686. },
  16687. back: {
  16688. height: math.unit(6, "feet"),
  16689. weight: math.unit(150, "lb"),
  16690. name: "Back",
  16691. image: {
  16692. source: "./media/characters/veski/back.svg",
  16693. extra: 1299 / 1225,
  16694. bottom: 0.008
  16695. }
  16696. },
  16697. maw: {
  16698. height: math.unit(1.5 * 1.21, "feet"),
  16699. name: "Maw",
  16700. image: {
  16701. source: "./media/characters/veski/maw.svg"
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Macro",
  16708. height: math.unit(2, "km"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(5 + 7 / 12, "feet"),
  16718. name: "Front",
  16719. image: {
  16720. source: "./media/characters/isabelle/front.svg",
  16721. extra: 2130 / 1976,
  16722. bottom: 0.05
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Supermicro",
  16729. height: math.unit(10, "micrometers")
  16730. },
  16731. {
  16732. name: "Micro",
  16733. height: math.unit(1, "inch")
  16734. },
  16735. {
  16736. name: "Tiny",
  16737. height: math.unit(5, "inches")
  16738. },
  16739. {
  16740. name: "Standard",
  16741. height: math.unit(5 + 7 / 12, "inches")
  16742. },
  16743. {
  16744. name: "Macro",
  16745. height: math.unit(80, "meters"),
  16746. default: true
  16747. },
  16748. {
  16749. name: "Megamacro",
  16750. height: math.unit(250, "meters")
  16751. },
  16752. {
  16753. name: "Gigamacro",
  16754. height: math.unit(5, "km")
  16755. },
  16756. {
  16757. name: "Cosmic",
  16758. height: math.unit(2.5e6, "miles")
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16764. {
  16765. front: {
  16766. height: math.unit(6, "feet"),
  16767. weight: math.unit(150, "lb"),
  16768. name: "Front",
  16769. image: {
  16770. source: "./media/characters/hanzo/front.svg",
  16771. extra: 374 / 344,
  16772. bottom: 0.02
  16773. }
  16774. },
  16775. },
  16776. [
  16777. {
  16778. name: "Normal",
  16779. height: math.unit(8, "feet"),
  16780. default: true
  16781. },
  16782. ]
  16783. ))
  16784. characterMakers.push(() => makeCharacter(
  16785. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16786. {
  16787. front: {
  16788. height: math.unit(7, "feet"),
  16789. weight: math.unit(130, "lb"),
  16790. name: "Front",
  16791. image: {
  16792. source: "./media/characters/anna/front.svg",
  16793. extra: 169 / 145,
  16794. bottom: 0.06
  16795. }
  16796. },
  16797. full: {
  16798. height: math.unit(4.96, "feet"),
  16799. weight: math.unit(220, "lb"),
  16800. name: "Full",
  16801. image: {
  16802. source: "./media/characters/anna/full.svg",
  16803. extra: 138 / 114,
  16804. bottom: 0.15
  16805. }
  16806. },
  16807. tongue: {
  16808. height: math.unit(2.53, "feet"),
  16809. name: "Tongue",
  16810. image: {
  16811. source: "./media/characters/anna/tongue.svg"
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(7, "feet"),
  16819. default: true
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(7, "feet"),
  16828. weight: math.unit(150, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/ian-corvid/front.svg",
  16832. extra: 150 / 142,
  16833. bottom: 0.02
  16834. }
  16835. },
  16836. back: {
  16837. height: math.unit(7, "feet"),
  16838. weight: math.unit(150, "lb"),
  16839. name: "Back",
  16840. image: {
  16841. source: "./media/characters/ian-corvid/back.svg",
  16842. extra: 150 / 143,
  16843. bottom: 0.01
  16844. }
  16845. },
  16846. stomping: {
  16847. height: math.unit(7, "feet"),
  16848. weight: math.unit(150, "lb"),
  16849. name: "Stomping",
  16850. image: {
  16851. source: "./media/characters/ian-corvid/stomping.svg",
  16852. extra: 76 / 72
  16853. }
  16854. },
  16855. sitting: {
  16856. height: math.unit(7 / 1.8, "feet"),
  16857. weight: math.unit(150, "lb"),
  16858. name: "Sitting",
  16859. image: {
  16860. source: "./media/characters/ian-corvid/sitting.svg",
  16861. extra: 1400 / 1269,
  16862. bottom: 0.15
  16863. }
  16864. },
  16865. },
  16866. [
  16867. {
  16868. name: "Tiny Microw",
  16869. height: math.unit(1, "inch")
  16870. },
  16871. {
  16872. name: "Microw",
  16873. height: math.unit(6, "inches")
  16874. },
  16875. {
  16876. name: "Crow",
  16877. height: math.unit(7 + 1 / 12, "feet"),
  16878. default: true
  16879. },
  16880. {
  16881. name: "Macrow",
  16882. height: math.unit(176, "feet")
  16883. },
  16884. ]
  16885. ))
  16886. characterMakers.push(() => makeCharacter(
  16887. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16888. {
  16889. front: {
  16890. height: math.unit(5 + 7 / 12, "feet"),
  16891. weight: math.unit(147, "lb"),
  16892. name: "Front",
  16893. image: {
  16894. source: "./media/characters/natalie-kellon/front.svg",
  16895. extra: 1214 / 1141,
  16896. bottom: 0.02
  16897. }
  16898. },
  16899. },
  16900. [
  16901. {
  16902. name: "Micro",
  16903. height: math.unit(1 / 16, "inch")
  16904. },
  16905. {
  16906. name: "Tiny",
  16907. height: math.unit(4, "inches")
  16908. },
  16909. {
  16910. name: "Normal",
  16911. height: math.unit(5 + 7 / 12, "feet"),
  16912. default: true
  16913. },
  16914. {
  16915. name: "Amazon",
  16916. height: math.unit(12, "feet")
  16917. },
  16918. {
  16919. name: "Giantess",
  16920. height: math.unit(160, "meters")
  16921. },
  16922. {
  16923. name: "Titaness",
  16924. height: math.unit(800, "meters")
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16930. {
  16931. front: {
  16932. height: math.unit(6, "feet"),
  16933. weight: math.unit(150, "lb"),
  16934. name: "Front",
  16935. image: {
  16936. source: "./media/characters/alluria/front.svg",
  16937. extra: 806 / 738,
  16938. bottom: 0.01
  16939. }
  16940. },
  16941. side: {
  16942. height: math.unit(6, "feet"),
  16943. weight: math.unit(150, "lb"),
  16944. name: "Side",
  16945. image: {
  16946. source: "./media/characters/alluria/side.svg",
  16947. extra: 800 / 750,
  16948. }
  16949. },
  16950. back: {
  16951. height: math.unit(6, "feet"),
  16952. weight: math.unit(150, "lb"),
  16953. name: "Back",
  16954. image: {
  16955. source: "./media/characters/alluria/back.svg",
  16956. extra: 806 / 738,
  16957. }
  16958. },
  16959. frontMaid: {
  16960. height: math.unit(6, "feet"),
  16961. weight: math.unit(150, "lb"),
  16962. name: "Front (Maid)",
  16963. image: {
  16964. source: "./media/characters/alluria/front-maid.svg",
  16965. extra: 806 / 738,
  16966. bottom: 0.01
  16967. }
  16968. },
  16969. sideMaid: {
  16970. height: math.unit(6, "feet"),
  16971. weight: math.unit(150, "lb"),
  16972. name: "Side (Maid)",
  16973. image: {
  16974. source: "./media/characters/alluria/side-maid.svg",
  16975. extra: 800 / 750,
  16976. bottom: 0.005
  16977. }
  16978. },
  16979. backMaid: {
  16980. height: math.unit(6, "feet"),
  16981. weight: math.unit(150, "lb"),
  16982. name: "Back (Maid)",
  16983. image: {
  16984. source: "./media/characters/alluria/back-maid.svg",
  16985. extra: 806 / 738,
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Micro",
  16992. height: math.unit(6, "inches"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16999. {
  17000. front: {
  17001. height: math.unit(6, "feet"),
  17002. weight: math.unit(150, "lb"),
  17003. name: "Front",
  17004. image: {
  17005. source: "./media/characters/kyle/front.svg",
  17006. extra: 1069 / 962,
  17007. bottom: 77.228 / 1727.45
  17008. }
  17009. },
  17010. },
  17011. [
  17012. {
  17013. name: "Macro",
  17014. height: math.unit(150, "feet"),
  17015. default: true
  17016. },
  17017. ]
  17018. ))
  17019. characterMakers.push(() => makeCharacter(
  17020. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17021. {
  17022. front: {
  17023. height: math.unit(6, "feet"),
  17024. weight: math.unit(300, "lb"),
  17025. name: "Front",
  17026. image: {
  17027. source: "./media/characters/duncan/front.svg",
  17028. extra: 1650 / 1482,
  17029. bottom: 0.05
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Macro",
  17036. height: math.unit(100, "feet"),
  17037. default: true
  17038. },
  17039. ]
  17040. ))
  17041. characterMakers.push(() => makeCharacter(
  17042. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17043. {
  17044. front: {
  17045. height: math.unit(5 + 4 / 12, "feet"),
  17046. weight: math.unit(220, "lb"),
  17047. name: "Front",
  17048. image: {
  17049. source: "./media/characters/memory/front.svg",
  17050. extra: 3641 / 3545,
  17051. bottom: 0.03
  17052. }
  17053. },
  17054. back: {
  17055. height: math.unit(5 + 4 / 12, "feet"),
  17056. weight: math.unit(220, "lb"),
  17057. name: "Back",
  17058. image: {
  17059. source: "./media/characters/memory/back.svg",
  17060. extra: 3641 / 3545,
  17061. bottom: 0.025
  17062. }
  17063. },
  17064. frontSkirt: {
  17065. height: math.unit(5 + 4 / 12, "feet"),
  17066. weight: math.unit(220, "lb"),
  17067. name: "Front (Skirt)",
  17068. image: {
  17069. source: "./media/characters/memory/front-skirt.svg",
  17070. extra: 3641 / 3545,
  17071. bottom: 0.03
  17072. }
  17073. },
  17074. frontDress: {
  17075. height: math.unit(5 + 4 / 12, "feet"),
  17076. weight: math.unit(220, "lb"),
  17077. name: "Front (Dress)",
  17078. image: {
  17079. source: "./media/characters/memory/front-dress.svg",
  17080. extra: 3641 / 3545,
  17081. bottom: 0.03
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Micro",
  17088. height: math.unit(6, "inches"),
  17089. default: true
  17090. },
  17091. {
  17092. name: "Normal",
  17093. height: math.unit(5 + 4 / 12, "feet")
  17094. },
  17095. ]
  17096. ))
  17097. characterMakers.push(() => makeCharacter(
  17098. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17099. {
  17100. front: {
  17101. height: math.unit(4 + 11 / 12, "feet"),
  17102. weight: math.unit(100, "lb"),
  17103. name: "Front",
  17104. image: {
  17105. source: "./media/characters/luno/front.svg",
  17106. extra: 1535 / 1487,
  17107. bottom: 0.03
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Micro",
  17114. height: math.unit(3, "inches")
  17115. },
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(4 + 11 / 12, "feet"),
  17119. default: true
  17120. },
  17121. {
  17122. name: "Macro",
  17123. height: math.unit(300, "feet")
  17124. },
  17125. {
  17126. name: "Megamacro",
  17127. height: math.unit(700, "miles")
  17128. },
  17129. ]
  17130. ))
  17131. characterMakers.push(() => makeCharacter(
  17132. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17133. {
  17134. front: {
  17135. height: math.unit(6 + 2 / 12, "feet"),
  17136. weight: math.unit(170, "lb"),
  17137. name: "Front",
  17138. image: {
  17139. source: "./media/characters/jamesy/front.svg",
  17140. extra: 440 / 382,
  17141. bottom: 0.005
  17142. }
  17143. },
  17144. },
  17145. [
  17146. {
  17147. name: "Micro",
  17148. height: math.unit(3, "inches")
  17149. },
  17150. {
  17151. name: "Normal",
  17152. height: math.unit(6 + 2 / 12, "feet"),
  17153. default: true
  17154. },
  17155. {
  17156. name: "Macro",
  17157. height: math.unit(300, "feet")
  17158. },
  17159. {
  17160. name: "Megamacro",
  17161. height: math.unit(700, "miles")
  17162. },
  17163. ]
  17164. ))
  17165. characterMakers.push(() => makeCharacter(
  17166. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17167. {
  17168. front: {
  17169. height: math.unit(6, "feet"),
  17170. weight: math.unit(160, "lb"),
  17171. name: "Front",
  17172. image: {
  17173. source: "./media/characters/mark/front.svg",
  17174. extra: 3300 / 3100,
  17175. bottom: 136.42 / 3440.47
  17176. }
  17177. },
  17178. },
  17179. [
  17180. {
  17181. name: "Macro",
  17182. height: math.unit(120, "meters")
  17183. },
  17184. {
  17185. name: "Bigger Macro",
  17186. height: math.unit(350, "meters")
  17187. },
  17188. {
  17189. name: "Megamacro",
  17190. height: math.unit(8, "km"),
  17191. default: true
  17192. },
  17193. {
  17194. name: "Continental",
  17195. height: math.unit(4550, "km")
  17196. },
  17197. {
  17198. name: "Planetary",
  17199. height: math.unit(65000, "km")
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17205. {
  17206. front: {
  17207. height: math.unit(6, "feet"),
  17208. weight: math.unit(400, "lb"),
  17209. name: "Front",
  17210. image: {
  17211. source: "./media/characters/mac/front.svg",
  17212. extra: 1048 / 987.7,
  17213. bottom: 60 / 1107.6,
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Macro",
  17220. height: math.unit(500, "feet"),
  17221. default: true
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17227. {
  17228. front: {
  17229. height: math.unit(5 + 2 / 12, "feet"),
  17230. weight: math.unit(190, "lb"),
  17231. name: "Front",
  17232. image: {
  17233. source: "./media/characters/bari/front.svg",
  17234. extra: 3156 / 2880,
  17235. bottom: 0.03
  17236. }
  17237. },
  17238. back: {
  17239. height: math.unit(5 + 2 / 12, "feet"),
  17240. weight: math.unit(190, "lb"),
  17241. name: "Back",
  17242. image: {
  17243. source: "./media/characters/bari/back.svg",
  17244. extra: 3260 / 2834,
  17245. bottom: 0.025
  17246. }
  17247. },
  17248. frontPlush: {
  17249. height: math.unit(5 + 2 / 12, "feet"),
  17250. weight: math.unit(190, "lb"),
  17251. name: "Front (Plush)",
  17252. image: {
  17253. source: "./media/characters/bari/front-plush.svg",
  17254. extra: 1112 / 1061,
  17255. bottom: 0.002
  17256. }
  17257. },
  17258. },
  17259. [
  17260. {
  17261. name: "Micro",
  17262. height: math.unit(3, "inches")
  17263. },
  17264. {
  17265. name: "Normal",
  17266. height: math.unit(5 + 2 / 12, "feet"),
  17267. default: true
  17268. },
  17269. {
  17270. name: "Macro",
  17271. height: math.unit(20, "feet")
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17277. {
  17278. front: {
  17279. height: math.unit(6 + 1 / 12, "feet"),
  17280. weight: math.unit(275, "lb"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/hunter-misha-raven/front.svg"
  17284. }
  17285. },
  17286. },
  17287. [
  17288. {
  17289. name: "Mortal",
  17290. height: math.unit(6 + 1 / 12, "feet")
  17291. },
  17292. {
  17293. name: "Divine",
  17294. height: math.unit(1.12134e34, "parsecs"),
  17295. default: true
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17301. {
  17302. front: {
  17303. height: math.unit(6 + 3 / 12, "feet"),
  17304. weight: math.unit(220, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/max-calore/front.svg",
  17308. extra: 1700 / 1648,
  17309. bottom: 0.01
  17310. }
  17311. },
  17312. back: {
  17313. height: math.unit(6 + 3 / 12, "feet"),
  17314. weight: math.unit(220, "lb"),
  17315. name: "Back",
  17316. image: {
  17317. source: "./media/characters/max-calore/back.svg",
  17318. extra: 1700 / 1648,
  17319. bottom: 0.01
  17320. }
  17321. },
  17322. },
  17323. [
  17324. {
  17325. name: "Normal",
  17326. height: math.unit(6 + 3 / 12, "feet"),
  17327. default: true
  17328. },
  17329. ]
  17330. ))
  17331. characterMakers.push(() => makeCharacter(
  17332. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17333. {
  17334. side: {
  17335. height: math.unit(2 + 8 / 12, "feet"),
  17336. weight: math.unit(99, "lb"),
  17337. name: "Side",
  17338. image: {
  17339. source: "./media/characters/aspen/side.svg",
  17340. extra: 152 / 138,
  17341. bottom: 0.032
  17342. }
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(2 + 8 / 12, "feet"),
  17349. default: true
  17350. },
  17351. ]
  17352. ))
  17353. characterMakers.push(() => makeCharacter(
  17354. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17355. {
  17356. side: {
  17357. height: math.unit(3 + 2 / 12, "feet"),
  17358. weight: math.unit(224, "lb"),
  17359. name: "Side",
  17360. image: {
  17361. source: "./media/characters/sheila-feral-wolf/side.svg",
  17362. extra: 179 / 166,
  17363. bottom: 0.03
  17364. }
  17365. },
  17366. },
  17367. [
  17368. {
  17369. name: "Normal",
  17370. height: math.unit(3 + 2 / 12, "feet"),
  17371. default: true
  17372. },
  17373. ]
  17374. ))
  17375. characterMakers.push(() => makeCharacter(
  17376. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17377. {
  17378. side: {
  17379. height: math.unit(1 + 9 / 12, "feet"),
  17380. weight: math.unit(38, "lb"),
  17381. name: "Side",
  17382. image: {
  17383. source: "./media/characters/michelle/side.svg",
  17384. extra: 147 / 136.7,
  17385. bottom: 0.03
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(1 + 9 / 12, "feet"),
  17393. default: true
  17394. },
  17395. ]
  17396. ))
  17397. characterMakers.push(() => makeCharacter(
  17398. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17399. {
  17400. front: {
  17401. height: math.unit(1.54, "feet"),
  17402. weight: math.unit(50, "lb"),
  17403. name: "Front",
  17404. image: {
  17405. source: "./media/characters/nino/front.svg"
  17406. }
  17407. },
  17408. },
  17409. [
  17410. {
  17411. name: "Normal",
  17412. height: math.unit(1.54, "feet"),
  17413. default: true
  17414. },
  17415. ]
  17416. ))
  17417. characterMakers.push(() => makeCharacter(
  17418. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17419. {
  17420. front: {
  17421. height: math.unit(1.49, "feet"),
  17422. weight: math.unit(45, "lb"),
  17423. name: "Front",
  17424. image: {
  17425. source: "./media/characters/viola/front.svg"
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(1.49, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(6 + 5 / 12, "feet"),
  17442. weight: math.unit(580, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/atlas/front.svg",
  17446. extra: 298.5 / 290,
  17447. bottom: 0.015
  17448. }
  17449. },
  17450. },
  17451. [
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(6 + 5 / 12, "feet"),
  17455. default: true
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17461. {
  17462. side: {
  17463. height: math.unit(15.6, "inches"),
  17464. weight: math.unit(10, "lb"),
  17465. name: "Side",
  17466. image: {
  17467. source: "./media/characters/davy/side.svg",
  17468. extra: 200 / 170,
  17469. bottom: 0.01
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Normal",
  17476. height: math.unit(15.6, "inches"),
  17477. default: true
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17483. {
  17484. side: {
  17485. height: math.unit(4 + 8 / 12, "feet"),
  17486. weight: math.unit(166, "lb"),
  17487. name: "Side",
  17488. image: {
  17489. source: "./media/characters/fiona/side.svg",
  17490. extra: 232 / 220,
  17491. bottom: 0.03
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(4 + 8 / 12, "feet"),
  17499. default: true
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17505. {
  17506. front: {
  17507. height: math.unit(26, "inches"),
  17508. weight: math.unit(35, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/lyla/front.svg",
  17512. bottom: 0.1
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Normal",
  17519. height: math.unit(3, "feet"),
  17520. default: true
  17521. },
  17522. ]
  17523. ))
  17524. characterMakers.push(() => makeCharacter(
  17525. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17526. {
  17527. side: {
  17528. height: math.unit(1.8, "feet"),
  17529. weight: math.unit(44, "lb"),
  17530. name: "Side",
  17531. image: {
  17532. source: "./media/characters/perseus/side.svg",
  17533. bottom: 0.21
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(1.8, "feet"),
  17541. default: true
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17547. {
  17548. side: {
  17549. height: math.unit(4 + 2 / 12, "feet"),
  17550. weight: math.unit(20, "lb"),
  17551. name: "Side",
  17552. image: {
  17553. source: "./media/characters/remus/side.svg"
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(4 + 2 / 12, "feet"),
  17561. default: true
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17567. {
  17568. front: {
  17569. height: math.unit(4 + 11 / 12, "feet"),
  17570. weight: math.unit(114, "lb"),
  17571. name: "Front",
  17572. image: {
  17573. source: "./media/characters/raf/front.svg",
  17574. extra: 1504/1339,
  17575. bottom: 26/1530
  17576. }
  17577. },
  17578. side: {
  17579. height: math.unit(4 + 11 / 12, "feet"),
  17580. weight: math.unit(114, "lb"),
  17581. name: "Side",
  17582. image: {
  17583. source: "./media/characters/raf/side.svg",
  17584. extra: 1466/1316,
  17585. bottom: 29/1495
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Micro",
  17592. height: math.unit(2, "inches")
  17593. },
  17594. {
  17595. name: "Normal",
  17596. height: math.unit(4 + 11 / 12, "feet"),
  17597. default: true
  17598. },
  17599. {
  17600. name: "Macro",
  17601. height: math.unit(70, "feet")
  17602. },
  17603. ]
  17604. ))
  17605. characterMakers.push(() => makeCharacter(
  17606. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17607. {
  17608. front: {
  17609. height: math.unit(1.5, "meters"),
  17610. weight: math.unit(68, "kg"),
  17611. name: "Front",
  17612. image: {
  17613. source: "./media/characters/liam-einarr/front.svg",
  17614. extra: 2822 / 2666
  17615. }
  17616. },
  17617. back: {
  17618. height: math.unit(1.5, "meters"),
  17619. weight: math.unit(68, "kg"),
  17620. name: "Back",
  17621. image: {
  17622. source: "./media/characters/liam-einarr/back.svg",
  17623. extra: 2822 / 2666,
  17624. bottom: 0.015
  17625. }
  17626. },
  17627. },
  17628. [
  17629. {
  17630. name: "Normal",
  17631. height: math.unit(1.5, "meters"),
  17632. default: true
  17633. },
  17634. {
  17635. name: "Macro",
  17636. height: math.unit(150, "meters")
  17637. },
  17638. {
  17639. name: "Megamacro",
  17640. height: math.unit(35, "km")
  17641. },
  17642. ]
  17643. ))
  17644. characterMakers.push(() => makeCharacter(
  17645. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17646. {
  17647. front: {
  17648. height: math.unit(6, "feet"),
  17649. weight: math.unit(75, "kg"),
  17650. name: "Front",
  17651. image: {
  17652. source: "./media/characters/linda/front.svg",
  17653. extra: 930 / 874,
  17654. bottom: 0.004
  17655. }
  17656. },
  17657. },
  17658. [
  17659. {
  17660. name: "Normal",
  17661. height: math.unit(6, "feet"),
  17662. default: true
  17663. },
  17664. ]
  17665. ))
  17666. characterMakers.push(() => makeCharacter(
  17667. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17668. {
  17669. front: {
  17670. height: math.unit(6 + 8 / 12, "feet"),
  17671. weight: math.unit(220, "lb"),
  17672. name: "Front",
  17673. image: {
  17674. source: "./media/characters/caylex/front.svg",
  17675. extra: 821 / 772,
  17676. bottom: 0.07
  17677. }
  17678. },
  17679. back: {
  17680. height: math.unit(6 + 8 / 12, "feet"),
  17681. weight: math.unit(220, "lb"),
  17682. name: "Back",
  17683. image: {
  17684. source: "./media/characters/caylex/back.svg",
  17685. extra: 821 / 772,
  17686. bottom: 0.022
  17687. }
  17688. },
  17689. hand: {
  17690. height: math.unit(1.25, "feet"),
  17691. name: "Hand",
  17692. image: {
  17693. source: "./media/characters/caylex/hand.svg"
  17694. }
  17695. },
  17696. foot: {
  17697. height: math.unit(1.6, "feet"),
  17698. name: "Foot",
  17699. image: {
  17700. source: "./media/characters/caylex/foot.svg"
  17701. }
  17702. },
  17703. armored: {
  17704. height: math.unit(6 + 8 / 12, "feet"),
  17705. weight: math.unit(250, "lb"),
  17706. name: "Armored",
  17707. image: {
  17708. source: "./media/characters/caylex/armored.svg",
  17709. extra: 1420 / 1310,
  17710. bottom: 0.045
  17711. }
  17712. },
  17713. },
  17714. [
  17715. {
  17716. name: "Normal",
  17717. height: math.unit(6 + 8 / 12, "feet"),
  17718. default: true
  17719. },
  17720. {
  17721. name: "Normal+",
  17722. height: math.unit(12, "feet")
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17728. {
  17729. front: {
  17730. height: math.unit(7 + 6 / 12, "feet"),
  17731. weight: math.unit(288, "lb"),
  17732. name: "Front",
  17733. image: {
  17734. source: "./media/characters/alana/front.svg",
  17735. extra: 679 / 653,
  17736. bottom: 22.5 / 701
  17737. }
  17738. },
  17739. },
  17740. [
  17741. {
  17742. name: "Normal",
  17743. height: math.unit(7 + 6 / 12, "feet")
  17744. },
  17745. {
  17746. name: "Large",
  17747. height: math.unit(50, "feet")
  17748. },
  17749. {
  17750. name: "Macro",
  17751. height: math.unit(100, "feet"),
  17752. default: true
  17753. },
  17754. {
  17755. name: "Macro+",
  17756. height: math.unit(200, "feet")
  17757. },
  17758. ]
  17759. ))
  17760. characterMakers.push(() => makeCharacter(
  17761. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17762. {
  17763. front: {
  17764. height: math.unit(6 + 1 / 12, "feet"),
  17765. weight: math.unit(210, "lb"),
  17766. name: "Front",
  17767. image: {
  17768. source: "./media/characters/hasani/front.svg",
  17769. extra: 244 / 232,
  17770. bottom: 0.01
  17771. }
  17772. },
  17773. back: {
  17774. height: math.unit(6 + 1 / 12, "feet"),
  17775. weight: math.unit(210, "lb"),
  17776. name: "Back",
  17777. image: {
  17778. source: "./media/characters/hasani/back.svg",
  17779. extra: 244 / 232,
  17780. bottom: 0.01
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(6 + 1 / 12, "feet")
  17788. },
  17789. {
  17790. name: "Macro",
  17791. height: math.unit(175, "feet"),
  17792. default: true
  17793. },
  17794. ]
  17795. ))
  17796. characterMakers.push(() => makeCharacter(
  17797. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17798. {
  17799. front: {
  17800. height: math.unit(1.82, "meters"),
  17801. weight: math.unit(140, "lb"),
  17802. name: "Front",
  17803. image: {
  17804. source: "./media/characters/nita/front.svg",
  17805. extra: 2473 / 2363,
  17806. bottom: 0.01
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(1.82, "m")
  17814. },
  17815. {
  17816. name: "Macro",
  17817. height: math.unit(300, "m")
  17818. },
  17819. {
  17820. name: "Mistake Canon",
  17821. height: math.unit(0.5, "miles"),
  17822. default: true
  17823. },
  17824. {
  17825. name: "Big Mistake",
  17826. height: math.unit(13, "miles")
  17827. },
  17828. {
  17829. name: "Playing God",
  17830. height: math.unit(2450, "miles")
  17831. },
  17832. ]
  17833. ))
  17834. characterMakers.push(() => makeCharacter(
  17835. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17836. {
  17837. front: {
  17838. height: math.unit(4, "feet"),
  17839. weight: math.unit(120, "lb"),
  17840. name: "Front",
  17841. image: {
  17842. source: "./media/characters/shiriko/front.svg",
  17843. extra: 970/934,
  17844. bottom: 5/975
  17845. }
  17846. },
  17847. },
  17848. [
  17849. {
  17850. name: "Normal",
  17851. height: math.unit(4, "feet"),
  17852. default: true
  17853. },
  17854. ]
  17855. ))
  17856. characterMakers.push(() => makeCharacter(
  17857. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17858. {
  17859. front: {
  17860. height: math.unit(6, "feet"),
  17861. name: "front",
  17862. image: {
  17863. source: "./media/characters/deja/front.svg",
  17864. extra: 926 / 840,
  17865. bottom: 0.07
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Planck Length",
  17872. height: math.unit(1.6e-35, "meters")
  17873. },
  17874. {
  17875. name: "Normal",
  17876. height: math.unit(30.48, "meters"),
  17877. default: true
  17878. },
  17879. {
  17880. name: "Universal",
  17881. height: math.unit(8.8e26, "meters")
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17887. {
  17888. side: {
  17889. height: math.unit(8, "feet"),
  17890. weight: math.unit(6300, "lb"),
  17891. name: "Side",
  17892. image: {
  17893. source: "./media/characters/anima/side.svg",
  17894. bottom: 0.035
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(8, "feet"),
  17902. default: true
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17908. {
  17909. front: {
  17910. height: math.unit(8, "feet"),
  17911. weight: math.unit(350, "lb"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/bianca/front.svg",
  17915. extra: 234 / 225,
  17916. bottom: 0.03
  17917. }
  17918. },
  17919. },
  17920. [
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(8, "feet"),
  17924. default: true
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17930. {
  17931. front: {
  17932. height: math.unit(6, "feet"),
  17933. weight: math.unit(150, "lb"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/adinia/front.svg",
  17937. extra: 1845 / 1672,
  17938. bottom: 0.02
  17939. }
  17940. },
  17941. back: {
  17942. height: math.unit(6, "feet"),
  17943. weight: math.unit(150, "lb"),
  17944. name: "Back",
  17945. image: {
  17946. source: "./media/characters/adinia/back.svg",
  17947. extra: 1845 / 1672,
  17948. bottom: 0.002
  17949. }
  17950. },
  17951. },
  17952. [
  17953. {
  17954. name: "Normal",
  17955. height: math.unit(11 + 5 / 12, "feet"),
  17956. default: true
  17957. },
  17958. ]
  17959. ))
  17960. characterMakers.push(() => makeCharacter(
  17961. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17962. {
  17963. front: {
  17964. height: math.unit(3, "meters"),
  17965. weight: math.unit(200, "kg"),
  17966. name: "Front",
  17967. image: {
  17968. source: "./media/characters/lykasa/front.svg",
  17969. extra: 1076 / 976,
  17970. bottom: 0.06
  17971. }
  17972. },
  17973. },
  17974. [
  17975. {
  17976. name: "Normal",
  17977. height: math.unit(3, "meters")
  17978. },
  17979. {
  17980. name: "Kaiju",
  17981. height: math.unit(120, "meters"),
  17982. default: true
  17983. },
  17984. {
  17985. name: "Mega Kaiju",
  17986. height: math.unit(240, "km")
  17987. },
  17988. {
  17989. name: "Giga Kaiju",
  17990. height: math.unit(400, "megameters")
  17991. },
  17992. {
  17993. name: "Tera Kaiju",
  17994. height: math.unit(800, "gigameters")
  17995. },
  17996. {
  17997. name: "Kaiju Dragon Goddess",
  17998. height: math.unit(26, "zettaparsecs")
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18004. {
  18005. side: {
  18006. height: math.unit(283 / 124 * 6, "feet"),
  18007. weight: math.unit(35000, "lb"),
  18008. name: "Side",
  18009. image: {
  18010. source: "./media/characters/malfaren/side.svg",
  18011. extra: 1310/529,
  18012. bottom: 24/1334
  18013. }
  18014. },
  18015. front: {
  18016. height: math.unit(22.36, "feet"),
  18017. weight: math.unit(35000, "lb"),
  18018. name: "Front",
  18019. image: {
  18020. source: "./media/characters/malfaren/front.svg",
  18021. extra: 1237/1115,
  18022. bottom: 32/1269
  18023. }
  18024. },
  18025. maw: {
  18026. height: math.unit(6.9, "feet"),
  18027. name: "Maw",
  18028. image: {
  18029. source: "./media/characters/malfaren/maw.svg"
  18030. }
  18031. },
  18032. dick: {
  18033. height: math.unit(6.19, "feet"),
  18034. name: "Dick",
  18035. image: {
  18036. source: "./media/characters/malfaren/dick.svg"
  18037. }
  18038. },
  18039. eye: {
  18040. height: math.unit(0.69, "feet"),
  18041. name: "Eye",
  18042. image: {
  18043. source: "./media/characters/malfaren/eye.svg"
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Big",
  18050. height: math.unit(283 / 162 * 6, "feet"),
  18051. },
  18052. {
  18053. name: "Bigger",
  18054. height: math.unit(283 / 124 * 6, "feet")
  18055. },
  18056. {
  18057. name: "Massive",
  18058. height: math.unit(283 / 92 * 6, "feet"),
  18059. default: true
  18060. },
  18061. {
  18062. name: "👀💦",
  18063. height: math.unit(283 / 73 * 6, "feet"),
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(1.7, "m"),
  18072. weight: math.unit(70, "kg"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/kernel/front.svg",
  18076. extra: 222 / 210,
  18077. bottom: 0.007
  18078. }
  18079. },
  18080. },
  18081. [
  18082. {
  18083. name: "Nano",
  18084. height: math.unit(17, "micrometers")
  18085. },
  18086. {
  18087. name: "Micro",
  18088. height: math.unit(1.7, "mm")
  18089. },
  18090. {
  18091. name: "Small",
  18092. height: math.unit(1.7, "cm")
  18093. },
  18094. {
  18095. name: "Normal",
  18096. height: math.unit(1.7, "m"),
  18097. default: true
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18103. {
  18104. front: {
  18105. height: math.unit(1.75, "meters"),
  18106. weight: math.unit(65, "kg"),
  18107. name: "Front",
  18108. image: {
  18109. source: "./media/characters/jayne-folest/front.svg",
  18110. extra: 2115 / 2007,
  18111. bottom: 0.02
  18112. }
  18113. },
  18114. back: {
  18115. height: math.unit(1.75, "meters"),
  18116. weight: math.unit(65, "kg"),
  18117. name: "Back",
  18118. image: {
  18119. source: "./media/characters/jayne-folest/back.svg",
  18120. extra: 2115 / 2007,
  18121. bottom: 0.005
  18122. }
  18123. },
  18124. frontClothed: {
  18125. height: math.unit(1.75, "meters"),
  18126. weight: math.unit(65, "kg"),
  18127. name: "Front (Clothed)",
  18128. image: {
  18129. source: "./media/characters/jayne-folest/front-clothed.svg",
  18130. extra: 2115 / 2007,
  18131. bottom: 0.035
  18132. }
  18133. },
  18134. hand: {
  18135. height: math.unit(1 / 1.260, "feet"),
  18136. name: "Hand",
  18137. image: {
  18138. source: "./media/characters/jayne-folest/hand.svg"
  18139. }
  18140. },
  18141. foot: {
  18142. height: math.unit(1 / 0.918, "feet"),
  18143. name: "Foot",
  18144. image: {
  18145. source: "./media/characters/jayne-folest/foot.svg"
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Micro",
  18152. height: math.unit(4, "cm")
  18153. },
  18154. {
  18155. name: "Normal",
  18156. height: math.unit(1.75, "meters")
  18157. },
  18158. {
  18159. name: "Macro",
  18160. height: math.unit(47.5, "meters"),
  18161. default: true
  18162. },
  18163. ]
  18164. ))
  18165. characterMakers.push(() => makeCharacter(
  18166. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18167. {
  18168. front: {
  18169. height: math.unit(180, "cm"),
  18170. weight: math.unit(70, "kg"),
  18171. name: "Front",
  18172. image: {
  18173. source: "./media/characters/algier/front.svg",
  18174. extra: 596 / 572,
  18175. bottom: 0.04
  18176. }
  18177. },
  18178. back: {
  18179. height: math.unit(180, "cm"),
  18180. weight: math.unit(70, "kg"),
  18181. name: "Back",
  18182. image: {
  18183. source: "./media/characters/algier/back.svg",
  18184. extra: 596 / 572,
  18185. bottom: 0.025
  18186. }
  18187. },
  18188. frontdressed: {
  18189. height: math.unit(180, "cm"),
  18190. weight: math.unit(150, "kg"),
  18191. name: "Front-dressed",
  18192. image: {
  18193. source: "./media/characters/algier/front-dressed.svg",
  18194. extra: 596 / 572,
  18195. bottom: 0.038
  18196. }
  18197. },
  18198. },
  18199. [
  18200. {
  18201. name: "Micro",
  18202. height: math.unit(5, "cm")
  18203. },
  18204. {
  18205. name: "Normal",
  18206. height: math.unit(180, "cm"),
  18207. default: true
  18208. },
  18209. {
  18210. name: "Macro",
  18211. height: math.unit(64, "m")
  18212. },
  18213. ]
  18214. ))
  18215. characterMakers.push(() => makeCharacter(
  18216. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18217. {
  18218. upright: {
  18219. height: math.unit(7, "feet"),
  18220. weight: math.unit(300, "lb"),
  18221. name: "Upright",
  18222. image: {
  18223. source: "./media/characters/pretzel/upright.svg",
  18224. extra: 534 / 522,
  18225. bottom: 0.065
  18226. }
  18227. },
  18228. sprawling: {
  18229. height: math.unit(3.75, "feet"),
  18230. weight: math.unit(300, "lb"),
  18231. name: "Sprawling",
  18232. image: {
  18233. source: "./media/characters/pretzel/sprawling.svg",
  18234. extra: 314 / 281,
  18235. bottom: 0.1
  18236. }
  18237. },
  18238. tongue: {
  18239. height: math.unit(2, "feet"),
  18240. name: "Tongue",
  18241. image: {
  18242. source: "./media/characters/pretzel/tongue.svg"
  18243. }
  18244. },
  18245. },
  18246. [
  18247. {
  18248. name: "Normal",
  18249. height: math.unit(7, "feet"),
  18250. default: true
  18251. },
  18252. {
  18253. name: "Oversized",
  18254. height: math.unit(15, "feet")
  18255. },
  18256. {
  18257. name: "Huge",
  18258. height: math.unit(30, "feet")
  18259. },
  18260. {
  18261. name: "Macro",
  18262. height: math.unit(250, "feet")
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18268. {
  18269. sideFront: {
  18270. height: math.unit(5 + 2 / 12, "feet"),
  18271. weight: math.unit(120, "lb"),
  18272. name: "Front Side",
  18273. image: {
  18274. source: "./media/characters/roxi/side-front.svg",
  18275. extra: 2924 / 2717,
  18276. bottom: 0.08
  18277. }
  18278. },
  18279. sideBack: {
  18280. height: math.unit(5 + 2 / 12, "feet"),
  18281. weight: math.unit(120, "lb"),
  18282. name: "Back Side",
  18283. image: {
  18284. source: "./media/characters/roxi/side-back.svg",
  18285. extra: 2904 / 2693,
  18286. bottom: 0.06
  18287. }
  18288. },
  18289. front: {
  18290. height: math.unit(5 + 2 / 12, "feet"),
  18291. weight: math.unit(120, "lb"),
  18292. name: "Front",
  18293. image: {
  18294. source: "./media/characters/roxi/front.svg",
  18295. extra: 2028 / 1907,
  18296. bottom: 0.01
  18297. }
  18298. },
  18299. frontAlt: {
  18300. height: math.unit(5 + 2 / 12, "feet"),
  18301. weight: math.unit(120, "lb"),
  18302. name: "Front (Alt)",
  18303. image: {
  18304. source: "./media/characters/roxi/front-alt.svg",
  18305. extra: 1828 / 1798,
  18306. bottom: 0.01
  18307. }
  18308. },
  18309. sitting: {
  18310. height: math.unit(2.8, "feet"),
  18311. weight: math.unit(120, "lb"),
  18312. name: "Sitting",
  18313. image: {
  18314. source: "./media/characters/roxi/sitting.svg",
  18315. extra: 2660 / 2462,
  18316. bottom: 0.1
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(5 + 2 / 12, "feet"),
  18324. default: true
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18330. {
  18331. side: {
  18332. height: math.unit(55, "feet"),
  18333. weight: math.unit(153, "tons"),
  18334. name: "Side",
  18335. image: {
  18336. source: "./media/characters/shadow/side.svg",
  18337. extra: 701 / 628,
  18338. bottom: 0.02
  18339. }
  18340. },
  18341. flying: {
  18342. height: math.unit(145, "feet"),
  18343. weight: math.unit(153, "tons"),
  18344. name: "Flying",
  18345. image: {
  18346. source: "./media/characters/shadow/flying.svg"
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Normal",
  18353. height: math.unit(55, "feet"),
  18354. default: true
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18360. {
  18361. front: {
  18362. height: math.unit(6, "feet"),
  18363. weight: math.unit(200, "lb"),
  18364. name: "Front",
  18365. image: {
  18366. source: "./media/characters/marcie/front.svg",
  18367. extra: 960 / 876,
  18368. bottom: 58 / 1017.87
  18369. }
  18370. },
  18371. },
  18372. [
  18373. {
  18374. name: "Macro",
  18375. height: math.unit(1, "mile"),
  18376. default: true
  18377. },
  18378. ]
  18379. ))
  18380. characterMakers.push(() => makeCharacter(
  18381. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18382. {
  18383. front: {
  18384. height: math.unit(7, "feet"),
  18385. weight: math.unit(200, "lb"),
  18386. name: "Front",
  18387. image: {
  18388. source: "./media/characters/kachina/front.svg",
  18389. extra: 1290.68 / 1119,
  18390. bottom: 36.5 / 1327.18
  18391. }
  18392. },
  18393. },
  18394. [
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(7, "feet"),
  18398. default: true
  18399. },
  18400. ]
  18401. ))
  18402. characterMakers.push(() => makeCharacter(
  18403. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18404. {
  18405. looking: {
  18406. height: math.unit(2, "meters"),
  18407. weight: math.unit(300, "kg"),
  18408. name: "Looking",
  18409. image: {
  18410. source: "./media/characters/kash/looking.svg",
  18411. extra: 474 / 344,
  18412. bottom: 0.03
  18413. }
  18414. },
  18415. side: {
  18416. height: math.unit(2, "meters"),
  18417. weight: math.unit(300, "kg"),
  18418. name: "Side",
  18419. image: {
  18420. source: "./media/characters/kash/side.svg",
  18421. extra: 302 / 251,
  18422. bottom: 0.03
  18423. }
  18424. },
  18425. front: {
  18426. height: math.unit(2, "meters"),
  18427. weight: math.unit(300, "kg"),
  18428. name: "Front",
  18429. image: {
  18430. source: "./media/characters/kash/front.svg",
  18431. extra: 495 / 360,
  18432. bottom: 0.015
  18433. }
  18434. },
  18435. },
  18436. [
  18437. {
  18438. name: "Normal",
  18439. height: math.unit(2, "meters"),
  18440. default: true
  18441. },
  18442. {
  18443. name: "Big",
  18444. height: math.unit(3, "meters")
  18445. },
  18446. {
  18447. name: "Large",
  18448. height: math.unit(5, "meters")
  18449. },
  18450. ]
  18451. ))
  18452. characterMakers.push(() => makeCharacter(
  18453. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18454. {
  18455. feeding: {
  18456. height: math.unit(6.7, "feet"),
  18457. weight: math.unit(350, "lb"),
  18458. name: "Feeding",
  18459. image: {
  18460. source: "./media/characters/lalim/feeding.svg",
  18461. }
  18462. },
  18463. },
  18464. [
  18465. {
  18466. name: "Normal",
  18467. height: math.unit(6.7, "feet"),
  18468. default: true
  18469. },
  18470. ]
  18471. ))
  18472. characterMakers.push(() => makeCharacter(
  18473. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18474. {
  18475. front: {
  18476. height: math.unit(9.5, "feet"),
  18477. weight: math.unit(600, "lb"),
  18478. name: "Front",
  18479. image: {
  18480. source: "./media/characters/de'vout/front.svg",
  18481. extra: 1443 / 1328,
  18482. bottom: 0.025
  18483. }
  18484. },
  18485. back: {
  18486. height: math.unit(9.5, "feet"),
  18487. weight: math.unit(600, "lb"),
  18488. name: "Back",
  18489. image: {
  18490. source: "./media/characters/de'vout/back.svg",
  18491. extra: 1443 / 1328
  18492. }
  18493. },
  18494. frontDressed: {
  18495. height: math.unit(9.5, "feet"),
  18496. weight: math.unit(600, "lb"),
  18497. name: "Front (Dressed",
  18498. image: {
  18499. source: "./media/characters/de'vout/front-dressed.svg",
  18500. extra: 1443 / 1328,
  18501. bottom: 0.025
  18502. }
  18503. },
  18504. backDressed: {
  18505. height: math.unit(9.5, "feet"),
  18506. weight: math.unit(600, "lb"),
  18507. name: "Back (Dressed",
  18508. image: {
  18509. source: "./media/characters/de'vout/back-dressed.svg",
  18510. extra: 1443 / 1328
  18511. }
  18512. },
  18513. },
  18514. [
  18515. {
  18516. name: "Normal",
  18517. height: math.unit(9.5, "feet"),
  18518. default: true
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18524. {
  18525. front: {
  18526. height: math.unit(8, "feet"),
  18527. weight: math.unit(225, "lb"),
  18528. name: "Front",
  18529. image: {
  18530. source: "./media/characters/talana/front.svg",
  18531. extra: 1410 / 1300,
  18532. bottom: 0.015
  18533. }
  18534. },
  18535. frontDressed: {
  18536. height: math.unit(8, "feet"),
  18537. weight: math.unit(225, "lb"),
  18538. name: "Front (Dressed",
  18539. image: {
  18540. source: "./media/characters/talana/front-dressed.svg",
  18541. extra: 1410 / 1300,
  18542. bottom: 0.015
  18543. }
  18544. },
  18545. },
  18546. [
  18547. {
  18548. name: "Normal",
  18549. height: math.unit(8, "feet"),
  18550. default: true
  18551. },
  18552. ]
  18553. ))
  18554. characterMakers.push(() => makeCharacter(
  18555. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18556. {
  18557. side: {
  18558. height: math.unit(7.2, "feet"),
  18559. weight: math.unit(150, "lb"),
  18560. name: "Side",
  18561. image: {
  18562. source: "./media/characters/xeauvok/side.svg",
  18563. extra: 1975 / 1523,
  18564. bottom: 0.07
  18565. }
  18566. },
  18567. },
  18568. [
  18569. {
  18570. name: "Normal",
  18571. height: math.unit(7.2, "feet"),
  18572. default: true
  18573. },
  18574. ]
  18575. ))
  18576. characterMakers.push(() => makeCharacter(
  18577. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18578. {
  18579. side: {
  18580. height: math.unit(10, "feet"),
  18581. weight: math.unit(900, "kg"),
  18582. name: "Side",
  18583. image: {
  18584. source: "./media/characters/zara/side.svg",
  18585. extra: 504 / 498
  18586. }
  18587. },
  18588. },
  18589. [
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(10, "feet"),
  18593. default: true
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18599. {
  18600. side: {
  18601. height: math.unit(6, "feet"),
  18602. weight: math.unit(150, "lb"),
  18603. name: "Side",
  18604. image: {
  18605. source: "./media/characters/richard-dragon/side.svg",
  18606. extra: 845 / 340,
  18607. bottom: 0.017
  18608. }
  18609. },
  18610. maw: {
  18611. height: math.unit(2.97, "feet"),
  18612. name: "Maw",
  18613. image: {
  18614. source: "./media/characters/richard-dragon/maw.svg"
  18615. }
  18616. },
  18617. },
  18618. [
  18619. ]
  18620. ))
  18621. characterMakers.push(() => makeCharacter(
  18622. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18623. {
  18624. front: {
  18625. height: math.unit(4, "feet"),
  18626. weight: math.unit(100, "lb"),
  18627. name: "Front",
  18628. image: {
  18629. source: "./media/characters/richard-smeargle/front.svg",
  18630. extra: 2952 / 2820,
  18631. bottom: 0.028
  18632. }
  18633. },
  18634. },
  18635. [
  18636. {
  18637. name: "Normal",
  18638. height: math.unit(4, "feet"),
  18639. default: true
  18640. },
  18641. {
  18642. name: "Dynamax",
  18643. height: math.unit(20, "meters")
  18644. },
  18645. ]
  18646. ))
  18647. characterMakers.push(() => makeCharacter(
  18648. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18649. {
  18650. front: {
  18651. height: math.unit(6, "feet"),
  18652. weight: math.unit(110, "lb"),
  18653. name: "Front",
  18654. image: {
  18655. source: "./media/characters/klay/front.svg",
  18656. extra: 962 / 883,
  18657. bottom: 0.04
  18658. }
  18659. },
  18660. back: {
  18661. height: math.unit(6, "feet"),
  18662. weight: math.unit(110, "lb"),
  18663. name: "Back",
  18664. image: {
  18665. source: "./media/characters/klay/back.svg",
  18666. extra: 962 / 883
  18667. }
  18668. },
  18669. beans: {
  18670. height: math.unit(1.15, "feet"),
  18671. name: "Beans",
  18672. image: {
  18673. source: "./media/characters/klay/beans.svg"
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Micro",
  18680. height: math.unit(6, "inches")
  18681. },
  18682. {
  18683. name: "Mini",
  18684. height: math.unit(3, "feet")
  18685. },
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(6, "feet"),
  18689. default: true
  18690. },
  18691. {
  18692. name: "Big",
  18693. height: math.unit(25, "feet")
  18694. },
  18695. {
  18696. name: "Macro",
  18697. height: math.unit(100, "feet")
  18698. },
  18699. {
  18700. name: "Megamacro",
  18701. height: math.unit(400, "feet")
  18702. },
  18703. ]
  18704. ))
  18705. characterMakers.push(() => makeCharacter(
  18706. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18707. {
  18708. front: {
  18709. height: math.unit(6, "feet"),
  18710. weight: math.unit(160, "lb"),
  18711. name: "Front",
  18712. image: {
  18713. source: "./media/characters/marcus/front.svg",
  18714. extra: 734 / 676,
  18715. bottom: 0.03
  18716. }
  18717. },
  18718. },
  18719. [
  18720. {
  18721. name: "Little",
  18722. height: math.unit(6, "feet")
  18723. },
  18724. {
  18725. name: "Normal",
  18726. height: math.unit(110, "feet"),
  18727. default: true
  18728. },
  18729. {
  18730. name: "Macro",
  18731. height: math.unit(250, "feet")
  18732. },
  18733. {
  18734. name: "Megamacro",
  18735. height: math.unit(1000, "feet")
  18736. },
  18737. ]
  18738. ))
  18739. characterMakers.push(() => makeCharacter(
  18740. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18741. {
  18742. front: {
  18743. height: math.unit(7, "feet"),
  18744. weight: math.unit(275, "lb"),
  18745. name: "Front",
  18746. image: {
  18747. source: "./media/characters/claude-delroute/front.svg",
  18748. extra: 902/827,
  18749. bottom: 26/928
  18750. }
  18751. },
  18752. side: {
  18753. height: math.unit(7, "feet"),
  18754. weight: math.unit(275, "lb"),
  18755. name: "Side",
  18756. image: {
  18757. source: "./media/characters/claude-delroute/side.svg",
  18758. extra: 908/853,
  18759. bottom: 16/924
  18760. }
  18761. },
  18762. back: {
  18763. height: math.unit(7, "feet"),
  18764. weight: math.unit(275, "lb"),
  18765. name: "Back",
  18766. image: {
  18767. source: "./media/characters/claude-delroute/back.svg",
  18768. extra: 911/829,
  18769. bottom: 18/929
  18770. }
  18771. },
  18772. maw: {
  18773. height: math.unit(0.6407, "meters"),
  18774. name: "Maw",
  18775. image: {
  18776. source: "./media/characters/claude-delroute/maw.svg"
  18777. }
  18778. },
  18779. },
  18780. [
  18781. {
  18782. name: "Normal",
  18783. height: math.unit(7, "feet"),
  18784. default: true
  18785. },
  18786. {
  18787. name: "Lorge",
  18788. height: math.unit(20, "feet")
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18794. {
  18795. front: {
  18796. height: math.unit(8 + 4 / 12, "feet"),
  18797. weight: math.unit(600, "lb"),
  18798. name: "Front",
  18799. image: {
  18800. source: "./media/characters/dragonien/front.svg",
  18801. extra: 100 / 94,
  18802. bottom: 3.3 / 103.3445
  18803. }
  18804. },
  18805. back: {
  18806. height: math.unit(8 + 4 / 12, "feet"),
  18807. weight: math.unit(600, "lb"),
  18808. name: "Back",
  18809. image: {
  18810. source: "./media/characters/dragonien/back.svg",
  18811. extra: 776 / 746,
  18812. bottom: 6.4 / 782.0616
  18813. }
  18814. },
  18815. foot: {
  18816. height: math.unit(1.54, "feet"),
  18817. name: "Foot",
  18818. image: {
  18819. source: "./media/characters/dragonien/foot.svg",
  18820. }
  18821. },
  18822. },
  18823. [
  18824. {
  18825. name: "Normal",
  18826. height: math.unit(8 + 4 / 12, "feet"),
  18827. default: true
  18828. },
  18829. {
  18830. name: "Macro",
  18831. height: math.unit(200, "feet")
  18832. },
  18833. {
  18834. name: "Megamacro",
  18835. height: math.unit(1, "mile")
  18836. },
  18837. {
  18838. name: "Gigamacro",
  18839. height: math.unit(1000, "miles")
  18840. },
  18841. ]
  18842. ))
  18843. characterMakers.push(() => makeCharacter(
  18844. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18845. {
  18846. front: {
  18847. height: math.unit(5 + 2 / 12, "feet"),
  18848. weight: math.unit(110, "lb"),
  18849. name: "Front",
  18850. image: {
  18851. source: "./media/characters/desta/front.svg",
  18852. extra: 767 / 726,
  18853. bottom: 11.7 / 779
  18854. }
  18855. },
  18856. back: {
  18857. height: math.unit(5 + 2 / 12, "feet"),
  18858. weight: math.unit(110, "lb"),
  18859. name: "Back",
  18860. image: {
  18861. source: "./media/characters/desta/back.svg",
  18862. extra: 777 / 728,
  18863. bottom: 6 / 784
  18864. }
  18865. },
  18866. frontAlt: {
  18867. height: math.unit(5 + 2 / 12, "feet"),
  18868. weight: math.unit(110, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/desta/front-alt.svg",
  18872. extra: 1482 / 1417
  18873. }
  18874. },
  18875. side: {
  18876. height: math.unit(5 + 2 / 12, "feet"),
  18877. weight: math.unit(110, "lb"),
  18878. name: "Side",
  18879. image: {
  18880. source: "./media/characters/desta/side.svg",
  18881. extra: 2579 / 2491,
  18882. bottom: 0.053
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Micro",
  18889. height: math.unit(6, "inches")
  18890. },
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(5 + 2 / 12, "feet"),
  18894. default: true
  18895. },
  18896. {
  18897. name: "Macro",
  18898. height: math.unit(62, "feet")
  18899. },
  18900. {
  18901. name: "Megamacro",
  18902. height: math.unit(1800, "feet")
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18908. {
  18909. front: {
  18910. height: math.unit(10, "feet"),
  18911. weight: math.unit(700, "lb"),
  18912. name: "Front",
  18913. image: {
  18914. source: "./media/characters/storm-alystar/front.svg",
  18915. extra: 2112 / 1898,
  18916. bottom: 0.034
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Micro",
  18923. height: math.unit(3.5, "inches")
  18924. },
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(10, "feet"),
  18928. default: true
  18929. },
  18930. {
  18931. name: "Macro",
  18932. height: math.unit(400, "feet")
  18933. },
  18934. {
  18935. name: "Deific",
  18936. height: math.unit(60, "miles")
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18942. {
  18943. front: {
  18944. height: math.unit(2.35, "meters"),
  18945. weight: math.unit(119, "kg"),
  18946. name: "Front",
  18947. image: {
  18948. source: "./media/characters/ilia/front.svg",
  18949. extra: 1285 / 1255,
  18950. bottom: 0.06
  18951. }
  18952. },
  18953. },
  18954. [
  18955. {
  18956. name: "Normal",
  18957. height: math.unit(2.35, "meters")
  18958. },
  18959. {
  18960. name: "Macro",
  18961. height: math.unit(140, "meters"),
  18962. default: true
  18963. },
  18964. {
  18965. name: "Megamacro",
  18966. height: math.unit(100, "miles")
  18967. },
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(6 + 5 / 12, "feet"),
  18975. weight: math.unit(190, "lb"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/kingdead/front.svg",
  18979. extra: 1228 / 1177
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Micro",
  18986. height: math.unit(7, "inches")
  18987. },
  18988. {
  18989. name: "Normal",
  18990. height: math.unit(6 + 5 / 12, "feet")
  18991. },
  18992. {
  18993. name: "Macro",
  18994. height: math.unit(150, "feet"),
  18995. default: true
  18996. },
  18997. {
  18998. name: "Megamacro",
  18999. height: math.unit(200, "miles")
  19000. },
  19001. ]
  19002. ))
  19003. characterMakers.push(() => makeCharacter(
  19004. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19005. {
  19006. front: {
  19007. height: math.unit(8, "feet"),
  19008. weight: math.unit(600, "lb"),
  19009. name: "Front",
  19010. image: {
  19011. source: "./media/characters/kyrehx/front.svg",
  19012. extra: 1195 / 1095,
  19013. bottom: 0.034
  19014. }
  19015. },
  19016. },
  19017. [
  19018. {
  19019. name: "Micro",
  19020. height: math.unit(2, "inches")
  19021. },
  19022. {
  19023. name: "Normal",
  19024. height: math.unit(8, "feet"),
  19025. default: true
  19026. },
  19027. {
  19028. name: "Macro",
  19029. height: math.unit(255, "feet")
  19030. },
  19031. ]
  19032. ))
  19033. characterMakers.push(() => makeCharacter(
  19034. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19035. {
  19036. front: {
  19037. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19038. weight: math.unit(184, "lb"),
  19039. name: "Front",
  19040. image: {
  19041. source: "./media/characters/xang/front.svg",
  19042. extra: 845 / 755
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19050. default: true
  19051. },
  19052. {
  19053. name: "Macro",
  19054. height: math.unit(0.935 * 146, "feet")
  19055. },
  19056. {
  19057. name: "Megamacro",
  19058. height: math.unit(0.935 * 3, "miles")
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19064. {
  19065. frontDressed: {
  19066. height: math.unit(5 + 7 / 12, "feet"),
  19067. weight: math.unit(140, "lb"),
  19068. name: "Front (Dressed)",
  19069. image: {
  19070. source: "./media/characters/doc-weardno/front-dressed.svg",
  19071. extra: 263 / 234
  19072. }
  19073. },
  19074. backDressed: {
  19075. height: math.unit(5 + 7 / 12, "feet"),
  19076. weight: math.unit(140, "lb"),
  19077. name: "Back (Dressed)",
  19078. image: {
  19079. source: "./media/characters/doc-weardno/back-dressed.svg",
  19080. extra: 266 / 238
  19081. }
  19082. },
  19083. front: {
  19084. height: math.unit(5 + 7 / 12, "feet"),
  19085. weight: math.unit(140, "lb"),
  19086. name: "Front",
  19087. image: {
  19088. source: "./media/characters/doc-weardno/front.svg",
  19089. extra: 254 / 233
  19090. }
  19091. },
  19092. },
  19093. [
  19094. {
  19095. name: "Micro",
  19096. height: math.unit(3, "inches")
  19097. },
  19098. {
  19099. name: "Normal",
  19100. height: math.unit(5 + 7 / 12, "feet"),
  19101. default: true
  19102. },
  19103. {
  19104. name: "Macro",
  19105. height: math.unit(25, "feet")
  19106. },
  19107. {
  19108. name: "Megamacro",
  19109. height: math.unit(2, "miles")
  19110. },
  19111. ]
  19112. ))
  19113. characterMakers.push(() => makeCharacter(
  19114. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19115. {
  19116. front: {
  19117. height: math.unit(6 + 2 / 12, "feet"),
  19118. weight: math.unit(153, "lb"),
  19119. name: "Front",
  19120. image: {
  19121. source: "./media/characters/seth-whilst/front.svg",
  19122. bottom: 0.07
  19123. }
  19124. },
  19125. },
  19126. [
  19127. {
  19128. name: "Micro",
  19129. height: math.unit(5, "inches")
  19130. },
  19131. {
  19132. name: "Normal",
  19133. height: math.unit(6 + 2 / 12, "feet"),
  19134. default: true
  19135. },
  19136. ]
  19137. ))
  19138. characterMakers.push(() => makeCharacter(
  19139. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19140. {
  19141. front: {
  19142. height: math.unit(3, "inches"),
  19143. weight: math.unit(8, "grams"),
  19144. name: "Front",
  19145. image: {
  19146. source: "./media/characters/pocket-jabari/front.svg",
  19147. extra: 1024 / 974,
  19148. bottom: 0.039
  19149. }
  19150. },
  19151. },
  19152. [
  19153. {
  19154. name: "Minimicro",
  19155. height: math.unit(8, "mm")
  19156. },
  19157. {
  19158. name: "Micro",
  19159. height: math.unit(3, "inches"),
  19160. default: true
  19161. },
  19162. {
  19163. name: "Normal",
  19164. height: math.unit(3, "feet")
  19165. },
  19166. ]
  19167. ))
  19168. characterMakers.push(() => makeCharacter(
  19169. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19170. {
  19171. front: {
  19172. height: math.unit(15, "feet"),
  19173. weight: math.unit(3280, "lb"),
  19174. name: "Front",
  19175. image: {
  19176. source: "./media/characters/sapphy/front.svg",
  19177. extra: 671 / 577,
  19178. bottom: 0.085
  19179. }
  19180. },
  19181. back: {
  19182. height: math.unit(15, "feet"),
  19183. weight: math.unit(3280, "lb"),
  19184. name: "Back",
  19185. image: {
  19186. source: "./media/characters/sapphy/back.svg",
  19187. extra: 631 / 607,
  19188. bottom: 0.045
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(15, "feet")
  19196. },
  19197. {
  19198. name: "Casual Macro",
  19199. height: math.unit(120, "feet")
  19200. },
  19201. {
  19202. name: "Macro",
  19203. height: math.unit(2150, "feet"),
  19204. default: true
  19205. },
  19206. {
  19207. name: "Megamacro",
  19208. height: math.unit(8, "miles")
  19209. },
  19210. {
  19211. name: "Galaxy Mom",
  19212. height: math.unit(6, "megalightyears")
  19213. },
  19214. ]
  19215. ))
  19216. characterMakers.push(() => makeCharacter(
  19217. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19218. {
  19219. front: {
  19220. height: math.unit(6, "feet"),
  19221. weight: math.unit(170, "lb"),
  19222. name: "Front",
  19223. image: {
  19224. source: "./media/characters/kiro/front.svg",
  19225. extra: 1064 / 1012,
  19226. bottom: 0.052
  19227. }
  19228. },
  19229. },
  19230. [
  19231. {
  19232. name: "Micro",
  19233. height: math.unit(6, "inches")
  19234. },
  19235. {
  19236. name: "Normal",
  19237. height: math.unit(6, "feet"),
  19238. default: true
  19239. },
  19240. {
  19241. name: "Macro",
  19242. height: math.unit(72, "feet")
  19243. },
  19244. ]
  19245. ))
  19246. characterMakers.push(() => makeCharacter(
  19247. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19248. {
  19249. front: {
  19250. height: math.unit(5 + 9 / 12, "feet"),
  19251. weight: math.unit(175, "lb"),
  19252. name: "Front",
  19253. image: {
  19254. source: "./media/characters/irishfox/front.svg",
  19255. extra: 1912 / 1680,
  19256. bottom: 0.02
  19257. }
  19258. },
  19259. },
  19260. [
  19261. {
  19262. name: "Nano",
  19263. height: math.unit(1, "mm")
  19264. },
  19265. {
  19266. name: "Micro",
  19267. height: math.unit(2, "inches")
  19268. },
  19269. {
  19270. name: "Normal",
  19271. height: math.unit(5 + 9 / 12, "feet"),
  19272. default: true
  19273. },
  19274. {
  19275. name: "Macro",
  19276. height: math.unit(45, "feet")
  19277. },
  19278. ]
  19279. ))
  19280. characterMakers.push(() => makeCharacter(
  19281. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19282. {
  19283. front: {
  19284. height: math.unit(6 + 1 / 12, "feet"),
  19285. weight: math.unit(75, "lb"),
  19286. name: "Front",
  19287. image: {
  19288. source: "./media/characters/aronai-sieyes/front.svg",
  19289. extra: 1532/1450,
  19290. bottom: 42/1574
  19291. }
  19292. },
  19293. side: {
  19294. height: math.unit(6 + 1 / 12, "feet"),
  19295. weight: math.unit(75, "lb"),
  19296. name: "Side",
  19297. image: {
  19298. source: "./media/characters/aronai-sieyes/side.svg",
  19299. extra: 1422/1365,
  19300. bottom: 148/1570
  19301. }
  19302. },
  19303. back: {
  19304. height: math.unit(6 + 1 / 12, "feet"),
  19305. weight: math.unit(75, "lb"),
  19306. name: "Back",
  19307. image: {
  19308. source: "./media/characters/aronai-sieyes/back.svg",
  19309. extra: 1526/1464,
  19310. bottom: 51/1577
  19311. }
  19312. },
  19313. dressed: {
  19314. height: math.unit(6 + 1 / 12, "feet"),
  19315. weight: math.unit(75, "lb"),
  19316. name: "Dressed",
  19317. image: {
  19318. source: "./media/characters/aronai-sieyes/dressed.svg",
  19319. extra: 1559/1483,
  19320. bottom: 39/1598
  19321. }
  19322. },
  19323. slit: {
  19324. height: math.unit(1.3, "feet"),
  19325. name: "Slit",
  19326. image: {
  19327. source: "./media/characters/aronai-sieyes/slit.svg"
  19328. }
  19329. },
  19330. slitSpread: {
  19331. height: math.unit(0.9, "feet"),
  19332. name: "Slit (Spread)",
  19333. image: {
  19334. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19335. }
  19336. },
  19337. rump: {
  19338. height: math.unit(1.3, "feet"),
  19339. name: "Rump",
  19340. image: {
  19341. source: "./media/characters/aronai-sieyes/rump.svg"
  19342. }
  19343. },
  19344. maw: {
  19345. height: math.unit(1.25, "feet"),
  19346. name: "Maw",
  19347. image: {
  19348. source: "./media/characters/aronai-sieyes/maw.svg"
  19349. }
  19350. },
  19351. feral: {
  19352. height: math.unit(18, "feet"),
  19353. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19354. name: "Feral",
  19355. image: {
  19356. source: "./media/characters/aronai-sieyes/feral.svg",
  19357. extra: 1530 / 1240,
  19358. bottom: 0.035
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Micro",
  19365. height: math.unit(2, "inches")
  19366. },
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(6 + 1 / 12, "feet"),
  19370. default: true
  19371. }
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19376. {
  19377. front: {
  19378. height: math.unit(12, "feet"),
  19379. weight: math.unit(410, "kg"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/xuna/front.svg",
  19383. extra: 2184 / 1980
  19384. }
  19385. },
  19386. side: {
  19387. height: math.unit(12, "feet"),
  19388. weight: math.unit(410, "kg"),
  19389. name: "Side",
  19390. image: {
  19391. source: "./media/characters/xuna/side.svg",
  19392. extra: 2184 / 1980
  19393. }
  19394. },
  19395. back: {
  19396. height: math.unit(12, "feet"),
  19397. weight: math.unit(410, "kg"),
  19398. name: "Back",
  19399. image: {
  19400. source: "./media/characters/xuna/back.svg",
  19401. extra: 2184 / 1980
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Nano glow",
  19408. height: math.unit(10, "nm")
  19409. },
  19410. {
  19411. name: "Micro floof",
  19412. height: math.unit(0.3, "m")
  19413. },
  19414. {
  19415. name: "Huggable softy boi",
  19416. height: math.unit(3.6576, "m"),
  19417. default: true
  19418. },
  19419. {
  19420. name: "Admirable floof",
  19421. height: math.unit(80, "meters")
  19422. },
  19423. {
  19424. name: "Gentle macro",
  19425. height: math.unit(300, "meters")
  19426. },
  19427. {
  19428. name: "Very careful floof",
  19429. height: math.unit(3200, "meters")
  19430. },
  19431. {
  19432. name: "The mega floof",
  19433. height: math.unit(36000, "meters")
  19434. },
  19435. {
  19436. name: "Giga-fur-Wicker",
  19437. height: math.unit(4800000, "meters")
  19438. },
  19439. {
  19440. name: "Licky world",
  19441. height: math.unit(20000000, "meters")
  19442. },
  19443. {
  19444. name: "Floofy cyan sun",
  19445. height: math.unit(1500000000, "meters")
  19446. },
  19447. {
  19448. name: "Milky Wicker",
  19449. height: math.unit(1000000000000000000000, "meters")
  19450. },
  19451. {
  19452. name: "The observing Wicker",
  19453. height: math.unit(999999999999999999999999999, "meters")
  19454. },
  19455. ]
  19456. ))
  19457. characterMakers.push(() => makeCharacter(
  19458. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19459. {
  19460. front: {
  19461. height: math.unit(5 + 9 / 12, "feet"),
  19462. weight: math.unit(150, "lb"),
  19463. name: "Front",
  19464. image: {
  19465. source: "./media/characters/arokha-sieyes/front.svg",
  19466. extra: 1425 / 1284,
  19467. bottom: 0.05
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Normal",
  19474. height: math.unit(5 + 9 / 12, "feet")
  19475. },
  19476. {
  19477. name: "Macro",
  19478. height: math.unit(30, "meters"),
  19479. default: true
  19480. },
  19481. ]
  19482. ))
  19483. characterMakers.push(() => makeCharacter(
  19484. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19485. {
  19486. front: {
  19487. height: math.unit(6, "feet"),
  19488. weight: math.unit(180, "lb"),
  19489. name: "Front",
  19490. image: {
  19491. source: "./media/characters/arokh-sieyes/front.svg",
  19492. extra: 1830 / 1769,
  19493. bottom: 0.01
  19494. }
  19495. },
  19496. },
  19497. [
  19498. {
  19499. name: "Normal",
  19500. height: math.unit(6, "feet")
  19501. },
  19502. {
  19503. name: "Macro",
  19504. height: math.unit(30, "meters"),
  19505. default: true
  19506. },
  19507. ]
  19508. ))
  19509. characterMakers.push(() => makeCharacter(
  19510. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19511. {
  19512. side: {
  19513. height: math.unit(13 + 1 / 12, "feet"),
  19514. weight: math.unit(8.5, "tonnes"),
  19515. name: "Side",
  19516. image: {
  19517. source: "./media/characters/goldeneye/side.svg",
  19518. extra: 1182 / 778,
  19519. bottom: 0.067
  19520. }
  19521. },
  19522. paw: {
  19523. height: math.unit(3.4, "feet"),
  19524. name: "Paw",
  19525. image: {
  19526. source: "./media/characters/goldeneye/paw.svg"
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Normal",
  19533. height: math.unit(13 + 1 / 12, "feet"),
  19534. default: true
  19535. },
  19536. ]
  19537. ))
  19538. characterMakers.push(() => makeCharacter(
  19539. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19540. {
  19541. front: {
  19542. height: math.unit(6 + 1 / 12, "feet"),
  19543. weight: math.unit(210, "lb"),
  19544. name: "Front",
  19545. image: {
  19546. source: "./media/characters/leonardo-lycheborne/front.svg",
  19547. extra: 776/723,
  19548. bottom: 34/810
  19549. }
  19550. },
  19551. side: {
  19552. height: math.unit(6 + 1 / 12, "feet"),
  19553. weight: math.unit(210, "lb"),
  19554. name: "Side",
  19555. image: {
  19556. source: "./media/characters/leonardo-lycheborne/side.svg",
  19557. extra: 780/728,
  19558. bottom: 12/792
  19559. }
  19560. },
  19561. back: {
  19562. height: math.unit(6 + 1 / 12, "feet"),
  19563. weight: math.unit(210, "lb"),
  19564. name: "Back",
  19565. image: {
  19566. source: "./media/characters/leonardo-lycheborne/back.svg",
  19567. extra: 775/721,
  19568. bottom: 17/792
  19569. }
  19570. },
  19571. hand: {
  19572. height: math.unit(1.08, "feet"),
  19573. name: "Hand",
  19574. image: {
  19575. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19576. }
  19577. },
  19578. foot: {
  19579. height: math.unit(1.32, "feet"),
  19580. name: "Foot",
  19581. image: {
  19582. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19583. }
  19584. },
  19585. maw: {
  19586. height: math.unit(1, "feet"),
  19587. name: "Maw",
  19588. image: {
  19589. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19590. }
  19591. },
  19592. were: {
  19593. height: math.unit(20, "feet"),
  19594. weight: math.unit(7800, "lb"),
  19595. name: "Were",
  19596. image: {
  19597. source: "./media/characters/leonardo-lycheborne/were.svg",
  19598. extra: 1224/1165,
  19599. bottom: 72/1296
  19600. }
  19601. },
  19602. feral: {
  19603. height: math.unit(7.5, "feet"),
  19604. weight: math.unit(600, "lb"),
  19605. name: "Feral",
  19606. image: {
  19607. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19608. extra: 797/702,
  19609. bottom: 139/936
  19610. }
  19611. },
  19612. taur: {
  19613. height: math.unit(11, "feet"),
  19614. weight: math.unit(3300, "lb"),
  19615. name: "Taur",
  19616. image: {
  19617. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19618. extra: 1271/1197,
  19619. bottom: 47/1318
  19620. }
  19621. },
  19622. barghest: {
  19623. height: math.unit(11, "feet"),
  19624. weight: math.unit(1300, "lb"),
  19625. name: "Barghest",
  19626. image: {
  19627. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19628. extra: 1291/1204,
  19629. bottom: 37/1328
  19630. }
  19631. },
  19632. dick: {
  19633. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19634. name: "Dick",
  19635. image: {
  19636. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19637. }
  19638. },
  19639. dickWere: {
  19640. height: math.unit((20) / 3.8, "feet"),
  19641. name: "Dick (Were)",
  19642. image: {
  19643. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19644. }
  19645. },
  19646. },
  19647. [
  19648. {
  19649. name: "Normal",
  19650. height: math.unit(6 + 1 / 12, "feet"),
  19651. default: true
  19652. },
  19653. ]
  19654. ))
  19655. characterMakers.push(() => makeCharacter(
  19656. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19657. {
  19658. front: {
  19659. height: math.unit(10, "feet"),
  19660. weight: math.unit(350, "lb"),
  19661. name: "Front",
  19662. image: {
  19663. source: "./media/characters/jet/front.svg",
  19664. extra: 2050 / 1980,
  19665. bottom: 0.013
  19666. }
  19667. },
  19668. back: {
  19669. height: math.unit(10, "feet"),
  19670. weight: math.unit(350, "lb"),
  19671. name: "Back",
  19672. image: {
  19673. source: "./media/characters/jet/back.svg",
  19674. extra: 2050 / 1980,
  19675. bottom: 0.013
  19676. }
  19677. },
  19678. },
  19679. [
  19680. {
  19681. name: "Micro",
  19682. height: math.unit(6, "inches")
  19683. },
  19684. {
  19685. name: "Normal",
  19686. height: math.unit(10, "feet"),
  19687. default: true
  19688. },
  19689. {
  19690. name: "Macro",
  19691. height: math.unit(100, "feet")
  19692. },
  19693. ]
  19694. ))
  19695. characterMakers.push(() => makeCharacter(
  19696. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19697. {
  19698. front: {
  19699. height: math.unit(15, "feet"),
  19700. weight: math.unit(2800, "lb"),
  19701. name: "Front",
  19702. image: {
  19703. source: "./media/characters/tanarath/front.svg",
  19704. extra: 2392 / 2220,
  19705. bottom: 0.03
  19706. }
  19707. },
  19708. back: {
  19709. height: math.unit(15, "feet"),
  19710. weight: math.unit(2800, "lb"),
  19711. name: "Back",
  19712. image: {
  19713. source: "./media/characters/tanarath/back.svg",
  19714. extra: 2392 / 2220,
  19715. bottom: 0.03
  19716. }
  19717. },
  19718. },
  19719. [
  19720. {
  19721. name: "Normal",
  19722. height: math.unit(15, "feet"),
  19723. default: true
  19724. },
  19725. ]
  19726. ))
  19727. characterMakers.push(() => makeCharacter(
  19728. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19729. {
  19730. front: {
  19731. height: math.unit(7 + 1 / 12, "feet"),
  19732. weight: math.unit(175, "lb"),
  19733. name: "Front",
  19734. image: {
  19735. source: "./media/characters/patty-cattybatty/front.svg",
  19736. extra: 908 / 874,
  19737. bottom: 0.025
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Micro",
  19744. height: math.unit(1, "inch")
  19745. },
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(7 + 1 / 12, "feet")
  19749. },
  19750. {
  19751. name: "Mini Macro",
  19752. height: math.unit(155, "feet")
  19753. },
  19754. {
  19755. name: "Macro",
  19756. height: math.unit(1077, "feet")
  19757. },
  19758. {
  19759. name: "Mega Macro",
  19760. height: math.unit(47650, "feet"),
  19761. default: true
  19762. },
  19763. {
  19764. name: "Giga Macro",
  19765. height: math.unit(440, "miles")
  19766. },
  19767. {
  19768. name: "Tera Macro",
  19769. height: math.unit(8700, "miles")
  19770. },
  19771. {
  19772. name: "Planetary Macro",
  19773. height: math.unit(32700, "miles")
  19774. },
  19775. {
  19776. name: "Solar Macro",
  19777. height: math.unit(550000, "miles")
  19778. },
  19779. {
  19780. name: "Celestial Macro",
  19781. height: math.unit(2.5, "AU")
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19787. {
  19788. front: {
  19789. height: math.unit(4 + 5 / 12, "feet"),
  19790. weight: math.unit(90, "lb"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/cappu/front.svg",
  19794. extra: 1247 / 1152,
  19795. bottom: 0.012
  19796. }
  19797. },
  19798. },
  19799. [
  19800. {
  19801. name: "Normal",
  19802. height: math.unit(4 + 5 / 12, "feet"),
  19803. default: true
  19804. },
  19805. ]
  19806. ))
  19807. characterMakers.push(() => makeCharacter(
  19808. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19809. {
  19810. frontDressed: {
  19811. height: math.unit(70, "cm"),
  19812. weight: math.unit(6, "kg"),
  19813. name: "Front (Dressed)",
  19814. image: {
  19815. source: "./media/characters/sebi/front-dressed.svg",
  19816. extra: 713.5 / 686.5,
  19817. bottom: 0.003
  19818. }
  19819. },
  19820. front: {
  19821. height: math.unit(70, "cm"),
  19822. weight: math.unit(5, "kg"),
  19823. name: "Front",
  19824. image: {
  19825. source: "./media/characters/sebi/front.svg",
  19826. extra: 713.5 / 686.5,
  19827. bottom: 0.003
  19828. }
  19829. }
  19830. },
  19831. [
  19832. {
  19833. name: "Normal",
  19834. height: math.unit(70, "cm"),
  19835. default: true
  19836. },
  19837. {
  19838. name: "Macro",
  19839. height: math.unit(8, "meters")
  19840. },
  19841. ]
  19842. ))
  19843. characterMakers.push(() => makeCharacter(
  19844. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19845. {
  19846. front: {
  19847. height: math.unit(6, "feet"),
  19848. weight: math.unit(150, "lb"),
  19849. name: "Front",
  19850. image: {
  19851. source: "./media/characters/typhek/front.svg",
  19852. extra: 1948 / 1929,
  19853. bottom: 0.025
  19854. }
  19855. },
  19856. side: {
  19857. height: math.unit(6, "feet"),
  19858. weight: math.unit(150, "lb"),
  19859. name: "Side",
  19860. image: {
  19861. source: "./media/characters/typhek/side.svg",
  19862. extra: 2034 / 2010,
  19863. bottom: 0.003
  19864. }
  19865. },
  19866. back: {
  19867. height: math.unit(6, "feet"),
  19868. weight: math.unit(150, "lb"),
  19869. name: "Back",
  19870. image: {
  19871. source: "./media/characters/typhek/back.svg",
  19872. extra: 2005 / 1978,
  19873. bottom: 0.004
  19874. }
  19875. },
  19876. palm: {
  19877. height: math.unit(1.2, "feet"),
  19878. name: "Palm",
  19879. image: {
  19880. source: "./media/characters/typhek/palm.svg"
  19881. }
  19882. },
  19883. fist: {
  19884. height: math.unit(1.1, "feet"),
  19885. name: "Fist",
  19886. image: {
  19887. source: "./media/characters/typhek/fist.svg"
  19888. }
  19889. },
  19890. foot: {
  19891. height: math.unit(1.57, "feet"),
  19892. name: "Foot",
  19893. image: {
  19894. source: "./media/characters/typhek/foot.svg"
  19895. }
  19896. },
  19897. sole: {
  19898. height: math.unit(2.05, "feet"),
  19899. name: "Sole",
  19900. image: {
  19901. source: "./media/characters/typhek/sole.svg"
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Macro",
  19908. height: math.unit(40, "stories"),
  19909. default: true
  19910. },
  19911. {
  19912. name: "Megamacro",
  19913. height: math.unit(1, "mile")
  19914. },
  19915. {
  19916. name: "Gigamacro",
  19917. height: math.unit(4000, "solarradii")
  19918. },
  19919. {
  19920. name: "Universal",
  19921. height: math.unit(1.1, "universes")
  19922. }
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19927. {
  19928. side: {
  19929. height: math.unit(5 + 7 / 12, "feet"),
  19930. weight: math.unit(150, "lb"),
  19931. name: "Side",
  19932. image: {
  19933. source: "./media/characters/kassy/side.svg",
  19934. extra: 1280 / 1225,
  19935. bottom: 0.002
  19936. }
  19937. },
  19938. front: {
  19939. height: math.unit(5 + 7 / 12, "feet"),
  19940. weight: math.unit(150, "lb"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/kassy/front.svg",
  19944. extra: 1280 / 1225,
  19945. bottom: 0.025
  19946. }
  19947. },
  19948. back: {
  19949. height: math.unit(5 + 7 / 12, "feet"),
  19950. weight: math.unit(150, "lb"),
  19951. name: "Back",
  19952. image: {
  19953. source: "./media/characters/kassy/back.svg",
  19954. extra: 1280 / 1225,
  19955. bottom: 0.002
  19956. }
  19957. },
  19958. foot: {
  19959. height: math.unit(1.266, "feet"),
  19960. name: "Foot",
  19961. image: {
  19962. source: "./media/characters/kassy/foot.svg"
  19963. }
  19964. },
  19965. },
  19966. [
  19967. {
  19968. name: "Normal",
  19969. height: math.unit(5 + 7 / 12, "feet")
  19970. },
  19971. {
  19972. name: "Macro",
  19973. height: math.unit(137, "feet"),
  19974. default: true
  19975. },
  19976. {
  19977. name: "Megamacro",
  19978. height: math.unit(1, "mile")
  19979. },
  19980. ]
  19981. ))
  19982. characterMakers.push(() => makeCharacter(
  19983. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19984. {
  19985. front: {
  19986. height: math.unit(6 + 1 / 12, "feet"),
  19987. weight: math.unit(200, "lb"),
  19988. name: "Front",
  19989. image: {
  19990. source: "./media/characters/neil/front.svg",
  19991. extra: 1326 / 1250,
  19992. bottom: 0.023
  19993. }
  19994. },
  19995. },
  19996. [
  19997. {
  19998. name: "Normal",
  19999. height: math.unit(6 + 1 / 12, "feet"),
  20000. default: true
  20001. },
  20002. {
  20003. name: "Macro",
  20004. height: math.unit(200, "feet")
  20005. },
  20006. ]
  20007. ))
  20008. characterMakers.push(() => makeCharacter(
  20009. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20010. {
  20011. front: {
  20012. height: math.unit(5 + 9 / 12, "feet"),
  20013. weight: math.unit(190, "lb"),
  20014. name: "Front",
  20015. image: {
  20016. source: "./media/characters/atticus/front.svg",
  20017. extra: 2934 / 2785,
  20018. bottom: 0.025
  20019. }
  20020. },
  20021. },
  20022. [
  20023. {
  20024. name: "Normal",
  20025. height: math.unit(5 + 9 / 12, "feet"),
  20026. default: true
  20027. },
  20028. {
  20029. name: "Macro",
  20030. height: math.unit(180, "feet")
  20031. },
  20032. ]
  20033. ))
  20034. characterMakers.push(() => makeCharacter(
  20035. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20036. {
  20037. side: {
  20038. height: math.unit(9, "feet"),
  20039. weight: math.unit(650, "lb"),
  20040. name: "Side",
  20041. image: {
  20042. source: "./media/characters/milo/side.svg",
  20043. extra: 2644 / 2310,
  20044. bottom: 0.032
  20045. }
  20046. },
  20047. },
  20048. [
  20049. {
  20050. name: "Normal",
  20051. height: math.unit(9, "feet"),
  20052. default: true
  20053. },
  20054. {
  20055. name: "Macro",
  20056. height: math.unit(300, "feet")
  20057. },
  20058. ]
  20059. ))
  20060. characterMakers.push(() => makeCharacter(
  20061. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20062. {
  20063. side: {
  20064. height: math.unit(8, "meters"),
  20065. weight: math.unit(90000, "kg"),
  20066. name: "Side",
  20067. image: {
  20068. source: "./media/characters/ijzer/side.svg",
  20069. extra: 2756 / 1600,
  20070. bottom: 0.01
  20071. }
  20072. },
  20073. },
  20074. [
  20075. {
  20076. name: "Small",
  20077. height: math.unit(3, "meters")
  20078. },
  20079. {
  20080. name: "Normal",
  20081. height: math.unit(8, "meters"),
  20082. default: true
  20083. },
  20084. {
  20085. name: "Normal+",
  20086. height: math.unit(10, "meters")
  20087. },
  20088. {
  20089. name: "Bigger",
  20090. height: math.unit(24, "meters")
  20091. },
  20092. {
  20093. name: "Huge",
  20094. height: math.unit(80, "meters")
  20095. },
  20096. ]
  20097. ))
  20098. characterMakers.push(() => makeCharacter(
  20099. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20100. {
  20101. front: {
  20102. height: math.unit(6 + 2 / 12, "feet"),
  20103. weight: math.unit(153, "lb"),
  20104. name: "Front",
  20105. image: {
  20106. source: "./media/characters/luca-cervicum/front.svg",
  20107. extra: 370 / 327,
  20108. bottom: 0.015
  20109. }
  20110. },
  20111. back: {
  20112. height: math.unit(6 + 2 / 12, "feet"),
  20113. weight: math.unit(153, "lb"),
  20114. name: "Back",
  20115. image: {
  20116. source: "./media/characters/luca-cervicum/back.svg",
  20117. extra: 367 / 333,
  20118. bottom: 0.005
  20119. }
  20120. },
  20121. frontGear: {
  20122. height: math.unit(6 + 2 / 12, "feet"),
  20123. weight: math.unit(173, "lb"),
  20124. name: "Front (Gear)",
  20125. image: {
  20126. source: "./media/characters/luca-cervicum/front-gear.svg",
  20127. extra: 377 / 333,
  20128. bottom: 0.006
  20129. }
  20130. },
  20131. },
  20132. [
  20133. {
  20134. name: "Normal",
  20135. height: math.unit(6 + 2 / 12, "feet"),
  20136. default: true
  20137. },
  20138. ]
  20139. ))
  20140. characterMakers.push(() => makeCharacter(
  20141. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20142. {
  20143. front: {
  20144. height: math.unit(6 + 1 / 12, "feet"),
  20145. weight: math.unit(304, "lb"),
  20146. name: "Front",
  20147. image: {
  20148. source: "./media/characters/oliver/front.svg",
  20149. extra: 157 / 143,
  20150. bottom: 0.08
  20151. }
  20152. },
  20153. },
  20154. [
  20155. {
  20156. name: "Normal",
  20157. height: math.unit(6 + 1 / 12, "feet"),
  20158. default: true
  20159. },
  20160. ]
  20161. ))
  20162. characterMakers.push(() => makeCharacter(
  20163. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20164. {
  20165. front: {
  20166. height: math.unit(5 + 7 / 12, "feet"),
  20167. weight: math.unit(140, "lb"),
  20168. name: "Front",
  20169. image: {
  20170. source: "./media/characters/shane/front.svg",
  20171. extra: 304 / 289,
  20172. bottom: 0.005
  20173. }
  20174. },
  20175. },
  20176. [
  20177. {
  20178. name: "Normal",
  20179. height: math.unit(5 + 7 / 12, "feet"),
  20180. default: true
  20181. },
  20182. ]
  20183. ))
  20184. characterMakers.push(() => makeCharacter(
  20185. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20186. {
  20187. front: {
  20188. height: math.unit(5 + 9 / 12, "feet"),
  20189. weight: math.unit(178, "lb"),
  20190. name: "Front",
  20191. image: {
  20192. source: "./media/characters/shin/front.svg",
  20193. extra: 159 / 151,
  20194. bottom: 0.015
  20195. }
  20196. },
  20197. },
  20198. [
  20199. {
  20200. name: "Normal",
  20201. height: math.unit(5 + 9 / 12, "feet"),
  20202. default: true
  20203. },
  20204. ]
  20205. ))
  20206. characterMakers.push(() => makeCharacter(
  20207. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20208. {
  20209. front: {
  20210. height: math.unit(5 + 10 / 12, "feet"),
  20211. weight: math.unit(168, "lb"),
  20212. name: "Front",
  20213. image: {
  20214. source: "./media/characters/xerxes/front.svg",
  20215. extra: 282 / 260,
  20216. bottom: 0.045
  20217. }
  20218. },
  20219. },
  20220. [
  20221. {
  20222. name: "Normal",
  20223. height: math.unit(5 + 10 / 12, "feet"),
  20224. default: true
  20225. },
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20230. {
  20231. front: {
  20232. height: math.unit(6 + 7 / 12, "feet"),
  20233. weight: math.unit(208, "lb"),
  20234. name: "Front",
  20235. image: {
  20236. source: "./media/characters/chaska/front.svg",
  20237. extra: 332 / 319,
  20238. bottom: 0.015
  20239. }
  20240. },
  20241. },
  20242. [
  20243. {
  20244. name: "Normal",
  20245. height: math.unit(6 + 7 / 12, "feet"),
  20246. default: true
  20247. },
  20248. ]
  20249. ))
  20250. characterMakers.push(() => makeCharacter(
  20251. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20252. {
  20253. front: {
  20254. height: math.unit(5 + 8 / 12, "feet"),
  20255. weight: math.unit(208, "lb"),
  20256. name: "Front",
  20257. image: {
  20258. source: "./media/characters/enuk/front.svg",
  20259. extra: 437 / 406,
  20260. bottom: 0.02
  20261. }
  20262. },
  20263. },
  20264. [
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(5 + 8 / 12, "feet"),
  20268. default: true
  20269. },
  20270. ]
  20271. ))
  20272. characterMakers.push(() => makeCharacter(
  20273. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20274. {
  20275. front: {
  20276. height: math.unit(5 + 10 / 12, "feet"),
  20277. weight: math.unit(252, "lb"),
  20278. name: "Front",
  20279. image: {
  20280. source: "./media/characters/bruun/front.svg",
  20281. extra: 197 / 187,
  20282. bottom: 0.012
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Normal",
  20289. height: math.unit(5 + 10 / 12, "feet"),
  20290. default: true
  20291. },
  20292. ]
  20293. ))
  20294. characterMakers.push(() => makeCharacter(
  20295. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20296. {
  20297. front: {
  20298. height: math.unit(6 + 10 / 12, "feet"),
  20299. weight: math.unit(255, "lb"),
  20300. name: "Front",
  20301. image: {
  20302. source: "./media/characters/alexeev/front.svg",
  20303. extra: 213 / 200,
  20304. bottom: 0.05
  20305. }
  20306. },
  20307. },
  20308. [
  20309. {
  20310. name: "Normal",
  20311. height: math.unit(6 + 10 / 12, "feet"),
  20312. default: true
  20313. },
  20314. ]
  20315. ))
  20316. characterMakers.push(() => makeCharacter(
  20317. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20318. {
  20319. front: {
  20320. height: math.unit(2 + 8 / 12, "feet"),
  20321. weight: math.unit(22, "lb"),
  20322. name: "Front",
  20323. image: {
  20324. source: "./media/characters/evelyn/front.svg",
  20325. extra: 208 / 180
  20326. }
  20327. },
  20328. },
  20329. [
  20330. {
  20331. name: "Normal",
  20332. height: math.unit(2 + 8 / 12, "feet"),
  20333. default: true
  20334. },
  20335. ]
  20336. ))
  20337. characterMakers.push(() => makeCharacter(
  20338. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20339. {
  20340. front: {
  20341. height: math.unit(5 + 9 / 12, "feet"),
  20342. weight: math.unit(139, "lb"),
  20343. name: "Front",
  20344. image: {
  20345. source: "./media/characters/inca/front.svg",
  20346. extra: 294 / 291,
  20347. bottom: 0.03
  20348. }
  20349. },
  20350. },
  20351. [
  20352. {
  20353. name: "Normal",
  20354. height: math.unit(5 + 9 / 12, "feet"),
  20355. default: true
  20356. },
  20357. ]
  20358. ))
  20359. characterMakers.push(() => makeCharacter(
  20360. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20361. {
  20362. front: {
  20363. height: math.unit(6 + 3 / 12, "feet"),
  20364. weight: math.unit(185, "lb"),
  20365. name: "Front",
  20366. image: {
  20367. source: "./media/characters/mera/front.svg",
  20368. extra: 291 / 277,
  20369. bottom: 0.03
  20370. }
  20371. },
  20372. },
  20373. [
  20374. {
  20375. name: "Normal",
  20376. height: math.unit(6 + 3 / 12, "feet"),
  20377. default: true
  20378. },
  20379. ]
  20380. ))
  20381. characterMakers.push(() => makeCharacter(
  20382. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20383. {
  20384. front: {
  20385. height: math.unit(6 + 7 / 12, "feet"),
  20386. weight: math.unit(160, "lb"),
  20387. name: "Front",
  20388. image: {
  20389. source: "./media/characters/ceres/front.svg",
  20390. extra: 1023 / 950,
  20391. bottom: 0.027
  20392. }
  20393. },
  20394. back: {
  20395. height: math.unit(6 + 7 / 12, "feet"),
  20396. weight: math.unit(160, "lb"),
  20397. name: "Back",
  20398. image: {
  20399. source: "./media/characters/ceres/back.svg",
  20400. extra: 1023 / 950
  20401. }
  20402. },
  20403. },
  20404. [
  20405. {
  20406. name: "Normal",
  20407. height: math.unit(6 + 7 / 12, "feet"),
  20408. default: true
  20409. },
  20410. ]
  20411. ))
  20412. characterMakers.push(() => makeCharacter(
  20413. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20414. {
  20415. front: {
  20416. height: math.unit(5 + 10 / 12, "feet"),
  20417. weight: math.unit(150, "lb"),
  20418. name: "Front",
  20419. image: {
  20420. source: "./media/characters/kris/front.svg",
  20421. extra: 885 / 803,
  20422. bottom: 0.03
  20423. }
  20424. },
  20425. },
  20426. [
  20427. {
  20428. name: "Normal",
  20429. height: math.unit(5 + 10 / 12, "feet"),
  20430. default: true
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20436. {
  20437. front: {
  20438. height: math.unit(7, "feet"),
  20439. weight: math.unit(120, "kg"),
  20440. name: "Front",
  20441. image: {
  20442. source: "./media/characters/taluthus/front.svg",
  20443. extra: 903 / 833,
  20444. bottom: 0.015
  20445. }
  20446. },
  20447. },
  20448. [
  20449. {
  20450. name: "Normal",
  20451. height: math.unit(7, "feet"),
  20452. default: true
  20453. },
  20454. {
  20455. name: "Macro",
  20456. height: math.unit(300, "feet")
  20457. },
  20458. ]
  20459. ))
  20460. characterMakers.push(() => makeCharacter(
  20461. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20462. {
  20463. front: {
  20464. height: math.unit(5 + 9 / 12, "feet"),
  20465. weight: math.unit(145, "lb"),
  20466. name: "Front",
  20467. image: {
  20468. source: "./media/characters/dawn/front.svg",
  20469. extra: 2094 / 2016,
  20470. bottom: 0.025
  20471. }
  20472. },
  20473. back: {
  20474. height: math.unit(5 + 9 / 12, "feet"),
  20475. weight: math.unit(160, "lb"),
  20476. name: "Back",
  20477. image: {
  20478. source: "./media/characters/dawn/back.svg",
  20479. extra: 2112 / 2080,
  20480. bottom: 0.005
  20481. }
  20482. },
  20483. },
  20484. [
  20485. {
  20486. name: "Normal",
  20487. height: math.unit(6 + 7 / 12, "feet"),
  20488. default: true
  20489. },
  20490. ]
  20491. ))
  20492. characterMakers.push(() => makeCharacter(
  20493. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20494. {
  20495. anthro: {
  20496. height: math.unit(8 + 3 / 12, "feet"),
  20497. weight: math.unit(450, "lb"),
  20498. name: "Anthro",
  20499. image: {
  20500. source: "./media/characters/arador/anthro.svg",
  20501. extra: 1835 / 1718,
  20502. bottom: 0.025
  20503. }
  20504. },
  20505. feral: {
  20506. height: math.unit(4, "feet"),
  20507. weight: math.unit(200, "lb"),
  20508. name: "Feral",
  20509. image: {
  20510. source: "./media/characters/arador/feral.svg",
  20511. extra: 1683 / 1514,
  20512. bottom: 0.07
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(8 + 3 / 12, "feet")
  20520. },
  20521. {
  20522. name: "Macro",
  20523. height: math.unit(82.5, "feet"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20530. {
  20531. front: {
  20532. height: math.unit(5 + 10 / 12, "feet"),
  20533. weight: math.unit(125, "lb"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/dharsi/front.svg",
  20537. extra: 716 / 630,
  20538. bottom: 0.035
  20539. }
  20540. },
  20541. },
  20542. [
  20543. {
  20544. name: "Nano",
  20545. height: math.unit(100, "nm")
  20546. },
  20547. {
  20548. name: "Micro",
  20549. height: math.unit(2, "inches")
  20550. },
  20551. {
  20552. name: "Normal",
  20553. height: math.unit(5 + 10 / 12, "feet"),
  20554. default: true
  20555. },
  20556. {
  20557. name: "Macro",
  20558. height: math.unit(1000, "feet")
  20559. },
  20560. {
  20561. name: "Megamacro",
  20562. height: math.unit(10, "miles")
  20563. },
  20564. {
  20565. name: "Gigamacro",
  20566. height: math.unit(3000, "miles")
  20567. },
  20568. {
  20569. name: "Teramacro",
  20570. height: math.unit(500000, "miles")
  20571. },
  20572. {
  20573. name: "Teramacro+",
  20574. height: math.unit(30, "galaxies")
  20575. },
  20576. ]
  20577. ))
  20578. characterMakers.push(() => makeCharacter(
  20579. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20580. {
  20581. front: {
  20582. height: math.unit(6, "feet"),
  20583. weight: math.unit(150, "lb"),
  20584. name: "Front",
  20585. image: {
  20586. source: "./media/characters/deathy/front.svg",
  20587. extra: 1552 / 1463,
  20588. bottom: 0.025
  20589. }
  20590. },
  20591. side: {
  20592. height: math.unit(6, "feet"),
  20593. weight: math.unit(150, "lb"),
  20594. name: "Side",
  20595. image: {
  20596. source: "./media/characters/deathy/side.svg",
  20597. extra: 1604 / 1455,
  20598. bottom: 0.025
  20599. }
  20600. },
  20601. back: {
  20602. height: math.unit(6, "feet"),
  20603. weight: math.unit(150, "lb"),
  20604. name: "Back",
  20605. image: {
  20606. source: "./media/characters/deathy/back.svg",
  20607. extra: 1580 / 1463,
  20608. bottom: 0.005
  20609. }
  20610. },
  20611. },
  20612. [
  20613. {
  20614. name: "Micro",
  20615. height: math.unit(5, "millimeters")
  20616. },
  20617. {
  20618. name: "Normal",
  20619. height: math.unit(6 + 5 / 12, "feet"),
  20620. default: true
  20621. },
  20622. ]
  20623. ))
  20624. characterMakers.push(() => makeCharacter(
  20625. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20626. {
  20627. front: {
  20628. height: math.unit(16, "feet"),
  20629. weight: math.unit(4000, "lb"),
  20630. name: "Front",
  20631. image: {
  20632. source: "./media/characters/juniper/front.svg",
  20633. bottom: 0.04
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(16, "feet"),
  20641. default: true
  20642. },
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20647. {
  20648. front: {
  20649. height: math.unit(6, "feet"),
  20650. weight: math.unit(150, "lb"),
  20651. name: "Front",
  20652. image: {
  20653. source: "./media/characters/hipster/front.svg",
  20654. extra: 1312 / 1209,
  20655. bottom: 0.025
  20656. }
  20657. },
  20658. back: {
  20659. height: math.unit(6, "feet"),
  20660. weight: math.unit(150, "lb"),
  20661. name: "Back",
  20662. image: {
  20663. source: "./media/characters/hipster/back.svg",
  20664. extra: 1281 / 1196,
  20665. bottom: 0.01
  20666. }
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Micro",
  20672. height: math.unit(1, "mm")
  20673. },
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(4, "inches"),
  20677. default: true
  20678. },
  20679. {
  20680. name: "Macro",
  20681. height: math.unit(500, "feet")
  20682. },
  20683. {
  20684. name: "Megamacro",
  20685. height: math.unit(1000, "miles")
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20691. {
  20692. front: {
  20693. height: math.unit(6, "feet"),
  20694. weight: math.unit(150, "lb"),
  20695. name: "Front",
  20696. image: {
  20697. source: "./media/characters/tendirmuldr/front.svg",
  20698. extra: 1878 / 1772,
  20699. bottom: 0.015
  20700. }
  20701. },
  20702. },
  20703. [
  20704. {
  20705. name: "Megamacro",
  20706. height: math.unit(1500, "miles"),
  20707. default: true
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20713. {
  20714. front: {
  20715. height: math.unit(14, "feet"),
  20716. weight: math.unit(12000, "lb"),
  20717. name: "Front",
  20718. image: {
  20719. source: "./media/characters/mort/front.svg",
  20720. extra: 365 / 318,
  20721. bottom: 0.01
  20722. }
  20723. },
  20724. side: {
  20725. height: math.unit(14, "feet"),
  20726. weight: math.unit(12000, "lb"),
  20727. name: "Side",
  20728. image: {
  20729. source: "./media/characters/mort/side.svg",
  20730. extra: 365 / 318,
  20731. bottom: 0.052
  20732. },
  20733. default: true
  20734. },
  20735. back: {
  20736. height: math.unit(14, "feet"),
  20737. weight: math.unit(12000, "lb"),
  20738. name: "Back",
  20739. image: {
  20740. source: "./media/characters/mort/back.svg",
  20741. extra: 371 / 332,
  20742. bottom: 0.18
  20743. }
  20744. },
  20745. },
  20746. [
  20747. {
  20748. name: "Normal",
  20749. height: math.unit(14, "feet"),
  20750. default: true
  20751. },
  20752. ]
  20753. ))
  20754. characterMakers.push(() => makeCharacter(
  20755. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20756. {
  20757. front: {
  20758. height: math.unit(8, "feet"),
  20759. weight: math.unit(1, "ton"),
  20760. name: "Front",
  20761. image: {
  20762. source: "./media/characters/lycoa/front.svg",
  20763. extra: 1836/1728,
  20764. bottom: 81/1917
  20765. }
  20766. },
  20767. back: {
  20768. height: math.unit(8, "feet"),
  20769. weight: math.unit(1, "ton"),
  20770. name: "Back",
  20771. image: {
  20772. source: "./media/characters/lycoa/back.svg",
  20773. extra: 1785/1720,
  20774. bottom: 91/1876
  20775. }
  20776. },
  20777. head: {
  20778. height: math.unit(1.6243, "feet"),
  20779. name: "Head",
  20780. image: {
  20781. source: "./media/characters/lycoa/head.svg",
  20782. extra: 1011/782,
  20783. bottom: 0/1011
  20784. }
  20785. },
  20786. tailmaw: {
  20787. height: math.unit(1.9, "feet"),
  20788. name: "Tailmaw",
  20789. image: {
  20790. source: "./media/characters/lycoa/tailmaw.svg"
  20791. }
  20792. },
  20793. tentacles: {
  20794. height: math.unit(2.1, "feet"),
  20795. name: "Tentacles",
  20796. image: {
  20797. source: "./media/characters/lycoa/tentacles.svg"
  20798. }
  20799. },
  20800. dick: {
  20801. height: math.unit(1.73, "feet"),
  20802. name: "Dick",
  20803. image: {
  20804. source: "./media/characters/lycoa/dick.svg"
  20805. }
  20806. },
  20807. },
  20808. [
  20809. {
  20810. name: "Normal",
  20811. height: math.unit(8, "feet"),
  20812. default: true
  20813. },
  20814. {
  20815. name: "Macro",
  20816. height: math.unit(30, "feet")
  20817. },
  20818. ]
  20819. ))
  20820. characterMakers.push(() => makeCharacter(
  20821. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20822. {
  20823. front: {
  20824. height: math.unit(4 + 2 / 12, "feet"),
  20825. weight: math.unit(70, "lb"),
  20826. name: "Front",
  20827. image: {
  20828. source: "./media/characters/naldara/front.svg",
  20829. extra: 1664/1387,
  20830. bottom: 81/1745
  20831. },
  20832. form: "anthro",
  20833. default: true
  20834. },
  20835. naga: {
  20836. height: math.unit(20, "feet"),
  20837. weight: math.unit(15000, "kg"),
  20838. name: "Front",
  20839. image: {
  20840. source: "./media/characters/naldara/naga.svg",
  20841. extra: 1590/1396,
  20842. bottom: 285/1875
  20843. },
  20844. form: "naga",
  20845. default: true
  20846. },
  20847. },
  20848. [
  20849. {
  20850. name: "Normal",
  20851. height: math.unit(4 + 2 / 12, "feet"),
  20852. form: "anthro",
  20853. default: true
  20854. },
  20855. {
  20856. name: "Normal",
  20857. height: math.unit(20, "feet"),
  20858. form: "naga",
  20859. default: true
  20860. },
  20861. ],
  20862. {
  20863. "anthro": {
  20864. name: "Anthro",
  20865. default: true
  20866. },
  20867. "naga": {
  20868. name: "Naga"
  20869. }
  20870. }
  20871. ))
  20872. characterMakers.push(() => makeCharacter(
  20873. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20874. {
  20875. front: {
  20876. height: math.unit(13 + 7 / 12, "feet"),
  20877. weight: math.unit(1500, "lb"),
  20878. name: "Front",
  20879. image: {
  20880. source: "./media/characters/briar/front.svg",
  20881. extra: 1223/1157,
  20882. bottom: 123/1346
  20883. }
  20884. },
  20885. },
  20886. [
  20887. {
  20888. name: "Normal",
  20889. height: math.unit(13 + 7 / 12, "feet"),
  20890. default: true
  20891. },
  20892. ]
  20893. ))
  20894. characterMakers.push(() => makeCharacter(
  20895. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20896. {
  20897. side: {
  20898. height: math.unit(16, "feet"),
  20899. weight: math.unit(500, "lb"),
  20900. name: "Side",
  20901. image: {
  20902. source: "./media/characters/vanguard/side.svg",
  20903. extra: 1022/914,
  20904. bottom: 30/1052
  20905. }
  20906. },
  20907. sideAlt: {
  20908. height: math.unit(10, "feet"),
  20909. weight: math.unit(500, "lb"),
  20910. name: "Side (Alt)",
  20911. image: {
  20912. source: "./media/characters/vanguard/side-alt.svg",
  20913. extra: 502 / 425,
  20914. bottom: 0.087
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Normal",
  20921. height: math.unit(17.71, "feet"),
  20922. default: true
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20928. {
  20929. front: {
  20930. height: math.unit(7.5, "feet"),
  20931. weight: math.unit(2, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/artemis/work-safe-front.svg",
  20935. extra: 1192 / 1075,
  20936. bottom: 0.07
  20937. },
  20938. form: "work-safe",
  20939. default: true
  20940. },
  20941. frontNsfw: {
  20942. height: math.unit(7.5, "feet"),
  20943. weight: math.unit(2, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/artemis/calibrating-front.svg",
  20947. extra: 1192 / 1075,
  20948. bottom: 0.07
  20949. },
  20950. form: "calibrating",
  20951. default: true
  20952. },
  20953. frontNsfwer: {
  20954. height: math.unit(7.5, "feet"),
  20955. weight: math.unit(2, "lb"),
  20956. name: "Front",
  20957. image: {
  20958. source: "./media/characters/artemis/oversize-load-front.svg",
  20959. extra: 1192 / 1075,
  20960. bottom: 0.07
  20961. },
  20962. form: "oversize-load",
  20963. default: true
  20964. },
  20965. side: {
  20966. height: math.unit(7.5, "feet"),
  20967. weight: math.unit(2, "lb"),
  20968. name: "Side",
  20969. image: {
  20970. source: "./media/characters/artemis/work-safe-side.svg",
  20971. extra: 1192 / 1075,
  20972. bottom: 0.07
  20973. },
  20974. form: "work-safe"
  20975. },
  20976. sideNsfw: {
  20977. height: math.unit(7.5, "feet"),
  20978. weight: math.unit(2, "lb"),
  20979. name: "Side",
  20980. image: {
  20981. source: "./media/characters/artemis/calibrating-side.svg",
  20982. extra: 1192 / 1075,
  20983. bottom: 0.07
  20984. },
  20985. form: "calibrating"
  20986. },
  20987. sideNsfwer: {
  20988. height: math.unit(7.5, "feet"),
  20989. weight: math.unit(2, "lb"),
  20990. name: "Side",
  20991. image: {
  20992. source: "./media/characters/artemis/oversize-load-side.svg",
  20993. extra: 1192 / 1075,
  20994. bottom: 0.07
  20995. },
  20996. form: "oversize-load"
  20997. },
  20998. maw: {
  20999. height: math.unit(1.1, "feet"),
  21000. name: "Maw",
  21001. image: {
  21002. source: "./media/characters/artemis/maw.svg"
  21003. },
  21004. form: "work-safe"
  21005. },
  21006. stomach: {
  21007. height: math.unit(0.95, "feet"),
  21008. name: "Stomach",
  21009. image: {
  21010. source: "./media/characters/artemis/stomach.svg"
  21011. },
  21012. form: "work-safe"
  21013. },
  21014. dickCanine: {
  21015. height: math.unit(1, "feet"),
  21016. name: "Dick (Canine)",
  21017. image: {
  21018. source: "./media/characters/artemis/dick-canine.svg"
  21019. },
  21020. form: "calibrating"
  21021. },
  21022. dickEquine: {
  21023. height: math.unit(0.85, "feet"),
  21024. name: "Dick (Equine)",
  21025. image: {
  21026. source: "./media/characters/artemis/dick-equine.svg"
  21027. },
  21028. form: "calibrating"
  21029. },
  21030. dickExotic: {
  21031. height: math.unit(0.85, "feet"),
  21032. name: "Dick (Exotic)",
  21033. image: {
  21034. source: "./media/characters/artemis/dick-exotic.svg"
  21035. },
  21036. form: "calibrating"
  21037. },
  21038. dickCanineBigger: {
  21039. height: math.unit(1 * 1.33, "feet"),
  21040. name: "Dick (Canine)",
  21041. image: {
  21042. source: "./media/characters/artemis/dick-canine.svg"
  21043. },
  21044. form: "oversize-load"
  21045. },
  21046. dickEquineBigger: {
  21047. height: math.unit(0.85 * 1.33, "feet"),
  21048. name: "Dick (Equine)",
  21049. image: {
  21050. source: "./media/characters/artemis/dick-equine.svg"
  21051. },
  21052. form: "oversize-load"
  21053. },
  21054. dickExoticBigger: {
  21055. height: math.unit(0.85 * 1.33, "feet"),
  21056. name: "Dick (Exotic)",
  21057. image: {
  21058. source: "./media/characters/artemis/dick-exotic.svg"
  21059. },
  21060. form: "oversize-load"
  21061. },
  21062. },
  21063. [
  21064. {
  21065. name: "Normal",
  21066. height: math.unit(7.5, "feet"),
  21067. form: "work-safe",
  21068. default: true
  21069. },
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(7.5, "feet"),
  21073. form: "calibrating",
  21074. default: true
  21075. },
  21076. {
  21077. name: "Normal",
  21078. height: math.unit(7.5, "feet"),
  21079. form: "oversize-load",
  21080. default: true
  21081. },
  21082. {
  21083. name: "Enlarged",
  21084. height: math.unit(12, "feet"),
  21085. form: "work-safe",
  21086. },
  21087. {
  21088. name: "Enlarged",
  21089. height: math.unit(12, "feet"),
  21090. form: "calibrating",
  21091. },
  21092. {
  21093. name: "Enlarged",
  21094. height: math.unit(12, "feet"),
  21095. form: "oversize-load",
  21096. },
  21097. ],
  21098. {
  21099. "work-safe": {
  21100. name: "Work-Safe",
  21101. default: true
  21102. },
  21103. "calibrating": {
  21104. name: "Calibrating"
  21105. },
  21106. "oversize-load": {
  21107. name: "Oversize Load"
  21108. }
  21109. }
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21113. {
  21114. front: {
  21115. height: math.unit(5 + 3 / 12, "feet"),
  21116. weight: math.unit(160, "lb"),
  21117. name: "Front",
  21118. image: {
  21119. source: "./media/characters/kira/front.svg",
  21120. extra: 906 / 786,
  21121. bottom: 0.01
  21122. }
  21123. },
  21124. back: {
  21125. height: math.unit(5 + 3 / 12, "feet"),
  21126. weight: math.unit(160, "lb"),
  21127. name: "Back",
  21128. image: {
  21129. source: "./media/characters/kira/back.svg",
  21130. extra: 882 / 757,
  21131. bottom: 0.005
  21132. }
  21133. },
  21134. frontDressed: {
  21135. height: math.unit(5 + 3 / 12, "feet"),
  21136. weight: math.unit(160, "lb"),
  21137. name: "Front (Dressed)",
  21138. image: {
  21139. source: "./media/characters/kira/front-dressed.svg",
  21140. extra: 906 / 786,
  21141. bottom: 0.01
  21142. }
  21143. },
  21144. beans: {
  21145. height: math.unit(0.92, "feet"),
  21146. name: "Beans",
  21147. image: {
  21148. source: "./media/characters/kira/beans.svg"
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(5 + 3 / 12, "feet"),
  21156. default: true
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(5 + 4 / 12, "feet"),
  21165. weight: math.unit(145, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/scramble/front.svg",
  21169. extra: 763 / 727,
  21170. bottom: 0.05
  21171. }
  21172. },
  21173. back: {
  21174. height: math.unit(5 + 4 / 12, "feet"),
  21175. weight: math.unit(145, "lb"),
  21176. name: "Back",
  21177. image: {
  21178. source: "./media/characters/scramble/back.svg",
  21179. extra: 826 / 737,
  21180. bottom: 0.002
  21181. }
  21182. },
  21183. },
  21184. [
  21185. {
  21186. name: "Normal",
  21187. height: math.unit(5 + 4 / 12, "feet"),
  21188. default: true
  21189. },
  21190. ]
  21191. ))
  21192. characterMakers.push(() => makeCharacter(
  21193. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21194. {
  21195. side: {
  21196. height: math.unit(6 + 2 / 12, "feet"),
  21197. weight: math.unit(190, "lb"),
  21198. name: "Side",
  21199. image: {
  21200. source: "./media/characters/biscuit/side.svg",
  21201. extra: 858 / 791,
  21202. bottom: 0.044
  21203. }
  21204. },
  21205. },
  21206. [
  21207. {
  21208. name: "Normal",
  21209. height: math.unit(6 + 2 / 12, "feet"),
  21210. default: true
  21211. },
  21212. ]
  21213. ))
  21214. characterMakers.push(() => makeCharacter(
  21215. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21216. {
  21217. front: {
  21218. height: math.unit(5 + 2 / 12, "feet"),
  21219. weight: math.unit(120, "lb"),
  21220. name: "Front",
  21221. image: {
  21222. source: "./media/characters/poffin/front.svg",
  21223. extra: 786 / 680,
  21224. bottom: 0.005
  21225. }
  21226. },
  21227. },
  21228. [
  21229. {
  21230. name: "Normal",
  21231. height: math.unit(5 + 2 / 12, "feet"),
  21232. default: true
  21233. },
  21234. ]
  21235. ))
  21236. characterMakers.push(() => makeCharacter(
  21237. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21238. {
  21239. front: {
  21240. height: math.unit(6 + 3 / 12, "feet"),
  21241. weight: math.unit(519, "lb"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/dhari/front.svg",
  21245. extra: 1048 / 946,
  21246. bottom: 0.015
  21247. }
  21248. },
  21249. back: {
  21250. height: math.unit(6 + 3 / 12, "feet"),
  21251. weight: math.unit(519, "lb"),
  21252. name: "Back",
  21253. image: {
  21254. source: "./media/characters/dhari/back.svg",
  21255. extra: 1048 / 931,
  21256. bottom: 0.005
  21257. }
  21258. },
  21259. frontDressed: {
  21260. height: math.unit(6 + 3 / 12, "feet"),
  21261. weight: math.unit(519, "lb"),
  21262. name: "Front (Dressed)",
  21263. image: {
  21264. source: "./media/characters/dhari/front-dressed.svg",
  21265. extra: 1713 / 1546,
  21266. bottom: 0.02
  21267. }
  21268. },
  21269. backDressed: {
  21270. height: math.unit(6 + 3 / 12, "feet"),
  21271. weight: math.unit(519, "lb"),
  21272. name: "Back (Dressed)",
  21273. image: {
  21274. source: "./media/characters/dhari/back-dressed.svg",
  21275. extra: 1699 / 1537,
  21276. bottom: 0.01
  21277. }
  21278. },
  21279. maw: {
  21280. height: math.unit(0.95, "feet"),
  21281. name: "Maw",
  21282. image: {
  21283. source: "./media/characters/dhari/maw.svg"
  21284. }
  21285. },
  21286. wereFront: {
  21287. height: math.unit(12 + 8 / 12, "feet"),
  21288. weight: math.unit(4000, "lb"),
  21289. name: "Front (Were)",
  21290. image: {
  21291. source: "./media/characters/dhari/were-front.svg",
  21292. extra: 1065 / 969,
  21293. bottom: 0.015
  21294. }
  21295. },
  21296. wereBack: {
  21297. height: math.unit(12 + 8 / 12, "feet"),
  21298. weight: math.unit(4000, "lb"),
  21299. name: "Back (Were)",
  21300. image: {
  21301. source: "./media/characters/dhari/were-back.svg",
  21302. extra: 1065 / 969,
  21303. bottom: 0.012
  21304. }
  21305. },
  21306. wereMaw: {
  21307. height: math.unit(0.625, "meters"),
  21308. name: "Maw (Were)",
  21309. image: {
  21310. source: "./media/characters/dhari/were-maw.svg"
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Normal",
  21317. height: math.unit(6 + 3 / 12, "feet"),
  21318. default: true
  21319. },
  21320. ]
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21324. {
  21325. anthro: {
  21326. height: math.unit(5 + 7 / 12, "feet"),
  21327. weight: math.unit(175, "lb"),
  21328. name: "Anthro",
  21329. image: {
  21330. source: "./media/characters/rena-dyne/anthro.svg",
  21331. extra: 1849 / 1785,
  21332. bottom: 0.005
  21333. }
  21334. },
  21335. taur: {
  21336. height: math.unit(15 + 6 / 12, "feet"),
  21337. weight: math.unit(8000, "lb"),
  21338. name: "Taur",
  21339. image: {
  21340. source: "./media/characters/rena-dyne/taur.svg",
  21341. extra: 2315 / 2234,
  21342. bottom: 0.033
  21343. }
  21344. },
  21345. },
  21346. [
  21347. {
  21348. name: "Normal",
  21349. height: math.unit(5 + 7 / 12, "feet"),
  21350. default: true
  21351. },
  21352. ]
  21353. ))
  21354. characterMakers.push(() => makeCharacter(
  21355. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21356. {
  21357. front: {
  21358. height: math.unit(8, "feet"),
  21359. weight: math.unit(600, "lb"),
  21360. name: "Front",
  21361. image: {
  21362. source: "./media/characters/weremeep/front.svg",
  21363. extra: 967 / 862,
  21364. bottom: 0.01
  21365. }
  21366. },
  21367. },
  21368. [
  21369. {
  21370. name: "Normal",
  21371. height: math.unit(8, "feet"),
  21372. default: true
  21373. },
  21374. {
  21375. name: "Lorg",
  21376. height: math.unit(12, "feet")
  21377. },
  21378. {
  21379. name: "Oh Lawd She Comin'",
  21380. height: math.unit(20, "feet")
  21381. },
  21382. ]
  21383. ))
  21384. characterMakers.push(() => makeCharacter(
  21385. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21386. {
  21387. front: {
  21388. height: math.unit(4, "feet"),
  21389. weight: math.unit(90, "lb"),
  21390. name: "Front",
  21391. image: {
  21392. source: "./media/characters/reza/front.svg",
  21393. extra: 1183 / 1111,
  21394. bottom: 0.017
  21395. }
  21396. },
  21397. back: {
  21398. height: math.unit(4, "feet"),
  21399. weight: math.unit(90, "lb"),
  21400. name: "Back",
  21401. image: {
  21402. source: "./media/characters/reza/back.svg",
  21403. extra: 1183 / 1111,
  21404. bottom: 0.01
  21405. }
  21406. },
  21407. drake: {
  21408. height: math.unit(30, "feet"),
  21409. weight: math.unit(246960, "lb"),
  21410. name: "Drake",
  21411. image: {
  21412. source: "./media/characters/reza/drake.svg",
  21413. extra: 2350 / 2024,
  21414. bottom: 60.7 / 2403
  21415. }
  21416. },
  21417. },
  21418. [
  21419. {
  21420. name: "Normal",
  21421. height: math.unit(4, "feet"),
  21422. default: true
  21423. },
  21424. ]
  21425. ))
  21426. characterMakers.push(() => makeCharacter(
  21427. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21428. {
  21429. side: {
  21430. height: math.unit(15, "feet"),
  21431. weight: math.unit(14, "tons"),
  21432. name: "Side",
  21433. image: {
  21434. source: "./media/characters/athea/side.svg",
  21435. extra: 960 / 540,
  21436. bottom: 0.003
  21437. }
  21438. },
  21439. sitting: {
  21440. height: math.unit(6 * 2.85, "feet"),
  21441. weight: math.unit(14, "tons"),
  21442. name: "Sitting",
  21443. image: {
  21444. source: "./media/characters/athea/sitting.svg",
  21445. extra: 621 / 581,
  21446. bottom: 0.075
  21447. }
  21448. },
  21449. maw: {
  21450. height: math.unit(7.59498031496063, "feet"),
  21451. name: "Maw",
  21452. image: {
  21453. source: "./media/characters/athea/maw.svg"
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Lap Cat",
  21460. height: math.unit(2.5, "feet")
  21461. },
  21462. {
  21463. name: "Minimacro",
  21464. height: math.unit(15, "feet"),
  21465. default: true
  21466. },
  21467. {
  21468. name: "Macro",
  21469. height: math.unit(120, "feet")
  21470. },
  21471. {
  21472. name: "Macro+",
  21473. height: math.unit(640, "feet")
  21474. },
  21475. {
  21476. name: "Colossus",
  21477. height: math.unit(2.2, "miles")
  21478. },
  21479. ]
  21480. ))
  21481. characterMakers.push(() => makeCharacter(
  21482. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21483. {
  21484. front: {
  21485. height: math.unit(8 + 8 / 12, "feet"),
  21486. weight: math.unit(130, "kg"),
  21487. name: "Front",
  21488. image: {
  21489. source: "./media/characters/seroko/front.svg",
  21490. extra: 1385 / 1280,
  21491. bottom: 0.025
  21492. }
  21493. },
  21494. back: {
  21495. height: math.unit(8 + 8 / 12, "feet"),
  21496. weight: math.unit(130, "kg"),
  21497. name: "Back",
  21498. image: {
  21499. source: "./media/characters/seroko/back.svg",
  21500. extra: 1369 / 1238,
  21501. bottom: 0.018
  21502. }
  21503. },
  21504. frontDressed: {
  21505. height: math.unit(8 + 8 / 12, "feet"),
  21506. weight: math.unit(130, "kg"),
  21507. name: "Front (Dressed)",
  21508. image: {
  21509. source: "./media/characters/seroko/front-dressed.svg",
  21510. extra: 1366 / 1275,
  21511. bottom: 0.03
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Normal",
  21518. height: math.unit(8 + 8 / 12, "feet"),
  21519. default: true
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21525. {
  21526. front: {
  21527. height: math.unit(5.5, "feet"),
  21528. weight: math.unit(160, "lb"),
  21529. name: "Front",
  21530. image: {
  21531. source: "./media/characters/quatzi/front.svg",
  21532. extra: 2346 / 2242,
  21533. bottom: 0.015
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Normal",
  21540. height: math.unit(5.5, "feet"),
  21541. default: true
  21542. },
  21543. {
  21544. name: "Big",
  21545. height: math.unit(7.7, "feet")
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21551. {
  21552. front: {
  21553. height: math.unit(5 + 11 / 12, "feet"),
  21554. weight: math.unit(180, "lb"),
  21555. name: "Front",
  21556. image: {
  21557. source: "./media/characters/sen/front.svg",
  21558. extra: 1321 / 1254,
  21559. bottom: 0.015
  21560. }
  21561. },
  21562. side: {
  21563. height: math.unit(5 + 11 / 12, "feet"),
  21564. weight: math.unit(180, "lb"),
  21565. name: "Side",
  21566. image: {
  21567. source: "./media/characters/sen/side.svg",
  21568. extra: 1321 / 1254,
  21569. bottom: 0.007
  21570. }
  21571. },
  21572. back: {
  21573. height: math.unit(5 + 11 / 12, "feet"),
  21574. weight: math.unit(180, "lb"),
  21575. name: "Back",
  21576. image: {
  21577. source: "./media/characters/sen/back.svg",
  21578. extra: 1321 / 1254
  21579. }
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Normal",
  21585. height: math.unit(5 + 11 / 12, "feet"),
  21586. default: true
  21587. },
  21588. ]
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21592. {
  21593. front: {
  21594. height: math.unit(166.6, "cm"),
  21595. weight: math.unit(66.6, "kg"),
  21596. name: "Front",
  21597. image: {
  21598. source: "./media/characters/fruity/front.svg",
  21599. extra: 1510 / 1386,
  21600. bottom: 0.04
  21601. }
  21602. },
  21603. back: {
  21604. height: math.unit(166.6, "cm"),
  21605. weight: math.unit(66.6, "lb"),
  21606. name: "Back",
  21607. image: {
  21608. source: "./media/characters/fruity/back.svg",
  21609. extra: 1563 / 1435,
  21610. bottom: 0.005
  21611. }
  21612. },
  21613. },
  21614. [
  21615. {
  21616. name: "Normal",
  21617. height: math.unit(166.6, "cm"),
  21618. default: true
  21619. },
  21620. {
  21621. name: "Demonic",
  21622. height: math.unit(166.6, "feet")
  21623. },
  21624. ]
  21625. ))
  21626. characterMakers.push(() => makeCharacter(
  21627. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21628. {
  21629. side: {
  21630. height: math.unit(10, "feet"),
  21631. weight: math.unit(500, "lb"),
  21632. name: "Side",
  21633. image: {
  21634. source: "./media/characters/zost/side.svg",
  21635. extra: 2870/2533,
  21636. bottom: 252/3122
  21637. }
  21638. },
  21639. mawFront: {
  21640. height: math.unit(1.08, "meters"),
  21641. name: "Maw (Front)",
  21642. image: {
  21643. source: "./media/characters/zost/maw-front.svg"
  21644. }
  21645. },
  21646. mawSide: {
  21647. height: math.unit(2.66, "feet"),
  21648. name: "Maw (Side)",
  21649. image: {
  21650. source: "./media/characters/zost/maw-side.svg"
  21651. }
  21652. },
  21653. wingspan: {
  21654. height: math.unit(7.4, "feet"),
  21655. name: "Wingspan",
  21656. image: {
  21657. source: "./media/characters/zost/wingspan.svg"
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Normal",
  21664. height: math.unit(10, "feet"),
  21665. default: true
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21671. {
  21672. front: {
  21673. height: math.unit(5 + 4 / 12, "feet"),
  21674. weight: math.unit(120, "lb"),
  21675. name: "Front",
  21676. image: {
  21677. source: "./media/characters/luci/front.svg",
  21678. extra: 1985 / 1884,
  21679. bottom: 0.04
  21680. }
  21681. },
  21682. back: {
  21683. height: math.unit(5 + 4 / 12, "feet"),
  21684. weight: math.unit(120, "lb"),
  21685. name: "Back",
  21686. image: {
  21687. source: "./media/characters/luci/back.svg",
  21688. extra: 1892 / 1791,
  21689. bottom: 0.002
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(5 + 4 / 12, "feet"),
  21697. default: true
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21703. {
  21704. front: {
  21705. height: math.unit(1500, "feet"),
  21706. weight: math.unit(3.8e6, "tons"),
  21707. name: "Front",
  21708. image: {
  21709. source: "./media/characters/2th/front.svg",
  21710. extra: 3489 / 3350,
  21711. bottom: 0.1
  21712. }
  21713. },
  21714. foot: {
  21715. height: math.unit(461, "feet"),
  21716. name: "Foot",
  21717. image: {
  21718. source: "./media/characters/2th/foot.svg"
  21719. }
  21720. },
  21721. },
  21722. [
  21723. {
  21724. name: "\"Micro\"",
  21725. height: math.unit(15 + 7 / 12, "feet")
  21726. },
  21727. {
  21728. name: "Normal",
  21729. height: math.unit(1500, "feet"),
  21730. default: true
  21731. },
  21732. {
  21733. name: "Macro",
  21734. height: math.unit(5000, "feet")
  21735. },
  21736. {
  21737. name: "Megamacro",
  21738. height: math.unit(15, "miles")
  21739. },
  21740. {
  21741. name: "Gigamacro",
  21742. height: math.unit(4000, "miles")
  21743. },
  21744. {
  21745. name: "Galactic",
  21746. height: math.unit(50, "AU")
  21747. },
  21748. ]
  21749. ))
  21750. characterMakers.push(() => makeCharacter(
  21751. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21752. {
  21753. front: {
  21754. height: math.unit(5 + 6 / 12, "feet"),
  21755. weight: math.unit(220, "lb"),
  21756. name: "Front",
  21757. image: {
  21758. source: "./media/characters/amethyst/front.svg",
  21759. extra: 2078 / 2040,
  21760. bottom: 0.045
  21761. }
  21762. },
  21763. back: {
  21764. height: math.unit(5 + 6 / 12, "feet"),
  21765. weight: math.unit(220, "lb"),
  21766. name: "Back",
  21767. image: {
  21768. source: "./media/characters/amethyst/back.svg",
  21769. extra: 2021 / 1989,
  21770. bottom: 0.02
  21771. }
  21772. },
  21773. },
  21774. [
  21775. {
  21776. name: "Normal",
  21777. height: math.unit(5 + 6 / 12, "feet"),
  21778. default: true
  21779. },
  21780. ]
  21781. ))
  21782. characterMakers.push(() => makeCharacter(
  21783. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21784. {
  21785. front: {
  21786. height: math.unit(4 + 11 / 12, "feet"),
  21787. weight: math.unit(120, "lb"),
  21788. name: "Front",
  21789. image: {
  21790. source: "./media/characters/yumi-akiyama/front.svg",
  21791. extra: 1327 / 1235,
  21792. bottom: 0.02
  21793. }
  21794. },
  21795. back: {
  21796. height: math.unit(4 + 11 / 12, "feet"),
  21797. weight: math.unit(120, "lb"),
  21798. name: "Back",
  21799. image: {
  21800. source: "./media/characters/yumi-akiyama/back.svg",
  21801. extra: 1287 / 1245,
  21802. bottom: 0.002
  21803. }
  21804. },
  21805. },
  21806. [
  21807. {
  21808. name: "Galactic",
  21809. height: math.unit(50, "galaxies"),
  21810. default: true
  21811. },
  21812. {
  21813. name: "Universal",
  21814. height: math.unit(100, "universes")
  21815. },
  21816. ]
  21817. ))
  21818. characterMakers.push(() => makeCharacter(
  21819. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21820. {
  21821. front: {
  21822. height: math.unit(8, "feet"),
  21823. weight: math.unit(500, "lb"),
  21824. name: "Front",
  21825. image: {
  21826. source: "./media/characters/rifter-yrmori/front.svg",
  21827. extra: 1180 / 1125,
  21828. bottom: 0.02
  21829. }
  21830. },
  21831. back: {
  21832. height: math.unit(8, "feet"),
  21833. weight: math.unit(500, "lb"),
  21834. name: "Back",
  21835. image: {
  21836. source: "./media/characters/rifter-yrmori/back.svg",
  21837. extra: 1190 / 1145,
  21838. bottom: 0.001
  21839. }
  21840. },
  21841. wings: {
  21842. height: math.unit(7.75, "feet"),
  21843. weight: math.unit(500, "lb"),
  21844. name: "Wings",
  21845. image: {
  21846. source: "./media/characters/rifter-yrmori/wings.svg",
  21847. extra: 1357 / 1285
  21848. }
  21849. },
  21850. maw: {
  21851. height: math.unit(0.8, "feet"),
  21852. name: "Maw",
  21853. image: {
  21854. source: "./media/characters/rifter-yrmori/maw.svg"
  21855. }
  21856. },
  21857. mawfront: {
  21858. height: math.unit(1.45, "feet"),
  21859. name: "Maw (Front)",
  21860. image: {
  21861. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21862. }
  21863. },
  21864. },
  21865. [
  21866. {
  21867. name: "Normal",
  21868. height: math.unit(8, "feet"),
  21869. default: true
  21870. },
  21871. {
  21872. name: "Macro",
  21873. height: math.unit(42, "meters")
  21874. },
  21875. ]
  21876. ))
  21877. characterMakers.push(() => makeCharacter(
  21878. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21879. {
  21880. were: {
  21881. height: math.unit(25 + 6 / 12, "feet"),
  21882. weight: math.unit(10000, "lb"),
  21883. name: "Were",
  21884. image: {
  21885. source: "./media/characters/tahajin/were.svg",
  21886. extra: 801 / 770,
  21887. bottom: 0.042
  21888. }
  21889. },
  21890. aquatic: {
  21891. height: math.unit(6 + 4 / 12, "feet"),
  21892. weight: math.unit(160, "lb"),
  21893. name: "Aquatic",
  21894. image: {
  21895. source: "./media/characters/tahajin/aquatic.svg",
  21896. extra: 572 / 542,
  21897. bottom: 0.04
  21898. }
  21899. },
  21900. chow: {
  21901. height: math.unit(8 + 11 / 12, "feet"),
  21902. weight: math.unit(450, "lb"),
  21903. name: "Chow",
  21904. image: {
  21905. source: "./media/characters/tahajin/chow.svg",
  21906. extra: 660 / 640,
  21907. bottom: 0.015
  21908. }
  21909. },
  21910. demiNaga: {
  21911. height: math.unit(6 + 8 / 12, "feet"),
  21912. weight: math.unit(300, "lb"),
  21913. name: "Demi Naga",
  21914. image: {
  21915. source: "./media/characters/tahajin/demi-naga.svg",
  21916. extra: 643 / 615,
  21917. bottom: 0.1
  21918. }
  21919. },
  21920. data: {
  21921. height: math.unit(5, "inches"),
  21922. weight: math.unit(0.1, "lb"),
  21923. name: "Data",
  21924. image: {
  21925. source: "./media/characters/tahajin/data.svg"
  21926. }
  21927. },
  21928. fluu: {
  21929. height: math.unit(5 + 7 / 12, "feet"),
  21930. weight: math.unit(140, "lb"),
  21931. name: "Fluu",
  21932. image: {
  21933. source: "./media/characters/tahajin/fluu.svg",
  21934. extra: 628 / 592,
  21935. bottom: 0.02
  21936. }
  21937. },
  21938. starWarrior: {
  21939. height: math.unit(4 + 5 / 12, "feet"),
  21940. weight: math.unit(50, "lb"),
  21941. name: "Star Warrior",
  21942. image: {
  21943. source: "./media/characters/tahajin/star-warrior.svg"
  21944. }
  21945. },
  21946. },
  21947. [
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(25 + 6 / 12, "feet"),
  21951. default: true
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(8, "feet"),
  21960. weight: math.unit(350, "lb"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/gabira/front.svg",
  21964. extra: 608 / 580,
  21965. bottom: 0.03
  21966. }
  21967. },
  21968. back: {
  21969. height: math.unit(8, "feet"),
  21970. weight: math.unit(350, "lb"),
  21971. name: "Back",
  21972. image: {
  21973. source: "./media/characters/gabira/back.svg",
  21974. extra: 608 / 580,
  21975. bottom: 0.03
  21976. }
  21977. },
  21978. },
  21979. [
  21980. {
  21981. name: "Normal",
  21982. height: math.unit(8, "feet"),
  21983. default: true
  21984. },
  21985. ]
  21986. ))
  21987. characterMakers.push(() => makeCharacter(
  21988. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21989. {
  21990. front: {
  21991. height: math.unit(5 + 3 / 12, "feet"),
  21992. weight: math.unit(137, "lb"),
  21993. name: "Front",
  21994. image: {
  21995. source: "./media/characters/sasha-katraine/front.svg",
  21996. extra: 1745/1694,
  21997. bottom: 37/1782
  21998. }
  21999. },
  22000. back: {
  22001. height: math.unit(5 + 3 / 12, "feet"),
  22002. weight: math.unit(137, "lb"),
  22003. name: "Back",
  22004. image: {
  22005. source: "./media/characters/sasha-katraine/back.svg",
  22006. extra: 1776/1699,
  22007. bottom: 26/1802
  22008. }
  22009. },
  22010. },
  22011. [
  22012. {
  22013. name: "Micro",
  22014. height: math.unit(5, "inches")
  22015. },
  22016. {
  22017. name: "Normal",
  22018. height: math.unit(5 + 3 / 12, "feet"),
  22019. default: true
  22020. },
  22021. ]
  22022. ))
  22023. characterMakers.push(() => makeCharacter(
  22024. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22025. {
  22026. side: {
  22027. height: math.unit(4, "inches"),
  22028. weight: math.unit(200, "grams"),
  22029. name: "Side",
  22030. image: {
  22031. source: "./media/characters/der/side.svg",
  22032. extra: 719 / 400,
  22033. bottom: 30.6 / 749.9187
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Micro",
  22040. height: math.unit(4, "inches"),
  22041. default: true
  22042. },
  22043. ]
  22044. ))
  22045. characterMakers.push(() => makeCharacter(
  22046. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22047. {
  22048. side: {
  22049. height: math.unit(30, "meters"),
  22050. weight: math.unit(700, "tonnes"),
  22051. name: "Side",
  22052. image: {
  22053. source: "./media/characters/fixerdragon/side.svg",
  22054. extra: (1293.0514 - 116.03) / 1106.86,
  22055. bottom: 116.03 / 1293.0514
  22056. }
  22057. },
  22058. },
  22059. [
  22060. {
  22061. name: "Planck",
  22062. height: math.unit(1.6e-35, "meters")
  22063. },
  22064. {
  22065. name: "Micro",
  22066. height: math.unit(0.4, "meters")
  22067. },
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(30, "meters"),
  22071. default: true
  22072. },
  22073. {
  22074. name: "Megamacro",
  22075. height: math.unit(1.2, "megameters")
  22076. },
  22077. {
  22078. name: "Teramacro",
  22079. height: math.unit(130, "terameters")
  22080. },
  22081. {
  22082. name: "Yottamacro",
  22083. height: math.unit(6200, "yottameters")
  22084. },
  22085. ]
  22086. ));
  22087. characterMakers.push(() => makeCharacter(
  22088. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22089. {
  22090. front: {
  22091. height: math.unit(8, "feet"),
  22092. weight: math.unit(250, "lb"),
  22093. name: "Front",
  22094. image: {
  22095. source: "./media/characters/kite/front.svg",
  22096. extra: 2796 / 2659,
  22097. bottom: 0.002
  22098. }
  22099. },
  22100. },
  22101. [
  22102. {
  22103. name: "Normal",
  22104. height: math.unit(8, "feet"),
  22105. default: true
  22106. },
  22107. {
  22108. name: "Macro",
  22109. height: math.unit(360, "feet")
  22110. },
  22111. {
  22112. name: "Megamacro",
  22113. height: math.unit(1500, "feet")
  22114. },
  22115. ]
  22116. ))
  22117. characterMakers.push(() => makeCharacter(
  22118. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22119. {
  22120. front: {
  22121. height: math.unit(5 + 11/12, "feet"),
  22122. weight: math.unit(170, "lb"),
  22123. name: "Front",
  22124. image: {
  22125. source: "./media/characters/poojawa-vynar/front.svg",
  22126. extra: 1735/1585,
  22127. bottom: 96/1831
  22128. }
  22129. },
  22130. back: {
  22131. height: math.unit(5 + 11/12, "feet"),
  22132. weight: math.unit(170, "lb"),
  22133. name: "Back",
  22134. image: {
  22135. source: "./media/characters/poojawa-vynar/back.svg",
  22136. extra: 1749/1607,
  22137. bottom: 28/1777
  22138. }
  22139. },
  22140. male: {
  22141. height: math.unit(5 + 11/12, "feet"),
  22142. weight: math.unit(170, "lb"),
  22143. name: "Male",
  22144. image: {
  22145. source: "./media/characters/poojawa-vynar/male.svg",
  22146. extra: 1855/1713,
  22147. bottom: 63/1918
  22148. }
  22149. },
  22150. taur: {
  22151. height: math.unit(5 + 11/12, "feet"),
  22152. weight: math.unit(170, "lb"),
  22153. name: "Taur",
  22154. image: {
  22155. source: "./media/characters/poojawa-vynar/taur.svg",
  22156. extra: 1151/1059,
  22157. bottom: 356/1507
  22158. }
  22159. },
  22160. frontDressed: {
  22161. height: math.unit(5 + 11/12, "feet"),
  22162. weight: math.unit(170, "lb"),
  22163. name: "Front (Dressed)",
  22164. image: {
  22165. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22166. extra: 1735/1585,
  22167. bottom: 96/1831
  22168. }
  22169. },
  22170. backDressed: {
  22171. height: math.unit(5 + 11/12, "feet"),
  22172. weight: math.unit(170, "lb"),
  22173. name: "Back (Dressed)",
  22174. image: {
  22175. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22176. extra: 1749/1607,
  22177. bottom: 28/1777
  22178. }
  22179. },
  22180. maleDressed: {
  22181. height: math.unit(5 + 11/12, "feet"),
  22182. weight: math.unit(170, "lb"),
  22183. name: "Male (Dressed)",
  22184. image: {
  22185. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22186. extra: 1855/1713,
  22187. bottom: 63/1918
  22188. }
  22189. },
  22190. taurDressed: {
  22191. height: math.unit(5 + 11/12, "feet"),
  22192. weight: math.unit(170, "lb"),
  22193. name: "Taur (Dressed)",
  22194. image: {
  22195. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22196. extra: 1151/1059,
  22197. bottom: 356/1507
  22198. }
  22199. },
  22200. maw: {
  22201. height: math.unit(1.46, "feet"),
  22202. name: "Maw",
  22203. image: {
  22204. source: "./media/characters/poojawa-vynar/maw.svg"
  22205. }
  22206. },
  22207. head: {
  22208. height: math.unit(2.34, "feet"),
  22209. name: "Head",
  22210. image: {
  22211. source: "./media/characters/poojawa-vynar/head.svg"
  22212. }
  22213. },
  22214. paw: {
  22215. height: math.unit(1.61, "feet"),
  22216. name: "Paw",
  22217. image: {
  22218. source: "./media/characters/poojawa-vynar/paw.svg"
  22219. }
  22220. },
  22221. pawToering: {
  22222. height: math.unit(1.72, "feet"),
  22223. name: "Paw (Toering)",
  22224. image: {
  22225. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22226. }
  22227. },
  22228. toering: {
  22229. height: math.unit(2.9, "inches"),
  22230. name: "Toering",
  22231. image: {
  22232. source: "./media/characters/poojawa-vynar/toering.svg"
  22233. }
  22234. },
  22235. shaft: {
  22236. height: math.unit(0.625, "feet"),
  22237. name: "Shaft",
  22238. image: {
  22239. source: "./media/characters/poojawa-vynar/shaft.svg"
  22240. }
  22241. },
  22242. spade: {
  22243. height: math.unit(0.42, "feet"),
  22244. name: "Spade",
  22245. image: {
  22246. source: "./media/characters/poojawa-vynar/spade.svg"
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Shortstack",
  22253. height: math.unit(4, "feet")
  22254. },
  22255. {
  22256. name: "Normal",
  22257. height: math.unit(5 + 11 / 12, "feet"),
  22258. default: true
  22259. },
  22260. {
  22261. name: "Tauric",
  22262. height: math.unit(4, "meters")
  22263. },
  22264. ]
  22265. ))
  22266. characterMakers.push(() => makeCharacter(
  22267. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22268. {
  22269. front: {
  22270. height: math.unit(293, "meters"),
  22271. weight: math.unit(70400, "tons"),
  22272. name: "Front",
  22273. image: {
  22274. source: "./media/characters/violette/front.svg",
  22275. extra: 1227 / 1180,
  22276. bottom: 0.005
  22277. }
  22278. },
  22279. back: {
  22280. height: math.unit(293, "meters"),
  22281. weight: math.unit(70400, "tons"),
  22282. name: "Back",
  22283. image: {
  22284. source: "./media/characters/violette/back.svg",
  22285. extra: 1227 / 1180,
  22286. bottom: 0.005
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Macro",
  22293. height: math.unit(293, "meters"),
  22294. default: true
  22295. },
  22296. ]
  22297. ))
  22298. characterMakers.push(() => makeCharacter(
  22299. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22300. {
  22301. front: {
  22302. height: math.unit(1050, "feet"),
  22303. weight: math.unit(200000, "tons"),
  22304. name: "Front",
  22305. image: {
  22306. source: "./media/characters/alessandra/front.svg",
  22307. extra: 960 / 912,
  22308. bottom: 0.06
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Macro",
  22315. height: math.unit(1050, "feet")
  22316. },
  22317. {
  22318. name: "Macro+",
  22319. height: math.unit(900, "meters"),
  22320. default: true
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22326. {
  22327. front: {
  22328. height: math.unit(5, "feet"),
  22329. weight: math.unit(187, "lb"),
  22330. name: "Front",
  22331. image: {
  22332. source: "./media/characters/person/front.svg",
  22333. extra: 3087 / 2945,
  22334. bottom: 91 / 3181
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Micro",
  22341. height: math.unit(3, "inches")
  22342. },
  22343. {
  22344. name: "Normal",
  22345. height: math.unit(5, "feet"),
  22346. default: true
  22347. },
  22348. {
  22349. name: "Macro",
  22350. height: math.unit(90, "feet")
  22351. },
  22352. {
  22353. name: "Max Size",
  22354. height: math.unit(280, "feet")
  22355. },
  22356. ]
  22357. ))
  22358. characterMakers.push(() => makeCharacter(
  22359. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22360. {
  22361. front: {
  22362. height: math.unit(4.5, "meters"),
  22363. weight: math.unit(3200, "lb"),
  22364. name: "Front",
  22365. image: {
  22366. source: "./media/characters/ty/front.svg",
  22367. extra: 1038 / 960,
  22368. bottom: 31.156 / 1068
  22369. }
  22370. },
  22371. back: {
  22372. height: math.unit(4.5, "meters"),
  22373. weight: math.unit(3200, "lb"),
  22374. name: "Back",
  22375. image: {
  22376. source: "./media/characters/ty/back.svg",
  22377. extra: 1044 / 966,
  22378. bottom: 7.48 / 1049
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Normal",
  22385. height: math.unit(4.5, "meters"),
  22386. default: true
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22392. {
  22393. front: {
  22394. height: math.unit(5 + 4 / 12, "feet"),
  22395. weight: math.unit(115, "lb"),
  22396. name: "Front",
  22397. image: {
  22398. source: "./media/characters/rocky/front.svg",
  22399. extra: 1012 / 975,
  22400. bottom: 54 / 1066
  22401. }
  22402. },
  22403. },
  22404. [
  22405. {
  22406. name: "Normal",
  22407. height: math.unit(5 + 4 / 12, "feet"),
  22408. default: true
  22409. },
  22410. ]
  22411. ))
  22412. characterMakers.push(() => makeCharacter(
  22413. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22414. {
  22415. upright: {
  22416. height: math.unit(6, "meters"),
  22417. weight: math.unit(4000, "kg"),
  22418. name: "Upright",
  22419. image: {
  22420. source: "./media/characters/ruin/upright.svg",
  22421. extra: 668 / 661,
  22422. bottom: 42 / 799.8396
  22423. }
  22424. },
  22425. },
  22426. [
  22427. {
  22428. name: "Normal",
  22429. height: math.unit(6, "meters"),
  22430. default: true
  22431. },
  22432. ]
  22433. ))
  22434. characterMakers.push(() => makeCharacter(
  22435. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22436. {
  22437. front: {
  22438. height: math.unit(5, "feet"),
  22439. weight: math.unit(106, "lb"),
  22440. name: "Front",
  22441. image: {
  22442. source: "./media/characters/robin/front.svg",
  22443. extra: 862 / 799,
  22444. bottom: 42.4 / 914.8856
  22445. }
  22446. },
  22447. },
  22448. [
  22449. {
  22450. name: "Normal",
  22451. height: math.unit(5, "feet"),
  22452. default: true
  22453. },
  22454. ]
  22455. ))
  22456. characterMakers.push(() => makeCharacter(
  22457. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22458. {
  22459. side: {
  22460. height: math.unit(3, "feet"),
  22461. weight: math.unit(225, "lb"),
  22462. name: "Side",
  22463. image: {
  22464. source: "./media/characters/saian/side.svg",
  22465. extra: 566 / 356,
  22466. bottom: 79.7 / 643
  22467. }
  22468. },
  22469. maw: {
  22470. height: math.unit(2.85, "feet"),
  22471. name: "Maw",
  22472. image: {
  22473. source: "./media/characters/saian/maw.svg"
  22474. }
  22475. },
  22476. },
  22477. [
  22478. {
  22479. name: "Normal",
  22480. height: math.unit(3, "feet"),
  22481. default: true
  22482. },
  22483. ]
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22487. {
  22488. side: {
  22489. height: math.unit(8, "feet"),
  22490. weight: math.unit(300, "lb"),
  22491. name: "Side",
  22492. image: {
  22493. source: "./media/characters/equus-silvermane/side.svg",
  22494. extra: 2176 / 2050,
  22495. bottom: 65.7 / 2245
  22496. }
  22497. },
  22498. front: {
  22499. height: math.unit(8, "feet"),
  22500. weight: math.unit(300, "lb"),
  22501. name: "Front",
  22502. image: {
  22503. source: "./media/characters/equus-silvermane/front.svg",
  22504. extra: 4633 / 4400,
  22505. bottom: 71.3 / 4706.915
  22506. }
  22507. },
  22508. sideStepping: {
  22509. height: math.unit(8, "feet"),
  22510. weight: math.unit(300, "lb"),
  22511. name: "Side (Stepping)",
  22512. image: {
  22513. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22514. extra: 1968 / 1860,
  22515. bottom: 16.4 / 1989
  22516. }
  22517. },
  22518. },
  22519. [
  22520. {
  22521. name: "Normal",
  22522. height: math.unit(8, "feet")
  22523. },
  22524. {
  22525. name: "Minimacro",
  22526. height: math.unit(75, "feet"),
  22527. default: true
  22528. },
  22529. {
  22530. name: "Macro",
  22531. height: math.unit(150, "feet")
  22532. },
  22533. {
  22534. name: "Macro+",
  22535. height: math.unit(1000, "feet")
  22536. },
  22537. {
  22538. name: "Megamacro",
  22539. height: math.unit(1, "mile")
  22540. },
  22541. ]
  22542. ))
  22543. characterMakers.push(() => makeCharacter(
  22544. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22545. {
  22546. side: {
  22547. height: math.unit(20, "feet"),
  22548. weight: math.unit(30000, "kg"),
  22549. name: "Side",
  22550. image: {
  22551. source: "./media/characters/windar/side.svg",
  22552. extra: 1491 / 1248,
  22553. bottom: 82.56 / 1568
  22554. }
  22555. },
  22556. },
  22557. [
  22558. {
  22559. name: "Normal",
  22560. height: math.unit(20, "feet"),
  22561. default: true
  22562. },
  22563. ]
  22564. ))
  22565. characterMakers.push(() => makeCharacter(
  22566. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22567. {
  22568. side: {
  22569. height: math.unit(15.66, "feet"),
  22570. weight: math.unit(150, "lb"),
  22571. name: "Side",
  22572. image: {
  22573. source: "./media/characters/melody/side.svg",
  22574. extra: 1097 / 944,
  22575. bottom: 11.8 / 1109
  22576. }
  22577. },
  22578. sideOutfit: {
  22579. height: math.unit(15.66, "feet"),
  22580. weight: math.unit(150, "lb"),
  22581. name: "Side (Outfit)",
  22582. image: {
  22583. source: "./media/characters/melody/side-outfit.svg",
  22584. extra: 1097 / 944,
  22585. bottom: 11.8 / 1109
  22586. }
  22587. },
  22588. },
  22589. [
  22590. {
  22591. name: "Normal",
  22592. height: math.unit(15.66, "feet"),
  22593. default: true
  22594. },
  22595. ]
  22596. ))
  22597. characterMakers.push(() => makeCharacter(
  22598. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22599. {
  22600. front: {
  22601. height: math.unit(8, "feet"),
  22602. weight: math.unit(325, "lb"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/windera/front.svg",
  22606. extra: 3180 / 2845,
  22607. bottom: 178 / 3365
  22608. }
  22609. },
  22610. },
  22611. [
  22612. {
  22613. name: "Normal",
  22614. height: math.unit(8, "feet"),
  22615. default: true
  22616. },
  22617. ]
  22618. ))
  22619. characterMakers.push(() => makeCharacter(
  22620. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22621. {
  22622. front: {
  22623. height: math.unit(28.75, "feet"),
  22624. weight: math.unit(2000, "kg"),
  22625. name: "Front",
  22626. image: {
  22627. source: "./media/characters/sonear/front.svg",
  22628. extra: 1041.1 / 964.9,
  22629. bottom: 53.7 / 1096.6
  22630. }
  22631. },
  22632. },
  22633. [
  22634. {
  22635. name: "Normal",
  22636. height: math.unit(28.75, "feet"),
  22637. default: true
  22638. },
  22639. ]
  22640. ))
  22641. characterMakers.push(() => makeCharacter(
  22642. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22643. {
  22644. side: {
  22645. height: math.unit(25.5, "feet"),
  22646. weight: math.unit(23000, "kg"),
  22647. name: "Side",
  22648. image: {
  22649. source: "./media/characters/kanara/side.svg"
  22650. }
  22651. },
  22652. },
  22653. [
  22654. {
  22655. name: "Normal",
  22656. height: math.unit(25.5, "feet"),
  22657. default: true
  22658. },
  22659. ]
  22660. ))
  22661. characterMakers.push(() => makeCharacter(
  22662. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22663. {
  22664. side: {
  22665. height: math.unit(10, "feet"),
  22666. weight: math.unit(1000, "kg"),
  22667. name: "Side",
  22668. image: {
  22669. source: "./media/characters/ereus/side.svg",
  22670. extra: 1157 / 959,
  22671. bottom: 153 / 1312.5
  22672. }
  22673. },
  22674. },
  22675. [
  22676. {
  22677. name: "Normal",
  22678. height: math.unit(10, "feet"),
  22679. default: true
  22680. },
  22681. ]
  22682. ))
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22685. {
  22686. side: {
  22687. height: math.unit(4.5, "feet"),
  22688. weight: math.unit(500, "lb"),
  22689. name: "Side",
  22690. image: {
  22691. source: "./media/characters/e-ter/side.svg",
  22692. extra: 1550 / 1248,
  22693. bottom: 146 / 1694
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(4.5, "feet"),
  22701. default: true
  22702. },
  22703. ]
  22704. ))
  22705. characterMakers.push(() => makeCharacter(
  22706. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22707. {
  22708. side: {
  22709. height: math.unit(9.7, "feet"),
  22710. weight: math.unit(4000, "kg"),
  22711. name: "Side",
  22712. image: {
  22713. source: "./media/characters/yamie/side.svg"
  22714. }
  22715. },
  22716. },
  22717. [
  22718. {
  22719. name: "Normal",
  22720. height: math.unit(9.7, "feet"),
  22721. default: true
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22727. {
  22728. front: {
  22729. height: math.unit(50, "feet"),
  22730. weight: math.unit(50000, "kg"),
  22731. name: "Front",
  22732. image: {
  22733. source: "./media/characters/anders/front.svg",
  22734. extra: 570 / 539,
  22735. bottom: 14.7 / 586.7
  22736. }
  22737. },
  22738. },
  22739. [
  22740. {
  22741. name: "Large",
  22742. height: math.unit(50, "feet")
  22743. },
  22744. {
  22745. name: "Macro",
  22746. height: math.unit(2000, "feet"),
  22747. default: true
  22748. },
  22749. {
  22750. name: "Megamacro",
  22751. height: math.unit(12, "miles")
  22752. },
  22753. ]
  22754. ))
  22755. characterMakers.push(() => makeCharacter(
  22756. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22757. {
  22758. front: {
  22759. height: math.unit(7 + 2 / 12, "feet"),
  22760. weight: math.unit(300, "lb"),
  22761. name: "Front",
  22762. image: {
  22763. source: "./media/characters/reban/front.svg",
  22764. extra: 1287/1212,
  22765. bottom: 148/1435
  22766. }
  22767. },
  22768. head: {
  22769. height: math.unit(1.95, "feet"),
  22770. name: "Head",
  22771. image: {
  22772. source: "./media/characters/reban/head.svg"
  22773. }
  22774. },
  22775. maw: {
  22776. height: math.unit(0.95, "feet"),
  22777. name: "Maw",
  22778. image: {
  22779. source: "./media/characters/reban/maw.svg"
  22780. }
  22781. },
  22782. foot: {
  22783. height: math.unit(1.65, "feet"),
  22784. name: "Foot",
  22785. image: {
  22786. source: "./media/characters/reban/foot.svg"
  22787. }
  22788. },
  22789. dick: {
  22790. height: math.unit(7 / 5, "feet"),
  22791. name: "Dick",
  22792. image: {
  22793. source: "./media/characters/reban/dick.svg"
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Natural Height",
  22800. height: math.unit(7 + 2 / 12, "feet")
  22801. },
  22802. {
  22803. name: "Macro",
  22804. height: math.unit(500, "feet"),
  22805. default: true
  22806. },
  22807. {
  22808. name: "Canon Height",
  22809. height: math.unit(50, "AU")
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22815. {
  22816. front: {
  22817. height: math.unit(6, "feet"),
  22818. weight: math.unit(150, "lb"),
  22819. name: "Front",
  22820. image: {
  22821. source: "./media/characters/terrance-keayes/front.svg",
  22822. extra: 1.005,
  22823. bottom: 151 / 1615
  22824. }
  22825. },
  22826. side: {
  22827. height: math.unit(6, "feet"),
  22828. weight: math.unit(150, "lb"),
  22829. name: "Side",
  22830. image: {
  22831. source: "./media/characters/terrance-keayes/side.svg",
  22832. extra: 1.005,
  22833. bottom: 129.4 / 1544
  22834. }
  22835. },
  22836. back: {
  22837. height: math.unit(6, "feet"),
  22838. weight: math.unit(150, "lb"),
  22839. name: "Back",
  22840. image: {
  22841. source: "./media/characters/terrance-keayes/back.svg",
  22842. extra: 1.005,
  22843. bottom: 58.4 / 1557.3
  22844. }
  22845. },
  22846. dick: {
  22847. height: math.unit(6 * 0.208, "feet"),
  22848. name: "Dick",
  22849. image: {
  22850. source: "./media/characters/terrance-keayes/dick.svg"
  22851. }
  22852. },
  22853. },
  22854. [
  22855. {
  22856. name: "Canon Height",
  22857. height: math.unit(35, "miles"),
  22858. default: true
  22859. },
  22860. ]
  22861. ))
  22862. characterMakers.push(() => makeCharacter(
  22863. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22864. {
  22865. front: {
  22866. height: math.unit(6, "feet"),
  22867. weight: math.unit(150, "lb"),
  22868. name: "Front",
  22869. image: {
  22870. source: "./media/characters/ofelia/front.svg",
  22871. extra: 1130/1117,
  22872. bottom: 91/1221
  22873. }
  22874. },
  22875. back: {
  22876. height: math.unit(6, "feet"),
  22877. weight: math.unit(150, "lb"),
  22878. name: "Back",
  22879. image: {
  22880. source: "./media/characters/ofelia/back.svg",
  22881. extra: 1172/1159,
  22882. bottom: 28/1200
  22883. }
  22884. },
  22885. maw: {
  22886. height: math.unit(1, "feet"),
  22887. name: "Maw",
  22888. image: {
  22889. source: "./media/characters/ofelia/maw.svg"
  22890. }
  22891. },
  22892. foot: {
  22893. height: math.unit(1.949, "feet"),
  22894. name: "Foot",
  22895. image: {
  22896. source: "./media/characters/ofelia/foot.svg"
  22897. }
  22898. },
  22899. },
  22900. [
  22901. {
  22902. name: "Canon Height",
  22903. height: math.unit(2000, "miles"),
  22904. default: true
  22905. },
  22906. ]
  22907. ))
  22908. characterMakers.push(() => makeCharacter(
  22909. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22910. {
  22911. front: {
  22912. height: math.unit(6, "feet"),
  22913. weight: math.unit(150, "lb"),
  22914. name: "Front",
  22915. image: {
  22916. source: "./media/characters/samuel/front.svg",
  22917. extra: 265 / 258,
  22918. bottom: 2 / 266.1566
  22919. }
  22920. },
  22921. },
  22922. [
  22923. {
  22924. name: "Macro",
  22925. height: math.unit(100, "feet"),
  22926. default: true
  22927. },
  22928. {
  22929. name: "Full Size",
  22930. height: math.unit(1000, "miles")
  22931. },
  22932. ]
  22933. ))
  22934. characterMakers.push(() => makeCharacter(
  22935. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22936. {
  22937. front: {
  22938. height: math.unit(6, "feet"),
  22939. weight: math.unit(300, "lb"),
  22940. name: "Front",
  22941. image: {
  22942. source: "./media/characters/beishir-kiel/front.svg",
  22943. extra: 569 / 547,
  22944. bottom: 41.9 / 609
  22945. }
  22946. },
  22947. maw: {
  22948. height: math.unit(6 * 0.202, "feet"),
  22949. name: "Maw",
  22950. image: {
  22951. source: "./media/characters/beishir-kiel/maw.svg"
  22952. }
  22953. },
  22954. },
  22955. [
  22956. {
  22957. name: "Macro",
  22958. height: math.unit(300, "feet"),
  22959. default: true
  22960. },
  22961. ]
  22962. ))
  22963. characterMakers.push(() => makeCharacter(
  22964. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22965. {
  22966. front: {
  22967. height: math.unit(5 + 7/12, "feet"),
  22968. weight: math.unit(120, "lb"),
  22969. name: "Front",
  22970. image: {
  22971. source: "./media/characters/logan-grey/front.svg",
  22972. extra: 1836/1738,
  22973. bottom: 108/1944
  22974. }
  22975. },
  22976. back: {
  22977. height: math.unit(5 + 7/12, "feet"),
  22978. weight: math.unit(120, "lb"),
  22979. name: "Back",
  22980. image: {
  22981. source: "./media/characters/logan-grey/back.svg",
  22982. extra: 1880/1794,
  22983. bottom: 24/1904
  22984. }
  22985. },
  22986. frontSfw: {
  22987. height: math.unit(5 + 7/12, "feet"),
  22988. weight: math.unit(120, "lb"),
  22989. name: "Front (SFW)",
  22990. image: {
  22991. source: "./media/characters/logan-grey/front-sfw.svg",
  22992. extra: 1836/1738,
  22993. bottom: 108/1944
  22994. }
  22995. },
  22996. backSfw: {
  22997. height: math.unit(5 + 7/12, "feet"),
  22998. weight: math.unit(120, "lb"),
  22999. name: "Back (SFW)",
  23000. image: {
  23001. source: "./media/characters/logan-grey/back-sfw.svg",
  23002. extra: 1880/1794,
  23003. bottom: 24/1904
  23004. }
  23005. },
  23006. hands: {
  23007. height: math.unit(0.84, "feet"),
  23008. name: "Hands",
  23009. image: {
  23010. source: "./media/characters/logan-grey/hands.svg"
  23011. }
  23012. },
  23013. paws: {
  23014. height: math.unit(0.72, "feet"),
  23015. name: "Paws",
  23016. image: {
  23017. source: "./media/characters/logan-grey/paws.svg"
  23018. }
  23019. },
  23020. cock: {
  23021. height: math.unit(1.45, "feet"),
  23022. name: "Cock",
  23023. image: {
  23024. source: "./media/characters/logan-grey/cock.svg"
  23025. }
  23026. },
  23027. cockAlt: {
  23028. height: math.unit(1.437, "feet"),
  23029. name: "Cock (alt)",
  23030. image: {
  23031. source: "./media/characters/logan-grey/cock-alt.svg"
  23032. }
  23033. },
  23034. },
  23035. [
  23036. {
  23037. name: "Normal",
  23038. height: math.unit(5 + 8 / 12, "feet")
  23039. },
  23040. {
  23041. name: "The 500 Foot Femboy",
  23042. height: math.unit(500, "feet"),
  23043. default: true
  23044. },
  23045. {
  23046. name: "Megmacro",
  23047. height: math.unit(20, "miles")
  23048. },
  23049. ]
  23050. ))
  23051. characterMakers.push(() => makeCharacter(
  23052. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23053. {
  23054. front: {
  23055. height: math.unit(8 + 2 / 12, "feet"),
  23056. weight: math.unit(275, "lb"),
  23057. name: "Front",
  23058. image: {
  23059. source: "./media/characters/draganta/front.svg",
  23060. extra: 1177 / 1135,
  23061. bottom: 33.46 / 1212.1
  23062. }
  23063. },
  23064. },
  23065. [
  23066. {
  23067. name: "Normal",
  23068. height: math.unit(8 + 6 / 12, "feet"),
  23069. default: true
  23070. },
  23071. {
  23072. name: "Macro",
  23073. height: math.unit(150, "feet")
  23074. },
  23075. {
  23076. name: "Megamacro",
  23077. height: math.unit(1000, "miles")
  23078. },
  23079. ]
  23080. ))
  23081. characterMakers.push(() => makeCharacter(
  23082. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23083. {
  23084. front: {
  23085. height: math.unit(1.72, "m"),
  23086. weight: math.unit(80, "lb"),
  23087. name: "Front",
  23088. image: {
  23089. source: "./media/characters/voski/front.svg",
  23090. extra: 2076.22 / 2022.4,
  23091. bottom: 102.7 / 2177.3866
  23092. }
  23093. },
  23094. frontFlaccid: {
  23095. height: math.unit(1.72, "m"),
  23096. weight: math.unit(80, "lb"),
  23097. name: "Front (Flaccid)",
  23098. image: {
  23099. source: "./media/characters/voski/front-flaccid.svg",
  23100. extra: 2076.22 / 2022.4,
  23101. bottom: 102.7 / 2177.3866
  23102. }
  23103. },
  23104. frontErect: {
  23105. height: math.unit(1.72, "m"),
  23106. weight: math.unit(80, "lb"),
  23107. name: "Front (Erect)",
  23108. image: {
  23109. source: "./media/characters/voski/front-erect.svg",
  23110. extra: 2076.22 / 2022.4,
  23111. bottom: 102.7 / 2177.3866
  23112. }
  23113. },
  23114. back: {
  23115. height: math.unit(1.72, "m"),
  23116. weight: math.unit(80, "lb"),
  23117. name: "Back",
  23118. image: {
  23119. source: "./media/characters/voski/back.svg",
  23120. extra: 2104 / 2051,
  23121. bottom: 10.45 / 2113.63
  23122. }
  23123. },
  23124. },
  23125. [
  23126. {
  23127. name: "Normal",
  23128. height: math.unit(1.72, "m")
  23129. },
  23130. {
  23131. name: "Macro",
  23132. height: math.unit(55, "m"),
  23133. default: true
  23134. },
  23135. {
  23136. name: "Macro+",
  23137. height: math.unit(300, "m")
  23138. },
  23139. {
  23140. name: "Macro++",
  23141. height: math.unit(700, "m")
  23142. },
  23143. {
  23144. name: "Macro+++",
  23145. height: math.unit(4500, "m")
  23146. },
  23147. {
  23148. name: "Macro++++",
  23149. height: math.unit(45, "km")
  23150. },
  23151. {
  23152. name: "Macro+++++",
  23153. height: math.unit(1220, "km")
  23154. },
  23155. ]
  23156. ))
  23157. characterMakers.push(() => makeCharacter(
  23158. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23159. {
  23160. front: {
  23161. height: math.unit(2.3, "m"),
  23162. weight: math.unit(304, "kg"),
  23163. name: "Front",
  23164. image: {
  23165. source: "./media/characters/icowom-lee/front.svg",
  23166. extra: 985 / 955,
  23167. bottom: 25.4 / 1012
  23168. }
  23169. },
  23170. fronttentacles: {
  23171. height: math.unit(2.3, "m"),
  23172. weight: math.unit(304, "kg"),
  23173. name: "Front-tentacles",
  23174. image: {
  23175. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23176. extra: 985 / 955,
  23177. bottom: 25.4 / 1012
  23178. }
  23179. },
  23180. back: {
  23181. height: math.unit(2.3, "m"),
  23182. weight: math.unit(304, "kg"),
  23183. name: "Back",
  23184. image: {
  23185. source: "./media/characters/icowom-lee/back.svg",
  23186. extra: 975 / 954,
  23187. bottom: 9.5 / 985
  23188. }
  23189. },
  23190. backtentacles: {
  23191. height: math.unit(2.3, "m"),
  23192. weight: math.unit(304, "kg"),
  23193. name: "Back-tentacles",
  23194. image: {
  23195. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23196. extra: 975 / 954,
  23197. bottom: 9.5 / 985
  23198. }
  23199. },
  23200. frontDressed: {
  23201. height: math.unit(2.3, "m"),
  23202. weight: math.unit(304, "kg"),
  23203. name: "Front (Dressed)",
  23204. image: {
  23205. source: "./media/characters/icowom-lee/front-dressed.svg",
  23206. extra: 3076 / 2933,
  23207. bottom: 51.4 / 3125.1889
  23208. }
  23209. },
  23210. rump: {
  23211. height: math.unit(0.776, "meters"),
  23212. name: "Rump",
  23213. image: {
  23214. source: "./media/characters/icowom-lee/rump.svg"
  23215. }
  23216. },
  23217. genitals: {
  23218. height: math.unit(0.78, "meters"),
  23219. name: "Genitals",
  23220. image: {
  23221. source: "./media/characters/icowom-lee/genitals.svg"
  23222. }
  23223. },
  23224. },
  23225. [
  23226. {
  23227. name: "Normal",
  23228. height: math.unit(2.3, "meters"),
  23229. default: true
  23230. },
  23231. {
  23232. name: "Macro",
  23233. height: math.unit(94, "meters"),
  23234. default: true
  23235. },
  23236. ]
  23237. ))
  23238. characterMakers.push(() => makeCharacter(
  23239. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23240. {
  23241. front: {
  23242. height: math.unit(22, "meters"),
  23243. weight: math.unit(21000, "kg"),
  23244. name: "Front",
  23245. image: {
  23246. source: "./media/characters/shock-diamond/front.svg",
  23247. extra: 2204 / 2053,
  23248. bottom: 65 / 2239.47
  23249. }
  23250. },
  23251. frontNude: {
  23252. height: math.unit(22, "meters"),
  23253. weight: math.unit(21000, "kg"),
  23254. name: "Front (Nude)",
  23255. image: {
  23256. source: "./media/characters/shock-diamond/front-nude.svg",
  23257. extra: 2514 / 2285,
  23258. bottom: 13 / 2527.56
  23259. }
  23260. },
  23261. },
  23262. [
  23263. {
  23264. name: "Normal",
  23265. height: math.unit(3, "meters")
  23266. },
  23267. {
  23268. name: "Macro",
  23269. height: math.unit(22, "meters"),
  23270. default: true
  23271. },
  23272. ]
  23273. ))
  23274. characterMakers.push(() => makeCharacter(
  23275. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23276. {
  23277. front: {
  23278. height: math.unit(5 + 4 / 12, "feet"),
  23279. weight: math.unit(120, "lb"),
  23280. name: "Front",
  23281. image: {
  23282. source: "./media/characters/rory/front.svg",
  23283. extra: 1318/1241,
  23284. bottom: 42/1360
  23285. }
  23286. },
  23287. back: {
  23288. height: math.unit(5 + 4 / 12, "feet"),
  23289. weight: math.unit(120, "lb"),
  23290. name: "Back",
  23291. image: {
  23292. source: "./media/characters/rory/back.svg",
  23293. extra: 1318/1241,
  23294. bottom: 42/1360
  23295. }
  23296. },
  23297. butt: {
  23298. height: math.unit(1.74, "feet"),
  23299. name: "Butt",
  23300. image: {
  23301. source: "./media/characters/rory/butt.svg"
  23302. }
  23303. },
  23304. dick: {
  23305. height: math.unit(1.02, "feet"),
  23306. name: "Dick",
  23307. image: {
  23308. source: "./media/characters/rory/dick.svg"
  23309. }
  23310. },
  23311. paws: {
  23312. height: math.unit(1, "feet"),
  23313. name: "Paws",
  23314. image: {
  23315. source: "./media/characters/rory/paws.svg"
  23316. }
  23317. },
  23318. frontAlt: {
  23319. height: math.unit(5 + 4 / 12, "feet"),
  23320. weight: math.unit(120, "lb"),
  23321. name: "Front (Alt)",
  23322. image: {
  23323. source: "./media/characters/rory/front-alt.svg",
  23324. extra: 589 / 556,
  23325. bottom: 45.7 / 635.76
  23326. }
  23327. },
  23328. frontAltNude: {
  23329. height: math.unit(5 + 4 / 12, "feet"),
  23330. weight: math.unit(120, "lb"),
  23331. name: "Front (Alt, Nude)",
  23332. image: {
  23333. source: "./media/characters/rory/front-alt-nude.svg",
  23334. extra: 589 / 556,
  23335. bottom: 45.7 / 635.76
  23336. }
  23337. },
  23338. side: {
  23339. height: math.unit(5 + 4 / 12, "feet"),
  23340. weight: math.unit(120, "lb"),
  23341. name: "Side",
  23342. image: {
  23343. source: "./media/characters/rory/side.svg",
  23344. extra: 597 / 564,
  23345. bottom: 55 / 653
  23346. }
  23347. },
  23348. backAlt: {
  23349. height: math.unit(5 + 4 / 12, "feet"),
  23350. weight: math.unit(120, "lb"),
  23351. name: "Back (Alt)",
  23352. image: {
  23353. source: "./media/characters/rory/back-alt.svg",
  23354. extra: 620 / 585,
  23355. bottom: 8.86 / 630.43
  23356. }
  23357. },
  23358. dickAlt: {
  23359. height: math.unit(0.86, "feet"),
  23360. name: "Dick (Alt)",
  23361. image: {
  23362. source: "./media/characters/rory/dick-alt.svg"
  23363. }
  23364. },
  23365. },
  23366. [
  23367. {
  23368. name: "Normal",
  23369. height: math.unit(5 + 4 / 12, "feet"),
  23370. default: true
  23371. },
  23372. {
  23373. name: "Macro",
  23374. height: math.unit(100, "feet")
  23375. },
  23376. {
  23377. name: "Macro+",
  23378. height: math.unit(140, "feet")
  23379. },
  23380. {
  23381. name: "Macro++",
  23382. height: math.unit(300, "feet")
  23383. },
  23384. ]
  23385. ))
  23386. characterMakers.push(() => makeCharacter(
  23387. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23388. {
  23389. front: {
  23390. height: math.unit(5 + 9 / 12, "feet"),
  23391. weight: math.unit(190, "lb"),
  23392. name: "Front",
  23393. image: {
  23394. source: "./media/characters/sprisk/front.svg",
  23395. extra: 1225 / 1180,
  23396. bottom: 42.7 / 1266.4
  23397. }
  23398. },
  23399. frontNsfw: {
  23400. height: math.unit(5 + 9 / 12, "feet"),
  23401. weight: math.unit(190, "lb"),
  23402. name: "Front (NSFW)",
  23403. image: {
  23404. source: "./media/characters/sprisk/front-nsfw.svg",
  23405. extra: 1225 / 1180,
  23406. bottom: 42.7 / 1266.4
  23407. }
  23408. },
  23409. back: {
  23410. height: math.unit(5 + 9 / 12, "feet"),
  23411. weight: math.unit(190, "lb"),
  23412. name: "Back",
  23413. image: {
  23414. source: "./media/characters/sprisk/back.svg",
  23415. extra: 1247 / 1200,
  23416. bottom: 5.6 / 1253.04
  23417. }
  23418. },
  23419. },
  23420. [
  23421. {
  23422. name: "Tiny",
  23423. height: math.unit(2, "inches")
  23424. },
  23425. {
  23426. name: "Normal",
  23427. height: math.unit(5 + 9 / 12, "feet"),
  23428. default: true
  23429. },
  23430. {
  23431. name: "Mini Macro",
  23432. height: math.unit(18, "feet")
  23433. },
  23434. {
  23435. name: "Macro",
  23436. height: math.unit(100, "feet")
  23437. },
  23438. {
  23439. name: "MACRO",
  23440. height: math.unit(50, "miles")
  23441. },
  23442. {
  23443. name: "M A C R O",
  23444. height: math.unit(300, "miles")
  23445. },
  23446. ]
  23447. ))
  23448. characterMakers.push(() => makeCharacter(
  23449. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23450. {
  23451. side: {
  23452. height: math.unit(15.6, "meters"),
  23453. weight: math.unit(700000, "kg"),
  23454. name: "Side",
  23455. image: {
  23456. source: "./media/characters/bunsen/side.svg",
  23457. extra: 1644 / 358
  23458. }
  23459. },
  23460. foot: {
  23461. height: math.unit(1.611 * 1644 / 358, "meter"),
  23462. name: "Foot",
  23463. image: {
  23464. source: "./media/characters/bunsen/foot.svg"
  23465. }
  23466. },
  23467. },
  23468. [
  23469. {
  23470. name: "Small",
  23471. height: math.unit(10, "feet")
  23472. },
  23473. {
  23474. name: "Normal",
  23475. height: math.unit(15.6, "meters"),
  23476. default: true
  23477. },
  23478. ]
  23479. ))
  23480. characterMakers.push(() => makeCharacter(
  23481. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23482. {
  23483. front: {
  23484. height: math.unit(4 + 11 / 12, "feet"),
  23485. weight: math.unit(140, "lb"),
  23486. name: "Front",
  23487. image: {
  23488. source: "./media/characters/sesh/front.svg",
  23489. extra: 3420 / 3231,
  23490. bottom: 72 / 3949.5
  23491. }
  23492. },
  23493. },
  23494. [
  23495. {
  23496. name: "Normal",
  23497. height: math.unit(4 + 11 / 12, "feet")
  23498. },
  23499. {
  23500. name: "Grown",
  23501. height: math.unit(15, "feet"),
  23502. default: true
  23503. },
  23504. {
  23505. name: "Macro",
  23506. height: math.unit(1500, "feet")
  23507. },
  23508. {
  23509. name: "Megamacro",
  23510. height: math.unit(30, "miles")
  23511. },
  23512. {
  23513. name: "Continental",
  23514. height: math.unit(3000, "miles")
  23515. },
  23516. {
  23517. name: "Gravity Mass",
  23518. height: math.unit(300000, "miles")
  23519. },
  23520. {
  23521. name: "Planet Buster",
  23522. height: math.unit(30000000, "miles")
  23523. },
  23524. {
  23525. name: "Big",
  23526. height: math.unit(3000000000, "miles")
  23527. },
  23528. ]
  23529. ))
  23530. characterMakers.push(() => makeCharacter(
  23531. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23532. {
  23533. front: {
  23534. height: math.unit(9, "feet"),
  23535. weight: math.unit(350, "lb"),
  23536. name: "Front",
  23537. image: {
  23538. source: "./media/characters/pepper/front.svg",
  23539. extra: 1448 / 1312,
  23540. bottom: 9.4 / 1457.88
  23541. }
  23542. },
  23543. back: {
  23544. height: math.unit(9, "feet"),
  23545. weight: math.unit(350, "lb"),
  23546. name: "Back",
  23547. image: {
  23548. source: "./media/characters/pepper/back.svg",
  23549. extra: 1423 / 1300,
  23550. bottom: 4.6 / 1429
  23551. }
  23552. },
  23553. maw: {
  23554. height: math.unit(0.932, "feet"),
  23555. name: "Maw",
  23556. image: {
  23557. source: "./media/characters/pepper/maw.svg"
  23558. }
  23559. },
  23560. },
  23561. [
  23562. {
  23563. name: "Normal",
  23564. height: math.unit(9, "feet"),
  23565. default: true
  23566. },
  23567. ]
  23568. ))
  23569. characterMakers.push(() => makeCharacter(
  23570. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23571. {
  23572. front: {
  23573. height: math.unit(6, "feet"),
  23574. weight: math.unit(150, "lb"),
  23575. name: "Front",
  23576. image: {
  23577. source: "./media/characters/maelstrom/front.svg",
  23578. extra: 2100 / 1883,
  23579. bottom: 94 / 2196.7
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "Less Kaiju",
  23586. height: math.unit(200, "feet")
  23587. },
  23588. {
  23589. name: "Kaiju",
  23590. height: math.unit(400, "feet"),
  23591. default: true
  23592. },
  23593. {
  23594. name: "Kaiju-er",
  23595. height: math.unit(600, "feet")
  23596. },
  23597. ]
  23598. ))
  23599. characterMakers.push(() => makeCharacter(
  23600. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23601. {
  23602. front: {
  23603. height: math.unit(6 + 5 / 12, "feet"),
  23604. weight: math.unit(180, "lb"),
  23605. name: "Front",
  23606. image: {
  23607. source: "./media/characters/lexir/front.svg",
  23608. extra: 180 / 172,
  23609. bottom: 12 / 192
  23610. }
  23611. },
  23612. back: {
  23613. height: math.unit(6 + 5 / 12, "feet"),
  23614. weight: math.unit(180, "lb"),
  23615. name: "Back",
  23616. image: {
  23617. source: "./media/characters/lexir/back.svg",
  23618. extra: 1273/1201,
  23619. bottom: 39/1312
  23620. }
  23621. },
  23622. },
  23623. [
  23624. {
  23625. name: "Very Smal",
  23626. height: math.unit(1, "nm")
  23627. },
  23628. {
  23629. name: "Normal",
  23630. height: math.unit(6 + 5 / 12, "feet"),
  23631. default: true
  23632. },
  23633. {
  23634. name: "Macro",
  23635. height: math.unit(1, "mile")
  23636. },
  23637. {
  23638. name: "Megamacro",
  23639. height: math.unit(50, "miles")
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23645. {
  23646. front: {
  23647. height: math.unit(1.5, "meters"),
  23648. weight: math.unit(100, "lb"),
  23649. name: "Front",
  23650. image: {
  23651. source: "./media/characters/maksio/front.svg",
  23652. extra: 1549 / 1531,
  23653. bottom: 123.7 / 1674.5429
  23654. }
  23655. },
  23656. back: {
  23657. height: math.unit(1.5, "meters"),
  23658. weight: math.unit(100, "lb"),
  23659. name: "Back",
  23660. image: {
  23661. source: "./media/characters/maksio/back.svg",
  23662. extra: 1541 / 1509,
  23663. bottom: 97 / 1639
  23664. }
  23665. },
  23666. hand: {
  23667. height: math.unit(0.621, "feet"),
  23668. name: "Hand",
  23669. image: {
  23670. source: "./media/characters/maksio/hand.svg"
  23671. }
  23672. },
  23673. foot: {
  23674. height: math.unit(1.611, "feet"),
  23675. name: "Foot",
  23676. image: {
  23677. source: "./media/characters/maksio/foot.svg"
  23678. }
  23679. },
  23680. },
  23681. [
  23682. {
  23683. name: "Shrunken",
  23684. height: math.unit(10, "cm")
  23685. },
  23686. {
  23687. name: "Normal",
  23688. height: math.unit(150, "cm"),
  23689. default: true
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23695. {
  23696. front: {
  23697. height: math.unit(100, "feet"),
  23698. name: "Front",
  23699. image: {
  23700. source: "./media/characters/erza-bear/front.svg",
  23701. extra: 2449 / 2390,
  23702. bottom: 46 / 2494
  23703. }
  23704. },
  23705. back: {
  23706. height: math.unit(100, "feet"),
  23707. name: "Back",
  23708. image: {
  23709. source: "./media/characters/erza-bear/back.svg",
  23710. extra: 2489 / 2430,
  23711. bottom: 85.4 / 2480
  23712. }
  23713. },
  23714. tail: {
  23715. height: math.unit(42, "feet"),
  23716. name: "Tail",
  23717. image: {
  23718. source: "./media/characters/erza-bear/tail.svg"
  23719. }
  23720. },
  23721. tongue: {
  23722. height: math.unit(8, "feet"),
  23723. name: "Tongue",
  23724. image: {
  23725. source: "./media/characters/erza-bear/tongue.svg"
  23726. }
  23727. },
  23728. dick: {
  23729. height: math.unit(10.5, "feet"),
  23730. name: "Dick",
  23731. image: {
  23732. source: "./media/characters/erza-bear/dick.svg"
  23733. }
  23734. },
  23735. dickVertical: {
  23736. height: math.unit(16.9, "feet"),
  23737. name: "Dick (Vertical)",
  23738. image: {
  23739. source: "./media/characters/erza-bear/dick-vertical.svg"
  23740. }
  23741. },
  23742. },
  23743. [
  23744. {
  23745. name: "Macro",
  23746. height: math.unit(100, "feet"),
  23747. default: true
  23748. },
  23749. ]
  23750. ))
  23751. characterMakers.push(() => makeCharacter(
  23752. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23753. {
  23754. front: {
  23755. height: math.unit(172, "cm"),
  23756. weight: math.unit(73, "kg"),
  23757. name: "Front",
  23758. image: {
  23759. source: "./media/characters/violet-flor/front.svg",
  23760. extra: 1530 / 1442,
  23761. bottom: 61.9 / 1588.8
  23762. }
  23763. },
  23764. back: {
  23765. height: math.unit(180, "cm"),
  23766. weight: math.unit(73, "kg"),
  23767. name: "Back",
  23768. image: {
  23769. source: "./media/characters/violet-flor/back.svg",
  23770. extra: 1692 / 1630,
  23771. bottom: 20 / 1712
  23772. }
  23773. },
  23774. },
  23775. [
  23776. {
  23777. name: "Normal",
  23778. height: math.unit(172, "cm"),
  23779. default: true
  23780. },
  23781. ]
  23782. ))
  23783. characterMakers.push(() => makeCharacter(
  23784. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23785. {
  23786. front: {
  23787. height: math.unit(6, "feet"),
  23788. weight: math.unit(220, "lb"),
  23789. name: "Front",
  23790. image: {
  23791. source: "./media/characters/lynn-rhea/front.svg",
  23792. extra: 310 / 273
  23793. }
  23794. },
  23795. back: {
  23796. height: math.unit(6, "feet"),
  23797. weight: math.unit(220, "lb"),
  23798. name: "Back",
  23799. image: {
  23800. source: "./media/characters/lynn-rhea/back.svg",
  23801. extra: 310 / 273
  23802. }
  23803. },
  23804. dicks: {
  23805. height: math.unit(0.9, "feet"),
  23806. name: "Dicks",
  23807. image: {
  23808. source: "./media/characters/lynn-rhea/dicks.svg"
  23809. }
  23810. },
  23811. slit: {
  23812. height: math.unit(0.4, "feet"),
  23813. name: "Slit",
  23814. image: {
  23815. source: "./media/characters/lynn-rhea/slit.svg"
  23816. }
  23817. },
  23818. },
  23819. [
  23820. {
  23821. name: "Micro",
  23822. height: math.unit(1, "inch")
  23823. },
  23824. {
  23825. name: "Macro",
  23826. height: math.unit(60, "feet"),
  23827. default: true
  23828. },
  23829. {
  23830. name: "Megamacro",
  23831. height: math.unit(2, "miles")
  23832. },
  23833. {
  23834. name: "Gigamacro",
  23835. height: math.unit(3, "earths")
  23836. },
  23837. {
  23838. name: "Galactic",
  23839. height: math.unit(0.8, "galaxies")
  23840. },
  23841. ]
  23842. ))
  23843. characterMakers.push(() => makeCharacter(
  23844. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23845. {
  23846. front: {
  23847. height: math.unit(1600, "feet"),
  23848. weight: math.unit(85758785169, "kg"),
  23849. name: "Front",
  23850. image: {
  23851. source: "./media/characters/valathos/front.svg",
  23852. extra: 1451 / 1339
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Macro",
  23859. height: math.unit(1600, "feet"),
  23860. default: true
  23861. },
  23862. ]
  23863. ))
  23864. characterMakers.push(() => makeCharacter(
  23865. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23866. {
  23867. front: {
  23868. height: math.unit(7 + 5 / 12, "feet"),
  23869. weight: math.unit(300, "lb"),
  23870. name: "Front",
  23871. image: {
  23872. source: "./media/characters/azula/front.svg",
  23873. extra: 3208 / 2880,
  23874. bottom: 80.2 / 3277
  23875. }
  23876. },
  23877. back: {
  23878. height: math.unit(7 + 5 / 12, "feet"),
  23879. weight: math.unit(300, "lb"),
  23880. name: "Back",
  23881. image: {
  23882. source: "./media/characters/azula/back.svg",
  23883. extra: 3169 / 2822,
  23884. bottom: 150.6 / 3321
  23885. }
  23886. },
  23887. },
  23888. [
  23889. {
  23890. name: "Normal",
  23891. height: math.unit(7 + 5 / 12, "feet"),
  23892. default: true
  23893. },
  23894. {
  23895. name: "Big",
  23896. height: math.unit(20, "feet")
  23897. },
  23898. ]
  23899. ))
  23900. characterMakers.push(() => makeCharacter(
  23901. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23902. {
  23903. front: {
  23904. height: math.unit(5 + 1 / 12, "feet"),
  23905. weight: math.unit(110, "lb"),
  23906. name: "Front",
  23907. image: {
  23908. source: "./media/characters/rupert/front.svg",
  23909. extra: 1549 / 1495,
  23910. bottom: 54.2 / 1604.4
  23911. }
  23912. },
  23913. },
  23914. [
  23915. {
  23916. name: "Normal",
  23917. height: math.unit(5 + 1 / 12, "feet"),
  23918. default: true
  23919. },
  23920. ]
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23924. {
  23925. front: {
  23926. height: math.unit(8 + 4 / 12, "feet"),
  23927. weight: math.unit(350, "lb"),
  23928. name: "Front",
  23929. image: {
  23930. source: "./media/characters/sheera-castellar/front.svg",
  23931. extra: 1957 / 1894,
  23932. bottom: 26.97 / 1975.017
  23933. }
  23934. },
  23935. side: {
  23936. height: math.unit(8 + 4 / 12, "feet"),
  23937. weight: math.unit(350, "lb"),
  23938. name: "Side",
  23939. image: {
  23940. source: "./media/characters/sheera-castellar/side.svg",
  23941. extra: 1957 / 1894
  23942. }
  23943. },
  23944. back: {
  23945. height: math.unit(8 + 4 / 12, "feet"),
  23946. weight: math.unit(350, "lb"),
  23947. name: "Back",
  23948. image: {
  23949. source: "./media/characters/sheera-castellar/back.svg",
  23950. extra: 1957 / 1894
  23951. }
  23952. },
  23953. angled: {
  23954. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23955. weight: math.unit(350, "lb"),
  23956. name: "Angled",
  23957. image: {
  23958. source: "./media/characters/sheera-castellar/angled.svg",
  23959. extra: 1807 / 1707,
  23960. bottom: 68 / 1875
  23961. }
  23962. },
  23963. genitals: {
  23964. height: math.unit(2.2, "feet"),
  23965. name: "Genitals",
  23966. image: {
  23967. source: "./media/characters/sheera-castellar/genitals.svg"
  23968. }
  23969. },
  23970. taur: {
  23971. height: math.unit(10 + 6/12, "feet"),
  23972. name: "Taur",
  23973. image: {
  23974. source: "./media/characters/sheera-castellar/taur.svg",
  23975. extra: 2017/1909,
  23976. bottom: 185/2202
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Normal",
  23983. height: math.unit(8 + 4 / 12, "feet")
  23984. },
  23985. {
  23986. name: "Macro",
  23987. height: math.unit(150, "feet"),
  23988. default: true
  23989. },
  23990. {
  23991. name: "Macro+",
  23992. height: math.unit(800, "feet")
  23993. },
  23994. ]
  23995. ))
  23996. characterMakers.push(() => makeCharacter(
  23997. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23998. {
  23999. front: {
  24000. height: math.unit(6, "feet"),
  24001. weight: math.unit(150, "lb"),
  24002. name: "Front",
  24003. image: {
  24004. source: "./media/characters/jaipur/front.svg",
  24005. extra: 3860 / 3731,
  24006. bottom: 287 / 4140
  24007. }
  24008. },
  24009. back: {
  24010. height: math.unit(6, "feet"),
  24011. weight: math.unit(150, "lb"),
  24012. name: "Back",
  24013. image: {
  24014. source: "./media/characters/jaipur/back.svg",
  24015. extra: 1637/1561,
  24016. bottom: 154/1791
  24017. }
  24018. },
  24019. },
  24020. [
  24021. {
  24022. name: "Normal",
  24023. height: math.unit(1.85, "meters"),
  24024. default: true
  24025. },
  24026. {
  24027. name: "Macro",
  24028. height: math.unit(150, "meters")
  24029. },
  24030. {
  24031. name: "Macro+",
  24032. height: math.unit(0.5, "miles")
  24033. },
  24034. {
  24035. name: "Macro++",
  24036. height: math.unit(2.5, "miles")
  24037. },
  24038. {
  24039. name: "Macro+++",
  24040. height: math.unit(12, "miles")
  24041. },
  24042. {
  24043. name: "Macro++++",
  24044. height: math.unit(120, "miles")
  24045. },
  24046. {
  24047. name: "Macro+++++",
  24048. height: math.unit(1200, "miles")
  24049. },
  24050. ]
  24051. ))
  24052. characterMakers.push(() => makeCharacter(
  24053. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24054. {
  24055. front: {
  24056. height: math.unit(6, "feet"),
  24057. weight: math.unit(150, "lb"),
  24058. name: "Front",
  24059. image: {
  24060. source: "./media/characters/sheila-wolf/front.svg",
  24061. extra: 1931 / 1808,
  24062. bottom: 29.5 / 1960
  24063. }
  24064. },
  24065. dick: {
  24066. height: math.unit(1.464, "feet"),
  24067. name: "Dick",
  24068. image: {
  24069. source: "./media/characters/sheila-wolf/dick.svg"
  24070. }
  24071. },
  24072. muzzle: {
  24073. height: math.unit(0.513, "feet"),
  24074. name: "Muzzle",
  24075. image: {
  24076. source: "./media/characters/sheila-wolf/muzzle.svg"
  24077. }
  24078. },
  24079. },
  24080. [
  24081. {
  24082. name: "Macro",
  24083. height: math.unit(70, "feet"),
  24084. default: true
  24085. },
  24086. ]
  24087. ))
  24088. characterMakers.push(() => makeCharacter(
  24089. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24090. {
  24091. front: {
  24092. height: math.unit(32, "meters"),
  24093. weight: math.unit(300000, "kg"),
  24094. name: "Front",
  24095. image: {
  24096. source: "./media/characters/almor/front.svg",
  24097. extra: 1408 / 1322,
  24098. bottom: 94.6 / 1506.5
  24099. }
  24100. },
  24101. },
  24102. [
  24103. {
  24104. name: "Macro",
  24105. height: math.unit(32, "meters"),
  24106. default: true
  24107. },
  24108. ]
  24109. ))
  24110. characterMakers.push(() => makeCharacter(
  24111. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24112. {
  24113. front: {
  24114. height: math.unit(7, "feet"),
  24115. weight: math.unit(200, "lb"),
  24116. name: "Front",
  24117. image: {
  24118. source: "./media/characters/silver/front.svg",
  24119. extra: 472.1 / 450.5,
  24120. bottom: 26.5 / 499.424
  24121. }
  24122. },
  24123. },
  24124. [
  24125. {
  24126. name: "Normal",
  24127. height: math.unit(7, "feet"),
  24128. default: true
  24129. },
  24130. {
  24131. name: "Macro",
  24132. height: math.unit(800, "feet")
  24133. },
  24134. {
  24135. name: "Megamacro",
  24136. height: math.unit(250, "miles")
  24137. },
  24138. ]
  24139. ))
  24140. characterMakers.push(() => makeCharacter(
  24141. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24142. {
  24143. front: {
  24144. height: math.unit(6, "feet"),
  24145. weight: math.unit(150, "lb"),
  24146. name: "Front",
  24147. image: {
  24148. source: "./media/characters/pliskin/front.svg",
  24149. extra: 1469 / 1359,
  24150. bottom: 70 / 1540
  24151. }
  24152. },
  24153. },
  24154. [
  24155. {
  24156. name: "Micro",
  24157. height: math.unit(3, "inches")
  24158. },
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(5 + 11 / 12, "feet"),
  24162. default: true
  24163. },
  24164. {
  24165. name: "Macro",
  24166. height: math.unit(120, "feet")
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24172. {
  24173. front: {
  24174. height: math.unit(6, "feet"),
  24175. weight: math.unit(150, "lb"),
  24176. name: "Front",
  24177. image: {
  24178. source: "./media/characters/sammy/front.svg",
  24179. extra: 1193 / 1089,
  24180. bottom: 30.5 / 1226
  24181. }
  24182. },
  24183. },
  24184. [
  24185. {
  24186. name: "Macro",
  24187. height: math.unit(1700, "feet"),
  24188. default: true
  24189. },
  24190. {
  24191. name: "Examacro",
  24192. height: math.unit(2.5e9, "lightyears")
  24193. },
  24194. ]
  24195. ))
  24196. characterMakers.push(() => makeCharacter(
  24197. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24198. {
  24199. front: {
  24200. height: math.unit(21, "meters"),
  24201. weight: math.unit(12, "tonnes"),
  24202. name: "Front",
  24203. image: {
  24204. source: "./media/characters/kuru/front.svg",
  24205. extra: 4301 / 3785,
  24206. bottom: 371.3 / 4691
  24207. }
  24208. },
  24209. },
  24210. [
  24211. {
  24212. name: "Macro",
  24213. height: math.unit(21, "meters"),
  24214. default: true
  24215. },
  24216. ]
  24217. ))
  24218. characterMakers.push(() => makeCharacter(
  24219. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24220. {
  24221. front: {
  24222. height: math.unit(23, "meters"),
  24223. weight: math.unit(12.2, "tonnes"),
  24224. name: "Front",
  24225. image: {
  24226. source: "./media/characters/rakka/front.svg",
  24227. extra: 4670 / 4169,
  24228. bottom: 301 / 4968.7
  24229. }
  24230. },
  24231. },
  24232. [
  24233. {
  24234. name: "Macro",
  24235. height: math.unit(23, "meters"),
  24236. default: true
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24242. {
  24243. front: {
  24244. height: math.unit(6, "feet"),
  24245. weight: math.unit(150, "lb"),
  24246. name: "Front",
  24247. image: {
  24248. source: "./media/characters/rhys-feline/front.svg",
  24249. extra: 2488 / 2308,
  24250. bottom: 35.67 / 2519.19
  24251. }
  24252. },
  24253. },
  24254. [
  24255. {
  24256. name: "Really Small",
  24257. height: math.unit(1, "nm")
  24258. },
  24259. {
  24260. name: "Micro",
  24261. height: math.unit(4, "inches")
  24262. },
  24263. {
  24264. name: "Normal",
  24265. height: math.unit(4 + 10 / 12, "feet"),
  24266. default: true
  24267. },
  24268. {
  24269. name: "Macro",
  24270. height: math.unit(100, "feet")
  24271. },
  24272. {
  24273. name: "Megamacto",
  24274. height: math.unit(50, "miles")
  24275. },
  24276. ]
  24277. ))
  24278. characterMakers.push(() => makeCharacter(
  24279. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24280. {
  24281. side: {
  24282. height: math.unit(30, "feet"),
  24283. weight: math.unit(35000, "kg"),
  24284. name: "Side",
  24285. image: {
  24286. source: "./media/characters/alydar/side.svg",
  24287. extra: 234 / 222,
  24288. bottom: 6.5 / 241
  24289. }
  24290. },
  24291. front: {
  24292. height: math.unit(30, "feet"),
  24293. weight: math.unit(35000, "kg"),
  24294. name: "Front",
  24295. image: {
  24296. source: "./media/characters/alydar/front.svg",
  24297. extra: 223.37 / 210.2,
  24298. bottom: 22.3 / 246.76
  24299. }
  24300. },
  24301. top: {
  24302. height: math.unit(64.54, "feet"),
  24303. weight: math.unit(35000, "kg"),
  24304. name: "Top",
  24305. image: {
  24306. source: "./media/characters/alydar/top.svg"
  24307. }
  24308. },
  24309. anthro: {
  24310. height: math.unit(30, "feet"),
  24311. weight: math.unit(9000, "kg"),
  24312. name: "Anthro",
  24313. image: {
  24314. source: "./media/characters/alydar/anthro.svg",
  24315. extra: 432 / 421,
  24316. bottom: 7.18 / 440
  24317. }
  24318. },
  24319. maw: {
  24320. height: math.unit(11.693, "feet"),
  24321. name: "Maw",
  24322. image: {
  24323. source: "./media/characters/alydar/maw.svg"
  24324. }
  24325. },
  24326. head: {
  24327. height: math.unit(11.693, "feet"),
  24328. name: "Head",
  24329. image: {
  24330. source: "./media/characters/alydar/head.svg"
  24331. }
  24332. },
  24333. headAlt: {
  24334. height: math.unit(12.861, "feet"),
  24335. name: "Head (Alt)",
  24336. image: {
  24337. source: "./media/characters/alydar/head-alt.svg"
  24338. }
  24339. },
  24340. wing: {
  24341. height: math.unit(20.712, "feet"),
  24342. name: "Wing",
  24343. image: {
  24344. source: "./media/characters/alydar/wing.svg"
  24345. }
  24346. },
  24347. wingFeather: {
  24348. height: math.unit(9.662, "feet"),
  24349. name: "Wing Feather",
  24350. image: {
  24351. source: "./media/characters/alydar/wing-feather.svg"
  24352. }
  24353. },
  24354. countourFeather: {
  24355. height: math.unit(4.154, "feet"),
  24356. name: "Contour Feather",
  24357. image: {
  24358. source: "./media/characters/alydar/contour-feather.svg"
  24359. }
  24360. },
  24361. },
  24362. [
  24363. {
  24364. name: "Diplomatic",
  24365. height: math.unit(13, "feet"),
  24366. default: true
  24367. },
  24368. {
  24369. name: "Small",
  24370. height: math.unit(30, "feet")
  24371. },
  24372. {
  24373. name: "Normal",
  24374. height: math.unit(95, "feet"),
  24375. default: true
  24376. },
  24377. {
  24378. name: "Large",
  24379. height: math.unit(285, "feet")
  24380. },
  24381. {
  24382. name: "Incomprehensible",
  24383. height: math.unit(450, "megameters")
  24384. },
  24385. ]
  24386. ))
  24387. characterMakers.push(() => makeCharacter(
  24388. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24389. {
  24390. side: {
  24391. height: math.unit(11, "feet"),
  24392. weight: math.unit(1750, "kg"),
  24393. name: "Side",
  24394. image: {
  24395. source: "./media/characters/selicia/side.svg",
  24396. extra: 440 / 396,
  24397. bottom: 24.8 / 465.979
  24398. }
  24399. },
  24400. maw: {
  24401. height: math.unit(4.665, "feet"),
  24402. name: "Maw",
  24403. image: {
  24404. source: "./media/characters/selicia/maw.svg"
  24405. }
  24406. },
  24407. },
  24408. [
  24409. {
  24410. name: "Normal",
  24411. height: math.unit(11, "feet"),
  24412. default: true
  24413. },
  24414. ]
  24415. ))
  24416. characterMakers.push(() => makeCharacter(
  24417. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24418. {
  24419. side: {
  24420. height: math.unit(2 + 6 / 12, "feet"),
  24421. weight: math.unit(30, "lb"),
  24422. name: "Side",
  24423. image: {
  24424. source: "./media/characters/layla/side.svg",
  24425. extra: 244 / 188,
  24426. bottom: 18.2 / 262.1
  24427. }
  24428. },
  24429. back: {
  24430. height: math.unit(2 + 6 / 12, "feet"),
  24431. weight: math.unit(30, "lb"),
  24432. name: "Back",
  24433. image: {
  24434. source: "./media/characters/layla/back.svg",
  24435. extra: 308 / 241.5,
  24436. bottom: 8.9 / 316.8
  24437. }
  24438. },
  24439. cumming: {
  24440. height: math.unit(2 + 6 / 12, "feet"),
  24441. weight: math.unit(30, "lb"),
  24442. name: "Cumming",
  24443. image: {
  24444. source: "./media/characters/layla/cumming.svg",
  24445. extra: 342 / 279,
  24446. bottom: 595 / 938
  24447. }
  24448. },
  24449. dickFlaccid: {
  24450. height: math.unit(2.595, "feet"),
  24451. name: "Flaccid Genitals",
  24452. image: {
  24453. source: "./media/characters/layla/dick-flaccid.svg"
  24454. }
  24455. },
  24456. dickErect: {
  24457. height: math.unit(2.359, "feet"),
  24458. name: "Erect Genitals",
  24459. image: {
  24460. source: "./media/characters/layla/dick-erect.svg"
  24461. }
  24462. },
  24463. dragon: {
  24464. height: math.unit(40, "feet"),
  24465. name: "Dragon",
  24466. image: {
  24467. source: "./media/characters/layla/dragon.svg",
  24468. extra: 610/535,
  24469. bottom: 367/977
  24470. }
  24471. },
  24472. taur: {
  24473. height: math.unit(30, "feet"),
  24474. name: "Taur",
  24475. image: {
  24476. source: "./media/characters/layla/taur.svg",
  24477. extra: 1268/1199,
  24478. bottom: 112/1380
  24479. }
  24480. },
  24481. },
  24482. [
  24483. {
  24484. name: "Micro",
  24485. height: math.unit(1, "inch")
  24486. },
  24487. {
  24488. name: "Small",
  24489. height: math.unit(1, "foot")
  24490. },
  24491. {
  24492. name: "Normal",
  24493. height: math.unit(2 + 6 / 12, "feet"),
  24494. default: true
  24495. },
  24496. {
  24497. name: "Macro",
  24498. height: math.unit(200, "feet")
  24499. },
  24500. {
  24501. name: "Megamacro",
  24502. height: math.unit(1000, "miles")
  24503. },
  24504. {
  24505. name: "Planetary",
  24506. height: math.unit(8000, "miles")
  24507. },
  24508. {
  24509. name: "True Layla",
  24510. height: math.unit(200000 * 7, "multiverses")
  24511. },
  24512. ]
  24513. ))
  24514. characterMakers.push(() => makeCharacter(
  24515. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24516. {
  24517. back: {
  24518. height: math.unit(10.5, "feet"),
  24519. weight: math.unit(800, "lb"),
  24520. name: "Back",
  24521. image: {
  24522. source: "./media/characters/knox/back.svg",
  24523. extra: 1486 / 1089,
  24524. bottom: 107 / 1601.4
  24525. }
  24526. },
  24527. side: {
  24528. height: math.unit(10.5, "feet"),
  24529. weight: math.unit(800, "lb"),
  24530. name: "Side",
  24531. image: {
  24532. source: "./media/characters/knox/side.svg",
  24533. extra: 244 / 218,
  24534. bottom: 14 / 260
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Compact",
  24541. height: math.unit(10.5, "feet"),
  24542. default: true
  24543. },
  24544. {
  24545. name: "Dynamax",
  24546. height: math.unit(210, "feet")
  24547. },
  24548. {
  24549. name: "Full Macro",
  24550. height: math.unit(850, "feet")
  24551. },
  24552. ]
  24553. ))
  24554. characterMakers.push(() => makeCharacter(
  24555. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24556. {
  24557. front: {
  24558. height: math.unit(28, "feet"),
  24559. weight: math.unit(10500, "lb"),
  24560. name: "Front",
  24561. image: {
  24562. source: "./media/characters/kayda/front.svg",
  24563. extra: 1536 / 1428,
  24564. bottom: 68.7 / 1603
  24565. }
  24566. },
  24567. back: {
  24568. height: math.unit(28, "feet"),
  24569. weight: math.unit(10500, "lb"),
  24570. name: "Back",
  24571. image: {
  24572. source: "./media/characters/kayda/back.svg",
  24573. extra: 1557 / 1464,
  24574. bottom: 39.5 / 1597.49
  24575. }
  24576. },
  24577. dick: {
  24578. height: math.unit(3.858, "feet"),
  24579. name: "Dick",
  24580. image: {
  24581. source: "./media/characters/kayda/dick.svg"
  24582. }
  24583. },
  24584. },
  24585. [
  24586. {
  24587. name: "Macro",
  24588. height: math.unit(28, "feet"),
  24589. default: true
  24590. },
  24591. ]
  24592. ))
  24593. characterMakers.push(() => makeCharacter(
  24594. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24595. {
  24596. front: {
  24597. height: math.unit(10 + 11 / 12, "feet"),
  24598. weight: math.unit(1400, "lb"),
  24599. name: "Front",
  24600. image: {
  24601. source: "./media/characters/brian/front.svg",
  24602. extra: 737 / 692,
  24603. bottom: 55.4 / 785
  24604. }
  24605. },
  24606. },
  24607. [
  24608. {
  24609. name: "Normal",
  24610. height: math.unit(10 + 11 / 12, "feet"),
  24611. default: true
  24612. },
  24613. ]
  24614. ))
  24615. characterMakers.push(() => makeCharacter(
  24616. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24617. {
  24618. front: {
  24619. height: math.unit(5 + 8 / 12, "feet"),
  24620. weight: math.unit(140, "lb"),
  24621. name: "Front",
  24622. image: {
  24623. source: "./media/characters/khemri/front.svg",
  24624. extra: 4780 / 4059,
  24625. bottom: 80.1 / 4859.25
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Micro",
  24632. height: math.unit(6, "inches")
  24633. },
  24634. {
  24635. name: "Normal",
  24636. height: math.unit(5 + 8 / 12, "feet"),
  24637. default: true
  24638. },
  24639. ]
  24640. ))
  24641. characterMakers.push(() => makeCharacter(
  24642. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24643. {
  24644. front: {
  24645. height: math.unit(13, "feet"),
  24646. weight: math.unit(1700, "lb"),
  24647. name: "Front",
  24648. image: {
  24649. source: "./media/characters/felix-braveheart/front.svg",
  24650. extra: 1222 / 1157,
  24651. bottom: 53.2 / 1280
  24652. }
  24653. },
  24654. back: {
  24655. height: math.unit(13, "feet"),
  24656. weight: math.unit(1700, "lb"),
  24657. name: "Back",
  24658. image: {
  24659. source: "./media/characters/felix-braveheart/back.svg",
  24660. extra: 1277 / 1203,
  24661. bottom: 50.2 / 1327
  24662. }
  24663. },
  24664. feral: {
  24665. height: math.unit(6, "feet"),
  24666. weight: math.unit(400, "lb"),
  24667. name: "Feral",
  24668. image: {
  24669. source: "./media/characters/felix-braveheart/feral.svg",
  24670. extra: 682 / 625,
  24671. bottom: 6.9 / 688
  24672. }
  24673. },
  24674. },
  24675. [
  24676. {
  24677. name: "Normal",
  24678. height: math.unit(13, "feet"),
  24679. default: true
  24680. },
  24681. ]
  24682. ))
  24683. characterMakers.push(() => makeCharacter(
  24684. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24685. {
  24686. side: {
  24687. height: math.unit(5 + 11 / 12, "feet"),
  24688. weight: math.unit(1400, "lb"),
  24689. name: "Side",
  24690. image: {
  24691. source: "./media/characters/shadow-blade/side.svg",
  24692. extra: 1726 / 1267,
  24693. bottom: 58.4 / 1785
  24694. }
  24695. },
  24696. },
  24697. [
  24698. {
  24699. name: "Normal",
  24700. height: math.unit(5 + 11 / 12, "feet"),
  24701. default: true
  24702. },
  24703. ]
  24704. ))
  24705. characterMakers.push(() => makeCharacter(
  24706. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24707. {
  24708. front: {
  24709. height: math.unit(1 + 6 / 12, "feet"),
  24710. weight: math.unit(25, "lb"),
  24711. name: "Front",
  24712. image: {
  24713. source: "./media/characters/karla-halldor/front.svg",
  24714. extra: 1459 / 1383,
  24715. bottom: 12 / 1472
  24716. }
  24717. },
  24718. },
  24719. [
  24720. {
  24721. name: "Normal",
  24722. height: math.unit(1 + 6 / 12, "feet"),
  24723. default: true
  24724. },
  24725. ]
  24726. ))
  24727. characterMakers.push(() => makeCharacter(
  24728. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24729. {
  24730. front: {
  24731. height: math.unit(6 + 2 / 12, "feet"),
  24732. weight: math.unit(160, "lb"),
  24733. name: "Front",
  24734. image: {
  24735. source: "./media/characters/ariam/front.svg",
  24736. extra: 1073/976,
  24737. bottom: 52/1125
  24738. }
  24739. },
  24740. back: {
  24741. height: math.unit(6 + 2/12, "feet"),
  24742. weight: math.unit(160, "lb"),
  24743. name: "Back",
  24744. image: {
  24745. source: "./media/characters/ariam/back.svg",
  24746. extra: 1103/1023,
  24747. bottom: 9/1112
  24748. }
  24749. },
  24750. dressed: {
  24751. height: math.unit(6 + 2/12, "feet"),
  24752. weight: math.unit(160, "lb"),
  24753. name: "Dressed",
  24754. image: {
  24755. source: "./media/characters/ariam/dressed.svg",
  24756. extra: 1099/1009,
  24757. bottom: 25/1124
  24758. }
  24759. },
  24760. squatting: {
  24761. height: math.unit(4.1, "feet"),
  24762. weight: math.unit(160, "lb"),
  24763. name: "Squatting",
  24764. image: {
  24765. source: "./media/characters/ariam/squatting.svg",
  24766. extra: 2617 / 2112,
  24767. bottom: 61.2 / 2681,
  24768. }
  24769. },
  24770. },
  24771. [
  24772. {
  24773. name: "Normal",
  24774. height: math.unit(6 + 2 / 12, "feet"),
  24775. default: true
  24776. },
  24777. {
  24778. name: "Normal+",
  24779. height: math.unit(4, "meters")
  24780. },
  24781. {
  24782. name: "Macro",
  24783. height: math.unit(50, "meters")
  24784. },
  24785. {
  24786. name: "Macro+",
  24787. height: math.unit(100, "meters")
  24788. },
  24789. {
  24790. name: "Megamacro",
  24791. height: math.unit(20, "km")
  24792. },
  24793. {
  24794. name: "Caretaker",
  24795. height: math.unit(444, "megameters")
  24796. },
  24797. ]
  24798. ))
  24799. characterMakers.push(() => makeCharacter(
  24800. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24801. {
  24802. front: {
  24803. height: math.unit(1.67, "meters"),
  24804. weight: math.unit(140, "lb"),
  24805. name: "Front",
  24806. image: {
  24807. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24808. extra: 438 / 410,
  24809. bottom: 0.75 / 439
  24810. }
  24811. },
  24812. },
  24813. [
  24814. {
  24815. name: "Shrunken",
  24816. height: math.unit(7.6, "cm")
  24817. },
  24818. {
  24819. name: "Human Scale",
  24820. height: math.unit(1.67, "meters")
  24821. },
  24822. {
  24823. name: "Wolxi Scale",
  24824. height: math.unit(36.7, "meters"),
  24825. default: true
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24831. {
  24832. front: {
  24833. height: math.unit(1.73, "meters"),
  24834. weight: math.unit(240, "lb"),
  24835. name: "Front",
  24836. image: {
  24837. source: "./media/characters/izue-two-mothers/front.svg",
  24838. extra: 469 / 437,
  24839. bottom: 1.24 / 470.6
  24840. }
  24841. },
  24842. },
  24843. [
  24844. {
  24845. name: "Shrunken",
  24846. height: math.unit(7.86, "cm")
  24847. },
  24848. {
  24849. name: "Human Scale",
  24850. height: math.unit(1.73, "meters")
  24851. },
  24852. {
  24853. name: "Wolxi Scale",
  24854. height: math.unit(38, "meters"),
  24855. default: true
  24856. },
  24857. ]
  24858. ))
  24859. characterMakers.push(() => makeCharacter(
  24860. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24861. {
  24862. front: {
  24863. height: math.unit(1.55, "meters"),
  24864. weight: math.unit(120, "lb"),
  24865. name: "Front",
  24866. image: {
  24867. source: "./media/characters/teeku-love-shack/front.svg",
  24868. extra: 387 / 362,
  24869. bottom: 1.51 / 388
  24870. }
  24871. },
  24872. },
  24873. [
  24874. {
  24875. name: "Shrunken",
  24876. height: math.unit(7, "cm")
  24877. },
  24878. {
  24879. name: "Human Scale",
  24880. height: math.unit(1.55, "meters")
  24881. },
  24882. {
  24883. name: "Wolxi Scale",
  24884. height: math.unit(34.1, "meters"),
  24885. default: true
  24886. },
  24887. ]
  24888. ))
  24889. characterMakers.push(() => makeCharacter(
  24890. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24891. {
  24892. front: {
  24893. height: math.unit(1.83, "meters"),
  24894. weight: math.unit(135, "lb"),
  24895. name: "Front",
  24896. image: {
  24897. source: "./media/characters/dejma-the-red/front.svg",
  24898. extra: 480 / 458,
  24899. bottom: 1.8 / 482
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Shrunken",
  24906. height: math.unit(8.3, "cm")
  24907. },
  24908. {
  24909. name: "Human Scale",
  24910. height: math.unit(1.83, "meters")
  24911. },
  24912. {
  24913. name: "Wolxi Scale",
  24914. height: math.unit(40, "meters"),
  24915. default: true
  24916. },
  24917. ]
  24918. ))
  24919. characterMakers.push(() => makeCharacter(
  24920. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24921. {
  24922. front: {
  24923. height: math.unit(1.78, "meters"),
  24924. weight: math.unit(65, "kg"),
  24925. name: "Front",
  24926. image: {
  24927. source: "./media/characters/aki/front.svg",
  24928. extra: 452 / 415
  24929. }
  24930. },
  24931. frontNsfw: {
  24932. height: math.unit(1.78, "meters"),
  24933. weight: math.unit(65, "kg"),
  24934. name: "Front (NSFW)",
  24935. image: {
  24936. source: "./media/characters/aki/front-nsfw.svg",
  24937. extra: 452 / 415
  24938. }
  24939. },
  24940. back: {
  24941. height: math.unit(1.78, "meters"),
  24942. weight: math.unit(65, "kg"),
  24943. name: "Back",
  24944. image: {
  24945. source: "./media/characters/aki/back.svg",
  24946. extra: 452 / 415
  24947. }
  24948. },
  24949. rump: {
  24950. height: math.unit(2.05, "feet"),
  24951. name: "Rump",
  24952. image: {
  24953. source: "./media/characters/aki/rump.svg"
  24954. }
  24955. },
  24956. dick: {
  24957. height: math.unit(0.95, "feet"),
  24958. name: "Dick",
  24959. image: {
  24960. source: "./media/characters/aki/dick.svg"
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "Micro",
  24967. height: math.unit(15, "cm")
  24968. },
  24969. {
  24970. name: "Normal",
  24971. height: math.unit(178, "cm"),
  24972. default: true
  24973. },
  24974. {
  24975. name: "Macro",
  24976. height: math.unit(214, "m")
  24977. },
  24978. {
  24979. name: "Macro+",
  24980. height: math.unit(534, "m")
  24981. },
  24982. ]
  24983. ))
  24984. characterMakers.push(() => makeCharacter(
  24985. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24986. {
  24987. front: {
  24988. height: math.unit(5 + 5 / 12, "feet"),
  24989. weight: math.unit(120, "lb"),
  24990. name: "Front",
  24991. image: {
  24992. source: "./media/characters/ari/front.svg",
  24993. extra: 714.5 / 682,
  24994. bottom: 8 / 722.5
  24995. }
  24996. },
  24997. },
  24998. [
  24999. {
  25000. name: "Normal",
  25001. height: math.unit(5 + 5 / 12, "feet")
  25002. },
  25003. {
  25004. name: "Macro",
  25005. height: math.unit(100, "feet"),
  25006. default: true
  25007. },
  25008. {
  25009. name: "Megamacro",
  25010. height: math.unit(100, "miles")
  25011. },
  25012. {
  25013. name: "Gigamacro",
  25014. height: math.unit(80000, "miles")
  25015. },
  25016. ]
  25017. ))
  25018. characterMakers.push(() => makeCharacter(
  25019. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25020. {
  25021. side: {
  25022. height: math.unit(9, "feet"),
  25023. weight: math.unit(400, "kg"),
  25024. name: "Side",
  25025. image: {
  25026. source: "./media/characters/bolt/side.svg",
  25027. extra: 1126 / 896,
  25028. bottom: 60 / 1187.3,
  25029. }
  25030. },
  25031. },
  25032. [
  25033. {
  25034. name: "Micro",
  25035. height: math.unit(5, "inches")
  25036. },
  25037. {
  25038. name: "Normal",
  25039. height: math.unit(9, "feet"),
  25040. default: true
  25041. },
  25042. {
  25043. name: "Macro",
  25044. height: math.unit(700, "feet")
  25045. },
  25046. {
  25047. name: "Max Size",
  25048. height: math.unit(1.52e22, "yottameters")
  25049. },
  25050. ]
  25051. ))
  25052. characterMakers.push(() => makeCharacter(
  25053. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25054. {
  25055. front: {
  25056. height: math.unit(4.3, "meters"),
  25057. weight: math.unit(3, "tons"),
  25058. name: "Front",
  25059. image: {
  25060. source: "./media/characters/draekon-sylviar/front.svg",
  25061. extra: 2072/1512,
  25062. bottom: 74/2146
  25063. }
  25064. },
  25065. back: {
  25066. height: math.unit(4.3, "meters"),
  25067. weight: math.unit(3, "tons"),
  25068. name: "Back",
  25069. image: {
  25070. source: "./media/characters/draekon-sylviar/back.svg",
  25071. extra: 1639/1483,
  25072. bottom: 41/1680
  25073. }
  25074. },
  25075. feral: {
  25076. height: math.unit(1.15, "meters"),
  25077. weight: math.unit(3, "tons"),
  25078. name: "Feral",
  25079. image: {
  25080. source: "./media/characters/draekon-sylviar/feral.svg",
  25081. extra: 1033/395,
  25082. bottom: 130/1163
  25083. }
  25084. },
  25085. maw: {
  25086. height: math.unit(1.3, "meters"),
  25087. name: "Maw",
  25088. image: {
  25089. source: "./media/characters/draekon-sylviar/maw.svg"
  25090. }
  25091. },
  25092. mawSeparated: {
  25093. height: math.unit(1.53, "meters"),
  25094. name: "Separated Maw",
  25095. image: {
  25096. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25097. }
  25098. },
  25099. tail: {
  25100. height: math.unit(1.15, "meters"),
  25101. name: "Tail",
  25102. image: {
  25103. source: "./media/characters/draekon-sylviar/tail.svg"
  25104. }
  25105. },
  25106. tailDick: {
  25107. height: math.unit(1.15, "meters"),
  25108. name: "Tail (Dick)",
  25109. image: {
  25110. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25111. }
  25112. },
  25113. tailDickSeparated: {
  25114. height: math.unit(1.19, "meters"),
  25115. name: "Tail (Separated Dick)",
  25116. image: {
  25117. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25118. }
  25119. },
  25120. slit: {
  25121. height: math.unit(1, "meters"),
  25122. name: "Slit",
  25123. image: {
  25124. source: "./media/characters/draekon-sylviar/slit.svg"
  25125. }
  25126. },
  25127. dick: {
  25128. height: math.unit(1.15, "meters"),
  25129. name: "Dick",
  25130. image: {
  25131. source: "./media/characters/draekon-sylviar/dick.svg"
  25132. }
  25133. },
  25134. dickSeparated: {
  25135. height: math.unit(1.1, "meters"),
  25136. name: "Separated Dick",
  25137. image: {
  25138. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25139. }
  25140. },
  25141. sheath: {
  25142. height: math.unit(1.15, "meters"),
  25143. name: "Sheath",
  25144. image: {
  25145. source: "./media/characters/draekon-sylviar/sheath.svg"
  25146. }
  25147. },
  25148. },
  25149. [
  25150. {
  25151. name: "Small",
  25152. height: math.unit(4.53 / 2, "meters"),
  25153. default: true
  25154. },
  25155. {
  25156. name: "Normal",
  25157. height: math.unit(4.53, "meters"),
  25158. default: true
  25159. },
  25160. {
  25161. name: "Large",
  25162. height: math.unit(4.53 * 2, "meters"),
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25168. {
  25169. front: {
  25170. height: math.unit(6 + 2 / 12, "feet"),
  25171. weight: math.unit(180, "lb"),
  25172. name: "Front",
  25173. image: {
  25174. source: "./media/characters/brawler/front.svg",
  25175. extra: 3301 / 3027,
  25176. bottom: 138 / 3439
  25177. }
  25178. },
  25179. },
  25180. [
  25181. {
  25182. name: "Normal",
  25183. height: math.unit(6 + 2 / 12, "feet"),
  25184. default: true
  25185. },
  25186. ]
  25187. ))
  25188. characterMakers.push(() => makeCharacter(
  25189. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25190. {
  25191. front: {
  25192. height: math.unit(11, "feet"),
  25193. weight: math.unit(1000, "lb"),
  25194. name: "Front",
  25195. image: {
  25196. source: "./media/characters/alex/front.svg",
  25197. bottom: 44.5 / 620
  25198. }
  25199. },
  25200. },
  25201. [
  25202. {
  25203. name: "Micro",
  25204. height: math.unit(5, "inches")
  25205. },
  25206. {
  25207. name: "Normal",
  25208. height: math.unit(11, "feet"),
  25209. default: true
  25210. },
  25211. {
  25212. name: "Macro",
  25213. height: math.unit(9.5e9, "feet")
  25214. },
  25215. {
  25216. name: "Max Size",
  25217. height: math.unit(1.4e283, "yottameters")
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25223. {
  25224. female: {
  25225. height: math.unit(29.9, "m"),
  25226. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25227. name: "Female",
  25228. image: {
  25229. source: "./media/characters/zenari/female.svg",
  25230. extra: 3281.6 / 3217,
  25231. bottom: 72.2 / 3353
  25232. }
  25233. },
  25234. male: {
  25235. height: math.unit(27.7, "m"),
  25236. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25237. name: "Male",
  25238. image: {
  25239. source: "./media/characters/zenari/male.svg",
  25240. extra: 3008 / 2991,
  25241. bottom: 54.6 / 3069
  25242. }
  25243. },
  25244. },
  25245. [
  25246. {
  25247. name: "Macro",
  25248. height: math.unit(29.7, "meters"),
  25249. default: true
  25250. },
  25251. ]
  25252. ))
  25253. characterMakers.push(() => makeCharacter(
  25254. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25255. {
  25256. female: {
  25257. height: math.unit(23.8, "m"),
  25258. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25259. name: "Female",
  25260. image: {
  25261. source: "./media/characters/mactarian/female.svg",
  25262. extra: 2662 / 2569,
  25263. bottom: 73 / 2736
  25264. }
  25265. },
  25266. male: {
  25267. height: math.unit(23.8, "m"),
  25268. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25269. name: "Male",
  25270. image: {
  25271. source: "./media/characters/mactarian/male.svg",
  25272. extra: 2673 / 2600,
  25273. bottom: 76 / 2750
  25274. }
  25275. },
  25276. },
  25277. [
  25278. {
  25279. name: "Macro",
  25280. height: math.unit(23.8, "meters"),
  25281. default: true
  25282. },
  25283. ]
  25284. ))
  25285. characterMakers.push(() => makeCharacter(
  25286. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25287. {
  25288. female: {
  25289. height: math.unit(19.3, "m"),
  25290. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25291. name: "Female",
  25292. image: {
  25293. source: "./media/characters/umok/female.svg",
  25294. extra: 2186 / 2078,
  25295. bottom: 87 / 2277
  25296. }
  25297. },
  25298. male: {
  25299. height: math.unit(19.5, "m"),
  25300. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25301. name: "Male",
  25302. image: {
  25303. source: "./media/characters/umok/male.svg",
  25304. extra: 2233 / 2140,
  25305. bottom: 24.4 / 2258
  25306. }
  25307. },
  25308. },
  25309. [
  25310. {
  25311. name: "Macro",
  25312. height: math.unit(19.3, "meters"),
  25313. default: true
  25314. },
  25315. ]
  25316. ))
  25317. characterMakers.push(() => makeCharacter(
  25318. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25319. {
  25320. female: {
  25321. height: math.unit(26.15, "m"),
  25322. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25323. name: "Female",
  25324. image: {
  25325. source: "./media/characters/joraxian/female.svg",
  25326. extra: 2912 / 2824,
  25327. bottom: 36 / 2956
  25328. }
  25329. },
  25330. male: {
  25331. height: math.unit(25.4, "m"),
  25332. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25333. name: "Male",
  25334. image: {
  25335. source: "./media/characters/joraxian/male.svg",
  25336. extra: 2877 / 2721,
  25337. bottom: 82 / 2967
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Macro",
  25344. height: math.unit(26.15, "meters"),
  25345. default: true
  25346. },
  25347. ]
  25348. ))
  25349. characterMakers.push(() => makeCharacter(
  25350. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25351. {
  25352. female: {
  25353. height: math.unit(21.6, "m"),
  25354. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25355. name: "Female",
  25356. image: {
  25357. source: "./media/characters/sthara/female.svg",
  25358. extra: 2516 / 2347,
  25359. bottom: 21.5 / 2537
  25360. }
  25361. },
  25362. male: {
  25363. height: math.unit(24, "m"),
  25364. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25365. name: "Male",
  25366. image: {
  25367. source: "./media/characters/sthara/male.svg",
  25368. extra: 2732 / 2607,
  25369. bottom: 23 / 2732
  25370. }
  25371. },
  25372. },
  25373. [
  25374. {
  25375. name: "Macro",
  25376. height: math.unit(21.6, "meters"),
  25377. default: true
  25378. },
  25379. ]
  25380. ))
  25381. characterMakers.push(() => makeCharacter(
  25382. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25383. {
  25384. front: {
  25385. height: math.unit(6 + 4 / 12, "feet"),
  25386. weight: math.unit(175, "lb"),
  25387. name: "Front",
  25388. image: {
  25389. source: "./media/characters/luka-bryzant/front.svg",
  25390. extra: 311 / 289,
  25391. bottom: 4 / 315
  25392. }
  25393. },
  25394. back: {
  25395. height: math.unit(6 + 4 / 12, "feet"),
  25396. weight: math.unit(175, "lb"),
  25397. name: "Back",
  25398. image: {
  25399. source: "./media/characters/luka-bryzant/back.svg",
  25400. extra: 311 / 289,
  25401. bottom: 3.8 / 313.7
  25402. }
  25403. },
  25404. },
  25405. [
  25406. {
  25407. name: "Micro",
  25408. height: math.unit(10, "inches")
  25409. },
  25410. {
  25411. name: "Normal",
  25412. height: math.unit(6 + 4 / 12, "feet"),
  25413. default: true
  25414. },
  25415. {
  25416. name: "Large",
  25417. height: math.unit(12, "feet")
  25418. },
  25419. ]
  25420. ))
  25421. characterMakers.push(() => makeCharacter(
  25422. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25423. {
  25424. front: {
  25425. height: math.unit(5 + 7 / 12, "feet"),
  25426. weight: math.unit(185, "lb"),
  25427. name: "Front",
  25428. image: {
  25429. source: "./media/characters/aman-aquila/front.svg",
  25430. extra: 1013 / 976,
  25431. bottom: 45.6 / 1057
  25432. }
  25433. },
  25434. side: {
  25435. height: math.unit(5 + 7 / 12, "feet"),
  25436. weight: math.unit(185, "lb"),
  25437. name: "Side",
  25438. image: {
  25439. source: "./media/characters/aman-aquila/side.svg",
  25440. extra: 1054 / 1011,
  25441. bottom: 15 / 1070
  25442. }
  25443. },
  25444. back: {
  25445. height: math.unit(5 + 7 / 12, "feet"),
  25446. weight: math.unit(185, "lb"),
  25447. name: "Back",
  25448. image: {
  25449. source: "./media/characters/aman-aquila/back.svg",
  25450. extra: 1026 / 970,
  25451. bottom: 12 / 1039
  25452. }
  25453. },
  25454. head: {
  25455. height: math.unit(1.211, "feet"),
  25456. name: "Head",
  25457. image: {
  25458. source: "./media/characters/aman-aquila/head.svg",
  25459. }
  25460. },
  25461. },
  25462. [
  25463. {
  25464. name: "Minimicro",
  25465. height: math.unit(0.057, "inches")
  25466. },
  25467. {
  25468. name: "Micro",
  25469. height: math.unit(7, "inches")
  25470. },
  25471. {
  25472. name: "Mini",
  25473. height: math.unit(3 + 7 / 12, "feet")
  25474. },
  25475. {
  25476. name: "Normal",
  25477. height: math.unit(5 + 7 / 12, "feet"),
  25478. default: true
  25479. },
  25480. {
  25481. name: "Macro",
  25482. height: math.unit(157 + 7 / 12, "feet")
  25483. },
  25484. {
  25485. name: "Megamacro",
  25486. height: math.unit(1557 + 7 / 12, "feet")
  25487. },
  25488. {
  25489. name: "Gigamacro",
  25490. height: math.unit(15557 + 7 / 12, "feet")
  25491. },
  25492. ]
  25493. ))
  25494. characterMakers.push(() => makeCharacter(
  25495. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25496. {
  25497. front: {
  25498. height: math.unit(3 + 2 / 12, "inches"),
  25499. weight: math.unit(0.3, "ounces"),
  25500. name: "Front",
  25501. image: {
  25502. source: "./media/characters/hiphae/front.svg",
  25503. extra: 1931 / 1683,
  25504. bottom: 24 / 1955
  25505. }
  25506. },
  25507. },
  25508. [
  25509. {
  25510. name: "Normal",
  25511. height: math.unit(3 + 1 / 2, "inches"),
  25512. default: true
  25513. },
  25514. ]
  25515. ))
  25516. characterMakers.push(() => makeCharacter(
  25517. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25518. {
  25519. front: {
  25520. height: math.unit(5 + 10 / 12, "feet"),
  25521. weight: math.unit(165, "lb"),
  25522. name: "Front",
  25523. image: {
  25524. source: "./media/characters/nicky/front.svg",
  25525. extra: 3144 / 2886,
  25526. bottom: 45.6 / 3192
  25527. }
  25528. },
  25529. back: {
  25530. height: math.unit(5 + 10 / 12, "feet"),
  25531. weight: math.unit(165, "lb"),
  25532. name: "Back",
  25533. image: {
  25534. source: "./media/characters/nicky/back.svg",
  25535. extra: 3055 / 2804,
  25536. bottom: 28.4 / 3087
  25537. }
  25538. },
  25539. frontclothed: {
  25540. height: math.unit(5 + 10 / 12, "feet"),
  25541. weight: math.unit(165, "lb"),
  25542. name: "Front-clothed",
  25543. image: {
  25544. source: "./media/characters/nicky/front-clothed.svg",
  25545. extra: 3184.9 / 2926.9,
  25546. bottom: 86.5 / 3239.9
  25547. }
  25548. },
  25549. foot: {
  25550. height: math.unit(1.16, "feet"),
  25551. name: "Foot",
  25552. image: {
  25553. source: "./media/characters/nicky/foot.svg"
  25554. }
  25555. },
  25556. feet: {
  25557. height: math.unit(1.34, "feet"),
  25558. name: "Feet",
  25559. image: {
  25560. source: "./media/characters/nicky/feet.svg"
  25561. }
  25562. },
  25563. maw: {
  25564. height: math.unit(0.9, "feet"),
  25565. name: "Maw",
  25566. image: {
  25567. source: "./media/characters/nicky/maw.svg"
  25568. }
  25569. },
  25570. },
  25571. [
  25572. {
  25573. name: "Normal",
  25574. height: math.unit(5 + 10 / 12, "feet"),
  25575. default: true
  25576. },
  25577. {
  25578. name: "Macro",
  25579. height: math.unit(60, "feet")
  25580. },
  25581. {
  25582. name: "Megamacro",
  25583. height: math.unit(1, "mile")
  25584. },
  25585. ]
  25586. ))
  25587. characterMakers.push(() => makeCharacter(
  25588. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25589. {
  25590. side: {
  25591. height: math.unit(10, "feet"),
  25592. weight: math.unit(600, "lb"),
  25593. name: "Side",
  25594. image: {
  25595. source: "./media/characters/blair/side.svg",
  25596. bottom: 16.6 / 475,
  25597. extra: 458 / 431
  25598. }
  25599. },
  25600. },
  25601. [
  25602. {
  25603. name: "Micro",
  25604. height: math.unit(8, "inches")
  25605. },
  25606. {
  25607. name: "Normal",
  25608. height: math.unit(10, "feet"),
  25609. default: true
  25610. },
  25611. {
  25612. name: "Macro",
  25613. height: math.unit(180, "feet")
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25619. {
  25620. front: {
  25621. height: math.unit(5 + 4 / 12, "feet"),
  25622. weight: math.unit(125, "lb"),
  25623. name: "Front",
  25624. image: {
  25625. source: "./media/characters/fisher/front.svg",
  25626. extra: 444 / 390,
  25627. bottom: 2 / 444.8
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Micro",
  25634. height: math.unit(4, "inches")
  25635. },
  25636. {
  25637. name: "Normal",
  25638. height: math.unit(5 + 4 / 12, "feet"),
  25639. default: true
  25640. },
  25641. {
  25642. name: "Macro",
  25643. height: math.unit(100, "feet")
  25644. },
  25645. ]
  25646. ))
  25647. characterMakers.push(() => makeCharacter(
  25648. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25649. {
  25650. front: {
  25651. height: math.unit(6.71, "feet"),
  25652. weight: math.unit(200, "lb"),
  25653. capacity: math.unit(1000000, "people"),
  25654. name: "Front",
  25655. image: {
  25656. source: "./media/characters/gliss/front.svg",
  25657. extra: 2347 / 2231,
  25658. bottom: 113 / 2462
  25659. }
  25660. },
  25661. hammerspaceSize: {
  25662. height: math.unit(6.71 * 717, "feet"),
  25663. weight: math.unit(200, "lb"),
  25664. capacity: math.unit(1000000, "people"),
  25665. name: "Hammerspace Size",
  25666. image: {
  25667. source: "./media/characters/gliss/front.svg",
  25668. extra: 2347 / 2231,
  25669. bottom: 113 / 2462
  25670. }
  25671. },
  25672. },
  25673. [
  25674. {
  25675. name: "Normal",
  25676. height: math.unit(6.71, "feet"),
  25677. default: true
  25678. },
  25679. ]
  25680. ))
  25681. characterMakers.push(() => makeCharacter(
  25682. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25683. {
  25684. side: {
  25685. height: math.unit(1.44, "m"),
  25686. weight: math.unit(80, "kg"),
  25687. name: "Side",
  25688. image: {
  25689. source: "./media/characters/dune-anderson/side.svg",
  25690. bottom: 49 / 1426
  25691. }
  25692. },
  25693. },
  25694. [
  25695. {
  25696. name: "Wolf-sized",
  25697. height: math.unit(1.44, "meters")
  25698. },
  25699. {
  25700. name: "Normal",
  25701. height: math.unit(5.05, "meters"),
  25702. default: true
  25703. },
  25704. {
  25705. name: "Big",
  25706. height: math.unit(14.4, "meters")
  25707. },
  25708. {
  25709. name: "Huge",
  25710. height: math.unit(144, "meters")
  25711. },
  25712. ]
  25713. ))
  25714. characterMakers.push(() => makeCharacter(
  25715. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25716. {
  25717. front: {
  25718. height: math.unit(7, "feet"),
  25719. weight: math.unit(425, "lb"),
  25720. name: "Front",
  25721. image: {
  25722. source: "./media/characters/hind/front.svg",
  25723. extra: 2091 / 1860,
  25724. bottom: 129 / 2220
  25725. }
  25726. },
  25727. back: {
  25728. height: math.unit(7, "feet"),
  25729. weight: math.unit(425, "lb"),
  25730. name: "Back",
  25731. image: {
  25732. source: "./media/characters/hind/back.svg",
  25733. extra: 2091 / 1860,
  25734. bottom: 24.6 / 2309
  25735. }
  25736. },
  25737. tail: {
  25738. height: math.unit(2.8, "feet"),
  25739. name: "Tail",
  25740. image: {
  25741. source: "./media/characters/hind/tail.svg"
  25742. }
  25743. },
  25744. head: {
  25745. height: math.unit(2.55, "feet"),
  25746. name: "Head",
  25747. image: {
  25748. source: "./media/characters/hind/head.svg"
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "XS",
  25755. height: math.unit(0.7, "feet")
  25756. },
  25757. {
  25758. name: "Normal",
  25759. height: math.unit(7, "feet"),
  25760. default: true
  25761. },
  25762. {
  25763. name: "XL",
  25764. height: math.unit(70, "feet")
  25765. },
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25770. {
  25771. front: {
  25772. height: math.unit(2.1, "meters"),
  25773. weight: math.unit(150, "lb"),
  25774. name: "Front",
  25775. image: {
  25776. source: "./media/characters/tharquench-sizestealer/front.svg",
  25777. extra: 1605/1470,
  25778. bottom: 36/1641
  25779. }
  25780. },
  25781. frontAlt: {
  25782. height: math.unit(2.1, "meters"),
  25783. weight: math.unit(150, "lb"),
  25784. name: "Front (Alt)",
  25785. image: {
  25786. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25787. extra: 2318 / 2063,
  25788. bottom: 93.4 / 2410
  25789. }
  25790. },
  25791. },
  25792. [
  25793. {
  25794. name: "Nano",
  25795. height: math.unit(1, "mm")
  25796. },
  25797. {
  25798. name: "Micro",
  25799. height: math.unit(1, "cm")
  25800. },
  25801. {
  25802. name: "Normal",
  25803. height: math.unit(2.1, "meters"),
  25804. default: true
  25805. },
  25806. ]
  25807. ))
  25808. characterMakers.push(() => makeCharacter(
  25809. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25810. {
  25811. front: {
  25812. height: math.unit(7 + 5 / 12, "feet"),
  25813. weight: math.unit(357, "lb"),
  25814. name: "Front",
  25815. image: {
  25816. source: "./media/characters/solex-draconov/front.svg",
  25817. extra: 1993 / 1865,
  25818. bottom: 117 / 2111
  25819. }
  25820. },
  25821. },
  25822. [
  25823. {
  25824. name: "Natural Height",
  25825. height: math.unit(7 + 5 / 12, "feet"),
  25826. default: true
  25827. },
  25828. {
  25829. name: "Macro",
  25830. height: math.unit(350, "feet")
  25831. },
  25832. {
  25833. name: "Macro+",
  25834. height: math.unit(1000, "feet")
  25835. },
  25836. {
  25837. name: "Megamacro",
  25838. height: math.unit(20, "km")
  25839. },
  25840. {
  25841. name: "Megamacro+",
  25842. height: math.unit(1000, "km")
  25843. },
  25844. {
  25845. name: "Gigamacro",
  25846. height: math.unit(2.5, "Gm")
  25847. },
  25848. {
  25849. name: "Teramacro",
  25850. height: math.unit(15, "Tm")
  25851. },
  25852. {
  25853. name: "Galactic",
  25854. height: math.unit(30, "Zm")
  25855. },
  25856. {
  25857. name: "Universal",
  25858. height: math.unit(21000, "Ym")
  25859. },
  25860. {
  25861. name: "Omniversal",
  25862. height: math.unit(9.861e50, "Ym")
  25863. },
  25864. {
  25865. name: "Existential",
  25866. height: math.unit(1e300, "meters")
  25867. },
  25868. ]
  25869. ))
  25870. characterMakers.push(() => makeCharacter(
  25871. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25872. {
  25873. side: {
  25874. height: math.unit(25, "feet"),
  25875. weight: math.unit(90000, "lb"),
  25876. name: "Side",
  25877. image: {
  25878. source: "./media/characters/mandarax/side.svg",
  25879. extra: 614 / 332,
  25880. bottom: 55 / 630
  25881. }
  25882. },
  25883. head: {
  25884. height: math.unit(11.4, "feet"),
  25885. name: "Head",
  25886. image: {
  25887. source: "./media/characters/mandarax/head.svg"
  25888. }
  25889. },
  25890. belly: {
  25891. height: math.unit(33, "feet"),
  25892. name: "Belly",
  25893. capacity: math.unit(500, "people"),
  25894. image: {
  25895. source: "./media/characters/mandarax/belly.svg"
  25896. }
  25897. },
  25898. dick: {
  25899. height: math.unit(8.46, "feet"),
  25900. name: "Dick",
  25901. image: {
  25902. source: "./media/characters/mandarax/dick.svg"
  25903. }
  25904. },
  25905. top: {
  25906. height: math.unit(28, "meters"),
  25907. name: "Top",
  25908. image: {
  25909. source: "./media/characters/mandarax/top.svg"
  25910. }
  25911. },
  25912. },
  25913. [
  25914. {
  25915. name: "Normal",
  25916. height: math.unit(25, "feet"),
  25917. default: true
  25918. },
  25919. ]
  25920. ))
  25921. characterMakers.push(() => makeCharacter(
  25922. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25923. {
  25924. front: {
  25925. height: math.unit(5, "feet"),
  25926. weight: math.unit(90, "lb"),
  25927. name: "Front",
  25928. image: {
  25929. source: "./media/characters/pixil/front.svg",
  25930. extra: 2000 / 1618,
  25931. bottom: 12.3 / 2011
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Normal",
  25938. height: math.unit(5, "feet"),
  25939. default: true
  25940. },
  25941. {
  25942. name: "Megamacro",
  25943. height: math.unit(10, "miles"),
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25949. {
  25950. front: {
  25951. height: math.unit(7 + 2 / 12, "feet"),
  25952. weight: math.unit(200, "lb"),
  25953. name: "Front",
  25954. image: {
  25955. source: "./media/characters/angel/front.svg",
  25956. extra: 1830 / 1737,
  25957. bottom: 22.6 / 1854,
  25958. }
  25959. },
  25960. },
  25961. [
  25962. {
  25963. name: "Normal",
  25964. height: math.unit(7 + 2 / 12, "feet"),
  25965. default: true
  25966. },
  25967. {
  25968. name: "Macro",
  25969. height: math.unit(1000, "feet")
  25970. },
  25971. {
  25972. name: "Megamacro",
  25973. height: math.unit(2, "miles")
  25974. },
  25975. {
  25976. name: "Gigamacro",
  25977. height: math.unit(20, "earths")
  25978. },
  25979. ]
  25980. ))
  25981. characterMakers.push(() => makeCharacter(
  25982. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25983. {
  25984. front: {
  25985. height: math.unit(5, "feet"),
  25986. weight: math.unit(180, "lb"),
  25987. name: "Front",
  25988. image: {
  25989. source: "./media/characters/mekana/front.svg",
  25990. extra: 1671 / 1605,
  25991. bottom: 3.5 / 1691
  25992. }
  25993. },
  25994. side: {
  25995. height: math.unit(5, "feet"),
  25996. weight: math.unit(180, "lb"),
  25997. name: "Side",
  25998. image: {
  25999. source: "./media/characters/mekana/side.svg",
  26000. extra: 1671 / 1605,
  26001. bottom: 3.5 / 1691
  26002. }
  26003. },
  26004. back: {
  26005. height: math.unit(5, "feet"),
  26006. weight: math.unit(180, "lb"),
  26007. name: "Back",
  26008. image: {
  26009. source: "./media/characters/mekana/back.svg",
  26010. extra: 1671 / 1605,
  26011. bottom: 3.5 / 1691
  26012. }
  26013. },
  26014. },
  26015. [
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(5, "feet"),
  26019. default: true
  26020. },
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26025. {
  26026. front: {
  26027. height: math.unit(4 + 6 / 12, "feet"),
  26028. weight: math.unit(80, "lb"),
  26029. name: "Front",
  26030. image: {
  26031. source: "./media/characters/pixie/front.svg",
  26032. extra: 1924 / 1825,
  26033. bottom: 22.4 / 1946
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Normal",
  26040. height: math.unit(4 + 6 / 12, "feet"),
  26041. default: true
  26042. },
  26043. {
  26044. name: "Macro",
  26045. height: math.unit(40, "feet")
  26046. },
  26047. ]
  26048. ))
  26049. characterMakers.push(() => makeCharacter(
  26050. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26051. {
  26052. front: {
  26053. height: math.unit(2.1, "meters"),
  26054. weight: math.unit(200, "lb"),
  26055. name: "Front",
  26056. image: {
  26057. source: "./media/characters/the-lascivious/front.svg",
  26058. extra: 1 / 0.893,
  26059. bottom: 3.5 / 573.7
  26060. }
  26061. },
  26062. },
  26063. [
  26064. {
  26065. name: "Human Scale",
  26066. height: math.unit(2.1, "meters")
  26067. },
  26068. {
  26069. name: "Wolxi Scale",
  26070. height: math.unit(46.2, "m"),
  26071. default: true
  26072. },
  26073. {
  26074. name: "Boinker of Buildings",
  26075. height: math.unit(10, "km")
  26076. },
  26077. {
  26078. name: "Shagger of Skyscrapers",
  26079. height: math.unit(40, "km")
  26080. },
  26081. {
  26082. name: "Banger of Boroughs",
  26083. height: math.unit(4000, "km")
  26084. },
  26085. {
  26086. name: "Screwer of States",
  26087. height: math.unit(100000, "km")
  26088. },
  26089. {
  26090. name: "Pounder of Planets",
  26091. height: math.unit(2000000, "km")
  26092. },
  26093. ]
  26094. ))
  26095. characterMakers.push(() => makeCharacter(
  26096. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26097. {
  26098. front: {
  26099. height: math.unit(6, "feet"),
  26100. weight: math.unit(150, "lb"),
  26101. name: "Front",
  26102. image: {
  26103. source: "./media/characters/aj/front.svg",
  26104. extra: 2039 / 1562,
  26105. bottom: 40 / 2079
  26106. }
  26107. },
  26108. },
  26109. [
  26110. {
  26111. name: "Normal",
  26112. height: math.unit(11 + 6 / 12, "feet"),
  26113. default: true
  26114. },
  26115. {
  26116. name: "Megamacro",
  26117. height: math.unit(60, "megameters")
  26118. },
  26119. ]
  26120. ))
  26121. characterMakers.push(() => makeCharacter(
  26122. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26123. {
  26124. side: {
  26125. height: math.unit(31 + 8 / 12, "feet"),
  26126. weight: math.unit(75000, "kg"),
  26127. name: "Side",
  26128. image: {
  26129. source: "./media/characters/koros/side.svg",
  26130. extra: 1442 / 1297,
  26131. bottom: 122.7 / 1562
  26132. }
  26133. },
  26134. dicksKingsCrown: {
  26135. height: math.unit(6, "feet"),
  26136. name: "Dicks (King's Crown)",
  26137. image: {
  26138. source: "./media/characters/koros/dicks-kings-crown.svg"
  26139. }
  26140. },
  26141. dicksTailSet: {
  26142. height: math.unit(3, "feet"),
  26143. name: "Dicks (Tail Set)",
  26144. image: {
  26145. source: "./media/characters/koros/dicks-tail-set.svg"
  26146. }
  26147. },
  26148. dickCumming: {
  26149. height: math.unit(7.98, "feet"),
  26150. name: "Dick (Cumming)",
  26151. image: {
  26152. source: "./media/characters/koros/dick-cumming.svg"
  26153. }
  26154. },
  26155. dicksBack: {
  26156. height: math.unit(5.9, "feet"),
  26157. name: "Dicks (Back)",
  26158. image: {
  26159. source: "./media/characters/koros/dicks-back.svg"
  26160. }
  26161. },
  26162. dicksFront: {
  26163. height: math.unit(3.72, "feet"),
  26164. name: "Dicks (Front)",
  26165. image: {
  26166. source: "./media/characters/koros/dicks-front.svg"
  26167. }
  26168. },
  26169. dicksPeeking: {
  26170. height: math.unit(3.0, "feet"),
  26171. name: "Dicks (Peeking)",
  26172. image: {
  26173. source: "./media/characters/koros/dicks-peeking.svg"
  26174. }
  26175. },
  26176. eye: {
  26177. height: math.unit(1.7, "feet"),
  26178. name: "Eye",
  26179. image: {
  26180. source: "./media/characters/koros/eye.svg"
  26181. }
  26182. },
  26183. headFront: {
  26184. height: math.unit(11.69, "feet"),
  26185. name: "Head (Front)",
  26186. image: {
  26187. source: "./media/characters/koros/head-front.svg"
  26188. }
  26189. },
  26190. headSide: {
  26191. height: math.unit(14, "feet"),
  26192. name: "Head (Side)",
  26193. image: {
  26194. source: "./media/characters/koros/head-side.svg"
  26195. }
  26196. },
  26197. leg: {
  26198. height: math.unit(17, "feet"),
  26199. name: "Leg",
  26200. image: {
  26201. source: "./media/characters/koros/leg.svg"
  26202. }
  26203. },
  26204. mawSide: {
  26205. height: math.unit(12.8, "feet"),
  26206. name: "Maw (Side)",
  26207. image: {
  26208. source: "./media/characters/koros/maw-side.svg"
  26209. }
  26210. },
  26211. mawSpitting: {
  26212. height: math.unit(17, "feet"),
  26213. name: "Maw (Spitting)",
  26214. image: {
  26215. source: "./media/characters/koros/maw-spitting.svg"
  26216. }
  26217. },
  26218. slit: {
  26219. height: math.unit(2.8, "feet"),
  26220. name: "Slit",
  26221. image: {
  26222. source: "./media/characters/koros/slit.svg"
  26223. }
  26224. },
  26225. stomach: {
  26226. height: math.unit(6.8, "feet"),
  26227. capacity: math.unit(20, "people"),
  26228. name: "Stomach",
  26229. image: {
  26230. source: "./media/characters/koros/stomach.svg"
  26231. }
  26232. },
  26233. wingspanBottom: {
  26234. height: math.unit(114, "feet"),
  26235. name: "Wingspan (Bottom)",
  26236. image: {
  26237. source: "./media/characters/koros/wingspan-bottom.svg"
  26238. }
  26239. },
  26240. wingspanTop: {
  26241. height: math.unit(104, "feet"),
  26242. name: "Wingspan (Top)",
  26243. image: {
  26244. source: "./media/characters/koros/wingspan-top.svg"
  26245. }
  26246. },
  26247. },
  26248. [
  26249. {
  26250. name: "Normal",
  26251. height: math.unit(31 + 8 / 12, "feet"),
  26252. default: true
  26253. },
  26254. ]
  26255. ))
  26256. characterMakers.push(() => makeCharacter(
  26257. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26258. {
  26259. front: {
  26260. height: math.unit(18 + 5 / 12, "feet"),
  26261. weight: math.unit(3750, "kg"),
  26262. name: "Front",
  26263. image: {
  26264. source: "./media/characters/vexx/front.svg",
  26265. extra: 426 / 396,
  26266. bottom: 31.5 / 458
  26267. }
  26268. },
  26269. maw: {
  26270. height: math.unit(6, "feet"),
  26271. name: "Maw",
  26272. image: {
  26273. source: "./media/characters/vexx/maw.svg"
  26274. }
  26275. },
  26276. },
  26277. [
  26278. {
  26279. name: "Normal",
  26280. height: math.unit(18 + 5 / 12, "feet"),
  26281. default: true
  26282. },
  26283. ]
  26284. ))
  26285. characterMakers.push(() => makeCharacter(
  26286. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26287. {
  26288. front: {
  26289. height: math.unit(17 + 6 / 12, "feet"),
  26290. weight: math.unit(150, "lb"),
  26291. name: "Front",
  26292. image: {
  26293. source: "./media/characters/baadra/front.svg",
  26294. extra: 1694/1553,
  26295. bottom: 179/1873
  26296. }
  26297. },
  26298. frontAlt: {
  26299. height: math.unit(17 + 6 / 12, "feet"),
  26300. weight: math.unit(150, "lb"),
  26301. name: "Front (Alt)",
  26302. image: {
  26303. source: "./media/characters/baadra/front-alt.svg",
  26304. extra: 3137 / 2890,
  26305. bottom: 168.4 / 3305
  26306. }
  26307. },
  26308. back: {
  26309. height: math.unit(17 + 6 / 12, "feet"),
  26310. weight: math.unit(150, "lb"),
  26311. name: "Back",
  26312. image: {
  26313. source: "./media/characters/baadra/back.svg",
  26314. extra: 3142 / 2890,
  26315. bottom: 220 / 3371
  26316. }
  26317. },
  26318. head: {
  26319. height: math.unit(5.45, "feet"),
  26320. name: "Head",
  26321. image: {
  26322. source: "./media/characters/baadra/head.svg"
  26323. }
  26324. },
  26325. headAngry: {
  26326. height: math.unit(4.95, "feet"),
  26327. name: "Head (Angry)",
  26328. image: {
  26329. source: "./media/characters/baadra/head-angry.svg"
  26330. }
  26331. },
  26332. headOpen: {
  26333. height: math.unit(6, "feet"),
  26334. name: "Head (Open)",
  26335. image: {
  26336. source: "./media/characters/baadra/head-open.svg"
  26337. }
  26338. },
  26339. },
  26340. [
  26341. {
  26342. name: "Normal",
  26343. height: math.unit(17 + 6 / 12, "feet"),
  26344. default: true
  26345. },
  26346. ]
  26347. ))
  26348. characterMakers.push(() => makeCharacter(
  26349. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26350. {
  26351. front: {
  26352. height: math.unit(7 + 3 / 12, "feet"),
  26353. weight: math.unit(180, "lb"),
  26354. name: "Front",
  26355. image: {
  26356. source: "./media/characters/juri/front.svg",
  26357. extra: 1401 / 1237,
  26358. bottom: 18.5 / 1418
  26359. }
  26360. },
  26361. side: {
  26362. height: math.unit(7 + 3 / 12, "feet"),
  26363. weight: math.unit(180, "lb"),
  26364. name: "Side",
  26365. image: {
  26366. source: "./media/characters/juri/side.svg",
  26367. extra: 1424 / 1242,
  26368. bottom: 18.5 / 1447
  26369. }
  26370. },
  26371. sitting: {
  26372. height: math.unit(6, "feet"),
  26373. weight: math.unit(180, "lb"),
  26374. name: "Sitting",
  26375. image: {
  26376. source: "./media/characters/juri/sitting.svg",
  26377. extra: 1270 / 1143,
  26378. bottom: 100 / 1343
  26379. }
  26380. },
  26381. back: {
  26382. height: math.unit(7 + 3 / 12, "feet"),
  26383. weight: math.unit(180, "lb"),
  26384. name: "Back",
  26385. image: {
  26386. source: "./media/characters/juri/back.svg",
  26387. extra: 1377 / 1240,
  26388. bottom: 23.7 / 1405
  26389. }
  26390. },
  26391. maw: {
  26392. height: math.unit(2.8, "feet"),
  26393. name: "Maw",
  26394. image: {
  26395. source: "./media/characters/juri/maw.svg"
  26396. }
  26397. },
  26398. stomach: {
  26399. height: math.unit(0.89, "feet"),
  26400. capacity: math.unit(4, "liters"),
  26401. name: "Stomach",
  26402. image: {
  26403. source: "./media/characters/juri/stomach.svg"
  26404. }
  26405. },
  26406. },
  26407. [
  26408. {
  26409. name: "Normal",
  26410. height: math.unit(7 + 3 / 12, "feet"),
  26411. default: true
  26412. },
  26413. ]
  26414. ))
  26415. characterMakers.push(() => makeCharacter(
  26416. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26417. {
  26418. fox: {
  26419. height: math.unit(5 + 6 / 12, "feet"),
  26420. weight: math.unit(140, "lb"),
  26421. name: "Fox",
  26422. image: {
  26423. source: "./media/characters/maxene-sita/fox.svg",
  26424. extra: 146 / 138,
  26425. bottom: 2.1 / 148.19
  26426. }
  26427. },
  26428. foxLaying: {
  26429. height: math.unit(1.70, "feet"),
  26430. weight: math.unit(140, "lb"),
  26431. name: "Fox (Laying)",
  26432. image: {
  26433. source: "./media/characters/maxene-sita/fox-laying.svg",
  26434. extra: 910 / 572,
  26435. bottom: 71 / 981
  26436. }
  26437. },
  26438. kitsune: {
  26439. height: math.unit(10, "feet"),
  26440. weight: math.unit(800, "lb"),
  26441. name: "Kitsune",
  26442. image: {
  26443. source: "./media/characters/maxene-sita/kitsune.svg",
  26444. extra: 185 / 176,
  26445. bottom: 4.7 / 189.9
  26446. }
  26447. },
  26448. hellhound: {
  26449. height: math.unit(10, "feet"),
  26450. weight: math.unit(700, "lb"),
  26451. name: "Hellhound",
  26452. image: {
  26453. source: "./media/characters/maxene-sita/hellhound.svg",
  26454. extra: 1600 / 1545,
  26455. bottom: 81 / 1681
  26456. }
  26457. },
  26458. },
  26459. [
  26460. {
  26461. name: "Normal",
  26462. height: math.unit(5 + 6 / 12, "feet"),
  26463. default: true
  26464. },
  26465. ]
  26466. ))
  26467. characterMakers.push(() => makeCharacter(
  26468. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26469. {
  26470. front: {
  26471. height: math.unit(3 + 4 / 12, "feet"),
  26472. weight: math.unit(70, "lb"),
  26473. name: "Front",
  26474. image: {
  26475. source: "./media/characters/maia/front.svg",
  26476. extra: 227 / 219.5,
  26477. bottom: 40 / 267
  26478. }
  26479. },
  26480. back: {
  26481. height: math.unit(3 + 4 / 12, "feet"),
  26482. weight: math.unit(70, "lb"),
  26483. name: "Back",
  26484. image: {
  26485. source: "./media/characters/maia/back.svg",
  26486. extra: 237 / 225
  26487. }
  26488. },
  26489. },
  26490. [
  26491. {
  26492. name: "Normal",
  26493. height: math.unit(3 + 4 / 12, "feet"),
  26494. default: true
  26495. },
  26496. ]
  26497. ))
  26498. characterMakers.push(() => makeCharacter(
  26499. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26500. {
  26501. front: {
  26502. height: math.unit(5 + 10 / 12, "feet"),
  26503. weight: math.unit(197, "lb"),
  26504. name: "Front",
  26505. image: {
  26506. source: "./media/characters/jabaro/front.svg",
  26507. extra: 225 / 216,
  26508. bottom: 5.06 / 230
  26509. }
  26510. },
  26511. back: {
  26512. height: math.unit(5 + 10 / 12, "feet"),
  26513. weight: math.unit(197, "lb"),
  26514. name: "Back",
  26515. image: {
  26516. source: "./media/characters/jabaro/back.svg",
  26517. extra: 225 / 219,
  26518. bottom: 1.9 / 227
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(5 + 10 / 12, "feet"),
  26526. default: true
  26527. },
  26528. ]
  26529. ))
  26530. characterMakers.push(() => makeCharacter(
  26531. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26532. {
  26533. front: {
  26534. height: math.unit(5 + 8 / 12, "feet"),
  26535. weight: math.unit(139, "lb"),
  26536. name: "Front",
  26537. image: {
  26538. source: "./media/characters/risa/front.svg",
  26539. extra: 270 / 260,
  26540. bottom: 11.2 / 282
  26541. }
  26542. },
  26543. back: {
  26544. height: math.unit(5 + 8 / 12, "feet"),
  26545. weight: math.unit(139, "lb"),
  26546. name: "Back",
  26547. image: {
  26548. source: "./media/characters/risa/back.svg",
  26549. extra: 264 / 255,
  26550. bottom: 4 / 268
  26551. }
  26552. },
  26553. },
  26554. [
  26555. {
  26556. name: "Normal",
  26557. height: math.unit(5 + 8 / 12, "feet"),
  26558. default: true
  26559. },
  26560. ]
  26561. ))
  26562. characterMakers.push(() => makeCharacter(
  26563. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26564. {
  26565. front: {
  26566. height: math.unit(2 + 11 / 12, "feet"),
  26567. weight: math.unit(30, "lb"),
  26568. name: "Front",
  26569. image: {
  26570. source: "./media/characters/weatley/front.svg",
  26571. bottom: 10.7 / 414,
  26572. extra: 403.5 / 362
  26573. }
  26574. },
  26575. back: {
  26576. height: math.unit(2 + 11 / 12, "feet"),
  26577. weight: math.unit(30, "lb"),
  26578. name: "Back",
  26579. image: {
  26580. source: "./media/characters/weatley/back.svg",
  26581. bottom: 10.7 / 414,
  26582. extra: 403.5 / 362
  26583. }
  26584. },
  26585. },
  26586. [
  26587. {
  26588. name: "Normal",
  26589. height: math.unit(2 + 11 / 12, "feet"),
  26590. default: true
  26591. },
  26592. ]
  26593. ))
  26594. characterMakers.push(() => makeCharacter(
  26595. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26596. {
  26597. front: {
  26598. height: math.unit(5 + 2 / 12, "feet"),
  26599. weight: math.unit(50, "kg"),
  26600. name: "Front",
  26601. image: {
  26602. source: "./media/characters/mercury-crescent/front.svg",
  26603. extra: 1088 / 1033,
  26604. bottom: 18.9 / 1109
  26605. }
  26606. },
  26607. },
  26608. [
  26609. {
  26610. name: "Normal",
  26611. height: math.unit(5 + 2 / 12, "feet"),
  26612. default: true
  26613. },
  26614. ]
  26615. ))
  26616. characterMakers.push(() => makeCharacter(
  26617. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26618. {
  26619. front: {
  26620. height: math.unit(2, "feet"),
  26621. weight: math.unit(15, "kg"),
  26622. name: "Front",
  26623. image: {
  26624. source: "./media/characters/diamond-jones/front.svg",
  26625. extra: 727/723,
  26626. bottom: 46/773
  26627. }
  26628. },
  26629. },
  26630. [
  26631. {
  26632. name: "Normal",
  26633. height: math.unit(2, "feet"),
  26634. default: true
  26635. },
  26636. ]
  26637. ))
  26638. characterMakers.push(() => makeCharacter(
  26639. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26640. {
  26641. front: {
  26642. height: math.unit(3, "feet"),
  26643. weight: math.unit(30, "kg"),
  26644. name: "Front",
  26645. image: {
  26646. source: "./media/characters/sweet-bit/front.svg",
  26647. extra: 675 / 567,
  26648. bottom: 27.7 / 703
  26649. }
  26650. },
  26651. },
  26652. [
  26653. {
  26654. name: "Normal",
  26655. height: math.unit(3, "feet"),
  26656. default: true
  26657. },
  26658. ]
  26659. ))
  26660. characterMakers.push(() => makeCharacter(
  26661. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26662. {
  26663. side: {
  26664. height: math.unit(9.178, "feet"),
  26665. weight: math.unit(500, "lb"),
  26666. name: "Side",
  26667. image: {
  26668. source: "./media/characters/umbrazen/side.svg",
  26669. extra: 1730 / 1473,
  26670. bottom: 34.6 / 1765
  26671. }
  26672. },
  26673. },
  26674. [
  26675. {
  26676. name: "Normal",
  26677. height: math.unit(9.178, "feet"),
  26678. default: true
  26679. },
  26680. ]
  26681. ))
  26682. characterMakers.push(() => makeCharacter(
  26683. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26684. {
  26685. front: {
  26686. height: math.unit(10, "feet"),
  26687. weight: math.unit(750, "lb"),
  26688. name: "Front",
  26689. image: {
  26690. source: "./media/characters/arlist/front.svg",
  26691. extra: 961 / 778,
  26692. bottom: 6.2 / 986
  26693. }
  26694. },
  26695. },
  26696. [
  26697. {
  26698. name: "Normal",
  26699. height: math.unit(10, "feet"),
  26700. default: true
  26701. },
  26702. ]
  26703. ))
  26704. characterMakers.push(() => makeCharacter(
  26705. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26706. {
  26707. front: {
  26708. height: math.unit(5 + 1 / 12, "feet"),
  26709. weight: math.unit(110, "lb"),
  26710. name: "Front",
  26711. image: {
  26712. source: "./media/characters/aradel/front.svg",
  26713. extra: 324 / 303,
  26714. bottom: 3.6 / 329.4
  26715. }
  26716. },
  26717. },
  26718. [
  26719. {
  26720. name: "Normal",
  26721. height: math.unit(5 + 1 / 12, "feet"),
  26722. default: true
  26723. },
  26724. ]
  26725. ))
  26726. characterMakers.push(() => makeCharacter(
  26727. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26728. {
  26729. dressed: {
  26730. height: math.unit(3 + 8 / 12, "feet"),
  26731. weight: math.unit(50, "lb"),
  26732. name: "Dressed",
  26733. image: {
  26734. source: "./media/characters/serryn/dressed.svg",
  26735. extra: 1792 / 1656,
  26736. bottom: 43.5 / 1840
  26737. }
  26738. },
  26739. nude: {
  26740. height: math.unit(3 + 8 / 12, "feet"),
  26741. weight: math.unit(50, "lb"),
  26742. name: "Nude",
  26743. image: {
  26744. source: "./media/characters/serryn/nude.svg",
  26745. extra: 1792 / 1656,
  26746. bottom: 43.5 / 1840
  26747. }
  26748. },
  26749. },
  26750. [
  26751. {
  26752. name: "Normal",
  26753. height: math.unit(3 + 8 / 12, "feet"),
  26754. default: true
  26755. },
  26756. ]
  26757. ))
  26758. characterMakers.push(() => makeCharacter(
  26759. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26760. {
  26761. front: {
  26762. height: math.unit(7 + 10 / 12, "feet"),
  26763. weight: math.unit(255, "lb"),
  26764. name: "Front",
  26765. image: {
  26766. source: "./media/characters/xavier-thyme/front.svg",
  26767. extra: 3733 / 3642,
  26768. bottom: 131 / 3869
  26769. }
  26770. },
  26771. frontRaven: {
  26772. height: math.unit(7 + 10 / 12, "feet"),
  26773. weight: math.unit(255, "lb"),
  26774. name: "Front (Raven)",
  26775. image: {
  26776. source: "./media/characters/xavier-thyme/front-raven.svg",
  26777. extra: 4385 / 3642,
  26778. bottom: 131 / 4517
  26779. }
  26780. },
  26781. },
  26782. [
  26783. {
  26784. name: "Normal",
  26785. height: math.unit(7 + 10 / 12, "feet"),
  26786. default: true
  26787. },
  26788. ]
  26789. ))
  26790. characterMakers.push(() => makeCharacter(
  26791. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26792. {
  26793. front: {
  26794. height: math.unit(1.6, "m"),
  26795. weight: math.unit(50, "kg"),
  26796. name: "Front",
  26797. image: {
  26798. source: "./media/characters/kiki/front.svg",
  26799. extra: 4682 / 3610,
  26800. bottom: 115 / 4777
  26801. }
  26802. },
  26803. },
  26804. [
  26805. {
  26806. name: "Normal",
  26807. height: math.unit(1.6, "meters"),
  26808. default: true
  26809. },
  26810. ]
  26811. ))
  26812. characterMakers.push(() => makeCharacter(
  26813. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26814. {
  26815. front: {
  26816. height: math.unit(50, "m"),
  26817. weight: math.unit(500, "tonnes"),
  26818. name: "Front",
  26819. image: {
  26820. source: "./media/characters/ryoko/front.svg",
  26821. extra: 4632 / 3926,
  26822. bottom: 193 / 4823
  26823. }
  26824. },
  26825. },
  26826. [
  26827. {
  26828. name: "Normal",
  26829. height: math.unit(50, "meters"),
  26830. default: true
  26831. },
  26832. ]
  26833. ))
  26834. characterMakers.push(() => makeCharacter(
  26835. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26836. {
  26837. front: {
  26838. height: math.unit(30, "m"),
  26839. weight: math.unit(22, "tonnes"),
  26840. name: "Front",
  26841. image: {
  26842. source: "./media/characters/elio/front.svg",
  26843. extra: 4582 / 3720,
  26844. bottom: 236 / 4828
  26845. }
  26846. },
  26847. },
  26848. [
  26849. {
  26850. name: "Normal",
  26851. height: math.unit(30, "meters"),
  26852. default: true
  26853. },
  26854. ]
  26855. ))
  26856. characterMakers.push(() => makeCharacter(
  26857. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26858. {
  26859. front: {
  26860. height: math.unit(6 + 3 / 12, "feet"),
  26861. weight: math.unit(120, "lb"),
  26862. name: "Front",
  26863. image: {
  26864. source: "./media/characters/azura/front.svg",
  26865. extra: 1149 / 1135,
  26866. bottom: 45 / 1194
  26867. }
  26868. },
  26869. frontClothed: {
  26870. height: math.unit(6 + 3 / 12, "feet"),
  26871. weight: math.unit(120, "lb"),
  26872. name: "Front (Clothed)",
  26873. image: {
  26874. source: "./media/characters/azura/front-clothed.svg",
  26875. extra: 1149 / 1135,
  26876. bottom: 45 / 1194
  26877. }
  26878. },
  26879. },
  26880. [
  26881. {
  26882. name: "Normal",
  26883. height: math.unit(6 + 3 / 12, "feet"),
  26884. default: true
  26885. },
  26886. {
  26887. name: "Macro",
  26888. height: math.unit(20 + 6 / 12, "feet")
  26889. },
  26890. {
  26891. name: "Megamacro",
  26892. height: math.unit(12, "miles")
  26893. },
  26894. {
  26895. name: "Gigamacro",
  26896. height: math.unit(10000, "miles")
  26897. },
  26898. {
  26899. name: "Teramacro",
  26900. height: math.unit(900000, "miles")
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26906. {
  26907. front: {
  26908. height: math.unit(12, "feet"),
  26909. weight: math.unit(1, "ton"),
  26910. capacity: math.unit(660000, "gallons"),
  26911. name: "Front",
  26912. image: {
  26913. source: "./media/characters/zeus/front.svg",
  26914. extra: 5005 / 4717,
  26915. bottom: 363 / 5388
  26916. }
  26917. },
  26918. },
  26919. [
  26920. {
  26921. name: "Normal",
  26922. height: math.unit(12, "feet")
  26923. },
  26924. {
  26925. name: "Preferred Size",
  26926. height: math.unit(0.5, "miles"),
  26927. default: true
  26928. },
  26929. {
  26930. name: "Giga Horse",
  26931. height: math.unit(300, "miles")
  26932. },
  26933. {
  26934. name: "Riding Planets",
  26935. height: math.unit(30, "megameters")
  26936. },
  26937. {
  26938. name: "Cosmic Giant",
  26939. height: math.unit(3, "zettameters")
  26940. },
  26941. {
  26942. name: "Breeding God",
  26943. height: math.unit(9.92e22, "yottameters")
  26944. },
  26945. ]
  26946. ))
  26947. characterMakers.push(() => makeCharacter(
  26948. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26949. {
  26950. side: {
  26951. height: math.unit(9, "feet"),
  26952. weight: math.unit(1500, "kg"),
  26953. name: "Side",
  26954. image: {
  26955. source: "./media/characters/fang/side.svg",
  26956. extra: 924 / 866,
  26957. bottom: 47.5 / 972.3
  26958. }
  26959. },
  26960. },
  26961. [
  26962. {
  26963. name: "Normal",
  26964. height: math.unit(9, "feet"),
  26965. default: true
  26966. },
  26967. {
  26968. name: "Macro",
  26969. height: math.unit(75 + 6 / 12, "feet")
  26970. },
  26971. {
  26972. name: "Teramacro",
  26973. height: math.unit(50000, "miles")
  26974. },
  26975. ]
  26976. ))
  26977. characterMakers.push(() => makeCharacter(
  26978. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26979. {
  26980. front: {
  26981. height: math.unit(10, "feet"),
  26982. weight: math.unit(2, "tons"),
  26983. name: "Front",
  26984. image: {
  26985. source: "./media/characters/rekhit/front.svg",
  26986. extra: 2796 / 2590,
  26987. bottom: 225 / 3022
  26988. }
  26989. },
  26990. },
  26991. [
  26992. {
  26993. name: "Normal",
  26994. height: math.unit(10, "feet"),
  26995. default: true
  26996. },
  26997. {
  26998. name: "Macro",
  26999. height: math.unit(500, "feet")
  27000. },
  27001. ]
  27002. ))
  27003. characterMakers.push(() => makeCharacter(
  27004. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27005. {
  27006. front: {
  27007. height: math.unit(7 + 6.451 / 12, "feet"),
  27008. weight: math.unit(310, "lb"),
  27009. name: "Front",
  27010. image: {
  27011. source: "./media/characters/dahlia-verrick/front.svg",
  27012. extra: 1488 / 1365,
  27013. bottom: 6.2 / 1495
  27014. }
  27015. },
  27016. back: {
  27017. height: math.unit(7 + 6.451 / 12, "feet"),
  27018. weight: math.unit(310, "lb"),
  27019. name: "Back",
  27020. image: {
  27021. source: "./media/characters/dahlia-verrick/back.svg",
  27022. extra: 1472 / 1351,
  27023. bottom: 5.28 / 1477
  27024. }
  27025. },
  27026. frontBusiness: {
  27027. height: math.unit(7 + 6.451 / 12, "feet"),
  27028. weight: math.unit(200, "lb"),
  27029. name: "Front (Business)",
  27030. image: {
  27031. source: "./media/characters/dahlia-verrick/front-business.svg",
  27032. extra: 1478 / 1381,
  27033. bottom: 5.5 / 1484
  27034. }
  27035. },
  27036. frontCasual: {
  27037. height: math.unit(7 + 6.451 / 12, "feet"),
  27038. weight: math.unit(200, "lb"),
  27039. name: "Front (Casual)",
  27040. image: {
  27041. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27042. extra: 1478 / 1381,
  27043. bottom: 5.5 / 1484
  27044. }
  27045. },
  27046. },
  27047. [
  27048. {
  27049. name: "Travel-Sized",
  27050. height: math.unit(7.45, "inches")
  27051. },
  27052. {
  27053. name: "Normal",
  27054. height: math.unit(7 + 6.451 / 12, "feet"),
  27055. default: true
  27056. },
  27057. {
  27058. name: "Hitting the Town",
  27059. height: math.unit(37 + 8 / 12, "feet")
  27060. },
  27061. {
  27062. name: "Stomp in the Suburbs",
  27063. height: math.unit(964 + 9.728 / 12, "feet")
  27064. },
  27065. {
  27066. name: "Sit on the City",
  27067. height: math.unit(61747 + 10.592 / 12, "feet")
  27068. },
  27069. {
  27070. name: "Glomp the Globe",
  27071. height: math.unit(252919327 + 4.832 / 12, "feet")
  27072. },
  27073. ]
  27074. ))
  27075. characterMakers.push(() => makeCharacter(
  27076. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27077. {
  27078. front: {
  27079. height: math.unit(6 + 4 / 12, "feet"),
  27080. weight: math.unit(320, "lb"),
  27081. name: "Front",
  27082. image: {
  27083. source: "./media/characters/balina-mahigan/front.svg",
  27084. extra: 447 / 428,
  27085. bottom: 18 / 466
  27086. }
  27087. },
  27088. back: {
  27089. height: math.unit(6 + 4 / 12, "feet"),
  27090. weight: math.unit(320, "lb"),
  27091. name: "Back",
  27092. image: {
  27093. source: "./media/characters/balina-mahigan/back.svg",
  27094. extra: 445 / 428,
  27095. bottom: 4.07 / 448
  27096. }
  27097. },
  27098. arm: {
  27099. height: math.unit(1.88, "feet"),
  27100. name: "Arm",
  27101. image: {
  27102. source: "./media/characters/balina-mahigan/arm.svg"
  27103. }
  27104. },
  27105. backPort: {
  27106. height: math.unit(0.685, "feet"),
  27107. name: "Back Port",
  27108. image: {
  27109. source: "./media/characters/balina-mahigan/back-port.svg"
  27110. }
  27111. },
  27112. hoofpaw: {
  27113. height: math.unit(1.41, "feet"),
  27114. name: "Hoofpaw",
  27115. image: {
  27116. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27117. }
  27118. },
  27119. leftHandBack: {
  27120. height: math.unit(0.938, "feet"),
  27121. name: "Left Hand (Back)",
  27122. image: {
  27123. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27124. }
  27125. },
  27126. leftHandFront: {
  27127. height: math.unit(0.938, "feet"),
  27128. name: "Left Hand (Front)",
  27129. image: {
  27130. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27131. }
  27132. },
  27133. rightHandBack: {
  27134. height: math.unit(0.95, "feet"),
  27135. name: "Right Hand (Back)",
  27136. image: {
  27137. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27138. }
  27139. },
  27140. rightHandFront: {
  27141. height: math.unit(0.95, "feet"),
  27142. name: "Right Hand (Front)",
  27143. image: {
  27144. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27145. }
  27146. },
  27147. },
  27148. [
  27149. {
  27150. name: "Normal",
  27151. height: math.unit(6 + 4 / 12, "feet"),
  27152. default: true
  27153. },
  27154. ]
  27155. ))
  27156. characterMakers.push(() => makeCharacter(
  27157. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27158. {
  27159. front: {
  27160. height: math.unit(6, "feet"),
  27161. weight: math.unit(320, "lb"),
  27162. name: "Front",
  27163. image: {
  27164. source: "./media/characters/balina-mejeri/front.svg",
  27165. extra: 517 / 488,
  27166. bottom: 44.2 / 561
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Normal",
  27173. height: math.unit(6 + 4 / 12, "feet")
  27174. },
  27175. {
  27176. name: "Business",
  27177. height: math.unit(155, "feet"),
  27178. default: true
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27184. {
  27185. kneeling: {
  27186. height: math.unit(6 + 4 / 12, "feet"),
  27187. weight: math.unit(300 * 20, "lb"),
  27188. name: "Kneeling",
  27189. image: {
  27190. source: "./media/characters/balbarian/kneeling.svg",
  27191. extra: 922 / 862,
  27192. bottom: 42.4 / 965
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(6 + 4 / 12, "feet")
  27200. },
  27201. {
  27202. name: "Treasured",
  27203. height: math.unit(18 + 9 / 12, "feet"),
  27204. default: true
  27205. },
  27206. {
  27207. name: "Macro",
  27208. height: math.unit(900, "feet")
  27209. },
  27210. ]
  27211. ))
  27212. characterMakers.push(() => makeCharacter(
  27213. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27214. {
  27215. front: {
  27216. height: math.unit(6 + 4 / 12, "feet"),
  27217. weight: math.unit(325, "lb"),
  27218. name: "Front",
  27219. image: {
  27220. source: "./media/characters/balina-amarini/front.svg",
  27221. extra: 415 / 403,
  27222. bottom: 19 / 433.4
  27223. }
  27224. },
  27225. back: {
  27226. height: math.unit(6 + 4 / 12, "feet"),
  27227. weight: math.unit(325, "lb"),
  27228. name: "Back",
  27229. image: {
  27230. source: "./media/characters/balina-amarini/back.svg",
  27231. extra: 415 / 403,
  27232. bottom: 13.5 / 432
  27233. }
  27234. },
  27235. overdrive: {
  27236. height: math.unit(6 + 4 / 12, "feet"),
  27237. weight: math.unit(400, "lb"),
  27238. name: "Overdrive",
  27239. image: {
  27240. source: "./media/characters/balina-amarini/overdrive.svg",
  27241. extra: 269 / 259,
  27242. bottom: 12 / 282
  27243. }
  27244. },
  27245. },
  27246. [
  27247. {
  27248. name: "Boom",
  27249. height: math.unit(9 + 10 / 12, "feet"),
  27250. default: true
  27251. },
  27252. {
  27253. name: "Macro",
  27254. height: math.unit(280, "feet")
  27255. },
  27256. ]
  27257. ))
  27258. characterMakers.push(() => makeCharacter(
  27259. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27260. {
  27261. goddess: {
  27262. height: math.unit(600, "feet"),
  27263. weight: math.unit(2000000, "tons"),
  27264. name: "Goddess",
  27265. image: {
  27266. source: "./media/characters/lady-kubwa/goddess.svg",
  27267. extra: 1240.5 / 1223,
  27268. bottom: 22 / 1263
  27269. }
  27270. },
  27271. goddesser: {
  27272. height: math.unit(900, "feet"),
  27273. weight: math.unit(20000000, "lb"),
  27274. name: "Goddess-er",
  27275. image: {
  27276. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27277. extra: 899 / 888,
  27278. bottom: 12.6 / 912
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Macro",
  27285. height: math.unit(600, "feet"),
  27286. default: true
  27287. },
  27288. {
  27289. name: "Megamacro",
  27290. height: math.unit(250, "miles")
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27296. {
  27297. front: {
  27298. height: math.unit(7 + 7 / 12, "feet"),
  27299. weight: math.unit(250, "lb"),
  27300. name: "Front",
  27301. image: {
  27302. source: "./media/characters/tala-grovehorn/front.svg",
  27303. extra: 2636 / 2525,
  27304. bottom: 147 / 2781
  27305. }
  27306. },
  27307. back: {
  27308. height: math.unit(7 + 7 / 12, "feet"),
  27309. weight: math.unit(250, "lb"),
  27310. name: "Back",
  27311. image: {
  27312. source: "./media/characters/tala-grovehorn/back.svg",
  27313. extra: 2635 / 2539,
  27314. bottom: 100 / 2732.8
  27315. }
  27316. },
  27317. mouth: {
  27318. height: math.unit(1.15, "feet"),
  27319. name: "Mouth",
  27320. image: {
  27321. source: "./media/characters/tala-grovehorn/mouth.svg"
  27322. }
  27323. },
  27324. dick: {
  27325. height: math.unit(2.36, "feet"),
  27326. name: "Dick",
  27327. image: {
  27328. source: "./media/characters/tala-grovehorn/dick.svg"
  27329. }
  27330. },
  27331. slit: {
  27332. height: math.unit(0.61, "feet"),
  27333. name: "Slit",
  27334. image: {
  27335. source: "./media/characters/tala-grovehorn/slit.svg"
  27336. }
  27337. },
  27338. },
  27339. [
  27340. ]
  27341. ))
  27342. characterMakers.push(() => makeCharacter(
  27343. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27344. {
  27345. front: {
  27346. height: math.unit(7 + 7 / 12, "feet"),
  27347. weight: math.unit(225, "lb"),
  27348. name: "Front",
  27349. image: {
  27350. source: "./media/characters/epona/front.svg",
  27351. extra: 2445 / 2290,
  27352. bottom: 251 / 2696
  27353. }
  27354. },
  27355. back: {
  27356. height: math.unit(7 + 7 / 12, "feet"),
  27357. weight: math.unit(225, "lb"),
  27358. name: "Back",
  27359. image: {
  27360. source: "./media/characters/epona/back.svg",
  27361. extra: 2546 / 2408,
  27362. bottom: 44 / 2589
  27363. }
  27364. },
  27365. genitals: {
  27366. height: math.unit(1.5, "feet"),
  27367. name: "Genitals",
  27368. image: {
  27369. source: "./media/characters/epona/genitals.svg"
  27370. }
  27371. },
  27372. },
  27373. [
  27374. {
  27375. name: "Normal",
  27376. height: math.unit(7 + 7 / 12, "feet"),
  27377. default: true
  27378. },
  27379. ]
  27380. ))
  27381. characterMakers.push(() => makeCharacter(
  27382. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27383. {
  27384. front: {
  27385. height: math.unit(7, "feet"),
  27386. weight: math.unit(518, "lb"),
  27387. name: "Front",
  27388. image: {
  27389. source: "./media/characters/avia-bloodbourn/front.svg",
  27390. extra: 1466 / 1350,
  27391. bottom: 65 / 1527
  27392. }
  27393. },
  27394. },
  27395. [
  27396. ]
  27397. ))
  27398. characterMakers.push(() => makeCharacter(
  27399. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27400. {
  27401. front: {
  27402. height: math.unit(9.35, "feet"),
  27403. weight: math.unit(600, "lb"),
  27404. name: "Front",
  27405. image: {
  27406. source: "./media/characters/amera/front.svg",
  27407. extra: 891 / 818,
  27408. bottom: 30 / 922.7
  27409. }
  27410. },
  27411. back: {
  27412. height: math.unit(9.35, "feet"),
  27413. weight: math.unit(600, "lb"),
  27414. name: "Back",
  27415. image: {
  27416. source: "./media/characters/amera/back.svg",
  27417. extra: 876 / 824,
  27418. bottom: 6.8 / 884
  27419. }
  27420. },
  27421. dick: {
  27422. height: math.unit(2.14, "feet"),
  27423. name: "Dick",
  27424. image: {
  27425. source: "./media/characters/amera/dick.svg"
  27426. }
  27427. },
  27428. },
  27429. [
  27430. {
  27431. name: "Normal",
  27432. height: math.unit(9.35, "feet"),
  27433. default: true
  27434. },
  27435. ]
  27436. ))
  27437. characterMakers.push(() => makeCharacter(
  27438. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27439. {
  27440. kneeling: {
  27441. height: math.unit(3 + 4 / 12, "feet"),
  27442. weight: math.unit(90, "lb"),
  27443. name: "Kneeling",
  27444. image: {
  27445. source: "./media/characters/rosewen/kneeling.svg",
  27446. extra: 1835 / 1571,
  27447. bottom: 27.7 / 1862
  27448. }
  27449. },
  27450. },
  27451. [
  27452. {
  27453. name: "Normal",
  27454. height: math.unit(3 + 4 / 12, "feet"),
  27455. default: true
  27456. },
  27457. ]
  27458. ))
  27459. characterMakers.push(() => makeCharacter(
  27460. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27461. {
  27462. front: {
  27463. height: math.unit(5 + 10 / 12, "feet"),
  27464. weight: math.unit(200, "lb"),
  27465. name: "Front",
  27466. image: {
  27467. source: "./media/characters/sabah/front.svg",
  27468. extra: 849 / 763,
  27469. bottom: 33.9 / 881
  27470. }
  27471. },
  27472. },
  27473. [
  27474. {
  27475. name: "Normal",
  27476. height: math.unit(5 + 10 / 12, "feet"),
  27477. default: true
  27478. },
  27479. ]
  27480. ))
  27481. characterMakers.push(() => makeCharacter(
  27482. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27483. {
  27484. front: {
  27485. height: math.unit(3 + 5 / 12, "feet"),
  27486. weight: math.unit(40, "kg"),
  27487. name: "Front",
  27488. image: {
  27489. source: "./media/characters/purple-flame/front.svg",
  27490. extra: 1577 / 1412,
  27491. bottom: 97 / 1694
  27492. }
  27493. },
  27494. frontDressed: {
  27495. height: math.unit(3 + 5 / 12, "feet"),
  27496. weight: math.unit(40, "kg"),
  27497. name: "Front (Dressed)",
  27498. image: {
  27499. source: "./media/characters/purple-flame/front-dressed.svg",
  27500. extra: 1577 / 1412,
  27501. bottom: 97 / 1694
  27502. }
  27503. },
  27504. headphones: {
  27505. height: math.unit(0.85, "feet"),
  27506. name: "Headphones",
  27507. image: {
  27508. source: "./media/characters/purple-flame/headphones.svg"
  27509. }
  27510. },
  27511. },
  27512. [
  27513. {
  27514. name: "Really Small",
  27515. height: math.unit(5, "cm")
  27516. },
  27517. {
  27518. name: "Micro",
  27519. height: math.unit(1 + 5 / 12, "feet")
  27520. },
  27521. {
  27522. name: "Normal",
  27523. height: math.unit(3 + 5 / 12, "feet"),
  27524. default: true
  27525. },
  27526. {
  27527. name: "Minimacro",
  27528. height: math.unit(125, "feet")
  27529. },
  27530. {
  27531. name: "Macro",
  27532. height: math.unit(0.5, "miles")
  27533. },
  27534. {
  27535. name: "Megamacro",
  27536. height: math.unit(50, "miles")
  27537. },
  27538. {
  27539. name: "Gigantic",
  27540. height: math.unit(750, "miles")
  27541. },
  27542. {
  27543. name: "Planetary",
  27544. height: math.unit(15000, "miles")
  27545. },
  27546. ]
  27547. ))
  27548. characterMakers.push(() => makeCharacter(
  27549. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27550. {
  27551. front: {
  27552. height: math.unit(14, "feet"),
  27553. weight: math.unit(959, "lb"),
  27554. name: "Front",
  27555. image: {
  27556. source: "./media/characters/arsenal/front.svg",
  27557. extra: 2357 / 2157,
  27558. bottom: 93 / 2458
  27559. }
  27560. },
  27561. },
  27562. [
  27563. {
  27564. name: "Normal",
  27565. height: math.unit(14, "feet"),
  27566. default: true
  27567. },
  27568. ]
  27569. ))
  27570. characterMakers.push(() => makeCharacter(
  27571. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27572. {
  27573. front: {
  27574. height: math.unit(6, "feet"),
  27575. weight: math.unit(150, "lb"),
  27576. name: "Front",
  27577. image: {
  27578. source: "./media/characters/adira/front.svg",
  27579. extra: 1078 / 1029,
  27580. bottom: 87 / 1166
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Micro",
  27587. height: math.unit(4, "inches"),
  27588. default: true
  27589. },
  27590. {
  27591. name: "Macro",
  27592. height: math.unit(50, "feet")
  27593. },
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27598. {
  27599. front: {
  27600. height: math.unit(16, "feet"),
  27601. weight: math.unit(1000, "lb"),
  27602. name: "Front",
  27603. image: {
  27604. source: "./media/characters/grim/front.svg",
  27605. extra: 622 / 614,
  27606. bottom: 18.1 / 642
  27607. }
  27608. },
  27609. back: {
  27610. height: math.unit(16, "feet"),
  27611. weight: math.unit(1000, "lb"),
  27612. name: "Back",
  27613. image: {
  27614. source: "./media/characters/grim/back.svg",
  27615. extra: 610.6 / 602,
  27616. bottom: 40.8 / 652
  27617. }
  27618. },
  27619. hunched: {
  27620. height: math.unit(9.75, "feet"),
  27621. weight: math.unit(1000, "lb"),
  27622. name: "Hunched",
  27623. image: {
  27624. source: "./media/characters/grim/hunched.svg",
  27625. extra: 304 / 297,
  27626. bottom: 35.4 / 394
  27627. }
  27628. },
  27629. },
  27630. [
  27631. {
  27632. name: "Normal",
  27633. height: math.unit(16, "feet"),
  27634. default: true
  27635. },
  27636. ]
  27637. ))
  27638. characterMakers.push(() => makeCharacter(
  27639. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27640. {
  27641. front: {
  27642. height: math.unit(2.3, "meters"),
  27643. weight: math.unit(300, "lb"),
  27644. name: "Front",
  27645. image: {
  27646. source: "./media/characters/sinja/front-sfw.svg",
  27647. extra: 1393 / 1294,
  27648. bottom: 70 / 1463
  27649. }
  27650. },
  27651. frontNsfw: {
  27652. height: math.unit(2.3, "meters"),
  27653. weight: math.unit(300, "lb"),
  27654. name: "Front (NSFW)",
  27655. image: {
  27656. source: "./media/characters/sinja/front-nsfw.svg",
  27657. extra: 1393 / 1294,
  27658. bottom: 70 / 1463
  27659. }
  27660. },
  27661. back: {
  27662. height: math.unit(2.3, "meters"),
  27663. weight: math.unit(300, "lb"),
  27664. name: "Back",
  27665. image: {
  27666. source: "./media/characters/sinja/back.svg",
  27667. extra: 1393 / 1294,
  27668. bottom: 70 / 1463
  27669. }
  27670. },
  27671. head: {
  27672. height: math.unit(1.771, "feet"),
  27673. name: "Head",
  27674. image: {
  27675. source: "./media/characters/sinja/head.svg"
  27676. }
  27677. },
  27678. slit: {
  27679. height: math.unit(0.8, "feet"),
  27680. name: "Slit",
  27681. image: {
  27682. source: "./media/characters/sinja/slit.svg"
  27683. }
  27684. },
  27685. },
  27686. [
  27687. {
  27688. name: "Normal",
  27689. height: math.unit(2.3, "meters")
  27690. },
  27691. {
  27692. name: "Macro",
  27693. height: math.unit(91, "meters"),
  27694. default: true
  27695. },
  27696. {
  27697. name: "Megamacro",
  27698. height: math.unit(91440, "meters")
  27699. },
  27700. {
  27701. name: "Gigamacro",
  27702. height: math.unit(60960000, "meters")
  27703. },
  27704. {
  27705. name: "Teramacro",
  27706. height: math.unit(9144000000, "meters")
  27707. },
  27708. ]
  27709. ))
  27710. characterMakers.push(() => makeCharacter(
  27711. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27712. {
  27713. front: {
  27714. height: math.unit(1.7, "meters"),
  27715. weight: math.unit(130, "lb"),
  27716. name: "Front",
  27717. image: {
  27718. source: "./media/characters/kyu/front.svg",
  27719. extra: 415 / 395,
  27720. bottom: 5 / 420
  27721. }
  27722. },
  27723. head: {
  27724. height: math.unit(1.75, "feet"),
  27725. name: "Head",
  27726. image: {
  27727. source: "./media/characters/kyu/head.svg"
  27728. }
  27729. },
  27730. foot: {
  27731. height: math.unit(0.81, "feet"),
  27732. name: "Foot",
  27733. image: {
  27734. source: "./media/characters/kyu/foot.svg"
  27735. }
  27736. },
  27737. },
  27738. [
  27739. {
  27740. name: "Normal",
  27741. height: math.unit(1.7, "meters")
  27742. },
  27743. {
  27744. name: "Macro",
  27745. height: math.unit(131, "feet"),
  27746. default: true
  27747. },
  27748. {
  27749. name: "Megamacro",
  27750. height: math.unit(91440, "meters")
  27751. },
  27752. {
  27753. name: "Gigamacro",
  27754. height: math.unit(60960000, "meters")
  27755. },
  27756. {
  27757. name: "Teramacro",
  27758. height: math.unit(9144000000, "meters")
  27759. },
  27760. ]
  27761. ))
  27762. characterMakers.push(() => makeCharacter(
  27763. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27764. {
  27765. front: {
  27766. height: math.unit(7 + 1 / 12, "feet"),
  27767. weight: math.unit(250, "lb"),
  27768. name: "Front",
  27769. image: {
  27770. source: "./media/characters/joey/front.svg",
  27771. extra: 1791 / 1537,
  27772. bottom: 28 / 1816
  27773. }
  27774. },
  27775. },
  27776. [
  27777. {
  27778. name: "Micro",
  27779. height: math.unit(3, "inches")
  27780. },
  27781. {
  27782. name: "Normal",
  27783. height: math.unit(7 + 1 / 12, "feet"),
  27784. default: true
  27785. },
  27786. ]
  27787. ))
  27788. characterMakers.push(() => makeCharacter(
  27789. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27790. {
  27791. front: {
  27792. height: math.unit(165, "cm"),
  27793. weight: math.unit(140, "lb"),
  27794. name: "Front",
  27795. image: {
  27796. source: "./media/characters/sam-evans/front.svg",
  27797. extra: 3417 / 3230,
  27798. bottom: 41.3 / 3417
  27799. }
  27800. },
  27801. frontSixTails: {
  27802. height: math.unit(165, "cm"),
  27803. weight: math.unit(140, "lb"),
  27804. name: "Front-six-tails",
  27805. image: {
  27806. source: "./media/characters/sam-evans/front-six-tails.svg",
  27807. extra: 3417 / 3230,
  27808. bottom: 41.3 / 3417
  27809. }
  27810. },
  27811. back: {
  27812. height: math.unit(165, "cm"),
  27813. weight: math.unit(140, "lb"),
  27814. name: "Back",
  27815. image: {
  27816. source: "./media/characters/sam-evans/back.svg",
  27817. extra: 3227 / 3032,
  27818. bottom: 6.8 / 3234
  27819. }
  27820. },
  27821. face: {
  27822. height: math.unit(0.68, "feet"),
  27823. name: "Face",
  27824. image: {
  27825. source: "./media/characters/sam-evans/face.svg"
  27826. }
  27827. },
  27828. },
  27829. [
  27830. {
  27831. name: "Normal",
  27832. height: math.unit(165, "cm"),
  27833. default: true
  27834. },
  27835. {
  27836. name: "Macro",
  27837. height: math.unit(100, "meters")
  27838. },
  27839. {
  27840. name: "Macro+",
  27841. height: math.unit(800, "meters")
  27842. },
  27843. {
  27844. name: "Macro++",
  27845. height: math.unit(3, "km")
  27846. },
  27847. {
  27848. name: "Macro+++",
  27849. height: math.unit(30, "km")
  27850. },
  27851. ]
  27852. ))
  27853. characterMakers.push(() => makeCharacter(
  27854. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27855. {
  27856. front: {
  27857. height: math.unit(10, "feet"),
  27858. weight: math.unit(750, "lb"),
  27859. name: "Front",
  27860. image: {
  27861. source: "./media/characters/juliet-a/front.svg",
  27862. extra: 1766 / 1720,
  27863. bottom: 43 / 1809
  27864. }
  27865. },
  27866. back: {
  27867. height: math.unit(10, "feet"),
  27868. weight: math.unit(750, "lb"),
  27869. name: "Back",
  27870. image: {
  27871. source: "./media/characters/juliet-a/back.svg",
  27872. extra: 1781 / 1734,
  27873. bottom: 35 / 1810,
  27874. }
  27875. },
  27876. },
  27877. [
  27878. {
  27879. name: "Normal",
  27880. height: math.unit(10, "feet"),
  27881. default: true
  27882. },
  27883. {
  27884. name: "Dragon Form",
  27885. height: math.unit(250, "feet")
  27886. },
  27887. {
  27888. name: "Macro",
  27889. height: math.unit(1000, "feet")
  27890. },
  27891. {
  27892. name: "Megamacro",
  27893. height: math.unit(10000, "feet")
  27894. }
  27895. ]
  27896. ))
  27897. characterMakers.push(() => makeCharacter(
  27898. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27899. {
  27900. regular: {
  27901. height: math.unit(7 + 3 / 12, "feet"),
  27902. weight: math.unit(260, "lb"),
  27903. name: "Regular",
  27904. image: {
  27905. source: "./media/characters/wild/regular.svg",
  27906. extra: 97.45 / 92,
  27907. bottom: 6.8 / 104.3
  27908. }
  27909. },
  27910. biggums: {
  27911. height: math.unit(8 + 6 / 12, "feet"),
  27912. weight: math.unit(425, "lb"),
  27913. name: "Biggums",
  27914. image: {
  27915. source: "./media/characters/wild/biggums.svg",
  27916. extra: 97.45 / 92,
  27917. bottom: 7.5 / 132.34
  27918. }
  27919. },
  27920. mawRegular: {
  27921. height: math.unit(1.24, "feet"),
  27922. name: "Maw (Regular)",
  27923. image: {
  27924. source: "./media/characters/wild/maw.svg"
  27925. }
  27926. },
  27927. mawBiggums: {
  27928. height: math.unit(1.47, "feet"),
  27929. name: "Maw (Biggums)",
  27930. image: {
  27931. source: "./media/characters/wild/maw.svg"
  27932. }
  27933. },
  27934. },
  27935. [
  27936. {
  27937. name: "Normal",
  27938. height: math.unit(7 + 3 / 12, "feet"),
  27939. default: true
  27940. },
  27941. ]
  27942. ))
  27943. characterMakers.push(() => makeCharacter(
  27944. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27945. {
  27946. front: {
  27947. height: math.unit(2.5, "meters"),
  27948. weight: math.unit(200, "kg"),
  27949. name: "Front",
  27950. image: {
  27951. source: "./media/characters/vidar/front.svg",
  27952. extra: 2994 / 2795,
  27953. bottom: 56 / 3061
  27954. }
  27955. },
  27956. back: {
  27957. height: math.unit(2.5, "meters"),
  27958. weight: math.unit(200, "kg"),
  27959. name: "Back",
  27960. image: {
  27961. source: "./media/characters/vidar/back.svg",
  27962. extra: 3131 / 2928,
  27963. bottom: 13.5 / 3141.5
  27964. }
  27965. },
  27966. feral: {
  27967. height: math.unit(2.5, "meters"),
  27968. weight: math.unit(2000, "kg"),
  27969. name: "Feral",
  27970. image: {
  27971. source: "./media/characters/vidar/feral.svg",
  27972. extra: 2790 / 1765,
  27973. bottom: 6 / 2796
  27974. }
  27975. },
  27976. },
  27977. [
  27978. {
  27979. name: "Normal",
  27980. height: math.unit(2.5, "meters"),
  27981. default: true
  27982. },
  27983. {
  27984. name: "Macro",
  27985. height: math.unit(100, "meters")
  27986. },
  27987. ]
  27988. ))
  27989. characterMakers.push(() => makeCharacter(
  27990. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27991. {
  27992. front: {
  27993. height: math.unit(5 + 9 / 12, "feet"),
  27994. weight: math.unit(120, "lb"),
  27995. name: "Front",
  27996. image: {
  27997. source: "./media/characters/ash/front.svg",
  27998. extra: 2189 / 1961,
  27999. bottom: 5.2 / 2194
  28000. }
  28001. },
  28002. },
  28003. [
  28004. {
  28005. name: "Normal",
  28006. height: math.unit(5 + 9 / 12, "feet"),
  28007. default: true
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28013. {
  28014. front: {
  28015. height: math.unit(9, "feet"),
  28016. weight: math.unit(10000, "lb"),
  28017. name: "Front",
  28018. image: {
  28019. source: "./media/characters/gygabite/front.svg",
  28020. bottom: 31.7 / 537.8,
  28021. extra: 505 / 370
  28022. }
  28023. },
  28024. },
  28025. [
  28026. {
  28027. name: "Normal",
  28028. height: math.unit(9, "feet"),
  28029. default: true
  28030. },
  28031. ]
  28032. ))
  28033. characterMakers.push(() => makeCharacter(
  28034. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28035. {
  28036. front: {
  28037. height: math.unit(12, "feet"),
  28038. weight: math.unit(35000, "lb"),
  28039. name: "Front",
  28040. image: {
  28041. source: "./media/characters/p0tat0/front.svg",
  28042. extra: 1065 / 921,
  28043. bottom: 55.7 / 1121.25
  28044. }
  28045. },
  28046. },
  28047. [
  28048. {
  28049. name: "Normal",
  28050. height: math.unit(12, "feet"),
  28051. default: true
  28052. },
  28053. ]
  28054. ))
  28055. characterMakers.push(() => makeCharacter(
  28056. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28057. {
  28058. side: {
  28059. height: math.unit(6.5, "feet"),
  28060. weight: math.unit(800, "lb"),
  28061. name: "Side",
  28062. image: {
  28063. source: "./media/characters/dusk/side.svg",
  28064. extra: 615 / 373,
  28065. bottom: 53 / 664
  28066. }
  28067. },
  28068. sitting: {
  28069. height: math.unit(7, "feet"),
  28070. weight: math.unit(800, "lb"),
  28071. name: "Sitting",
  28072. image: {
  28073. source: "./media/characters/dusk/sitting.svg",
  28074. extra: 753 / 425,
  28075. bottom: 33 / 774
  28076. }
  28077. },
  28078. head: {
  28079. height: math.unit(6.1, "feet"),
  28080. name: "Head",
  28081. image: {
  28082. source: "./media/characters/dusk/head.svg"
  28083. }
  28084. },
  28085. },
  28086. [
  28087. {
  28088. name: "Normal",
  28089. height: math.unit(7, "feet"),
  28090. default: true
  28091. },
  28092. ]
  28093. ))
  28094. characterMakers.push(() => makeCharacter(
  28095. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28096. {
  28097. front: {
  28098. height: math.unit(15, "feet"),
  28099. weight: math.unit(7000, "lb"),
  28100. name: "Front",
  28101. image: {
  28102. source: "./media/characters/jay-direwolf/front.svg",
  28103. extra: 1810 / 1732,
  28104. bottom: 66 / 1892
  28105. }
  28106. },
  28107. },
  28108. [
  28109. {
  28110. name: "Normal",
  28111. height: math.unit(15, "feet"),
  28112. default: true
  28113. },
  28114. ]
  28115. ))
  28116. characterMakers.push(() => makeCharacter(
  28117. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28118. {
  28119. front: {
  28120. height: math.unit(4 + 9 / 12, "feet"),
  28121. weight: math.unit(130, "lb"),
  28122. name: "Front",
  28123. image: {
  28124. source: "./media/characters/anchovie/front.svg",
  28125. extra: 382 / 350,
  28126. bottom: 25 / 409
  28127. }
  28128. },
  28129. back: {
  28130. height: math.unit(4 + 9 / 12, "feet"),
  28131. weight: math.unit(130, "lb"),
  28132. name: "Back",
  28133. image: {
  28134. source: "./media/characters/anchovie/back.svg",
  28135. extra: 385 / 352,
  28136. bottom: 16.6 / 402
  28137. }
  28138. },
  28139. frontDressed: {
  28140. height: math.unit(4 + 9 / 12, "feet"),
  28141. weight: math.unit(130, "lb"),
  28142. name: "Front (Dressed)",
  28143. image: {
  28144. source: "./media/characters/anchovie/front-dressed.svg",
  28145. extra: 382 / 350,
  28146. bottom: 25 / 409
  28147. }
  28148. },
  28149. backDressed: {
  28150. height: math.unit(4 + 9 / 12, "feet"),
  28151. weight: math.unit(130, "lb"),
  28152. name: "Back (Dressed)",
  28153. image: {
  28154. source: "./media/characters/anchovie/back-dressed.svg",
  28155. extra: 385 / 352,
  28156. bottom: 16.6 / 402
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Micro",
  28163. height: math.unit(6.4, "inches")
  28164. },
  28165. {
  28166. name: "Normal",
  28167. height: math.unit(4 + 9 / 12, "feet"),
  28168. default: true
  28169. },
  28170. ]
  28171. ))
  28172. characterMakers.push(() => makeCharacter(
  28173. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28174. {
  28175. front: {
  28176. height: math.unit(2, "meters"),
  28177. weight: math.unit(180, "lb"),
  28178. name: "Front",
  28179. image: {
  28180. source: "./media/characters/acidrenamon/front.svg",
  28181. extra: 987 / 890,
  28182. bottom: 22.8 / 1009
  28183. }
  28184. },
  28185. back: {
  28186. height: math.unit(2, "meters"),
  28187. weight: math.unit(180, "lb"),
  28188. name: "Back",
  28189. image: {
  28190. source: "./media/characters/acidrenamon/back.svg",
  28191. extra: 983 / 891,
  28192. bottom: 8.4 / 992
  28193. }
  28194. },
  28195. head: {
  28196. height: math.unit(1.92, "feet"),
  28197. name: "Head",
  28198. image: {
  28199. source: "./media/characters/acidrenamon/head.svg"
  28200. }
  28201. },
  28202. rump: {
  28203. height: math.unit(1.72, "feet"),
  28204. name: "Rump",
  28205. image: {
  28206. source: "./media/characters/acidrenamon/rump.svg"
  28207. }
  28208. },
  28209. tail: {
  28210. height: math.unit(4.2, "feet"),
  28211. name: "Tail",
  28212. image: {
  28213. source: "./media/characters/acidrenamon/tail.svg"
  28214. }
  28215. },
  28216. },
  28217. [
  28218. {
  28219. name: "Normal",
  28220. height: math.unit(2, "meters"),
  28221. default: true
  28222. },
  28223. {
  28224. name: "Minimacro",
  28225. height: math.unit(7, "meters")
  28226. },
  28227. {
  28228. name: "Macro",
  28229. height: math.unit(200, "meters")
  28230. },
  28231. {
  28232. name: "Gigamacro",
  28233. height: math.unit(0.2, "earths")
  28234. },
  28235. ]
  28236. ))
  28237. characterMakers.push(() => makeCharacter(
  28238. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28239. {
  28240. front: {
  28241. height: math.unit(152, "feet"),
  28242. name: "Front",
  28243. image: {
  28244. source: "./media/characters/kenzie-lee/front.svg",
  28245. extra: 1869/1774,
  28246. bottom: 128/1997
  28247. }
  28248. },
  28249. side: {
  28250. height: math.unit(86, "feet"),
  28251. name: "Side",
  28252. image: {
  28253. source: "./media/characters/kenzie-lee/side.svg",
  28254. extra: 930/815,
  28255. bottom: 177/1107
  28256. }
  28257. },
  28258. paw: {
  28259. height: math.unit(15, "feet"),
  28260. name: "Paw",
  28261. image: {
  28262. source: "./media/characters/kenzie-lee/paw.svg"
  28263. }
  28264. },
  28265. },
  28266. [
  28267. {
  28268. name: "Micro",
  28269. height: math.unit(1.5, "inches")
  28270. },
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(152, "feet"),
  28274. default: true
  28275. },
  28276. {
  28277. name: "Megamacro",
  28278. height: math.unit(7, "miles")
  28279. },
  28280. {
  28281. name: "Gigamacro",
  28282. height: math.unit(8000, "miles")
  28283. },
  28284. ]
  28285. ))
  28286. characterMakers.push(() => makeCharacter(
  28287. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28288. {
  28289. side: {
  28290. height: math.unit(6, "feet"),
  28291. weight: math.unit(150, "lb"),
  28292. name: "Side",
  28293. image: {
  28294. source: "./media/characters/withers/side.svg",
  28295. extra: 1830 / 1728,
  28296. bottom: 96 / 1927
  28297. }
  28298. },
  28299. front: {
  28300. height: math.unit(6, "feet"),
  28301. weight: math.unit(150, "lb"),
  28302. name: "Front",
  28303. image: {
  28304. source: "./media/characters/withers/front.svg",
  28305. extra: 1514 / 1438,
  28306. bottom: 118 / 1632
  28307. }
  28308. },
  28309. },
  28310. [
  28311. {
  28312. name: "Macro",
  28313. height: math.unit(168, "feet"),
  28314. default: true
  28315. },
  28316. {
  28317. name: "Megamacro",
  28318. height: math.unit(15, "miles")
  28319. }
  28320. ]
  28321. ))
  28322. characterMakers.push(() => makeCharacter(
  28323. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28324. {
  28325. front: {
  28326. height: math.unit(6 + 7 / 12, "feet"),
  28327. weight: math.unit(250, "lb"),
  28328. name: "Front",
  28329. image: {
  28330. source: "./media/characters/nemoskii/front.svg",
  28331. extra: 2270 / 1734,
  28332. bottom: 86 / 2354
  28333. }
  28334. },
  28335. back: {
  28336. height: math.unit(6 + 7 / 12, "feet"),
  28337. weight: math.unit(250, "lb"),
  28338. name: "Back",
  28339. image: {
  28340. source: "./media/characters/nemoskii/back.svg",
  28341. extra: 1845 / 1788,
  28342. bottom: 10.5 / 1852
  28343. }
  28344. },
  28345. head: {
  28346. height: math.unit(1.31, "feet"),
  28347. name: "Head",
  28348. image: {
  28349. source: "./media/characters/nemoskii/head.svg"
  28350. }
  28351. },
  28352. },
  28353. [
  28354. {
  28355. name: "Micro",
  28356. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28357. },
  28358. {
  28359. name: "Normal",
  28360. height: math.unit(6 + 7 / 12, "feet"),
  28361. default: true
  28362. },
  28363. {
  28364. name: "Macro",
  28365. height: math.unit((6 + 7 / 12) * 150, "feet")
  28366. },
  28367. {
  28368. name: "Macro+",
  28369. height: math.unit((6 + 7 / 12) * 500, "feet")
  28370. },
  28371. {
  28372. name: "Megamacro",
  28373. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28374. },
  28375. ]
  28376. ))
  28377. characterMakers.push(() => makeCharacter(
  28378. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28379. {
  28380. front: {
  28381. height: math.unit(1, "mile"),
  28382. weight: math.unit(265261.9, "lb"),
  28383. name: "Front",
  28384. image: {
  28385. source: "./media/characters/shui/front.svg",
  28386. extra: 1633 / 1564,
  28387. bottom: 91.5 / 1726
  28388. }
  28389. },
  28390. },
  28391. [
  28392. {
  28393. name: "Macro",
  28394. height: math.unit(1, "mile"),
  28395. default: true
  28396. },
  28397. ]
  28398. ))
  28399. characterMakers.push(() => makeCharacter(
  28400. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28401. {
  28402. front: {
  28403. height: math.unit(12 + 6 / 12, "feet"),
  28404. weight: math.unit(1342, "lb"),
  28405. name: "Front",
  28406. image: {
  28407. source: "./media/characters/arokh-takakura/front.svg",
  28408. extra: 1089 / 1043,
  28409. bottom: 77.4 / 1176.7
  28410. }
  28411. },
  28412. back: {
  28413. height: math.unit(12 + 6 / 12, "feet"),
  28414. weight: math.unit(1342, "lb"),
  28415. name: "Back",
  28416. image: {
  28417. source: "./media/characters/arokh-takakura/back.svg",
  28418. extra: 1046 / 1019,
  28419. bottom: 102 / 1150
  28420. }
  28421. },
  28422. },
  28423. [
  28424. {
  28425. name: "Big",
  28426. height: math.unit(12 + 6 / 12, "feet"),
  28427. default: true
  28428. },
  28429. ]
  28430. ))
  28431. characterMakers.push(() => makeCharacter(
  28432. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28433. {
  28434. front: {
  28435. height: math.unit(5 + 6 / 12, "feet"),
  28436. weight: math.unit(150, "lb"),
  28437. name: "Front",
  28438. image: {
  28439. source: "./media/characters/theo/front.svg",
  28440. extra: 1184 / 1131,
  28441. bottom: 7.4 / 1191
  28442. }
  28443. },
  28444. },
  28445. [
  28446. {
  28447. name: "Micro",
  28448. height: math.unit(5, "inches")
  28449. },
  28450. {
  28451. name: "Normal",
  28452. height: math.unit(5 + 6 / 12, "feet"),
  28453. default: true
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(5 + 9 / 12, "feet"),
  28462. weight: math.unit(130, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/cecelia-swift/front.svg",
  28466. extra: 502 / 484,
  28467. bottom: 23 / 523
  28468. }
  28469. },
  28470. back: {
  28471. height: math.unit(5 + 9 / 12, "feet"),
  28472. weight: math.unit(130, "lb"),
  28473. name: "Back",
  28474. image: {
  28475. source: "./media/characters/cecelia-swift/back.svg",
  28476. extra: 499 / 485,
  28477. bottom: 12 / 511
  28478. }
  28479. },
  28480. head: {
  28481. height: math.unit(0.90, "feet"),
  28482. name: "Head",
  28483. image: {
  28484. source: "./media/characters/cecelia-swift/head.svg"
  28485. }
  28486. },
  28487. rump: {
  28488. height: math.unit(1.75, "feet"),
  28489. name: "Rump",
  28490. image: {
  28491. source: "./media/characters/cecelia-swift/rump.svg"
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(5 + 9 / 12, "feet"),
  28499. default: true
  28500. },
  28501. {
  28502. name: "Big",
  28503. height: math.unit(50, "feet")
  28504. },
  28505. {
  28506. name: "Macro",
  28507. height: math.unit(100, "feet")
  28508. },
  28509. {
  28510. name: "Macro+",
  28511. height: math.unit(500, "feet")
  28512. },
  28513. {
  28514. name: "Macro++",
  28515. height: math.unit(1000, "feet")
  28516. },
  28517. ]
  28518. ))
  28519. characterMakers.push(() => makeCharacter(
  28520. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28521. {
  28522. front: {
  28523. height: math.unit(6, "feet"),
  28524. weight: math.unit(150, "lb"),
  28525. name: "Front",
  28526. image: {
  28527. source: "./media/characters/kaunan/front.svg",
  28528. extra: 2890 / 2523,
  28529. bottom: 49 / 2939
  28530. }
  28531. },
  28532. },
  28533. [
  28534. {
  28535. name: "Macro",
  28536. height: math.unit(150, "feet"),
  28537. default: true
  28538. },
  28539. ]
  28540. ))
  28541. characterMakers.push(() => makeCharacter(
  28542. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28543. {
  28544. front: {
  28545. height: math.unit(175, "cm"),
  28546. weight: math.unit(60, "kg"),
  28547. name: "Front",
  28548. image: {
  28549. source: "./media/characters/fei/front.svg",
  28550. extra: 1873/1723,
  28551. bottom: 53/1926
  28552. }
  28553. },
  28554. },
  28555. [
  28556. {
  28557. name: "Mortal",
  28558. height: math.unit(175, "cm")
  28559. },
  28560. {
  28561. name: "Normal",
  28562. height: math.unit(3500, "m"),
  28563. default: true
  28564. },
  28565. {
  28566. name: "Stroll",
  28567. height: math.unit(17.5, "km")
  28568. },
  28569. {
  28570. name: "Showoff",
  28571. height: math.unit(175, "km")
  28572. },
  28573. ]
  28574. ))
  28575. characterMakers.push(() => makeCharacter(
  28576. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28577. {
  28578. front: {
  28579. height: math.unit(7, "feet"),
  28580. weight: math.unit(1000, "kg"),
  28581. name: "Front",
  28582. image: {
  28583. source: "./media/characters/edrax/front.svg",
  28584. extra: 2838 / 2550,
  28585. bottom: 130 / 2968
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Small",
  28592. height: math.unit(7, "feet")
  28593. },
  28594. {
  28595. name: "Normal",
  28596. height: math.unit(1500, "meters")
  28597. },
  28598. {
  28599. name: "Mega",
  28600. height: math.unit(12000000, "km"),
  28601. default: true
  28602. },
  28603. {
  28604. name: "Megamacro",
  28605. height: math.unit(10600000, "lightyears")
  28606. },
  28607. {
  28608. name: "Hypermacro",
  28609. height: math.unit(256, "yottameters")
  28610. },
  28611. ]
  28612. ))
  28613. characterMakers.push(() => makeCharacter(
  28614. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28615. {
  28616. front: {
  28617. height: math.unit(10, "feet"),
  28618. weight: math.unit(750, "lb"),
  28619. name: "Front",
  28620. image: {
  28621. source: "./media/characters/clove/front.svg",
  28622. extra: 1918/1751,
  28623. bottom: 52/1970
  28624. }
  28625. },
  28626. back: {
  28627. height: math.unit(10, "feet"),
  28628. weight: math.unit(750, "lb"),
  28629. name: "Back",
  28630. image: {
  28631. source: "./media/characters/clove/back.svg",
  28632. extra: 1912/1747,
  28633. bottom: 50/1962
  28634. }
  28635. },
  28636. },
  28637. [
  28638. {
  28639. name: "Normal",
  28640. height: math.unit(10, "feet"),
  28641. default: true
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(4, "feet"),
  28650. weight: math.unit(50, "lb"),
  28651. name: "Front",
  28652. image: {
  28653. source: "./media/characters/alex-rabbit/front.svg",
  28654. extra: 507 / 458,
  28655. bottom: 18.5 / 527
  28656. }
  28657. },
  28658. back: {
  28659. height: math.unit(4, "feet"),
  28660. weight: math.unit(50, "lb"),
  28661. name: "Back",
  28662. image: {
  28663. source: "./media/characters/alex-rabbit/back.svg",
  28664. extra: 502 / 460,
  28665. bottom: 18.9 / 521
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Normal",
  28672. height: math.unit(4, "feet"),
  28673. default: true
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28679. {
  28680. front: {
  28681. height: math.unit(1 + 3 / 12, "feet"),
  28682. weight: math.unit(80, "lb"),
  28683. name: "Front",
  28684. image: {
  28685. source: "./media/characters/zander-rose/front.svg",
  28686. extra: 916 / 797,
  28687. bottom: 17 / 933
  28688. }
  28689. },
  28690. back: {
  28691. height: math.unit(1 + 3 / 12, "feet"),
  28692. weight: math.unit(80, "lb"),
  28693. name: "Back",
  28694. image: {
  28695. source: "./media/characters/zander-rose/back.svg",
  28696. extra: 903 / 779,
  28697. bottom: 31 / 934
  28698. }
  28699. },
  28700. },
  28701. [
  28702. {
  28703. name: "Normal",
  28704. height: math.unit(1 + 3 / 12, "feet"),
  28705. default: true
  28706. },
  28707. ]
  28708. ))
  28709. characterMakers.push(() => makeCharacter(
  28710. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28711. {
  28712. anthro: {
  28713. height: math.unit(6, "feet"),
  28714. weight: math.unit(150, "lb"),
  28715. name: "Anthro",
  28716. image: {
  28717. source: "./media/characters/razz/anthro.svg",
  28718. extra: 1437 / 1343,
  28719. bottom: 48 / 1485
  28720. }
  28721. },
  28722. feral: {
  28723. height: math.unit(6, "feet"),
  28724. weight: math.unit(150, "lb"),
  28725. name: "Feral",
  28726. image: {
  28727. source: "./media/characters/razz/feral.svg",
  28728. extra: 2569 / 1385,
  28729. bottom: 95 / 2664
  28730. }
  28731. },
  28732. },
  28733. [
  28734. {
  28735. name: "Normal",
  28736. height: math.unit(6, "feet"),
  28737. default: true
  28738. },
  28739. ]
  28740. ))
  28741. characterMakers.push(() => makeCharacter(
  28742. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28743. {
  28744. front: {
  28745. height: math.unit(9 + 4 / 12, "feet"),
  28746. weight: math.unit(500, "lb"),
  28747. name: "Front",
  28748. image: {
  28749. source: "./media/characters/morrigan/front.svg",
  28750. extra: 2707 / 2579,
  28751. bottom: 156 / 2863
  28752. }
  28753. },
  28754. },
  28755. [
  28756. {
  28757. name: "Normal",
  28758. height: math.unit(9 + 4 / 12, "feet"),
  28759. default: true
  28760. },
  28761. ]
  28762. ))
  28763. characterMakers.push(() => makeCharacter(
  28764. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28765. {
  28766. front: {
  28767. height: math.unit(5, "stories"),
  28768. weight: math.unit(4000, "lb"),
  28769. name: "Front",
  28770. image: {
  28771. source: "./media/characters/jenene/front.svg",
  28772. extra: 1780 / 1710,
  28773. bottom: 57 / 1837
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Normal",
  28780. height: math.unit(5, "stories"),
  28781. default: true
  28782. },
  28783. ]
  28784. ))
  28785. characterMakers.push(() => makeCharacter(
  28786. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28787. {
  28788. taurSfw: {
  28789. height: math.unit(10, "meters"),
  28790. weight: math.unit(17500, "kg"),
  28791. name: "Taur",
  28792. image: {
  28793. source: "./media/characters/faey/taur-sfw.svg",
  28794. extra: 1200 / 968,
  28795. bottom: 41 / 1241
  28796. }
  28797. },
  28798. chestmaw: {
  28799. height: math.unit(2.01, "meters"),
  28800. name: "Chestmaw",
  28801. image: {
  28802. source: "./media/characters/faey/chestmaw.svg"
  28803. }
  28804. },
  28805. foot: {
  28806. height: math.unit(2.43, "meters"),
  28807. name: "Foot",
  28808. image: {
  28809. source: "./media/characters/faey/foot.svg"
  28810. }
  28811. },
  28812. jaws: {
  28813. height: math.unit(1.66, "meters"),
  28814. name: "Jaws",
  28815. image: {
  28816. source: "./media/characters/faey/jaws.svg"
  28817. }
  28818. },
  28819. tongues: {
  28820. height: math.unit(2.01, "meters"),
  28821. name: "Tongues",
  28822. image: {
  28823. source: "./media/characters/faey/tongues.svg"
  28824. }
  28825. },
  28826. },
  28827. [
  28828. {
  28829. name: "Small",
  28830. height: math.unit(10, "meters"),
  28831. default: true
  28832. },
  28833. {
  28834. name: "Big",
  28835. height: math.unit(500000, "km")
  28836. },
  28837. ]
  28838. ))
  28839. characterMakers.push(() => makeCharacter(
  28840. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28841. {
  28842. front: {
  28843. height: math.unit(7, "feet"),
  28844. weight: math.unit(275, "lb"),
  28845. name: "Front",
  28846. image: {
  28847. source: "./media/characters/roku/front.svg",
  28848. extra: 903 / 878,
  28849. bottom: 37 / 940
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Normal",
  28856. height: math.unit(7, "feet"),
  28857. default: true
  28858. },
  28859. {
  28860. name: "Macro",
  28861. height: math.unit(500, "feet")
  28862. },
  28863. {
  28864. name: "Megamacro",
  28865. height: math.unit(200, "miles")
  28866. },
  28867. ]
  28868. ))
  28869. characterMakers.push(() => makeCharacter(
  28870. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28871. {
  28872. front: {
  28873. height: math.unit(6 + 2 / 12, "feet"),
  28874. weight: math.unit(150, "lb"),
  28875. name: "Front",
  28876. image: {
  28877. source: "./media/characters/lira/front.svg",
  28878. extra: 1727 / 1605,
  28879. bottom: 26 / 1753
  28880. }
  28881. },
  28882. back: {
  28883. height: math.unit(6 + 2 / 12, "feet"),
  28884. weight: math.unit(150, "lb"),
  28885. name: "Back",
  28886. image: {
  28887. source: "./media/characters/lira/back.svg",
  28888. extra: 1713/1621,
  28889. bottom: 20/1733
  28890. }
  28891. },
  28892. hand: {
  28893. height: math.unit(0.75, "feet"),
  28894. name: "Hand",
  28895. image: {
  28896. source: "./media/characters/lira/hand.svg"
  28897. }
  28898. },
  28899. maw: {
  28900. height: math.unit(0.65, "feet"),
  28901. name: "Maw",
  28902. image: {
  28903. source: "./media/characters/lira/maw.svg"
  28904. }
  28905. },
  28906. pawDigi: {
  28907. height: math.unit(1.6, "feet"),
  28908. name: "Paw Digi",
  28909. image: {
  28910. source: "./media/characters/lira/paw-digi.svg"
  28911. }
  28912. },
  28913. pawPlanti: {
  28914. height: math.unit(1.4, "feet"),
  28915. name: "Paw Planti",
  28916. image: {
  28917. source: "./media/characters/lira/paw-planti.svg"
  28918. }
  28919. },
  28920. },
  28921. [
  28922. {
  28923. name: "Normal",
  28924. height: math.unit(6 + 2 / 12, "feet"),
  28925. default: true
  28926. },
  28927. {
  28928. name: "Macro",
  28929. height: math.unit(100, "feet")
  28930. },
  28931. {
  28932. name: "Macro²",
  28933. height: math.unit(1600, "feet")
  28934. },
  28935. {
  28936. name: "Planetary",
  28937. height: math.unit(20, "earths")
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28943. {
  28944. front: {
  28945. height: math.unit(6, "feet"),
  28946. weight: math.unit(150, "lb"),
  28947. name: "Front",
  28948. image: {
  28949. source: "./media/characters/hadjet/front.svg",
  28950. extra: 1480 / 1346,
  28951. bottom: 26 / 1506
  28952. }
  28953. },
  28954. frontNsfw: {
  28955. height: math.unit(6, "feet"),
  28956. weight: math.unit(150, "lb"),
  28957. name: "Front (NSFW)",
  28958. image: {
  28959. source: "./media/characters/hadjet/front-nsfw.svg",
  28960. extra: 1440 / 1358,
  28961. bottom: 52 / 1492
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Macro",
  28968. height: math.unit(10, "stories"),
  28969. default: true
  28970. },
  28971. {
  28972. name: "Megamacro",
  28973. height: math.unit(1.5, "miles")
  28974. },
  28975. {
  28976. name: "Megamacro+",
  28977. height: math.unit(5, "miles")
  28978. },
  28979. ]
  28980. ))
  28981. characterMakers.push(() => makeCharacter(
  28982. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28983. {
  28984. side: {
  28985. height: math.unit(106, "feet"),
  28986. weight: math.unit(500, "tonnes"),
  28987. name: "Side",
  28988. image: {
  28989. source: "./media/characters/kodran/side.svg",
  28990. extra: 553 / 480,
  28991. bottom: 33 / 586
  28992. }
  28993. },
  28994. front: {
  28995. height: math.unit(132, "feet"),
  28996. weight: math.unit(500, "tonnes"),
  28997. name: "Front",
  28998. image: {
  28999. source: "./media/characters/kodran/front.svg",
  29000. extra: 667 / 643,
  29001. bottom: 42 / 709
  29002. }
  29003. },
  29004. flying: {
  29005. height: math.unit(350, "feet"),
  29006. weight: math.unit(500, "tonnes"),
  29007. name: "Flying",
  29008. image: {
  29009. source: "./media/characters/kodran/flying.svg"
  29010. }
  29011. },
  29012. foot: {
  29013. height: math.unit(33, "feet"),
  29014. name: "Foot",
  29015. image: {
  29016. source: "./media/characters/kodran/foot.svg"
  29017. }
  29018. },
  29019. footFront: {
  29020. height: math.unit(19, "feet"),
  29021. name: "Foot (Front)",
  29022. image: {
  29023. source: "./media/characters/kodran/foot-front.svg",
  29024. extra: 261 / 261,
  29025. bottom: 91 / 352
  29026. }
  29027. },
  29028. headFront: {
  29029. height: math.unit(53, "feet"),
  29030. name: "Head (Front)",
  29031. image: {
  29032. source: "./media/characters/kodran/head-front.svg"
  29033. }
  29034. },
  29035. headSide: {
  29036. height: math.unit(65, "feet"),
  29037. name: "Head (Side)",
  29038. image: {
  29039. source: "./media/characters/kodran/head-side.svg"
  29040. }
  29041. },
  29042. throat: {
  29043. height: math.unit(79, "feet"),
  29044. name: "Throat",
  29045. image: {
  29046. source: "./media/characters/kodran/throat.svg"
  29047. }
  29048. },
  29049. },
  29050. [
  29051. {
  29052. name: "Large",
  29053. height: math.unit(106, "feet"),
  29054. default: true
  29055. },
  29056. ]
  29057. ))
  29058. characterMakers.push(() => makeCharacter(
  29059. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29060. {
  29061. side: {
  29062. height: math.unit(11, "feet"),
  29063. weight: math.unit(150, "lb"),
  29064. name: "Side",
  29065. image: {
  29066. source: "./media/characters/pyxaron/side.svg",
  29067. extra: 305 / 195,
  29068. bottom: 17 / 322
  29069. }
  29070. },
  29071. },
  29072. [
  29073. {
  29074. name: "Normal",
  29075. height: math.unit(11, "feet"),
  29076. default: true
  29077. },
  29078. ]
  29079. ))
  29080. characterMakers.push(() => makeCharacter(
  29081. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29082. {
  29083. front: {
  29084. height: math.unit(6, "feet"),
  29085. weight: math.unit(150, "lb"),
  29086. name: "Front",
  29087. image: {
  29088. source: "./media/characters/meep/front.svg",
  29089. extra: 88 / 80,
  29090. bottom: 6 / 94
  29091. }
  29092. },
  29093. },
  29094. [
  29095. {
  29096. name: "Fun Sized",
  29097. height: math.unit(2, "inches"),
  29098. default: true
  29099. },
  29100. {
  29101. name: "Friend Sized",
  29102. height: math.unit(8, "inches")
  29103. },
  29104. ]
  29105. ))
  29106. characterMakers.push(() => makeCharacter(
  29107. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29108. {
  29109. front: {
  29110. height: math.unit(15, "feet"),
  29111. weight: math.unit(2500, "lb"),
  29112. name: "Front",
  29113. image: {
  29114. source: "./media/characters/holly-rabbit/front.svg",
  29115. extra: 1433 / 1233,
  29116. bottom: 125 / 1558
  29117. }
  29118. },
  29119. dick: {
  29120. height: math.unit(4.6, "feet"),
  29121. name: "Dick",
  29122. image: {
  29123. source: "./media/characters/holly-rabbit/dick.svg"
  29124. }
  29125. },
  29126. },
  29127. [
  29128. {
  29129. name: "Normal",
  29130. height: math.unit(15, "feet"),
  29131. default: true
  29132. },
  29133. {
  29134. name: "Macro",
  29135. height: math.unit(250, "feet")
  29136. },
  29137. {
  29138. name: "Macro+",
  29139. height: math.unit(2500, "feet")
  29140. },
  29141. ]
  29142. ))
  29143. characterMakers.push(() => makeCharacter(
  29144. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29145. {
  29146. front: {
  29147. height: math.unit(3.02, "meters"),
  29148. weight: math.unit(500, "kg"),
  29149. name: "Front",
  29150. image: {
  29151. source: "./media/characters/drena/front.svg",
  29152. extra: 282 / 243,
  29153. bottom: 8 / 290
  29154. }
  29155. },
  29156. side: {
  29157. height: math.unit(3.02, "meters"),
  29158. weight: math.unit(500, "kg"),
  29159. name: "Side",
  29160. image: {
  29161. source: "./media/characters/drena/side.svg",
  29162. extra: 280 / 245,
  29163. bottom: 10 / 290
  29164. }
  29165. },
  29166. back: {
  29167. height: math.unit(3.02, "meters"),
  29168. weight: math.unit(500, "kg"),
  29169. name: "Back",
  29170. image: {
  29171. source: "./media/characters/drena/back.svg",
  29172. extra: 278 / 243,
  29173. bottom: 2 / 280
  29174. }
  29175. },
  29176. foot: {
  29177. height: math.unit(0.75, "meters"),
  29178. name: "Foot",
  29179. image: {
  29180. source: "./media/characters/drena/foot.svg"
  29181. }
  29182. },
  29183. maw: {
  29184. height: math.unit(0.82, "meters"),
  29185. name: "Maw",
  29186. image: {
  29187. source: "./media/characters/drena/maw.svg"
  29188. }
  29189. },
  29190. eating: {
  29191. height: math.unit(0.75, "meters"),
  29192. name: "Eating",
  29193. image: {
  29194. source: "./media/characters/drena/eating.svg"
  29195. }
  29196. },
  29197. rump: {
  29198. height: math.unit(0.93, "meters"),
  29199. name: "Rump",
  29200. image: {
  29201. source: "./media/characters/drena/rump.svg"
  29202. }
  29203. },
  29204. },
  29205. [
  29206. {
  29207. name: "Normal",
  29208. height: math.unit(3.02, "meters"),
  29209. default: true
  29210. },
  29211. ]
  29212. ))
  29213. characterMakers.push(() => makeCharacter(
  29214. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29215. {
  29216. front: {
  29217. height: math.unit(6 + 4 / 12, "feet"),
  29218. weight: math.unit(250, "lb"),
  29219. name: "Front",
  29220. image: {
  29221. source: "./media/characters/remmyzilla/front.svg",
  29222. extra: 4033 / 3588,
  29223. bottom: 123 / 4156
  29224. }
  29225. },
  29226. back: {
  29227. height: math.unit(6 + 4 / 12, "feet"),
  29228. weight: math.unit(250, "lb"),
  29229. name: "Back",
  29230. image: {
  29231. source: "./media/characters/remmyzilla/back.svg",
  29232. extra: 2687 / 2555,
  29233. bottom: 48 / 2735
  29234. }
  29235. },
  29236. paw: {
  29237. height: math.unit(1.73, "feet"),
  29238. name: "Paw",
  29239. image: {
  29240. source: "./media/characters/remmyzilla/paw.svg"
  29241. }
  29242. },
  29243. maw: {
  29244. height: math.unit(1.73, "feet"),
  29245. name: "Maw",
  29246. image: {
  29247. source: "./media/characters/remmyzilla/maw.svg"
  29248. }
  29249. },
  29250. },
  29251. [
  29252. {
  29253. name: "Normal",
  29254. height: math.unit(6 + 4 / 12, "feet")
  29255. },
  29256. {
  29257. name: "Minimacro",
  29258. height: math.unit(12 + 8 / 12, "feet")
  29259. },
  29260. {
  29261. name: "Normal",
  29262. height: math.unit(640, "feet"),
  29263. default: true
  29264. },
  29265. {
  29266. name: "Megamacro",
  29267. height: math.unit(6400, "feet")
  29268. },
  29269. {
  29270. name: "Gigamacro",
  29271. height: math.unit(64000, "miles")
  29272. },
  29273. ]
  29274. ))
  29275. characterMakers.push(() => makeCharacter(
  29276. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29277. {
  29278. front: {
  29279. height: math.unit(2.5, "meters"),
  29280. weight: math.unit(300, "lb"),
  29281. name: "Front",
  29282. image: {
  29283. source: "./media/characters/lawrence/front.svg",
  29284. extra: 357 / 335,
  29285. bottom: 30 / 387
  29286. }
  29287. },
  29288. back: {
  29289. height: math.unit(2.5, "meters"),
  29290. weight: math.unit(300, "lb"),
  29291. name: "Back",
  29292. image: {
  29293. source: "./media/characters/lawrence/back.svg",
  29294. extra: 357 / 338,
  29295. bottom: 16 / 373
  29296. }
  29297. },
  29298. head: {
  29299. height: math.unit(0.9, "meter"),
  29300. name: "Head",
  29301. image: {
  29302. source: "./media/characters/lawrence/head.svg"
  29303. }
  29304. },
  29305. maw: {
  29306. height: math.unit(0.7, "meter"),
  29307. name: "Maw",
  29308. image: {
  29309. source: "./media/characters/lawrence/maw.svg"
  29310. }
  29311. },
  29312. footBottom: {
  29313. height: math.unit(0.5, "meter"),
  29314. name: "Foot (Bottom)",
  29315. image: {
  29316. source: "./media/characters/lawrence/foot-bottom.svg"
  29317. }
  29318. },
  29319. footTop: {
  29320. height: math.unit(0.5, "meter"),
  29321. name: "Foot (Top)",
  29322. image: {
  29323. source: "./media/characters/lawrence/foot-top.svg"
  29324. }
  29325. },
  29326. },
  29327. [
  29328. {
  29329. name: "Normal",
  29330. height: math.unit(2.5, "meters"),
  29331. default: true
  29332. },
  29333. {
  29334. name: "Macro",
  29335. height: math.unit(95, "meters")
  29336. },
  29337. {
  29338. name: "Megamacro",
  29339. height: math.unit(150, "km")
  29340. },
  29341. ]
  29342. ))
  29343. characterMakers.push(() => makeCharacter(
  29344. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29345. {
  29346. front: {
  29347. height: math.unit(4.2, "meters"),
  29348. name: "Front",
  29349. image: {
  29350. source: "./media/characters/sydney/front.svg",
  29351. extra: 1323 / 1277,
  29352. bottom: 111 / 1434
  29353. }
  29354. },
  29355. },
  29356. [
  29357. {
  29358. name: "Normal",
  29359. height: math.unit(4.2, "meters"),
  29360. default: true
  29361. },
  29362. ]
  29363. ))
  29364. characterMakers.push(() => makeCharacter(
  29365. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29366. {
  29367. back: {
  29368. height: math.unit(201, "feet"),
  29369. name: "Back",
  29370. image: {
  29371. source: "./media/characters/jessica/back.svg",
  29372. extra: 273 / 259,
  29373. bottom: 7 / 280
  29374. }
  29375. },
  29376. },
  29377. [
  29378. {
  29379. name: "Normal",
  29380. height: math.unit(201, "feet"),
  29381. default: true
  29382. },
  29383. {
  29384. name: "Megamacro",
  29385. height: math.unit(8, "miles")
  29386. },
  29387. ]
  29388. ))
  29389. characterMakers.push(() => makeCharacter(
  29390. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29391. {
  29392. side: {
  29393. height: math.unit(5.6, "m"),
  29394. weight: math.unit(8000, "kg"),
  29395. name: "Side",
  29396. image: {
  29397. source: "./media/characters/victoria/side.svg",
  29398. extra: 1542/1229,
  29399. bottom: 124/1666
  29400. }
  29401. },
  29402. maw: {
  29403. height: math.unit(7.14, "feet"),
  29404. name: "Maw",
  29405. image: {
  29406. source: "./media/characters/victoria/maw.svg"
  29407. }
  29408. },
  29409. },
  29410. [
  29411. {
  29412. name: "Normal",
  29413. height: math.unit(5.6, "m"),
  29414. default: true
  29415. },
  29416. ]
  29417. ))
  29418. characterMakers.push(() => makeCharacter(
  29419. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29420. {
  29421. front: {
  29422. height: math.unit(5 + 6 / 12, "feet"),
  29423. name: "Front",
  29424. image: {
  29425. source: "./media/characters/cat/front.svg",
  29426. extra: 1449/1295,
  29427. bottom: 34/1483
  29428. },
  29429. form: "cat",
  29430. default: true
  29431. },
  29432. back: {
  29433. height: math.unit(5 + 6 / 12, "feet"),
  29434. name: "Back",
  29435. image: {
  29436. source: "./media/characters/cat/back.svg",
  29437. extra: 1466/1301,
  29438. bottom: 19/1485
  29439. },
  29440. form: "cat"
  29441. },
  29442. taur: {
  29443. height: math.unit(7, "feet"),
  29444. name: "Taur",
  29445. image: {
  29446. source: "./media/characters/cat/taur.svg",
  29447. extra: 1389/1233,
  29448. bottom: 83/1472
  29449. },
  29450. form: "taur",
  29451. default: true
  29452. },
  29453. lucarioFront: {
  29454. height: math.unit(4, "feet"),
  29455. name: "Lucario (Front)",
  29456. image: {
  29457. source: "./media/characters/cat/lucario-front.svg",
  29458. extra: 1149/1019,
  29459. bottom: 84/1233
  29460. },
  29461. form: "lucario",
  29462. default: true
  29463. },
  29464. lucarioBack: {
  29465. height: math.unit(4, "feet"),
  29466. name: "Lucario (Back)",
  29467. image: {
  29468. source: "./media/characters/cat/lucario-back.svg",
  29469. extra: 1190/1059,
  29470. bottom: 33/1223
  29471. },
  29472. form: "lucario"
  29473. },
  29474. megaLucario: {
  29475. height: math.unit(4, "feet"),
  29476. name: "Mega Lucario",
  29477. image: {
  29478. source: "./media/characters/cat/mega-lucario.svg",
  29479. extra: 1515 / 1319,
  29480. bottom: 63 / 1578
  29481. },
  29482. form: "lucario"
  29483. },
  29484. nickit: {
  29485. height: math.unit(2, "feet"),
  29486. name: "Nickit",
  29487. image: {
  29488. source: "./media/characters/cat/nickit.svg",
  29489. extra: 1980 / 1585,
  29490. bottom: 102 / 2082
  29491. },
  29492. form: "nickit",
  29493. default: true
  29494. },
  29495. lopunnyFront: {
  29496. height: math.unit(5, "feet"),
  29497. name: "Lopunny (Front)",
  29498. image: {
  29499. source: "./media/characters/cat/lopunny-front.svg",
  29500. extra: 1782 / 1469,
  29501. bottom: 38 / 1820
  29502. },
  29503. form: "lopunny",
  29504. default: true
  29505. },
  29506. lopunnyBack: {
  29507. height: math.unit(5, "feet"),
  29508. name: "Lopunny (Back)",
  29509. image: {
  29510. source: "./media/characters/cat/lopunny-back.svg",
  29511. extra: 1660 / 1490,
  29512. bottom: 25 / 1685
  29513. },
  29514. form: "lopunny"
  29515. },
  29516. },
  29517. [
  29518. {
  29519. name: "Really small",
  29520. height: math.unit(1, "nm")
  29521. },
  29522. {
  29523. name: "Micro",
  29524. height: math.unit(5, "inches")
  29525. },
  29526. {
  29527. name: "Normal",
  29528. height: math.unit(5 + 6 / 12, "feet"),
  29529. default: true
  29530. },
  29531. {
  29532. name: "Macro",
  29533. height: math.unit(50, "feet")
  29534. },
  29535. {
  29536. name: "Macro+",
  29537. height: math.unit(150, "feet")
  29538. },
  29539. {
  29540. name: "Megamacro",
  29541. height: math.unit(100, "miles")
  29542. },
  29543. ]
  29544. ))
  29545. characterMakers.push(() => makeCharacter(
  29546. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29547. {
  29548. front: {
  29549. height: math.unit(63.4, "meters"),
  29550. weight: math.unit(3.28349e+6, "kilograms"),
  29551. name: "Front",
  29552. image: {
  29553. source: "./media/characters/kirina-violet/front.svg",
  29554. extra: 2812 / 2725,
  29555. bottom: 0 / 2812
  29556. }
  29557. },
  29558. back: {
  29559. height: math.unit(63.4, "meters"),
  29560. weight: math.unit(3.28349e+6, "kilograms"),
  29561. name: "Back",
  29562. image: {
  29563. source: "./media/characters/kirina-violet/back.svg",
  29564. extra: 2812 / 2725,
  29565. bottom: 0 / 2812
  29566. }
  29567. },
  29568. mouth: {
  29569. height: math.unit(4.35, "meters"),
  29570. name: "Mouth",
  29571. image: {
  29572. source: "./media/characters/kirina-violet/mouth.svg"
  29573. }
  29574. },
  29575. paw: {
  29576. height: math.unit(5.6, "meters"),
  29577. name: "Paw",
  29578. image: {
  29579. source: "./media/characters/kirina-violet/paw.svg"
  29580. }
  29581. },
  29582. tail: {
  29583. height: math.unit(18, "meters"),
  29584. name: "Tail",
  29585. image: {
  29586. source: "./media/characters/kirina-violet/tail.svg"
  29587. }
  29588. },
  29589. },
  29590. [
  29591. {
  29592. name: "Macro",
  29593. height: math.unit(63.4, "meters"),
  29594. default: true
  29595. },
  29596. ]
  29597. ))
  29598. characterMakers.push(() => makeCharacter(
  29599. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29600. {
  29601. front: {
  29602. height: math.unit(75, "feet"),
  29603. name: "Front",
  29604. image: {
  29605. source: "./media/characters/cat-gigachu/front.svg",
  29606. extra: 1239/1027,
  29607. bottom: 32/1271
  29608. }
  29609. },
  29610. back: {
  29611. height: math.unit(75, "feet"),
  29612. name: "Back",
  29613. image: {
  29614. source: "./media/characters/cat-gigachu/back.svg",
  29615. extra: 1229/1030,
  29616. bottom: 9/1238
  29617. }
  29618. },
  29619. },
  29620. [
  29621. {
  29622. name: "Dynamax",
  29623. height: math.unit(75, "feet"),
  29624. default: true
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29630. {
  29631. front: {
  29632. height: math.unit(6, "feet"),
  29633. weight: math.unit(150, "lb"),
  29634. name: "Front",
  29635. image: {
  29636. source: "./media/characters/sfaiyan/front.svg",
  29637. extra: 999 / 978,
  29638. bottom: 5 / 1004
  29639. }
  29640. },
  29641. },
  29642. [
  29643. {
  29644. name: "Normal",
  29645. height: math.unit(1.82, "meters")
  29646. },
  29647. {
  29648. name: "Giant",
  29649. height: math.unit(2.27, "km"),
  29650. default: true
  29651. },
  29652. ]
  29653. ))
  29654. characterMakers.push(() => makeCharacter(
  29655. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29656. {
  29657. front: {
  29658. height: math.unit(179, "cm"),
  29659. weight: math.unit(100, "kg"),
  29660. name: "Front",
  29661. image: {
  29662. source: "./media/characters/raunehkeli/front.svg",
  29663. extra: 1934 / 1926,
  29664. bottom: 0 / 1934
  29665. }
  29666. },
  29667. },
  29668. [
  29669. {
  29670. name: "Normal",
  29671. height: math.unit(179, "cm")
  29672. },
  29673. {
  29674. name: "Maximum",
  29675. height: math.unit(575, "meters"),
  29676. default: true
  29677. },
  29678. ]
  29679. ))
  29680. characterMakers.push(() => makeCharacter(
  29681. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29682. {
  29683. front: {
  29684. height: math.unit(6, "feet"),
  29685. weight: math.unit(150, "lb"),
  29686. name: "Front",
  29687. image: {
  29688. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29689. extra: 2625 / 2518,
  29690. bottom: 60 / 2685
  29691. }
  29692. },
  29693. },
  29694. [
  29695. {
  29696. name: "Normal",
  29697. height: math.unit(6 + 2 / 12, "feet")
  29698. },
  29699. {
  29700. name: "Macro",
  29701. height: math.unit(1180, "feet"),
  29702. default: true
  29703. },
  29704. ]
  29705. ))
  29706. characterMakers.push(() => makeCharacter(
  29707. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29708. {
  29709. front: {
  29710. height: math.unit(5 + 6 / 12, "feet"),
  29711. weight: math.unit(108, "lb"),
  29712. name: "Front",
  29713. image: {
  29714. source: "./media/characters/lilith-zott/front.svg",
  29715. extra: 2510 / 2238,
  29716. bottom: 100 / 2610
  29717. }
  29718. },
  29719. frontDressed: {
  29720. height: math.unit(5 + 6 / 12, "feet"),
  29721. weight: math.unit(108, "lb"),
  29722. name: "Front (Dressed)",
  29723. image: {
  29724. source: "./media/characters/lilith-zott/front-dressed.svg",
  29725. extra: 2510 / 2238,
  29726. bottom: 100 / 2610
  29727. }
  29728. },
  29729. },
  29730. [
  29731. {
  29732. name: "Normal",
  29733. height: math.unit(5 + 6 / 12, "feet")
  29734. },
  29735. {
  29736. name: "Macro",
  29737. height: math.unit(1030, "feet"),
  29738. default: true
  29739. },
  29740. ]
  29741. ))
  29742. characterMakers.push(() => makeCharacter(
  29743. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29744. {
  29745. front: {
  29746. height: math.unit(6, "feet"),
  29747. weight: math.unit(150, "lb"),
  29748. name: "Front",
  29749. image: {
  29750. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29751. extra: 2567 / 2435,
  29752. bottom: 39 / 2606
  29753. }
  29754. },
  29755. frontSuper: {
  29756. height: math.unit(6, "feet"),
  29757. name: "Front (Super)",
  29758. image: {
  29759. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29760. extra: 2567 / 2435,
  29761. bottom: 39 / 2606
  29762. }
  29763. },
  29764. },
  29765. [
  29766. {
  29767. name: "Normal",
  29768. height: math.unit(5 + 10 / 12, "feet")
  29769. },
  29770. {
  29771. name: "Macro",
  29772. height: math.unit(1100, "feet"),
  29773. default: true
  29774. },
  29775. ]
  29776. ))
  29777. characterMakers.push(() => makeCharacter(
  29778. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29779. {
  29780. front: {
  29781. height: math.unit(100, "miles"),
  29782. name: "Front",
  29783. image: {
  29784. source: "./media/characters/sona/front.svg",
  29785. extra: 2433 / 2201,
  29786. bottom: 53 / 2486
  29787. }
  29788. },
  29789. foot: {
  29790. height: math.unit(16.1, "miles"),
  29791. name: "Foot",
  29792. image: {
  29793. source: "./media/characters/sona/foot.svg"
  29794. }
  29795. },
  29796. },
  29797. [
  29798. {
  29799. name: "Macro",
  29800. height: math.unit(100, "miles"),
  29801. default: true
  29802. },
  29803. ]
  29804. ))
  29805. characterMakers.push(() => makeCharacter(
  29806. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29807. {
  29808. front: {
  29809. height: math.unit(6, "feet"),
  29810. weight: math.unit(150, "lb"),
  29811. name: "Front",
  29812. image: {
  29813. source: "./media/characters/bailey/front.svg",
  29814. extra: 1778 / 1724,
  29815. bottom: 30 / 1808
  29816. }
  29817. },
  29818. },
  29819. [
  29820. {
  29821. name: "Micro",
  29822. height: math.unit(4, "inches")
  29823. },
  29824. {
  29825. name: "Normal",
  29826. height: math.unit(5 + 5 / 12, "feet"),
  29827. default: true
  29828. },
  29829. {
  29830. name: "Macro",
  29831. height: math.unit(250, "feet")
  29832. },
  29833. {
  29834. name: "Megamacro",
  29835. height: math.unit(100, "miles")
  29836. },
  29837. ]
  29838. ))
  29839. characterMakers.push(() => makeCharacter(
  29840. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29841. {
  29842. front: {
  29843. height: math.unit(5 + 2 / 12, "feet"),
  29844. weight: math.unit(120, "lb"),
  29845. name: "Front",
  29846. image: {
  29847. source: "./media/characters/snaps/front.svg",
  29848. extra: 2370 / 2177,
  29849. bottom: 48 / 2418
  29850. }
  29851. },
  29852. back: {
  29853. height: math.unit(5 + 2 / 12, "feet"),
  29854. weight: math.unit(120, "lb"),
  29855. name: "Back",
  29856. image: {
  29857. source: "./media/characters/snaps/back.svg",
  29858. extra: 2408 / 2258,
  29859. bottom: 15 / 2423
  29860. }
  29861. },
  29862. },
  29863. [
  29864. {
  29865. name: "Micro",
  29866. height: math.unit(9, "inches")
  29867. },
  29868. {
  29869. name: "Normal",
  29870. height: math.unit(5 + 2 / 12, "feet"),
  29871. default: true
  29872. },
  29873. {
  29874. name: "Mini Macro",
  29875. height: math.unit(10, "feet")
  29876. },
  29877. ]
  29878. ))
  29879. characterMakers.push(() => makeCharacter(
  29880. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29881. {
  29882. front: {
  29883. height: math.unit(1.8, "meters"),
  29884. weight: math.unit(85, "kg"),
  29885. name: "Front",
  29886. image: {
  29887. source: "./media/characters/azteck/front.svg",
  29888. extra: 2815 / 2625,
  29889. bottom: 89 / 2904
  29890. }
  29891. },
  29892. back: {
  29893. height: math.unit(1.8, "meters"),
  29894. weight: math.unit(85, "kg"),
  29895. name: "Back",
  29896. image: {
  29897. source: "./media/characters/azteck/back.svg",
  29898. extra: 2856 / 2648,
  29899. bottom: 85 / 2941
  29900. }
  29901. },
  29902. frontDressed: {
  29903. height: math.unit(1.8, "meters"),
  29904. weight: math.unit(85, "kg"),
  29905. name: "Front (Dressed)",
  29906. image: {
  29907. source: "./media/characters/azteck/front-dressed.svg",
  29908. extra: 2147 / 2003,
  29909. bottom: 68 / 2215
  29910. }
  29911. },
  29912. head: {
  29913. height: math.unit(0.47, "meters"),
  29914. weight: math.unit(85, "kg"),
  29915. name: "Head",
  29916. image: {
  29917. source: "./media/characters/azteck/head.svg"
  29918. }
  29919. },
  29920. },
  29921. [
  29922. {
  29923. name: "Bite sized",
  29924. height: math.unit(16, "cm")
  29925. },
  29926. {
  29927. name: "Normal",
  29928. height: math.unit(1.8, "meters"),
  29929. default: true
  29930. },
  29931. ]
  29932. ))
  29933. characterMakers.push(() => makeCharacter(
  29934. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29935. {
  29936. front: {
  29937. height: math.unit(6, "feet"),
  29938. weight: math.unit(150, "lb"),
  29939. name: "Front",
  29940. image: {
  29941. source: "./media/characters/pidge/front.svg",
  29942. extra: 620 / 588,
  29943. bottom: 9 / 629
  29944. }
  29945. },
  29946. back: {
  29947. height: math.unit(6, "feet"),
  29948. weight: math.unit(150, "lb"),
  29949. name: "Back",
  29950. image: {
  29951. source: "./media/characters/pidge/back.svg",
  29952. extra: 620 / 588,
  29953. bottom: 9 / 629
  29954. }
  29955. },
  29956. },
  29957. [
  29958. {
  29959. name: "Macro",
  29960. height: math.unit(1, "mile"),
  29961. default: true
  29962. },
  29963. ]
  29964. ))
  29965. characterMakers.push(() => makeCharacter(
  29966. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29967. {
  29968. front: {
  29969. height: math.unit(6, "feet"),
  29970. weight: math.unit(150, "lb"),
  29971. name: "Front",
  29972. image: {
  29973. source: "./media/characters/en/front.svg",
  29974. extra: 1697 / 1563,
  29975. bottom: 103 / 1800
  29976. }
  29977. },
  29978. back: {
  29979. height: math.unit(6, "feet"),
  29980. weight: math.unit(150, "lb"),
  29981. name: "Back",
  29982. image: {
  29983. source: "./media/characters/en/back.svg",
  29984. extra: 1700 / 1570,
  29985. bottom: 51 / 1751
  29986. }
  29987. },
  29988. frontDressed: {
  29989. height: math.unit(6, "feet"),
  29990. weight: math.unit(150, "lb"),
  29991. name: "Front (Dressed)",
  29992. image: {
  29993. source: "./media/characters/en/front-dressed.svg",
  29994. extra: 1697 / 1563,
  29995. bottom: 103 / 1800
  29996. }
  29997. },
  29998. backDressed: {
  29999. height: math.unit(6, "feet"),
  30000. weight: math.unit(150, "lb"),
  30001. name: "Back (Dressed)",
  30002. image: {
  30003. source: "./media/characters/en/back-dressed.svg",
  30004. extra: 1700 / 1570,
  30005. bottom: 51 / 1751
  30006. }
  30007. },
  30008. },
  30009. [
  30010. {
  30011. name: "Macro",
  30012. height: math.unit(210, "feet"),
  30013. default: true
  30014. },
  30015. ]
  30016. ))
  30017. characterMakers.push(() => makeCharacter(
  30018. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30019. {
  30020. front: {
  30021. height: math.unit(6, "feet"),
  30022. weight: math.unit(150, "lb"),
  30023. name: "Front",
  30024. image: {
  30025. source: "./media/characters/haze-orris/front.svg",
  30026. extra: 3975 / 3525,
  30027. bottom: 137 / 4112
  30028. }
  30029. },
  30030. },
  30031. [
  30032. {
  30033. name: "Micro",
  30034. height: math.unit(150, "mm"),
  30035. default: true
  30036. },
  30037. ]
  30038. ))
  30039. characterMakers.push(() => makeCharacter(
  30040. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30041. {
  30042. front: {
  30043. height: math.unit(6, "feet"),
  30044. weight: math.unit(150, "lb"),
  30045. name: "Front",
  30046. image: {
  30047. source: "./media/characters/casselene-yaro/front.svg",
  30048. extra: 4721 / 4541,
  30049. bottom: 82 / 4803
  30050. }
  30051. },
  30052. back: {
  30053. height: math.unit(6, "feet"),
  30054. weight: math.unit(150, "lb"),
  30055. name: "Back",
  30056. image: {
  30057. source: "./media/characters/casselene-yaro/back.svg",
  30058. extra: 4569 / 4377,
  30059. bottom: 69 / 4638
  30060. }
  30061. },
  30062. frontDressed: {
  30063. height: math.unit(6, "feet"),
  30064. weight: math.unit(150, "lb"),
  30065. name: "Front-dressed",
  30066. image: {
  30067. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30068. extra: 4721 / 4541,
  30069. bottom: 82 / 4803
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Macro",
  30076. height: math.unit(190, "feet"),
  30077. default: true
  30078. },
  30079. ]
  30080. ))
  30081. characterMakers.push(() => makeCharacter(
  30082. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30083. {
  30084. front: {
  30085. height: math.unit(6, "feet"),
  30086. weight: math.unit(150, "lb"),
  30087. name: "Front",
  30088. image: {
  30089. source: "./media/characters/myra-rue-delore/front.svg",
  30090. extra: 1340 / 1308,
  30091. bottom: 67 / 1407
  30092. }
  30093. },
  30094. back: {
  30095. height: math.unit(6, "feet"),
  30096. weight: math.unit(150, "lb"),
  30097. name: "Back",
  30098. image: {
  30099. source: "./media/characters/myra-rue-delore/back.svg",
  30100. extra: 1341 / 1310,
  30101. bottom: 40 / 1381
  30102. }
  30103. },
  30104. frontDressed: {
  30105. height: math.unit(6, "feet"),
  30106. weight: math.unit(150, "lb"),
  30107. name: "Front (Dressed)",
  30108. image: {
  30109. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30110. extra: 1340 / 1308,
  30111. bottom: 67 / 1407
  30112. }
  30113. },
  30114. },
  30115. [
  30116. {
  30117. name: "Macro",
  30118. height: math.unit(150, "feet"),
  30119. default: true
  30120. },
  30121. ]
  30122. ))
  30123. characterMakers.push(() => makeCharacter(
  30124. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30125. {
  30126. front: {
  30127. height: math.unit(10, "feet"),
  30128. weight: math.unit(15015, "lb"),
  30129. name: "Front",
  30130. image: {
  30131. source: "./media/characters/fem!plat/front.svg",
  30132. extra: 2799 / 2604,
  30133. bottom: 149 / 2948
  30134. }
  30135. },
  30136. },
  30137. [
  30138. {
  30139. name: "Normal",
  30140. height: math.unit(10, "feet"),
  30141. default: true
  30142. },
  30143. {
  30144. name: "Macro",
  30145. height: math.unit(100, "feet")
  30146. },
  30147. {
  30148. name: "Megamacro",
  30149. height: math.unit(1000, "feet")
  30150. },
  30151. ]
  30152. ))
  30153. characterMakers.push(() => makeCharacter(
  30154. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30155. {
  30156. front: {
  30157. height: math.unit(15 + 5 / 12, "feet"),
  30158. weight: math.unit(4600, "lb"),
  30159. name: "Front",
  30160. image: {
  30161. source: "./media/characters/neapolitan-ananassa/front.svg",
  30162. extra: 2903 / 2736,
  30163. bottom: 0 / 2903
  30164. }
  30165. },
  30166. side: {
  30167. height: math.unit(15 + 5 / 12, "feet"),
  30168. weight: math.unit(4600, "lb"),
  30169. name: "Side",
  30170. image: {
  30171. source: "./media/characters/neapolitan-ananassa/side.svg",
  30172. extra: 2925 / 2719,
  30173. bottom: 0 / 2925
  30174. }
  30175. },
  30176. back: {
  30177. height: math.unit(15 + 5 / 12, "feet"),
  30178. weight: math.unit(4600, "lb"),
  30179. name: "Back",
  30180. image: {
  30181. source: "./media/characters/neapolitan-ananassa/back.svg",
  30182. extra: 2903 / 2736,
  30183. bottom: 0 / 2903
  30184. }
  30185. },
  30186. },
  30187. [
  30188. {
  30189. name: "Normal",
  30190. height: math.unit(15 + 5 / 12, "feet"),
  30191. default: true
  30192. },
  30193. {
  30194. name: "Post-Millenium",
  30195. height: math.unit(35 + 5 / 12, "feet")
  30196. },
  30197. {
  30198. name: "Post-Era",
  30199. height: math.unit(450 + 5 / 12, "feet")
  30200. },
  30201. ]
  30202. ))
  30203. characterMakers.push(() => makeCharacter(
  30204. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30205. {
  30206. front: {
  30207. height: math.unit(300, "meters"),
  30208. weight: math.unit(125000, "tonnes"),
  30209. name: "Front",
  30210. image: {
  30211. source: "./media/characters/pazuzu/front.svg",
  30212. extra: 877 / 794,
  30213. bottom: 47 / 924
  30214. }
  30215. },
  30216. },
  30217. [
  30218. {
  30219. name: "Macro",
  30220. height: math.unit(300, "meters"),
  30221. default: true
  30222. },
  30223. ]
  30224. ))
  30225. characterMakers.push(() => makeCharacter(
  30226. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30227. {
  30228. side: {
  30229. height: math.unit(10 + 7 / 12, "feet"),
  30230. weight: math.unit(2.5, "tons"),
  30231. name: "Side",
  30232. image: {
  30233. source: "./media/characters/aasha/side.svg",
  30234. extra: 1345 / 1245,
  30235. bottom: 111 / 1456
  30236. }
  30237. },
  30238. back: {
  30239. height: math.unit(10 + 7 / 12, "feet"),
  30240. weight: math.unit(2.5, "tons"),
  30241. name: "Back",
  30242. image: {
  30243. source: "./media/characters/aasha/back.svg",
  30244. extra: 1133 / 1057,
  30245. bottom: 257 / 1390
  30246. }
  30247. },
  30248. },
  30249. [
  30250. {
  30251. name: "Normal",
  30252. height: math.unit(10 + 7 / 12, "feet"),
  30253. default: true
  30254. },
  30255. ]
  30256. ))
  30257. characterMakers.push(() => makeCharacter(
  30258. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30259. {
  30260. front: {
  30261. height: math.unit(6 + 3 / 12, "feet"),
  30262. name: "Front",
  30263. image: {
  30264. source: "./media/characters/nevan/front.svg",
  30265. extra: 704 / 704,
  30266. bottom: 28 / 732
  30267. }
  30268. },
  30269. back: {
  30270. height: math.unit(6 + 3 / 12, "feet"),
  30271. name: "Back",
  30272. image: {
  30273. source: "./media/characters/nevan/back.svg",
  30274. extra: 714 / 714,
  30275. bottom: 21 / 735
  30276. }
  30277. },
  30278. frontFlaccid: {
  30279. height: math.unit(6 + 3 / 12, "feet"),
  30280. name: "Front (Flaccid)",
  30281. image: {
  30282. source: "./media/characters/nevan/front-flaccid.svg",
  30283. extra: 704 / 704,
  30284. bottom: 28 / 732
  30285. }
  30286. },
  30287. frontErect: {
  30288. height: math.unit(6 + 3 / 12, "feet"),
  30289. name: "Front (Erect)",
  30290. image: {
  30291. source: "./media/characters/nevan/front-erect.svg",
  30292. extra: 704 / 704,
  30293. bottom: 28 / 732
  30294. }
  30295. },
  30296. backFlaccid: {
  30297. height: math.unit(6 + 3 / 12, "feet"),
  30298. name: "Back (Flaccid)",
  30299. image: {
  30300. source: "./media/characters/nevan/back-flaccid.svg",
  30301. extra: 714 / 714,
  30302. bottom: 21 / 735
  30303. }
  30304. },
  30305. },
  30306. [
  30307. {
  30308. name: "Normal",
  30309. height: math.unit(6 + 3 / 12, "feet"),
  30310. default: true
  30311. },
  30312. ]
  30313. ))
  30314. characterMakers.push(() => makeCharacter(
  30315. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30316. {
  30317. front: {
  30318. height: math.unit(4, "feet"),
  30319. name: "Front",
  30320. image: {
  30321. source: "./media/characters/arhan/front.svg",
  30322. extra: 3368 / 3133,
  30323. bottom: 0 / 3368
  30324. }
  30325. },
  30326. side: {
  30327. height: math.unit(4, "feet"),
  30328. name: "Side",
  30329. image: {
  30330. source: "./media/characters/arhan/side.svg",
  30331. extra: 3347 / 3105,
  30332. bottom: 0 / 3347
  30333. }
  30334. },
  30335. tongue: {
  30336. height: math.unit(1.42, "feet"),
  30337. name: "Tongue",
  30338. image: {
  30339. source: "./media/characters/arhan/tongue.svg"
  30340. }
  30341. },
  30342. head: {
  30343. height: math.unit(0.85, "feet"),
  30344. name: "Head",
  30345. image: {
  30346. source: "./media/characters/arhan/head.svg"
  30347. }
  30348. },
  30349. },
  30350. [
  30351. {
  30352. name: "Normal",
  30353. height: math.unit(4, "feet"),
  30354. default: true
  30355. },
  30356. ]
  30357. ))
  30358. characterMakers.push(() => makeCharacter(
  30359. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30360. {
  30361. front: {
  30362. height: math.unit(5 + 7.5 / 12, "feet"),
  30363. weight: math.unit(120, "lb"),
  30364. name: "Front",
  30365. image: {
  30366. source: "./media/characters/digi-duncan/front.svg",
  30367. extra: 330 / 326,
  30368. bottom: 16 / 346
  30369. }
  30370. },
  30371. side: {
  30372. height: math.unit(5 + 7.5 / 12, "feet"),
  30373. weight: math.unit(120, "lb"),
  30374. name: "Side",
  30375. image: {
  30376. source: "./media/characters/digi-duncan/side.svg",
  30377. extra: 341 / 337,
  30378. bottom: 1 / 342
  30379. }
  30380. },
  30381. back: {
  30382. height: math.unit(5 + 7.5 / 12, "feet"),
  30383. weight: math.unit(120, "lb"),
  30384. name: "Back",
  30385. image: {
  30386. source: "./media/characters/digi-duncan/back.svg",
  30387. extra: 330 / 326,
  30388. bottom: 12 / 342
  30389. }
  30390. },
  30391. },
  30392. [
  30393. {
  30394. name: "Speck",
  30395. height: math.unit(0.25, "mm")
  30396. },
  30397. {
  30398. name: "Micro",
  30399. height: math.unit(5, "mm")
  30400. },
  30401. {
  30402. name: "Tiny",
  30403. height: math.unit(0.5, "inches"),
  30404. default: true
  30405. },
  30406. {
  30407. name: "Human",
  30408. height: math.unit(5 + 7.5 / 12, "feet")
  30409. },
  30410. {
  30411. name: "Minigiant",
  30412. height: math.unit(8 + 5.25, "feet")
  30413. },
  30414. {
  30415. name: "Giant",
  30416. height: math.unit(2000, "feet")
  30417. },
  30418. {
  30419. name: "Mega",
  30420. height: math.unit(371.1, "miles")
  30421. },
  30422. ]
  30423. ))
  30424. characterMakers.push(() => makeCharacter(
  30425. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30426. {
  30427. front: {
  30428. height: math.unit(2, "meters"),
  30429. weight: math.unit(350, "kg"),
  30430. name: "Front",
  30431. image: {
  30432. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30433. extra: 898 / 838,
  30434. bottom: 9 / 907
  30435. }
  30436. },
  30437. },
  30438. [
  30439. {
  30440. name: "Micro",
  30441. height: math.unit(8, "meters")
  30442. },
  30443. {
  30444. name: "Normal",
  30445. height: math.unit(50, "meters"),
  30446. default: true
  30447. },
  30448. {
  30449. name: "Macro",
  30450. height: math.unit(500, "meters")
  30451. },
  30452. ]
  30453. ))
  30454. characterMakers.push(() => makeCharacter(
  30455. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30456. {
  30457. front: {
  30458. height: math.unit(6 + 6 / 12, "feet"),
  30459. name: "Front",
  30460. image: {
  30461. source: "./media/characters/khardesh/front.svg",
  30462. extra: 1788/1596,
  30463. bottom: 66/1854
  30464. }
  30465. },
  30466. back: {
  30467. height: math.unit(6 + 6 / 12, "feet"),
  30468. name: "Back",
  30469. image: {
  30470. source: "./media/characters/khardesh/back.svg",
  30471. extra: 1781/1584,
  30472. bottom: 68/1849
  30473. }
  30474. },
  30475. },
  30476. [
  30477. {
  30478. name: "Normal",
  30479. height: math.unit(6 + 6 / 12, "feet"),
  30480. default: true
  30481. },
  30482. {
  30483. name: "Normal+",
  30484. height: math.unit(4, "meters")
  30485. },
  30486. {
  30487. name: "Macro",
  30488. height: math.unit(50, "meters")
  30489. },
  30490. {
  30491. name: "Macro+",
  30492. height: math.unit(100, "meters")
  30493. },
  30494. {
  30495. name: "Megamacro",
  30496. height: math.unit(20, "km")
  30497. },
  30498. ]
  30499. ))
  30500. characterMakers.push(() => makeCharacter(
  30501. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30502. {
  30503. front: {
  30504. height: math.unit(6, "feet"),
  30505. weight: math.unit(150, "lb"),
  30506. name: "Front",
  30507. image: {
  30508. source: "./media/characters/kosho/front.svg",
  30509. extra: 1847 / 1847,
  30510. bottom: 86 / 1933
  30511. }
  30512. },
  30513. },
  30514. [
  30515. {
  30516. name: "Second-stage micro",
  30517. height: math.unit(0.5, "inches")
  30518. },
  30519. {
  30520. name: "First-stage micro",
  30521. height: math.unit(6, "inches")
  30522. },
  30523. {
  30524. name: "Normal",
  30525. height: math.unit(6, "feet"),
  30526. default: true
  30527. },
  30528. {
  30529. name: "First-stage macro",
  30530. height: math.unit(72, "feet")
  30531. },
  30532. {
  30533. name: "Second-stage macro",
  30534. height: math.unit(864, "feet")
  30535. },
  30536. ]
  30537. ))
  30538. characterMakers.push(() => makeCharacter(
  30539. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30540. {
  30541. normal: {
  30542. height: math.unit(4 + 6 / 12, "feet"),
  30543. name: "Normal",
  30544. image: {
  30545. source: "./media/characters/hydra/normal.svg",
  30546. extra: 2833 / 2634,
  30547. bottom: 68 / 2901
  30548. }
  30549. },
  30550. smol: {
  30551. height: math.unit(0.705, "inches"),
  30552. name: "Smol",
  30553. image: {
  30554. source: "./media/characters/hydra/smol.svg",
  30555. extra: 2715 / 2540,
  30556. bottom: 0 / 2715
  30557. }
  30558. },
  30559. },
  30560. [
  30561. {
  30562. name: "Normal",
  30563. height: math.unit(4 + 6 / 12, "feet"),
  30564. default: true
  30565. }
  30566. ]
  30567. ))
  30568. characterMakers.push(() => makeCharacter(
  30569. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30570. {
  30571. front: {
  30572. height: math.unit(0.6, "cm"),
  30573. name: "Front",
  30574. image: {
  30575. source: "./media/characters/daz/front.svg",
  30576. extra: 1682 / 1164,
  30577. bottom: 42 / 1724
  30578. }
  30579. },
  30580. },
  30581. [
  30582. {
  30583. name: "Normal",
  30584. height: math.unit(0.6, "cm"),
  30585. default: true
  30586. },
  30587. ]
  30588. ))
  30589. characterMakers.push(() => makeCharacter(
  30590. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30591. {
  30592. front: {
  30593. height: math.unit(6, "feet"),
  30594. weight: math.unit(235, "lb"),
  30595. name: "Front",
  30596. image: {
  30597. source: "./media/characters/theo-pangolin/front.svg",
  30598. extra: 1996 / 1969,
  30599. bottom: 115 / 2111
  30600. }
  30601. },
  30602. back: {
  30603. height: math.unit(6, "feet"),
  30604. weight: math.unit(235, "lb"),
  30605. name: "Back",
  30606. image: {
  30607. source: "./media/characters/theo-pangolin/back.svg",
  30608. extra: 1979 / 1979,
  30609. bottom: 40 / 2019
  30610. }
  30611. },
  30612. feral: {
  30613. height: math.unit(2, "feet"),
  30614. weight: math.unit(30, "lb"),
  30615. name: "Feral",
  30616. image: {
  30617. source: "./media/characters/theo-pangolin/feral.svg",
  30618. extra: 803 / 791,
  30619. bottom: 181 / 984
  30620. }
  30621. },
  30622. footFive: {
  30623. height: math.unit(1.43, "feet"),
  30624. name: "Foot (Five Toes)",
  30625. image: {
  30626. source: "./media/characters/theo-pangolin/foot-five.svg"
  30627. }
  30628. },
  30629. footFour: {
  30630. height: math.unit(1.43, "feet"),
  30631. name: "Foot (Four Toes)",
  30632. image: {
  30633. source: "./media/characters/theo-pangolin/foot-four.svg"
  30634. }
  30635. },
  30636. handFour: {
  30637. height: math.unit(0.81, "feet"),
  30638. name: "Hand (Four Fingers)",
  30639. image: {
  30640. source: "./media/characters/theo-pangolin/hand-four.svg"
  30641. }
  30642. },
  30643. handThree: {
  30644. height: math.unit(0.81, "feet"),
  30645. name: "Hand (Three Fingers)",
  30646. image: {
  30647. source: "./media/characters/theo-pangolin/hand-three.svg"
  30648. }
  30649. },
  30650. headFront: {
  30651. height: math.unit(1.37, "feet"),
  30652. name: "Head (Front)",
  30653. image: {
  30654. source: "./media/characters/theo-pangolin/head-front.svg"
  30655. }
  30656. },
  30657. headSide: {
  30658. height: math.unit(1.43, "feet"),
  30659. name: "Head (Side)",
  30660. image: {
  30661. source: "./media/characters/theo-pangolin/head-side.svg"
  30662. }
  30663. },
  30664. tongue: {
  30665. height: math.unit(2.29, "feet"),
  30666. name: "Tongue",
  30667. image: {
  30668. source: "./media/characters/theo-pangolin/tongue.svg"
  30669. }
  30670. },
  30671. },
  30672. [
  30673. {
  30674. name: "Normal",
  30675. height: math.unit(6, "feet")
  30676. },
  30677. {
  30678. name: "Macro",
  30679. height: math.unit(400, "feet"),
  30680. default: true
  30681. },
  30682. ]
  30683. ))
  30684. characterMakers.push(() => makeCharacter(
  30685. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30686. {
  30687. front: {
  30688. height: math.unit(6, "inches"),
  30689. weight: math.unit(0.036, "kg"),
  30690. name: "Front",
  30691. image: {
  30692. source: "./media/characters/renée/front.svg",
  30693. extra: 900 / 886,
  30694. bottom: 8 / 908
  30695. }
  30696. },
  30697. },
  30698. [
  30699. {
  30700. name: "Nano",
  30701. height: math.unit(1, "nm")
  30702. },
  30703. {
  30704. name: "Micro",
  30705. height: math.unit(1, "mm")
  30706. },
  30707. {
  30708. name: "Normal",
  30709. height: math.unit(6, "inches")
  30710. },
  30711. {
  30712. name: "Macro",
  30713. height: math.unit(2000, "feet"),
  30714. default: true
  30715. },
  30716. {
  30717. name: "Megamacro",
  30718. height: math.unit(2, "km")
  30719. },
  30720. {
  30721. name: "Gigamacro",
  30722. height: math.unit(2000, "km")
  30723. },
  30724. {
  30725. name: "Teramacro",
  30726. height: math.unit(250000, "km")
  30727. },
  30728. ]
  30729. ))
  30730. characterMakers.push(() => makeCharacter(
  30731. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30732. {
  30733. front: {
  30734. height: math.unit(4, "meters"),
  30735. weight: math.unit(150, "kg"),
  30736. name: "Front",
  30737. image: {
  30738. source: "./media/characters/caledvwlch/front.svg",
  30739. extra: 1760 / 1551,
  30740. bottom: 28 / 1788
  30741. }
  30742. },
  30743. side: {
  30744. height: math.unit(4, "meters"),
  30745. weight: math.unit(150, "kg"),
  30746. name: "Side",
  30747. image: {
  30748. source: "./media/characters/caledvwlch/side.svg",
  30749. extra: 1605 / 1536,
  30750. bottom: 31 / 1636
  30751. }
  30752. },
  30753. back: {
  30754. height: math.unit(4, "meters"),
  30755. weight: math.unit(150, "kg"),
  30756. name: "Back",
  30757. image: {
  30758. source: "./media/characters/caledvwlch/back.svg",
  30759. extra: 1635 / 1565,
  30760. bottom: 27 / 1662
  30761. }
  30762. },
  30763. },
  30764. [
  30765. {
  30766. name: "\"Incognito\"",
  30767. height: math.unit(4, "meters")
  30768. },
  30769. {
  30770. name: "Small rampage",
  30771. height: math.unit(600, "meters")
  30772. },
  30773. {
  30774. name: "Mega",
  30775. height: math.unit(30, "km")
  30776. },
  30777. {
  30778. name: "Home-size",
  30779. height: math.unit(50, "km"),
  30780. default: true
  30781. },
  30782. {
  30783. name: "Giga",
  30784. height: math.unit(300, "km")
  30785. },
  30786. {
  30787. name: "Lounging",
  30788. height: math.unit(11000, "km")
  30789. },
  30790. {
  30791. name: "Planet snacking",
  30792. height: math.unit(2000000, "km")
  30793. },
  30794. ]
  30795. ))
  30796. characterMakers.push(() => makeCharacter(
  30797. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30798. {
  30799. front: {
  30800. height: math.unit(6, "feet"),
  30801. weight: math.unit(215, "lb"),
  30802. name: "Front",
  30803. image: {
  30804. source: "./media/characters/sapphire-svell/front.svg",
  30805. extra: 495 / 455,
  30806. bottom: 20 / 515
  30807. }
  30808. },
  30809. back: {
  30810. height: math.unit(6, "feet"),
  30811. weight: math.unit(216, "lb"),
  30812. name: "Back",
  30813. image: {
  30814. source: "./media/characters/sapphire-svell/back.svg",
  30815. extra: 497 / 477,
  30816. bottom: 7 / 504
  30817. }
  30818. },
  30819. maw: {
  30820. height: math.unit(1.57, "feet"),
  30821. name: "Maw",
  30822. image: {
  30823. source: "./media/characters/sapphire-svell/maw.svg"
  30824. }
  30825. },
  30826. foot: {
  30827. height: math.unit(1.07, "feet"),
  30828. name: "Foot",
  30829. image: {
  30830. source: "./media/characters/sapphire-svell/foot.svg"
  30831. }
  30832. },
  30833. toering: {
  30834. height: math.unit(1.7, "inch"),
  30835. name: "Toering",
  30836. image: {
  30837. source: "./media/characters/sapphire-svell/toering.svg"
  30838. }
  30839. },
  30840. },
  30841. [
  30842. {
  30843. name: "Normal",
  30844. height: math.unit(300, "feet"),
  30845. default: true
  30846. },
  30847. {
  30848. name: "Augmented",
  30849. height: math.unit(1250, "feet")
  30850. },
  30851. {
  30852. name: "Unleashed",
  30853. height: math.unit(3000, "feet")
  30854. },
  30855. ]
  30856. ))
  30857. characterMakers.push(() => makeCharacter(
  30858. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30859. {
  30860. side: {
  30861. height: math.unit(2 + 3 / 12, "feet"),
  30862. weight: math.unit(110, "lb"),
  30863. name: "Side",
  30864. image: {
  30865. source: "./media/characters/glitch-flux/side.svg",
  30866. extra: 997 / 805,
  30867. bottom: 20 / 1017
  30868. }
  30869. },
  30870. },
  30871. [
  30872. {
  30873. name: "Normal",
  30874. height: math.unit(2 + 3 / 12, "feet"),
  30875. default: true
  30876. },
  30877. ]
  30878. ))
  30879. characterMakers.push(() => makeCharacter(
  30880. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30881. {
  30882. front: {
  30883. height: math.unit(4, "meters"),
  30884. name: "Front",
  30885. image: {
  30886. source: "./media/characters/mid/front.svg",
  30887. extra: 507 / 476,
  30888. bottom: 17 / 524
  30889. }
  30890. },
  30891. back: {
  30892. height: math.unit(4, "meters"),
  30893. name: "Back",
  30894. image: {
  30895. source: "./media/characters/mid/back.svg",
  30896. extra: 519 / 487,
  30897. bottom: 7 / 526
  30898. }
  30899. },
  30900. stuck: {
  30901. height: math.unit(2.2, "meters"),
  30902. name: "Stuck",
  30903. image: {
  30904. source: "./media/characters/mid/stuck.svg",
  30905. extra: 1951 / 1869,
  30906. bottom: 88 / 2039
  30907. }
  30908. }
  30909. },
  30910. [
  30911. {
  30912. name: "Normal",
  30913. height: math.unit(4, "meters"),
  30914. default: true
  30915. },
  30916. {
  30917. name: "Big",
  30918. height: math.unit(10, "meters")
  30919. },
  30920. {
  30921. name: "Macro",
  30922. height: math.unit(800, "meters")
  30923. },
  30924. {
  30925. name: "Megamacro",
  30926. height: math.unit(100, "km")
  30927. },
  30928. {
  30929. name: "Overgrown",
  30930. height: math.unit(1, "parsec")
  30931. },
  30932. ]
  30933. ))
  30934. characterMakers.push(() => makeCharacter(
  30935. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30936. {
  30937. front: {
  30938. height: math.unit(2.5, "meters"),
  30939. weight: math.unit(225, "kg"),
  30940. name: "Front",
  30941. image: {
  30942. source: "./media/characters/iris/front.svg",
  30943. extra: 3348 / 3251,
  30944. bottom: 205 / 3553
  30945. }
  30946. },
  30947. maw: {
  30948. height: math.unit(0.56, "meter"),
  30949. name: "Maw",
  30950. image: {
  30951. source: "./media/characters/iris/maw.svg"
  30952. }
  30953. },
  30954. },
  30955. [
  30956. {
  30957. name: "Mewter cat",
  30958. height: math.unit(1.2, "meters")
  30959. },
  30960. {
  30961. name: "Minimacro",
  30962. height: math.unit(2.5, "meters"),
  30963. default: true
  30964. },
  30965. {
  30966. name: "Macro",
  30967. height: math.unit(180, "meters")
  30968. },
  30969. {
  30970. name: "Megamacro",
  30971. height: math.unit(2746, "meters")
  30972. },
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30977. {
  30978. front: {
  30979. height: math.unit(6, "feet"),
  30980. weight: math.unit(135, "lb"),
  30981. name: "Front",
  30982. image: {
  30983. source: "./media/characters/axel/front.svg",
  30984. extra: 908 / 908,
  30985. bottom: 58 / 966
  30986. }
  30987. },
  30988. side: {
  30989. height: math.unit(6, "feet"),
  30990. weight: math.unit(135, "lb"),
  30991. name: "Side",
  30992. image: {
  30993. source: "./media/characters/axel/side.svg",
  30994. extra: 958 / 958,
  30995. bottom: 11 / 969
  30996. }
  30997. },
  30998. back: {
  30999. height: math.unit(6, "feet"),
  31000. weight: math.unit(135, "lb"),
  31001. name: "Back",
  31002. image: {
  31003. source: "./media/characters/axel/back.svg",
  31004. extra: 887 / 887,
  31005. bottom: 34 / 921
  31006. }
  31007. },
  31008. head: {
  31009. height: math.unit(1.07, "feet"),
  31010. name: "Head",
  31011. image: {
  31012. source: "./media/characters/axel/head.svg"
  31013. }
  31014. },
  31015. beak: {
  31016. height: math.unit(1.4, "feet"),
  31017. name: "Beak",
  31018. image: {
  31019. source: "./media/characters/axel/beak.svg"
  31020. }
  31021. },
  31022. beakSide: {
  31023. height: math.unit(1.4, "feet"),
  31024. name: "Beak Side",
  31025. image: {
  31026. source: "./media/characters/axel/beak-side.svg"
  31027. }
  31028. },
  31029. sheath: {
  31030. height: math.unit(0.5, "feet"),
  31031. name: "Sheath",
  31032. image: {
  31033. source: "./media/characters/axel/sheath.svg"
  31034. }
  31035. },
  31036. dick: {
  31037. height: math.unit(0.98, "feet"),
  31038. name: "Dick",
  31039. image: {
  31040. source: "./media/characters/axel/dick.svg"
  31041. }
  31042. },
  31043. },
  31044. [
  31045. {
  31046. name: "Macro",
  31047. height: math.unit(68, "meters"),
  31048. default: true
  31049. },
  31050. ]
  31051. ))
  31052. characterMakers.push(() => makeCharacter(
  31053. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31054. {
  31055. front: {
  31056. height: math.unit(3.5, "meters"),
  31057. weight: math.unit(1200, "kg"),
  31058. name: "Front",
  31059. image: {
  31060. source: "./media/characters/joanna/front.svg",
  31061. extra: 1596 / 1488,
  31062. bottom: 29 / 1625
  31063. }
  31064. },
  31065. back: {
  31066. height: math.unit(3.5, "meters"),
  31067. weight: math.unit(1200, "kg"),
  31068. name: "Back",
  31069. image: {
  31070. source: "./media/characters/joanna/back.svg",
  31071. extra: 1594 / 1495,
  31072. bottom: 26 / 1620
  31073. }
  31074. },
  31075. frontShorts: {
  31076. height: math.unit(3.5, "meters"),
  31077. weight: math.unit(1200, "kg"),
  31078. name: "Front (Shorts)",
  31079. image: {
  31080. source: "./media/characters/joanna/front-shorts.svg",
  31081. extra: 1596 / 1488,
  31082. bottom: 29 / 1625
  31083. }
  31084. },
  31085. frontBiker: {
  31086. height: math.unit(3.5, "meters"),
  31087. weight: math.unit(1200, "kg"),
  31088. name: "Front (Biker)",
  31089. image: {
  31090. source: "./media/characters/joanna/front-biker.svg",
  31091. extra: 1596 / 1488,
  31092. bottom: 29 / 1625
  31093. }
  31094. },
  31095. backBiker: {
  31096. height: math.unit(3.5, "meters"),
  31097. weight: math.unit(1200, "kg"),
  31098. name: "Back (Biker)",
  31099. image: {
  31100. source: "./media/characters/joanna/back-biker.svg",
  31101. extra: 1594 / 1495,
  31102. bottom: 88 / 1682
  31103. }
  31104. },
  31105. bikeLeft: {
  31106. height: math.unit(2.4, "meters"),
  31107. weight: math.unit(1600, "kg"),
  31108. name: "Bike (Left)",
  31109. image: {
  31110. source: "./media/characters/joanna/bike-left.svg",
  31111. extra: 720 / 720,
  31112. bottom: 8 / 728
  31113. }
  31114. },
  31115. bikeRight: {
  31116. height: math.unit(2.4, "meters"),
  31117. weight: math.unit(1600, "kg"),
  31118. name: "Bike (Right)",
  31119. image: {
  31120. source: "./media/characters/joanna/bike-right.svg",
  31121. extra: 720 / 720,
  31122. bottom: 8 / 728
  31123. }
  31124. },
  31125. },
  31126. [
  31127. {
  31128. name: "Incognito",
  31129. height: math.unit(3.5, "meters")
  31130. },
  31131. {
  31132. name: "Casual Big",
  31133. height: math.unit(200, "meters")
  31134. },
  31135. {
  31136. name: "Macro",
  31137. height: math.unit(600, "meters")
  31138. },
  31139. {
  31140. name: "Original",
  31141. height: math.unit(20, "km"),
  31142. default: true
  31143. },
  31144. {
  31145. name: "Giga",
  31146. height: math.unit(400, "km")
  31147. },
  31148. {
  31149. name: "Lounging",
  31150. height: math.unit(1500, "km")
  31151. },
  31152. {
  31153. name: "Planetary",
  31154. height: math.unit(200000, "km")
  31155. },
  31156. ]
  31157. ))
  31158. characterMakers.push(() => makeCharacter(
  31159. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31160. {
  31161. front: {
  31162. height: math.unit(6, "feet"),
  31163. weight: math.unit(150, "lb"),
  31164. name: "Front",
  31165. image: {
  31166. source: "./media/characters/hugo-sigil/front.svg",
  31167. extra: 522 / 500,
  31168. bottom: 2 / 524
  31169. }
  31170. },
  31171. back: {
  31172. height: math.unit(6, "feet"),
  31173. weight: math.unit(150, "lb"),
  31174. name: "Back",
  31175. image: {
  31176. source: "./media/characters/hugo-sigil/back.svg",
  31177. extra: 519 / 495,
  31178. bottom: 5 / 524
  31179. }
  31180. },
  31181. maw: {
  31182. height: math.unit(1.4, "feet"),
  31183. weight: math.unit(150, "lb"),
  31184. name: "Maw",
  31185. image: {
  31186. source: "./media/characters/hugo-sigil/maw.svg"
  31187. }
  31188. },
  31189. feet: {
  31190. height: math.unit(1.56, "feet"),
  31191. weight: math.unit(150, "lb"),
  31192. name: "Feet",
  31193. image: {
  31194. source: "./media/characters/hugo-sigil/feet.svg",
  31195. extra: 177 / 177,
  31196. bottom: 12 / 189
  31197. }
  31198. },
  31199. },
  31200. [
  31201. {
  31202. name: "Normal",
  31203. height: math.unit(6, "feet")
  31204. },
  31205. {
  31206. name: "Macro",
  31207. height: math.unit(200, "feet"),
  31208. default: true
  31209. },
  31210. ]
  31211. ))
  31212. characterMakers.push(() => makeCharacter(
  31213. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31214. {
  31215. front: {
  31216. height: math.unit(6, "feet"),
  31217. weight: math.unit(150, "lb"),
  31218. name: "Front",
  31219. image: {
  31220. source: "./media/characters/peri/front.svg",
  31221. extra: 2354 / 2233,
  31222. bottom: 49 / 2403
  31223. }
  31224. },
  31225. },
  31226. [
  31227. {
  31228. name: "Really Small",
  31229. height: math.unit(1, "nm")
  31230. },
  31231. {
  31232. name: "Micro",
  31233. height: math.unit(4, "inches")
  31234. },
  31235. {
  31236. name: "Normal",
  31237. height: math.unit(7, "inches"),
  31238. default: true
  31239. },
  31240. {
  31241. name: "Macro",
  31242. height: math.unit(400, "feet")
  31243. },
  31244. {
  31245. name: "Megamacro",
  31246. height: math.unit(100, "miles")
  31247. },
  31248. ]
  31249. ))
  31250. characterMakers.push(() => makeCharacter(
  31251. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31252. {
  31253. frontSlim: {
  31254. height: math.unit(7, "feet"),
  31255. name: "Front (Slim)",
  31256. image: {
  31257. source: "./media/characters/issilora/front-slim.svg",
  31258. extra: 529 / 449,
  31259. bottom: 53 / 582
  31260. }
  31261. },
  31262. sideSlim: {
  31263. height: math.unit(7, "feet"),
  31264. name: "Side (Slim)",
  31265. image: {
  31266. source: "./media/characters/issilora/side-slim.svg",
  31267. extra: 570 / 480,
  31268. bottom: 30 / 600
  31269. }
  31270. },
  31271. backSlim: {
  31272. height: math.unit(7, "feet"),
  31273. name: "Back (Slim)",
  31274. image: {
  31275. source: "./media/characters/issilora/back-slim.svg",
  31276. extra: 537 / 455,
  31277. bottom: 46 / 583
  31278. }
  31279. },
  31280. frontBuff: {
  31281. height: math.unit(7, "feet"),
  31282. name: "Front (Buff)",
  31283. image: {
  31284. source: "./media/characters/issilora/front-buff.svg",
  31285. extra: 2310 / 2035,
  31286. bottom: 335 / 2645
  31287. }
  31288. },
  31289. head: {
  31290. height: math.unit(1.94, "feet"),
  31291. name: "Head",
  31292. image: {
  31293. source: "./media/characters/issilora/head.svg"
  31294. }
  31295. },
  31296. },
  31297. [
  31298. {
  31299. name: "Minimum",
  31300. height: math.unit(7, "feet")
  31301. },
  31302. {
  31303. name: "Comfortable",
  31304. height: math.unit(17, "feet")
  31305. },
  31306. {
  31307. name: "Fun Size",
  31308. height: math.unit(47, "feet")
  31309. },
  31310. {
  31311. name: "Natural Macro",
  31312. height: math.unit(137, "feet"),
  31313. default: true
  31314. },
  31315. {
  31316. name: "Maximum Kaiju",
  31317. height: math.unit(397, "feet")
  31318. },
  31319. ]
  31320. ))
  31321. characterMakers.push(() => makeCharacter(
  31322. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31323. {
  31324. front: {
  31325. height: math.unit(50 + 9/12, "feet"),
  31326. weight: math.unit(32.8, "tons"),
  31327. name: "Front",
  31328. image: {
  31329. source: "./media/characters/irb'iiritaahn/front.svg",
  31330. extra: 1878/1826,
  31331. bottom: 326/2204
  31332. }
  31333. },
  31334. back: {
  31335. height: math.unit(50 + 9/12, "feet"),
  31336. weight: math.unit(32.8, "tons"),
  31337. name: "Back",
  31338. image: {
  31339. source: "./media/characters/irb'iiritaahn/back.svg",
  31340. extra: 2052/2018,
  31341. bottom: 152/2204
  31342. }
  31343. },
  31344. head: {
  31345. height: math.unit(12.86, "feet"),
  31346. name: "Head",
  31347. image: {
  31348. source: "./media/characters/irb'iiritaahn/head.svg"
  31349. }
  31350. },
  31351. maw: {
  31352. height: math.unit(9.66, "feet"),
  31353. name: "Maw",
  31354. image: {
  31355. source: "./media/characters/irb'iiritaahn/maw.svg"
  31356. }
  31357. },
  31358. frontDick: {
  31359. height: math.unit(8.78461, "feet"),
  31360. name: "Front Dick",
  31361. image: {
  31362. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31363. }
  31364. },
  31365. rearDick: {
  31366. height: math.unit(8.78461, "feet"),
  31367. name: "Rear Dick",
  31368. image: {
  31369. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31370. }
  31371. },
  31372. rearDickUnfolded: {
  31373. height: math.unit(8.78, "feet"),
  31374. name: "Rear Dick (Unfolded)",
  31375. image: {
  31376. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31377. }
  31378. },
  31379. wings: {
  31380. height: math.unit(43, "feet"),
  31381. name: "Wings",
  31382. image: {
  31383. source: "./media/characters/irb'iiritaahn/wings.svg"
  31384. }
  31385. },
  31386. },
  31387. [
  31388. {
  31389. name: "Macro",
  31390. height: math.unit(50 + 9/12, "feet"),
  31391. default: true
  31392. },
  31393. ]
  31394. ))
  31395. characterMakers.push(() => makeCharacter(
  31396. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31397. {
  31398. front: {
  31399. height: math.unit(205, "cm"),
  31400. weight: math.unit(102, "kg"),
  31401. name: "Front",
  31402. image: {
  31403. source: "./media/characters/irbisgreif/front.svg",
  31404. extra: 785/706,
  31405. bottom: 13/798
  31406. }
  31407. },
  31408. back: {
  31409. height: math.unit(205, "cm"),
  31410. weight: math.unit(102, "kg"),
  31411. name: "Back",
  31412. image: {
  31413. source: "./media/characters/irbisgreif/back.svg",
  31414. extra: 713/701,
  31415. bottom: 26/739
  31416. }
  31417. },
  31418. frontDressed: {
  31419. height: math.unit(216, "cm"),
  31420. weight: math.unit(102, "kg"),
  31421. name: "Front-dressed",
  31422. image: {
  31423. source: "./media/characters/irbisgreif/front-dressed.svg",
  31424. extra: 902/776,
  31425. bottom: 14/916
  31426. }
  31427. },
  31428. sideDressed: {
  31429. height: math.unit(195, "cm"),
  31430. weight: math.unit(102, "kg"),
  31431. name: "Side-dressed",
  31432. image: {
  31433. source: "./media/characters/irbisgreif/side-dressed.svg",
  31434. extra: 788/688,
  31435. bottom: 21/809
  31436. }
  31437. },
  31438. backDressed: {
  31439. height: math.unit(216, "cm"),
  31440. weight: math.unit(102, "kg"),
  31441. name: "Back-dressed",
  31442. image: {
  31443. source: "./media/characters/irbisgreif/back-dressed.svg",
  31444. extra: 901/783,
  31445. bottom: 10/911
  31446. }
  31447. },
  31448. dick: {
  31449. height: math.unit(0.49, "feet"),
  31450. name: "Dick",
  31451. image: {
  31452. source: "./media/characters/irbisgreif/dick.svg"
  31453. }
  31454. },
  31455. wingTop: {
  31456. height: math.unit(1.93 , "feet"),
  31457. name: "Wing-top",
  31458. image: {
  31459. source: "./media/characters/irbisgreif/wing-top.svg"
  31460. }
  31461. },
  31462. wingBottom: {
  31463. height: math.unit(1.93 , "feet"),
  31464. name: "Wing-bottom",
  31465. image: {
  31466. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31467. }
  31468. },
  31469. },
  31470. [
  31471. {
  31472. name: "Normal",
  31473. height: math.unit(216, "cm"),
  31474. default: true
  31475. },
  31476. ]
  31477. ))
  31478. characterMakers.push(() => makeCharacter(
  31479. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31480. {
  31481. front: {
  31482. height: math.unit(6, "feet"),
  31483. weight: math.unit(150, "lb"),
  31484. name: "Front",
  31485. image: {
  31486. source: "./media/characters/pride/front.svg",
  31487. extra: 1299/1230,
  31488. bottom: 18/1317
  31489. }
  31490. },
  31491. },
  31492. [
  31493. {
  31494. name: "Normal",
  31495. height: math.unit(7, "feet")
  31496. },
  31497. {
  31498. name: "Mini-macro",
  31499. height: math.unit(11, "feet")
  31500. },
  31501. {
  31502. name: "Macro",
  31503. height: math.unit(15, "meters"),
  31504. default: true
  31505. },
  31506. {
  31507. name: "Macro+",
  31508. height: math.unit(40, "meters")
  31509. },
  31510. ]
  31511. ))
  31512. characterMakers.push(() => makeCharacter(
  31513. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31514. {
  31515. front: {
  31516. height: math.unit(4 + 2 / 12, "feet"),
  31517. weight: math.unit(95, "lb"),
  31518. name: "Front",
  31519. image: {
  31520. source: "./media/characters/vaelophis-nyx/front.svg",
  31521. extra: 2532/2330,
  31522. bottom: 0/2532
  31523. }
  31524. },
  31525. back: {
  31526. height: math.unit(4 + 2 / 12, "feet"),
  31527. weight: math.unit(95, "lb"),
  31528. name: "Back",
  31529. image: {
  31530. source: "./media/characters/vaelophis-nyx/back.svg",
  31531. extra: 2484/2361,
  31532. bottom: 0/2484
  31533. }
  31534. },
  31535. feralSide: {
  31536. height: math.unit(2 + 1/12, "feet"),
  31537. weight: math.unit(20, "lb"),
  31538. name: "Feral (Side)",
  31539. image: {
  31540. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31541. extra: 1721/1581,
  31542. bottom: 70/1791
  31543. }
  31544. },
  31545. feralLazing: {
  31546. height: math.unit(1.08, "feet"),
  31547. weight: math.unit(20, "lb"),
  31548. name: "Feral (Lazing)",
  31549. image: {
  31550. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31551. extra: 822/822,
  31552. bottom: 248/1070
  31553. }
  31554. },
  31555. ear: {
  31556. height: math.unit(0.416, "feet"),
  31557. name: "Ear",
  31558. image: {
  31559. source: "./media/characters/vaelophis-nyx/ear.svg"
  31560. }
  31561. },
  31562. eye: {
  31563. height: math.unit(0.0748, "feet"),
  31564. name: "Eye",
  31565. image: {
  31566. source: "./media/characters/vaelophis-nyx/eye.svg"
  31567. }
  31568. },
  31569. mouth: {
  31570. height: math.unit(0.378, "feet"),
  31571. name: "Mouth",
  31572. image: {
  31573. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31574. }
  31575. },
  31576. spade: {
  31577. height: math.unit(0.55, "feet"),
  31578. name: "Spade",
  31579. image: {
  31580. source: "./media/characters/vaelophis-nyx/spade.svg"
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Normal",
  31587. height: math.unit(4 + 2/12, "feet"),
  31588. default: true
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31594. {
  31595. front: {
  31596. height: math.unit(7, "feet"),
  31597. weight: math.unit(231, "lb"),
  31598. name: "Front",
  31599. image: {
  31600. source: "./media/characters/flux/front.svg",
  31601. extra: 919/871,
  31602. bottom: 0/919
  31603. }
  31604. },
  31605. back: {
  31606. height: math.unit(7, "feet"),
  31607. weight: math.unit(231, "lb"),
  31608. name: "Back",
  31609. image: {
  31610. source: "./media/characters/flux/back.svg",
  31611. extra: 1040/992,
  31612. bottom: 0/1040
  31613. }
  31614. },
  31615. frontDressed: {
  31616. height: math.unit(7, "feet"),
  31617. weight: math.unit(231, "lb"),
  31618. name: "Front (Dressed)",
  31619. image: {
  31620. source: "./media/characters/flux/front-dressed.svg",
  31621. extra: 919/871,
  31622. bottom: 0/919
  31623. }
  31624. },
  31625. feralSide: {
  31626. height: math.unit(5, "feet"),
  31627. weight: math.unit(150, "lb"),
  31628. name: "Feral (Side)",
  31629. image: {
  31630. source: "./media/characters/flux/feral-side.svg",
  31631. extra: 598/528,
  31632. bottom: 28/626
  31633. }
  31634. },
  31635. head: {
  31636. height: math.unit(1.585, "feet"),
  31637. name: "Head",
  31638. image: {
  31639. source: "./media/characters/flux/head.svg"
  31640. }
  31641. },
  31642. headSide: {
  31643. height: math.unit(1.74, "feet"),
  31644. name: "Head (Side)",
  31645. image: {
  31646. source: "./media/characters/flux/head-side.svg"
  31647. }
  31648. },
  31649. headSideFire: {
  31650. height: math.unit(1.76, "feet"),
  31651. name: "Head (Side, Fire)",
  31652. image: {
  31653. source: "./media/characters/flux/head-side-fire.svg"
  31654. }
  31655. },
  31656. },
  31657. [
  31658. {
  31659. name: "Normal",
  31660. height: math.unit(7, "feet"),
  31661. default: true
  31662. },
  31663. ]
  31664. ))
  31665. characterMakers.push(() => makeCharacter(
  31666. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31667. {
  31668. front: {
  31669. height: math.unit(9, "feet"),
  31670. weight: math.unit(1012, "lb"),
  31671. name: "Front",
  31672. image: {
  31673. source: "./media/characters/ulfra-lupae/front.svg",
  31674. extra: 1083/1011,
  31675. bottom: 67/1150
  31676. }
  31677. },
  31678. },
  31679. [
  31680. {
  31681. name: "Micro",
  31682. height: math.unit(6, "inches")
  31683. },
  31684. {
  31685. name: "Socializing",
  31686. height: math.unit(6 + 5/12, "feet")
  31687. },
  31688. {
  31689. name: "Normal",
  31690. height: math.unit(9, "feet"),
  31691. default: true
  31692. },
  31693. {
  31694. name: "Macro",
  31695. height: math.unit(150, "feet")
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31701. {
  31702. front: {
  31703. height: math.unit(5 + 2/12, "feet"),
  31704. weight: math.unit(120, "lb"),
  31705. name: "Front",
  31706. image: {
  31707. source: "./media/characters/timber/front.svg",
  31708. extra: 2814/2705,
  31709. bottom: 181/2995
  31710. }
  31711. },
  31712. },
  31713. [
  31714. {
  31715. name: "Normal",
  31716. height: math.unit(5 + 2/12, "feet"),
  31717. default: true
  31718. },
  31719. ]
  31720. ))
  31721. characterMakers.push(() => makeCharacter(
  31722. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31723. {
  31724. front: {
  31725. height: math.unit(5 + 7/12, "feet"),
  31726. weight: math.unit(220, "lb"),
  31727. name: "Front",
  31728. image: {
  31729. source: "./media/characters/nicki/front.svg",
  31730. extra: 453/419,
  31731. bottom: 7/460
  31732. }
  31733. },
  31734. frontAlt: {
  31735. height: math.unit(5 + 7/12, "feet"),
  31736. weight: math.unit(220, "lb"),
  31737. name: "Front-alt",
  31738. image: {
  31739. source: "./media/characters/nicki/front-alt.svg",
  31740. extra: 435/411,
  31741. bottom: 12/447
  31742. }
  31743. },
  31744. back: {
  31745. height: math.unit(5 + 7/12, "feet"),
  31746. weight: math.unit(220, "lb"),
  31747. name: "Back",
  31748. image: {
  31749. source: "./media/characters/nicki/back.svg",
  31750. extra: 440/413,
  31751. bottom: 19/459
  31752. }
  31753. },
  31754. taur: {
  31755. height: math.unit(7 + 6/12, "feet"),
  31756. weight: math.unit(700, "lb"),
  31757. name: "Taur",
  31758. image: {
  31759. source: "./media/characters/nicki/taur.svg",
  31760. extra: 975/773,
  31761. bottom: 0/975
  31762. }
  31763. },
  31764. frontNsfw: {
  31765. height: math.unit(5 + 7/12, "feet"),
  31766. weight: math.unit(220, "lb"),
  31767. name: "Front (NSFW)",
  31768. image: {
  31769. source: "./media/characters/nicki/front-nsfw.svg",
  31770. extra: 453/419,
  31771. bottom: 7/460
  31772. }
  31773. },
  31774. frontNsfwAlt: {
  31775. height: math.unit(5 + 7/12, "feet"),
  31776. weight: math.unit(220, "lb"),
  31777. name: "Front (Alt, NSFW)",
  31778. image: {
  31779. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31780. extra: 435/411,
  31781. bottom: 12/447
  31782. }
  31783. },
  31784. backNsfw: {
  31785. height: math.unit(5 + 7/12, "feet"),
  31786. weight: math.unit(220, "lb"),
  31787. name: "Back (NSFW)",
  31788. image: {
  31789. source: "./media/characters/nicki/back-nsfw.svg",
  31790. extra: 440/413,
  31791. bottom: 19/459
  31792. }
  31793. },
  31794. head: {
  31795. height: math.unit(2.1, "feet"),
  31796. name: "Head",
  31797. image: {
  31798. source: "./media/characters/nicki/head.svg"
  31799. }
  31800. },
  31801. paw: {
  31802. height: math.unit(1.88, "feet"),
  31803. name: "Paw",
  31804. image: {
  31805. source: "./media/characters/nicki/paw.svg"
  31806. }
  31807. },
  31808. },
  31809. [
  31810. {
  31811. name: "Normal",
  31812. height: math.unit(5 + 7/12, "feet"),
  31813. default: true
  31814. },
  31815. ]
  31816. ))
  31817. characterMakers.push(() => makeCharacter(
  31818. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31819. {
  31820. front: {
  31821. height: math.unit(7 + 10/12, "feet"),
  31822. weight: math.unit(3.5, "tons"),
  31823. name: "Front",
  31824. image: {
  31825. source: "./media/characters/lee/front.svg",
  31826. extra: 1773/1615,
  31827. bottom: 86/1859
  31828. }
  31829. },
  31830. hand: {
  31831. height: math.unit(1.78, "feet"),
  31832. name: "Hand",
  31833. image: {
  31834. source: "./media/characters/lee/hand.svg"
  31835. }
  31836. },
  31837. maw: {
  31838. height: math.unit(1.18, "feet"),
  31839. name: "Maw",
  31840. image: {
  31841. source: "./media/characters/lee/maw.svg"
  31842. }
  31843. },
  31844. },
  31845. [
  31846. {
  31847. name: "Normal",
  31848. height: math.unit(7 + 10/12, "feet"),
  31849. default: true
  31850. },
  31851. ]
  31852. ))
  31853. characterMakers.push(() => makeCharacter(
  31854. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31855. {
  31856. front: {
  31857. height: math.unit(9, "feet"),
  31858. name: "Front",
  31859. image: {
  31860. source: "./media/characters/guti/front.svg",
  31861. extra: 4551/4355,
  31862. bottom: 123/4674
  31863. }
  31864. },
  31865. tongue: {
  31866. height: math.unit(1, "feet"),
  31867. name: "Tongue",
  31868. image: {
  31869. source: "./media/characters/guti/tongue.svg"
  31870. }
  31871. },
  31872. paw: {
  31873. height: math.unit(1.18, "feet"),
  31874. name: "Paw",
  31875. image: {
  31876. source: "./media/characters/guti/paw.svg"
  31877. }
  31878. },
  31879. },
  31880. [
  31881. {
  31882. name: "Normal",
  31883. height: math.unit(9, "feet"),
  31884. default: true
  31885. },
  31886. ]
  31887. ))
  31888. characterMakers.push(() => makeCharacter(
  31889. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31890. {
  31891. side: {
  31892. height: math.unit(5, "meters"),
  31893. name: "Side",
  31894. image: {
  31895. source: "./media/characters/vesper/side.svg",
  31896. extra: 1605/1518,
  31897. bottom: 0/1605
  31898. }
  31899. },
  31900. },
  31901. [
  31902. {
  31903. name: "Small",
  31904. height: math.unit(5, "meters")
  31905. },
  31906. {
  31907. name: "Sage",
  31908. height: math.unit(100, "meters"),
  31909. default: true
  31910. },
  31911. {
  31912. name: "Fun Size",
  31913. height: math.unit(600, "meters")
  31914. },
  31915. {
  31916. name: "Goddess",
  31917. height: math.unit(20000, "km")
  31918. },
  31919. {
  31920. name: "Maximum",
  31921. height: math.unit(5, "galaxies")
  31922. },
  31923. ]
  31924. ))
  31925. characterMakers.push(() => makeCharacter(
  31926. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31927. {
  31928. front: {
  31929. height: math.unit(6 + 3/12, "feet"),
  31930. weight: math.unit(190, "lb"),
  31931. name: "Front",
  31932. image: {
  31933. source: "./media/characters/gawain/front.svg",
  31934. extra: 2222/2139,
  31935. bottom: 90/2312
  31936. }
  31937. },
  31938. back: {
  31939. height: math.unit(6 + 3/12, "feet"),
  31940. weight: math.unit(190, "lb"),
  31941. name: "Back",
  31942. image: {
  31943. source: "./media/characters/gawain/back.svg",
  31944. extra: 2199/2111,
  31945. bottom: 73/2272
  31946. }
  31947. },
  31948. },
  31949. [
  31950. {
  31951. name: "Normal",
  31952. height: math.unit(6 + 3/12, "feet"),
  31953. default: true
  31954. },
  31955. ]
  31956. ))
  31957. characterMakers.push(() => makeCharacter(
  31958. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31959. {
  31960. side: {
  31961. height: math.unit(3.5, "meters"),
  31962. weight: math.unit(16000, "lb"),
  31963. name: "Side",
  31964. image: {
  31965. source: "./media/characters/dascalti/side.svg",
  31966. extra: 392/273,
  31967. bottom: 47/439
  31968. }
  31969. },
  31970. breath: {
  31971. height: math.unit(7.4, "feet"),
  31972. name: "Breath",
  31973. image: {
  31974. source: "./media/characters/dascalti/breath.svg"
  31975. }
  31976. },
  31977. fed: {
  31978. height: math.unit(3.6, "meters"),
  31979. weight: math.unit(16000, "lb"),
  31980. name: "Fed",
  31981. image: {
  31982. source: "./media/characters/dascalti/fed.svg",
  31983. extra: 1419/820,
  31984. bottom: 95/1514
  31985. }
  31986. },
  31987. },
  31988. [
  31989. {
  31990. name: "Normal",
  31991. height: math.unit(3.5, "meters"),
  31992. default: true
  31993. },
  31994. ]
  31995. ))
  31996. characterMakers.push(() => makeCharacter(
  31997. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31998. {
  31999. front: {
  32000. height: math.unit(3 + 5/12, "feet"),
  32001. name: "Front",
  32002. image: {
  32003. source: "./media/characters/mauve/front.svg",
  32004. extra: 1126/1033,
  32005. bottom: 65/1191
  32006. }
  32007. },
  32008. side: {
  32009. height: math.unit(3 + 5/12, "feet"),
  32010. name: "Side",
  32011. image: {
  32012. source: "./media/characters/mauve/side.svg",
  32013. extra: 1089/1001,
  32014. bottom: 29/1118
  32015. }
  32016. },
  32017. back: {
  32018. height: math.unit(3 + 5/12, "feet"),
  32019. name: "Back",
  32020. image: {
  32021. source: "./media/characters/mauve/back.svg",
  32022. extra: 1173/1053,
  32023. bottom: 109/1282
  32024. }
  32025. },
  32026. },
  32027. [
  32028. {
  32029. name: "Normal",
  32030. height: math.unit(3 + 5/12, "feet"),
  32031. default: true
  32032. },
  32033. ]
  32034. ))
  32035. characterMakers.push(() => makeCharacter(
  32036. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32037. {
  32038. front: {
  32039. height: math.unit(6 + 3/12, "feet"),
  32040. weight: math.unit(430, "lb"),
  32041. name: "Front",
  32042. image: {
  32043. source: "./media/characters/carlos/front.svg",
  32044. extra: 1964/1913,
  32045. bottom: 70/2034
  32046. }
  32047. },
  32048. },
  32049. [
  32050. {
  32051. name: "Normal",
  32052. height: math.unit(6 + 3/12, "feet"),
  32053. default: true
  32054. },
  32055. ]
  32056. ))
  32057. characterMakers.push(() => makeCharacter(
  32058. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32059. {
  32060. back: {
  32061. height: math.unit(5 + 10/12, "feet"),
  32062. weight: math.unit(200, "lb"),
  32063. name: "Back",
  32064. image: {
  32065. source: "./media/characters/jax/back.svg",
  32066. extra: 764/739,
  32067. bottom: 25/789
  32068. }
  32069. },
  32070. },
  32071. [
  32072. {
  32073. name: "Normal",
  32074. height: math.unit(5 + 10/12, "feet"),
  32075. default: true
  32076. },
  32077. ]
  32078. ))
  32079. characterMakers.push(() => makeCharacter(
  32080. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32081. {
  32082. front: {
  32083. height: math.unit(8, "feet"),
  32084. weight: math.unit(250, "lb"),
  32085. name: "Front",
  32086. image: {
  32087. source: "./media/characters/eikthynir/front.svg",
  32088. extra: 1332/1166,
  32089. bottom: 82/1414
  32090. }
  32091. },
  32092. back: {
  32093. height: math.unit(8, "feet"),
  32094. weight: math.unit(250, "lb"),
  32095. name: "Back",
  32096. image: {
  32097. source: "./media/characters/eikthynir/back.svg",
  32098. extra: 1342/1190,
  32099. bottom: 19/1361
  32100. }
  32101. },
  32102. dick: {
  32103. height: math.unit(2.35, "feet"),
  32104. name: "Dick",
  32105. image: {
  32106. source: "./media/characters/eikthynir/dick.svg"
  32107. }
  32108. },
  32109. },
  32110. [
  32111. {
  32112. name: "Normal",
  32113. height: math.unit(8, "feet"),
  32114. default: true
  32115. },
  32116. ]
  32117. ))
  32118. characterMakers.push(() => makeCharacter(
  32119. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32120. {
  32121. front: {
  32122. height: math.unit(99, "meters"),
  32123. weight: math.unit(13000, "tons"),
  32124. name: "Front",
  32125. image: {
  32126. source: "./media/characters/zlmos/front.svg",
  32127. extra: 2202/1992,
  32128. bottom: 315/2517
  32129. }
  32130. },
  32131. },
  32132. [
  32133. {
  32134. name: "Macro",
  32135. height: math.unit(99, "meters"),
  32136. default: true
  32137. },
  32138. ]
  32139. ))
  32140. characterMakers.push(() => makeCharacter(
  32141. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32142. {
  32143. front: {
  32144. height: math.unit(6 + 5/12, "feet"),
  32145. name: "Front",
  32146. image: {
  32147. source: "./media/characters/purri/front.svg",
  32148. extra: 1698/1610,
  32149. bottom: 32/1730
  32150. }
  32151. },
  32152. frontAlt: {
  32153. height: math.unit(6 + 5/12, "feet"),
  32154. name: "Front (Alt)",
  32155. image: {
  32156. source: "./media/characters/purri/front-alt.svg",
  32157. extra: 450/420,
  32158. bottom: 26/476
  32159. }
  32160. },
  32161. boots: {
  32162. height: math.unit(5.5, "feet"),
  32163. name: "Boots",
  32164. image: {
  32165. source: "./media/characters/purri/boots.svg",
  32166. extra: 905/853,
  32167. bottom: 18/923
  32168. }
  32169. },
  32170. lying: {
  32171. height: math.unit(2, "feet"),
  32172. name: "Lying",
  32173. image: {
  32174. source: "./media/characters/purri/lying.svg",
  32175. extra: 940/843,
  32176. bottom: 146/1086
  32177. }
  32178. },
  32179. devious: {
  32180. height: math.unit(1.77, "feet"),
  32181. name: "Devious",
  32182. image: {
  32183. source: "./media/characters/purri/devious.svg",
  32184. extra: 1440/1155,
  32185. bottom: 147/1587
  32186. }
  32187. },
  32188. bean: {
  32189. height: math.unit(1.94, "feet"),
  32190. name: "Bean",
  32191. image: {
  32192. source: "./media/characters/purri/bean.svg"
  32193. }
  32194. },
  32195. },
  32196. [
  32197. {
  32198. name: "Micro",
  32199. height: math.unit(1, "mm")
  32200. },
  32201. {
  32202. name: "Normal",
  32203. height: math.unit(6 + 5/12, "feet"),
  32204. default: true
  32205. },
  32206. {
  32207. name: "Macro :3c",
  32208. height: math.unit(2, "miles")
  32209. },
  32210. ]
  32211. ))
  32212. characterMakers.push(() => makeCharacter(
  32213. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32214. {
  32215. front: {
  32216. height: math.unit(6 + 2/12, "feet"),
  32217. weight: math.unit(250, "lb"),
  32218. name: "Front",
  32219. image: {
  32220. source: "./media/characters/moonlight/front.svg",
  32221. extra: 1044/908,
  32222. bottom: 56/1100
  32223. }
  32224. },
  32225. feral: {
  32226. height: math.unit(3 + 1/12, "feet"),
  32227. weight: math.unit(50, "kg"),
  32228. name: "Feral",
  32229. image: {
  32230. source: "./media/characters/moonlight/feral.svg",
  32231. extra: 3705/2791,
  32232. bottom: 145/3850
  32233. }
  32234. },
  32235. paw: {
  32236. height: math.unit(1, "feet"),
  32237. name: "Paw",
  32238. image: {
  32239. source: "./media/characters/moonlight/paw.svg"
  32240. }
  32241. },
  32242. paws: {
  32243. height: math.unit(0.98, "feet"),
  32244. name: "Paws",
  32245. image: {
  32246. source: "./media/characters/moonlight/paws.svg",
  32247. extra: 939/939,
  32248. bottom: 50/989
  32249. }
  32250. },
  32251. mouth: {
  32252. height: math.unit(0.48, "feet"),
  32253. name: "Mouth",
  32254. image: {
  32255. source: "./media/characters/moonlight/mouth.svg"
  32256. }
  32257. },
  32258. dick: {
  32259. height: math.unit(1.46, "feet"),
  32260. name: "Dick",
  32261. image: {
  32262. source: "./media/characters/moonlight/dick.svg"
  32263. }
  32264. },
  32265. },
  32266. [
  32267. {
  32268. name: "Normal",
  32269. height: math.unit(6 + 2/12, "feet"),
  32270. default: true
  32271. },
  32272. {
  32273. name: "Macro",
  32274. height: math.unit(300, "feet")
  32275. },
  32276. {
  32277. name: "Macro+",
  32278. height: math.unit(1, "mile")
  32279. },
  32280. {
  32281. name: "Mt. Moon",
  32282. height: math.unit(5, "miles")
  32283. },
  32284. {
  32285. name: "Megamacro",
  32286. height: math.unit(15, "miles")
  32287. },
  32288. ]
  32289. ))
  32290. characterMakers.push(() => makeCharacter(
  32291. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32292. {
  32293. back: {
  32294. height: math.unit(6, "feet"),
  32295. weight: math.unit(150, "lb"),
  32296. name: "Back",
  32297. image: {
  32298. source: "./media/characters/sylen/back.svg",
  32299. extra: 1335/1273,
  32300. bottom: 107/1442
  32301. }
  32302. },
  32303. },
  32304. [
  32305. {
  32306. name: "Normal",
  32307. height: math.unit(5 + 5/12, "feet")
  32308. },
  32309. {
  32310. name: "Megamacro",
  32311. height: math.unit(3, "miles"),
  32312. default: true
  32313. },
  32314. ]
  32315. ))
  32316. characterMakers.push(() => makeCharacter(
  32317. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32318. {
  32319. front: {
  32320. height: math.unit(6, "feet"),
  32321. weight: math.unit(190, "lb"),
  32322. name: "Front",
  32323. image: {
  32324. source: "./media/characters/huttser/front.svg",
  32325. extra: 1152/1058,
  32326. bottom: 23/1175
  32327. }
  32328. },
  32329. side: {
  32330. height: math.unit(6, "feet"),
  32331. weight: math.unit(190, "lb"),
  32332. name: "Side",
  32333. image: {
  32334. source: "./media/characters/huttser/side.svg",
  32335. extra: 1174/1065,
  32336. bottom: 18/1192
  32337. }
  32338. },
  32339. back: {
  32340. height: math.unit(6, "feet"),
  32341. weight: math.unit(190, "lb"),
  32342. name: "Back",
  32343. image: {
  32344. source: "./media/characters/huttser/back.svg",
  32345. extra: 1158/1056,
  32346. bottom: 12/1170
  32347. }
  32348. },
  32349. },
  32350. [
  32351. ]
  32352. ))
  32353. characterMakers.push(() => makeCharacter(
  32354. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32355. {
  32356. side: {
  32357. height: math.unit(12 + 9/12, "feet"),
  32358. weight: math.unit(15000, "lb"),
  32359. name: "Side",
  32360. image: {
  32361. source: "./media/characters/faan/side.svg",
  32362. extra: 2747/2697,
  32363. bottom: 0/2747
  32364. }
  32365. },
  32366. front: {
  32367. height: math.unit(12 + 9/12, "feet"),
  32368. weight: math.unit(15000, "lb"),
  32369. name: "Front",
  32370. image: {
  32371. source: "./media/characters/faan/front.svg",
  32372. extra: 607/571,
  32373. bottom: 24/631
  32374. }
  32375. },
  32376. head: {
  32377. height: math.unit(2.85, "feet"),
  32378. name: "Head",
  32379. image: {
  32380. source: "./media/characters/faan/head.svg"
  32381. }
  32382. },
  32383. headAlt: {
  32384. height: math.unit(3.13, "feet"),
  32385. name: "Head-alt",
  32386. image: {
  32387. source: "./media/characters/faan/head-alt.svg"
  32388. }
  32389. },
  32390. },
  32391. [
  32392. {
  32393. name: "Normal",
  32394. height: math.unit(12 + 9/12, "feet"),
  32395. default: true
  32396. },
  32397. ]
  32398. ))
  32399. characterMakers.push(() => makeCharacter(
  32400. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32401. {
  32402. front: {
  32403. height: math.unit(6, "feet"),
  32404. weight: math.unit(300, "lb"),
  32405. name: "Front",
  32406. image: {
  32407. source: "./media/characters/tanio/front.svg",
  32408. extra: 711/673,
  32409. bottom: 25/736
  32410. }
  32411. },
  32412. },
  32413. [
  32414. {
  32415. name: "Normal",
  32416. height: math.unit(6, "feet"),
  32417. default: true
  32418. },
  32419. ]
  32420. ))
  32421. characterMakers.push(() => makeCharacter(
  32422. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32423. {
  32424. front: {
  32425. height: math.unit(3, "inches"),
  32426. name: "Front",
  32427. image: {
  32428. source: "./media/characters/noboru/front.svg",
  32429. extra: 1039/932,
  32430. bottom: 18/1057
  32431. }
  32432. },
  32433. },
  32434. [
  32435. {
  32436. name: "Micro",
  32437. height: math.unit(3, "inches"),
  32438. default: true
  32439. },
  32440. ]
  32441. ))
  32442. characterMakers.push(() => makeCharacter(
  32443. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32444. {
  32445. front: {
  32446. height: math.unit(1.85, "meters"),
  32447. weight: math.unit(80, "kg"),
  32448. name: "Front",
  32449. image: {
  32450. source: "./media/characters/daniel-barrett/front.svg",
  32451. extra: 355/337,
  32452. bottom: 9/364
  32453. }
  32454. },
  32455. },
  32456. [
  32457. {
  32458. name: "Pico",
  32459. height: math.unit(0.0433, "mm")
  32460. },
  32461. {
  32462. name: "Nano",
  32463. height: math.unit(1.5, "mm")
  32464. },
  32465. {
  32466. name: "Micro",
  32467. height: math.unit(5.3, "cm"),
  32468. default: true
  32469. },
  32470. {
  32471. name: "Normal",
  32472. height: math.unit(1.85, "meters")
  32473. },
  32474. {
  32475. name: "Macro",
  32476. height: math.unit(64.7, "meters")
  32477. },
  32478. {
  32479. name: "Megamacro",
  32480. height: math.unit(2.26, "km")
  32481. },
  32482. {
  32483. name: "Gigamacro",
  32484. height: math.unit(79, "km")
  32485. },
  32486. {
  32487. name: "Teramacro",
  32488. height: math.unit(2765, "km")
  32489. },
  32490. {
  32491. name: "Petamacro",
  32492. height: math.unit(96678, "km")
  32493. },
  32494. ]
  32495. ))
  32496. characterMakers.push(() => makeCharacter(
  32497. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32498. {
  32499. front: {
  32500. height: math.unit(30, "meters"),
  32501. weight: math.unit(400, "tons"),
  32502. name: "Front",
  32503. image: {
  32504. source: "./media/characters/zeel/front.svg",
  32505. extra: 2599/2599,
  32506. bottom: 226/2825
  32507. }
  32508. },
  32509. },
  32510. [
  32511. {
  32512. name: "Macro",
  32513. height: math.unit(30, "meters"),
  32514. default: true
  32515. },
  32516. ]
  32517. ))
  32518. characterMakers.push(() => makeCharacter(
  32519. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32520. {
  32521. front: {
  32522. height: math.unit(6 + 7/12, "feet"),
  32523. weight: math.unit(210, "lb"),
  32524. name: "Front",
  32525. image: {
  32526. source: "./media/characters/tarn/front.svg",
  32527. extra: 3517/3220,
  32528. bottom: 91/3608
  32529. }
  32530. },
  32531. back: {
  32532. height: math.unit(6 + 7/12, "feet"),
  32533. weight: math.unit(210, "lb"),
  32534. name: "Back",
  32535. image: {
  32536. source: "./media/characters/tarn/back.svg",
  32537. extra: 3566/3241,
  32538. bottom: 34/3600
  32539. }
  32540. },
  32541. dick: {
  32542. height: math.unit(1.65, "feet"),
  32543. name: "Dick",
  32544. image: {
  32545. source: "./media/characters/tarn/dick.svg"
  32546. }
  32547. },
  32548. paw: {
  32549. height: math.unit(1.80, "feet"),
  32550. name: "Paw",
  32551. image: {
  32552. source: "./media/characters/tarn/paw.svg"
  32553. }
  32554. },
  32555. tongue: {
  32556. height: math.unit(0.97, "feet"),
  32557. name: "Tongue",
  32558. image: {
  32559. source: "./media/characters/tarn/tongue.svg"
  32560. }
  32561. },
  32562. },
  32563. [
  32564. {
  32565. name: "Micro",
  32566. height: math.unit(4, "inches")
  32567. },
  32568. {
  32569. name: "Normal",
  32570. height: math.unit(6 + 7/12, "feet"),
  32571. default: true
  32572. },
  32573. {
  32574. name: "Macro",
  32575. height: math.unit(300, "feet")
  32576. },
  32577. ]
  32578. ))
  32579. characterMakers.push(() => makeCharacter(
  32580. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32581. {
  32582. front: {
  32583. height: math.unit(5 + 7/12, "feet"),
  32584. weight: math.unit(80, "kg"),
  32585. name: "Front",
  32586. image: {
  32587. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32588. extra: 3023/2865,
  32589. bottom: 33/3056
  32590. }
  32591. },
  32592. back: {
  32593. height: math.unit(5 + 7/12, "feet"),
  32594. weight: math.unit(80, "kg"),
  32595. name: "Back",
  32596. image: {
  32597. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32598. extra: 3020/2886,
  32599. bottom: 30/3050
  32600. }
  32601. },
  32602. dick: {
  32603. height: math.unit(0.98, "feet"),
  32604. name: "Dick",
  32605. image: {
  32606. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32607. }
  32608. },
  32609. anatomy: {
  32610. height: math.unit(2.86, "feet"),
  32611. name: "Anatomy",
  32612. image: {
  32613. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32614. }
  32615. },
  32616. },
  32617. [
  32618. {
  32619. name: "Really Small",
  32620. height: math.unit(2, "inches")
  32621. },
  32622. {
  32623. name: "Micro",
  32624. height: math.unit(5.583, "inches")
  32625. },
  32626. {
  32627. name: "Normal",
  32628. height: math.unit(5 + 7/12, "feet"),
  32629. default: true
  32630. },
  32631. {
  32632. name: "Macro",
  32633. height: math.unit(67, "feet")
  32634. },
  32635. {
  32636. name: "Megamacro",
  32637. height: math.unit(134, "feet")
  32638. },
  32639. ]
  32640. ))
  32641. characterMakers.push(() => makeCharacter(
  32642. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32643. {
  32644. front: {
  32645. height: math.unit(9, "feet"),
  32646. weight: math.unit(120, "lb"),
  32647. name: "Front",
  32648. image: {
  32649. source: "./media/characters/sally/front.svg",
  32650. extra: 1506/1349,
  32651. bottom: 66/1572
  32652. }
  32653. },
  32654. },
  32655. [
  32656. {
  32657. name: "Normal",
  32658. height: math.unit(9, "feet"),
  32659. default: true
  32660. },
  32661. ]
  32662. ))
  32663. characterMakers.push(() => makeCharacter(
  32664. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32665. {
  32666. front: {
  32667. height: math.unit(8, "feet"),
  32668. weight: math.unit(900, "lb"),
  32669. name: "Front",
  32670. image: {
  32671. source: "./media/characters/owen/front.svg",
  32672. extra: 1761/1657,
  32673. bottom: 74/1835
  32674. }
  32675. },
  32676. side: {
  32677. height: math.unit(8, "feet"),
  32678. weight: math.unit(900, "lb"),
  32679. name: "Side",
  32680. image: {
  32681. source: "./media/characters/owen/side.svg",
  32682. extra: 1797/1734,
  32683. bottom: 30/1827
  32684. }
  32685. },
  32686. back: {
  32687. height: math.unit(8, "feet"),
  32688. weight: math.unit(900, "lb"),
  32689. name: "Back",
  32690. image: {
  32691. source: "./media/characters/owen/back.svg",
  32692. extra: 1796/1706,
  32693. bottom: 59/1855
  32694. }
  32695. },
  32696. maw: {
  32697. height: math.unit(1.76, "feet"),
  32698. name: "Maw",
  32699. image: {
  32700. source: "./media/characters/owen/maw.svg"
  32701. }
  32702. },
  32703. },
  32704. [
  32705. {
  32706. name: "Normal",
  32707. height: math.unit(8, "feet"),
  32708. default: true
  32709. },
  32710. ]
  32711. ))
  32712. characterMakers.push(() => makeCharacter(
  32713. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32714. {
  32715. front: {
  32716. height: math.unit(4, "feet"),
  32717. weight: math.unit(400, "lb"),
  32718. name: "Front",
  32719. image: {
  32720. source: "./media/characters/ryth/front.svg",
  32721. extra: 1920/1748,
  32722. bottom: 42/1962
  32723. }
  32724. },
  32725. back: {
  32726. height: math.unit(4, "feet"),
  32727. weight: math.unit(400, "lb"),
  32728. name: "Back",
  32729. image: {
  32730. source: "./media/characters/ryth/back.svg",
  32731. extra: 1897/1690,
  32732. bottom: 89/1986
  32733. }
  32734. },
  32735. mouth: {
  32736. height: math.unit(1.39, "feet"),
  32737. name: "Mouth",
  32738. image: {
  32739. source: "./media/characters/ryth/mouth.svg"
  32740. }
  32741. },
  32742. tailmaw: {
  32743. height: math.unit(1.23, "feet"),
  32744. name: "Tailmaw",
  32745. image: {
  32746. source: "./media/characters/ryth/tailmaw.svg"
  32747. }
  32748. },
  32749. goia: {
  32750. height: math.unit(4, "meters"),
  32751. weight: math.unit(10800, "lb"),
  32752. name: "Goia",
  32753. image: {
  32754. source: "./media/characters/ryth/goia.svg",
  32755. extra: 745/640,
  32756. bottom: 107/852
  32757. }
  32758. },
  32759. goiaFront: {
  32760. height: math.unit(4, "meters"),
  32761. weight: math.unit(10800, "lb"),
  32762. name: "Goia (Front)",
  32763. image: {
  32764. source: "./media/characters/ryth/goia-front.svg",
  32765. extra: 750/586,
  32766. bottom: 114/864
  32767. }
  32768. },
  32769. goiaMaw: {
  32770. height: math.unit(5.55, "feet"),
  32771. name: "Goia Maw",
  32772. image: {
  32773. source: "./media/characters/ryth/goia-maw.svg"
  32774. }
  32775. },
  32776. goiaForepaw: {
  32777. height: math.unit(3.5, "feet"),
  32778. name: "Goia Forepaw",
  32779. image: {
  32780. source: "./media/characters/ryth/goia-forepaw.svg"
  32781. }
  32782. },
  32783. goiaHindpaw: {
  32784. height: math.unit(5.55, "feet"),
  32785. name: "Goia Hindpaw",
  32786. image: {
  32787. source: "./media/characters/ryth/goia-hindpaw.svg"
  32788. }
  32789. },
  32790. },
  32791. [
  32792. {
  32793. name: "Normal",
  32794. height: math.unit(4, "feet"),
  32795. default: true
  32796. },
  32797. ]
  32798. ))
  32799. characterMakers.push(() => makeCharacter(
  32800. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32801. {
  32802. front: {
  32803. height: math.unit(7, "feet"),
  32804. weight: math.unit(180, "lb"),
  32805. name: "Front",
  32806. image: {
  32807. source: "./media/characters/necrolance/front.svg",
  32808. extra: 1062/947,
  32809. bottom: 41/1103
  32810. }
  32811. },
  32812. back: {
  32813. height: math.unit(7, "feet"),
  32814. weight: math.unit(180, "lb"),
  32815. name: "Back",
  32816. image: {
  32817. source: "./media/characters/necrolance/back.svg",
  32818. extra: 1045/984,
  32819. bottom: 14/1059
  32820. }
  32821. },
  32822. wing: {
  32823. height: math.unit(2.67, "feet"),
  32824. name: "Wing",
  32825. image: {
  32826. source: "./media/characters/necrolance/wing.svg"
  32827. }
  32828. },
  32829. },
  32830. [
  32831. {
  32832. name: "Normal",
  32833. height: math.unit(7, "feet"),
  32834. default: true
  32835. },
  32836. ]
  32837. ))
  32838. characterMakers.push(() => makeCharacter(
  32839. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32840. {
  32841. front: {
  32842. height: math.unit(76, "meters"),
  32843. weight: math.unit(30000, "tons"),
  32844. name: "Front",
  32845. image: {
  32846. source: "./media/characters/tyler/front.svg",
  32847. extra: 1640/1640,
  32848. bottom: 114/1754
  32849. }
  32850. },
  32851. },
  32852. [
  32853. {
  32854. name: "Macro",
  32855. height: math.unit(76, "meters"),
  32856. default: true
  32857. },
  32858. ]
  32859. ))
  32860. characterMakers.push(() => makeCharacter(
  32861. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32862. {
  32863. front: {
  32864. height: math.unit(4 + 11/12, "feet"),
  32865. weight: math.unit(132, "lb"),
  32866. name: "Front",
  32867. image: {
  32868. source: "./media/characters/icey/front.svg",
  32869. extra: 2750/2550,
  32870. bottom: 33/2783
  32871. }
  32872. },
  32873. back: {
  32874. height: math.unit(4 + 11/12, "feet"),
  32875. weight: math.unit(132, "lb"),
  32876. name: "Back",
  32877. image: {
  32878. source: "./media/characters/icey/back.svg",
  32879. extra: 2624/2481,
  32880. bottom: 35/2659
  32881. }
  32882. },
  32883. },
  32884. [
  32885. {
  32886. name: "Normal",
  32887. height: math.unit(4 + 11/12, "feet"),
  32888. default: true
  32889. },
  32890. ]
  32891. ))
  32892. characterMakers.push(() => makeCharacter(
  32893. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32894. {
  32895. front: {
  32896. height: math.unit(100, "feet"),
  32897. weight: math.unit(0, "lb"),
  32898. name: "Front",
  32899. image: {
  32900. source: "./media/characters/smile/front.svg",
  32901. extra: 2983/2912,
  32902. bottom: 162/3145
  32903. }
  32904. },
  32905. back: {
  32906. height: math.unit(100, "feet"),
  32907. weight: math.unit(0, "lb"),
  32908. name: "Back",
  32909. image: {
  32910. source: "./media/characters/smile/back.svg",
  32911. extra: 3143/3031,
  32912. bottom: 91/3234
  32913. }
  32914. },
  32915. head: {
  32916. height: math.unit(26.3, "feet"),
  32917. weight: math.unit(0, "lb"),
  32918. name: "Head",
  32919. image: {
  32920. source: "./media/characters/smile/head.svg"
  32921. }
  32922. },
  32923. collar: {
  32924. height: math.unit(5.3, "feet"),
  32925. weight: math.unit(0, "lb"),
  32926. name: "Collar",
  32927. image: {
  32928. source: "./media/characters/smile/collar.svg"
  32929. }
  32930. },
  32931. },
  32932. [
  32933. {
  32934. name: "Macro",
  32935. height: math.unit(100, "feet"),
  32936. default: true
  32937. },
  32938. ]
  32939. ))
  32940. characterMakers.push(() => makeCharacter(
  32941. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32942. {
  32943. dragon: {
  32944. height: math.unit(26, "feet"),
  32945. weight: math.unit(36, "tons"),
  32946. name: "Dragon",
  32947. image: {
  32948. source: "./media/characters/arimphae/dragon.svg",
  32949. extra: 1574/983,
  32950. bottom: 357/1931
  32951. }
  32952. },
  32953. drake: {
  32954. height: math.unit(9, "feet"),
  32955. weight: math.unit(1.5, "tons"),
  32956. name: "Drake",
  32957. image: {
  32958. source: "./media/characters/arimphae/drake.svg",
  32959. extra: 1120/925,
  32960. bottom: 435/1555
  32961. }
  32962. },
  32963. },
  32964. [
  32965. {
  32966. name: "Small",
  32967. height: math.unit(26*5/9, "feet")
  32968. },
  32969. {
  32970. name: "Normal",
  32971. height: math.unit(26, "feet"),
  32972. default: true
  32973. },
  32974. ]
  32975. ))
  32976. characterMakers.push(() => makeCharacter(
  32977. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32978. {
  32979. front: {
  32980. height: math.unit(8 + 9/12, "feet"),
  32981. name: "Front",
  32982. image: {
  32983. source: "./media/characters/xander/front.svg",
  32984. extra: 1237/974,
  32985. bottom: 94/1331
  32986. }
  32987. },
  32988. },
  32989. [
  32990. {
  32991. name: "Normal",
  32992. height: math.unit(8 + 9/12, "feet"),
  32993. default: true
  32994. },
  32995. {
  32996. name: "Gaze Grabber",
  32997. height: math.unit(13 + 8/12, "feet")
  32998. },
  32999. {
  33000. name: "Jaw Dropper",
  33001. height: math.unit(27, "feet")
  33002. },
  33003. {
  33004. name: "Show Stopper",
  33005. height: math.unit(136, "feet")
  33006. },
  33007. {
  33008. name: "Superstar",
  33009. height: math.unit(1.9e6, "miles")
  33010. },
  33011. ]
  33012. ))
  33013. characterMakers.push(() => makeCharacter(
  33014. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33015. {
  33016. side: {
  33017. height: math.unit(2100, "feet"),
  33018. name: "Side",
  33019. image: {
  33020. source: "./media/characters/osiris/side.svg",
  33021. extra: 1105/939,
  33022. bottom: 167/1272
  33023. }
  33024. },
  33025. },
  33026. [
  33027. {
  33028. name: "Macro",
  33029. height: math.unit(2100, "feet"),
  33030. default: true
  33031. },
  33032. ]
  33033. ))
  33034. characterMakers.push(() => makeCharacter(
  33035. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33036. {
  33037. front: {
  33038. height: math.unit(6 + 8/12, "feet"),
  33039. weight: math.unit(225, "lb"),
  33040. name: "Front",
  33041. image: {
  33042. source: "./media/characters/rhys-londe/front.svg",
  33043. extra: 2258/2141,
  33044. bottom: 188/2446
  33045. }
  33046. },
  33047. back: {
  33048. height: math.unit(6 + 8/12, "feet"),
  33049. weight: math.unit(225, "lb"),
  33050. name: "Back",
  33051. image: {
  33052. source: "./media/characters/rhys-londe/back.svg",
  33053. extra: 2237/2137,
  33054. bottom: 63/2300
  33055. }
  33056. },
  33057. frontNsfw: {
  33058. height: math.unit(6 + 8/12, "feet"),
  33059. weight: math.unit(225, "lb"),
  33060. name: "Front (NSFW)",
  33061. image: {
  33062. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33063. extra: 2258/2141,
  33064. bottom: 188/2446
  33065. }
  33066. },
  33067. backNsfw: {
  33068. height: math.unit(6 + 8/12, "feet"),
  33069. weight: math.unit(225, "lb"),
  33070. name: "Back (NSFW)",
  33071. image: {
  33072. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33073. extra: 2237/2137,
  33074. bottom: 63/2300
  33075. }
  33076. },
  33077. dick: {
  33078. height: math.unit(30, "inches"),
  33079. name: "Dick",
  33080. image: {
  33081. source: "./media/characters/rhys-londe/dick.svg"
  33082. }
  33083. },
  33084. maw: {
  33085. height: math.unit(1.6, "feet"),
  33086. name: "Maw",
  33087. image: {
  33088. source: "./media/characters/rhys-londe/maw.svg"
  33089. }
  33090. },
  33091. },
  33092. [
  33093. {
  33094. name: "Normal",
  33095. height: math.unit(6 + 8/12, "feet"),
  33096. default: true
  33097. },
  33098. ]
  33099. ))
  33100. characterMakers.push(() => makeCharacter(
  33101. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33102. {
  33103. front: {
  33104. height: math.unit(3 + 10/12, "feet"),
  33105. weight: math.unit(90, "lb"),
  33106. name: "Front",
  33107. image: {
  33108. source: "./media/characters/taivas-ensim/front.svg",
  33109. extra: 1327/1216,
  33110. bottom: 96/1423
  33111. }
  33112. },
  33113. back: {
  33114. height: math.unit(3 + 10/12, "feet"),
  33115. weight: math.unit(90, "lb"),
  33116. name: "Back",
  33117. image: {
  33118. source: "./media/characters/taivas-ensim/back.svg",
  33119. extra: 1355/1247,
  33120. bottom: 11/1366
  33121. }
  33122. },
  33123. frontNsfw: {
  33124. height: math.unit(3 + 10/12, "feet"),
  33125. weight: math.unit(90, "lb"),
  33126. name: "Front (NSFW)",
  33127. image: {
  33128. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33129. extra: 1327/1216,
  33130. bottom: 96/1423
  33131. }
  33132. },
  33133. backNsfw: {
  33134. height: math.unit(3 + 10/12, "feet"),
  33135. weight: math.unit(90, "lb"),
  33136. name: "Back (NSFW)",
  33137. image: {
  33138. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33139. extra: 1355/1247,
  33140. bottom: 11/1366
  33141. }
  33142. },
  33143. },
  33144. [
  33145. {
  33146. name: "Normal",
  33147. height: math.unit(3 + 10/12, "feet"),
  33148. default: true
  33149. },
  33150. ]
  33151. ))
  33152. characterMakers.push(() => makeCharacter(
  33153. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33154. {
  33155. front: {
  33156. height: math.unit(9 + 6/12, "feet"),
  33157. weight: math.unit(940, "lb"),
  33158. name: "Front",
  33159. image: {
  33160. source: "./media/characters/byliss/front.svg",
  33161. extra: 1327/1290,
  33162. bottom: 82/1409
  33163. }
  33164. },
  33165. back: {
  33166. height: math.unit(9 + 6/12, "feet"),
  33167. weight: math.unit(940, "lb"),
  33168. name: "Back",
  33169. image: {
  33170. source: "./media/characters/byliss/back.svg",
  33171. extra: 1376/1349,
  33172. bottom: 9/1385
  33173. }
  33174. },
  33175. frontNsfw: {
  33176. height: math.unit(9 + 6/12, "feet"),
  33177. weight: math.unit(940, "lb"),
  33178. name: "Front (NSFW)",
  33179. image: {
  33180. source: "./media/characters/byliss/front-nsfw.svg",
  33181. extra: 1327/1290,
  33182. bottom: 82/1409
  33183. }
  33184. },
  33185. backNsfw: {
  33186. height: math.unit(9 + 6/12, "feet"),
  33187. weight: math.unit(940, "lb"),
  33188. name: "Back (NSFW)",
  33189. image: {
  33190. source: "./media/characters/byliss/back-nsfw.svg",
  33191. extra: 1376/1349,
  33192. bottom: 9/1385
  33193. }
  33194. },
  33195. },
  33196. [
  33197. {
  33198. name: "Normal",
  33199. height: math.unit(9 + 6/12, "feet"),
  33200. default: true
  33201. },
  33202. ]
  33203. ))
  33204. characterMakers.push(() => makeCharacter(
  33205. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33206. {
  33207. front: {
  33208. height: math.unit(5 + 2/12, "feet"),
  33209. weight: math.unit(200, "lb"),
  33210. name: "Front",
  33211. image: {
  33212. source: "./media/characters/noraly/front.svg",
  33213. extra: 4985/4773,
  33214. bottom: 150/5135
  33215. }
  33216. },
  33217. full: {
  33218. height: math.unit(5 + 2/12, "feet"),
  33219. weight: math.unit(164, "lb"),
  33220. name: "Full",
  33221. image: {
  33222. source: "./media/characters/noraly/full.svg",
  33223. extra: 1114/1059,
  33224. bottom: 35/1149
  33225. }
  33226. },
  33227. fuller: {
  33228. height: math.unit(5 + 2/12, "feet"),
  33229. weight: math.unit(230, "lb"),
  33230. name: "Fuller",
  33231. image: {
  33232. source: "./media/characters/noraly/fuller.svg",
  33233. extra: 1114/1059,
  33234. bottom: 35/1149
  33235. }
  33236. },
  33237. fullest: {
  33238. height: math.unit(5 + 2/12, "feet"),
  33239. weight: math.unit(300, "lb"),
  33240. name: "Fullest",
  33241. image: {
  33242. source: "./media/characters/noraly/fullest.svg",
  33243. extra: 1114/1059,
  33244. bottom: 35/1149
  33245. }
  33246. },
  33247. },
  33248. [
  33249. {
  33250. name: "Normal",
  33251. height: math.unit(5 + 2/12, "feet"),
  33252. default: true
  33253. },
  33254. ]
  33255. ))
  33256. characterMakers.push(() => makeCharacter(
  33257. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33258. {
  33259. front: {
  33260. height: math.unit(5 + 2/12, "feet"),
  33261. weight: math.unit(210, "lb"),
  33262. name: "Front",
  33263. image: {
  33264. source: "./media/characters/pera/front.svg",
  33265. extra: 1560/1531,
  33266. bottom: 165/1725
  33267. }
  33268. },
  33269. back: {
  33270. height: math.unit(5 + 2/12, "feet"),
  33271. weight: math.unit(210, "lb"),
  33272. name: "Back",
  33273. image: {
  33274. source: "./media/characters/pera/back.svg",
  33275. extra: 1523/1493,
  33276. bottom: 152/1675
  33277. }
  33278. },
  33279. dick: {
  33280. height: math.unit(2.4, "feet"),
  33281. name: "Dick",
  33282. image: {
  33283. source: "./media/characters/pera/dick.svg"
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(5 + 2/12, "feet"),
  33291. default: true
  33292. },
  33293. ]
  33294. ))
  33295. characterMakers.push(() => makeCharacter(
  33296. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33297. {
  33298. front: {
  33299. height: math.unit(12, "feet"),
  33300. weight: math.unit(3200, "lb"),
  33301. name: "Front",
  33302. image: {
  33303. source: "./media/characters/julian/front.svg",
  33304. extra: 2962/2701,
  33305. bottom: 184/3146
  33306. }
  33307. },
  33308. maw: {
  33309. height: math.unit(5.35, "feet"),
  33310. name: "Maw",
  33311. image: {
  33312. source: "./media/characters/julian/maw.svg"
  33313. }
  33314. },
  33315. paw: {
  33316. height: math.unit(3.07, "feet"),
  33317. name: "Paw",
  33318. image: {
  33319. source: "./media/characters/julian/paw.svg"
  33320. }
  33321. },
  33322. },
  33323. [
  33324. {
  33325. name: "Default",
  33326. height: math.unit(12, "feet"),
  33327. default: true
  33328. },
  33329. {
  33330. name: "Big",
  33331. height: math.unit(50, "feet")
  33332. },
  33333. {
  33334. name: "Really Big",
  33335. height: math.unit(1, "mile")
  33336. },
  33337. {
  33338. name: "Extremely Big",
  33339. height: math.unit(100, "miles")
  33340. },
  33341. {
  33342. name: "Planet Hugger",
  33343. height: math.unit(200, "megameters")
  33344. },
  33345. {
  33346. name: "Unreasonably Big",
  33347. height: math.unit(1e300, "meters")
  33348. },
  33349. ]
  33350. ))
  33351. characterMakers.push(() => makeCharacter(
  33352. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33353. {
  33354. solgooleo: {
  33355. height: math.unit(4, "meters"),
  33356. weight: math.unit(6000*1.5, "kg"),
  33357. volume: math.unit(6000, "liters"),
  33358. name: "Solgooleo",
  33359. image: {
  33360. source: "./media/characters/pi/solgooleo.svg",
  33361. extra: 388/331,
  33362. bottom: 29/417
  33363. }
  33364. },
  33365. },
  33366. [
  33367. {
  33368. name: "Normal",
  33369. height: math.unit(4, "meters"),
  33370. default: true
  33371. },
  33372. ]
  33373. ))
  33374. characterMakers.push(() => makeCharacter(
  33375. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33376. {
  33377. front: {
  33378. height: math.unit(8, "feet"),
  33379. weight: math.unit(4, "tons"),
  33380. name: "Front",
  33381. image: {
  33382. source: "./media/characters/shaun/front.svg",
  33383. extra: 503/495,
  33384. bottom: 20/523
  33385. }
  33386. },
  33387. back: {
  33388. height: math.unit(8, "feet"),
  33389. weight: math.unit(4, "tons"),
  33390. name: "Back",
  33391. image: {
  33392. source: "./media/characters/shaun/back.svg",
  33393. extra: 487/480,
  33394. bottom: 20/507
  33395. }
  33396. },
  33397. },
  33398. [
  33399. {
  33400. name: "Lorg",
  33401. height: math.unit(8, "feet"),
  33402. default: true
  33403. },
  33404. ]
  33405. ))
  33406. characterMakers.push(() => makeCharacter(
  33407. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33408. {
  33409. frontAnthro: {
  33410. height: math.unit(7, "feet"),
  33411. name: "Front",
  33412. image: {
  33413. source: "./media/characters/sini/front-anthro.svg",
  33414. extra: 726/678,
  33415. bottom: 35/761
  33416. },
  33417. form: "anthro",
  33418. default: true
  33419. },
  33420. backAnthro: {
  33421. height: math.unit(7, "feet"),
  33422. name: "Back",
  33423. image: {
  33424. source: "./media/characters/sini/back-anthro.svg",
  33425. extra: 743/701,
  33426. bottom: 12/755
  33427. },
  33428. form: "anthro",
  33429. },
  33430. frontAnthroNsfw: {
  33431. height: math.unit(7, "feet"),
  33432. name: "Front (NSFW)",
  33433. image: {
  33434. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33435. extra: 726/678,
  33436. bottom: 35/761
  33437. },
  33438. form: "anthro"
  33439. },
  33440. backAnthroNsfw: {
  33441. height: math.unit(7, "feet"),
  33442. name: "Back (NSFW)",
  33443. image: {
  33444. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33445. extra: 743/701,
  33446. bottom: 12/755
  33447. },
  33448. form: "anthro",
  33449. },
  33450. mawAnthro: {
  33451. height: math.unit(2.14, "feet"),
  33452. name: "Maw",
  33453. image: {
  33454. source: "./media/characters/sini/maw-anthro.svg"
  33455. },
  33456. form: "anthro"
  33457. },
  33458. dick: {
  33459. height: math.unit(1.45, "feet"),
  33460. name: "Dick",
  33461. image: {
  33462. source: "./media/characters/sini/dick-anthro.svg"
  33463. },
  33464. form: "anthro"
  33465. },
  33466. feral: {
  33467. height: math.unit(16, "feet"),
  33468. name: "Feral",
  33469. image: {
  33470. source: "./media/characters/sini/feral.svg",
  33471. extra: 814/605,
  33472. bottom: 11/825
  33473. },
  33474. form: "feral",
  33475. default: true
  33476. },
  33477. feralNsfw: {
  33478. height: math.unit(16, "feet"),
  33479. name: "Feral (NSFW)",
  33480. image: {
  33481. source: "./media/characters/sini/feral-nsfw.svg",
  33482. extra: 814/605,
  33483. bottom: 11/825
  33484. },
  33485. form: "feral"
  33486. },
  33487. mawFeral: {
  33488. height: math.unit(5.66, "feet"),
  33489. name: "Maw",
  33490. image: {
  33491. source: "./media/characters/sini/maw-feral.svg"
  33492. },
  33493. form: "feral",
  33494. },
  33495. pawFeral: {
  33496. height: math.unit(5.17, "feet"),
  33497. name: "Paw",
  33498. image: {
  33499. source: "./media/characters/sini/paw-feral.svg"
  33500. },
  33501. form: "feral",
  33502. },
  33503. rumpFeral: {
  33504. height: math.unit(13.11, "feet"),
  33505. name: "Rump",
  33506. image: {
  33507. source: "./media/characters/sini/rump-feral.svg"
  33508. },
  33509. form: "feral",
  33510. },
  33511. dickFeral: {
  33512. height: math.unit(1, "feet"),
  33513. name: "Dick",
  33514. image: {
  33515. source: "./media/characters/sini/dick-feral.svg"
  33516. },
  33517. form: "feral",
  33518. },
  33519. eyeFeral: {
  33520. height: math.unit(1.23, "feet"),
  33521. name: "Eye",
  33522. image: {
  33523. source: "./media/characters/sini/eye-feral.svg"
  33524. },
  33525. form: "feral",
  33526. },
  33527. },
  33528. [
  33529. {
  33530. name: "Normal",
  33531. height: math.unit(7, "feet"),
  33532. default: true,
  33533. form: "anthro"
  33534. },
  33535. {
  33536. name: "Normal",
  33537. height: math.unit(16, "feet"),
  33538. default: true,
  33539. form: "feral"
  33540. },
  33541. ],
  33542. {
  33543. "anthro": {
  33544. name: "Anthro",
  33545. default: true
  33546. },
  33547. "feral": {
  33548. name: "Feral",
  33549. }
  33550. }
  33551. ))
  33552. characterMakers.push(() => makeCharacter(
  33553. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33554. {
  33555. side: {
  33556. height: math.unit(13, "meters"),
  33557. weight: math.unit(9072, "kg"),
  33558. name: "Side",
  33559. image: {
  33560. source: "./media/characters/raylldo/side.svg",
  33561. extra: 403/344,
  33562. bottom: 42/445
  33563. }
  33564. },
  33565. leaping: {
  33566. height: math.unit(12.3, "meters"),
  33567. weight: math.unit(9072, "kg"),
  33568. name: "Leaping",
  33569. image: {
  33570. source: "./media/characters/raylldo/leaping.svg",
  33571. extra: 470/249,
  33572. bottom: 13/483
  33573. }
  33574. },
  33575. flying: {
  33576. height: math.unit(18, "meters"),
  33577. weight: math.unit(9072, "kg"),
  33578. name: "Flying",
  33579. image: {
  33580. source: "./media/characters/raylldo/flying.svg"
  33581. }
  33582. },
  33583. head: {
  33584. height: math.unit(5.85, "meters"),
  33585. name: "Head",
  33586. image: {
  33587. source: "./media/characters/raylldo/head.svg"
  33588. }
  33589. },
  33590. maw: {
  33591. height: math.unit(5.32, "meters"),
  33592. name: "Maw",
  33593. image: {
  33594. source: "./media/characters/raylldo/maw.svg"
  33595. }
  33596. },
  33597. eye: {
  33598. height: math.unit(0.54, "meters"),
  33599. name: "Eye",
  33600. image: {
  33601. source: "./media/characters/raylldo/eye.svg"
  33602. }
  33603. },
  33604. },
  33605. [
  33606. {
  33607. name: "Normal",
  33608. height: math.unit(13, "meters"),
  33609. default: true
  33610. },
  33611. ]
  33612. ))
  33613. characterMakers.push(() => makeCharacter(
  33614. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33615. {
  33616. anthroFront: {
  33617. height: math.unit(9, "feet"),
  33618. weight: math.unit(600, "lb"),
  33619. name: "Anthro (Front)",
  33620. image: {
  33621. source: "./media/characters/glint/anthro-front.svg",
  33622. extra: 1097/1018,
  33623. bottom: 28/1125
  33624. }
  33625. },
  33626. anthroBack: {
  33627. height: math.unit(9, "feet"),
  33628. weight: math.unit(600, "lb"),
  33629. name: "Anthro (Back)",
  33630. image: {
  33631. source: "./media/characters/glint/anthro-back.svg",
  33632. extra: 1154/997,
  33633. bottom: 36/1190
  33634. }
  33635. },
  33636. feral: {
  33637. height: math.unit(11, "feet"),
  33638. weight: math.unit(50000, "lb"),
  33639. name: "Feral",
  33640. image: {
  33641. source: "./media/characters/glint/feral.svg",
  33642. extra: 3035/1585,
  33643. bottom: 1169/4204
  33644. }
  33645. },
  33646. dickAnthro: {
  33647. height: math.unit(0.7, "meters"),
  33648. name: "Dick (Anthro)",
  33649. image: {
  33650. source: "./media/characters/glint/dick-anthro.svg"
  33651. }
  33652. },
  33653. dickFeral: {
  33654. height: math.unit(2.65, "meters"),
  33655. name: "Dick (Feral)",
  33656. image: {
  33657. source: "./media/characters/glint/dick-feral.svg"
  33658. }
  33659. },
  33660. slitHidden: {
  33661. height: math.unit(5.85, "meters"),
  33662. name: "Slit (Hidden)",
  33663. image: {
  33664. source: "./media/characters/glint/slit-hidden.svg"
  33665. }
  33666. },
  33667. slitErect: {
  33668. height: math.unit(5.85, "meters"),
  33669. name: "Slit (Erect)",
  33670. image: {
  33671. source: "./media/characters/glint/slit-erect.svg"
  33672. }
  33673. },
  33674. mawAnthro: {
  33675. height: math.unit(0.63, "meters"),
  33676. name: "Maw (Anthro)",
  33677. image: {
  33678. source: "./media/characters/glint/maw.svg"
  33679. }
  33680. },
  33681. mawFeral: {
  33682. height: math.unit(2.89, "meters"),
  33683. name: "Maw (Feral)",
  33684. image: {
  33685. source: "./media/characters/glint/maw.svg"
  33686. }
  33687. },
  33688. },
  33689. [
  33690. {
  33691. name: "Normal",
  33692. height: math.unit(9, "feet"),
  33693. default: true
  33694. },
  33695. ]
  33696. ))
  33697. characterMakers.push(() => makeCharacter(
  33698. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33699. {
  33700. side: {
  33701. height: math.unit(15, "feet"),
  33702. weight: math.unit(5000, "kg"),
  33703. name: "Side",
  33704. image: {
  33705. source: "./media/characters/kairne/side.svg",
  33706. extra: 979/811,
  33707. bottom: 13/992
  33708. }
  33709. },
  33710. front: {
  33711. height: math.unit(15, "feet"),
  33712. weight: math.unit(5000, "kg"),
  33713. name: "Front",
  33714. image: {
  33715. source: "./media/characters/kairne/front.svg",
  33716. extra: 908/814,
  33717. bottom: 26/934
  33718. }
  33719. },
  33720. sideNsfw: {
  33721. height: math.unit(15, "feet"),
  33722. weight: math.unit(5000, "kg"),
  33723. name: "Side (NSFW)",
  33724. image: {
  33725. source: "./media/characters/kairne/side-nsfw.svg",
  33726. extra: 979/811,
  33727. bottom: 13/992
  33728. }
  33729. },
  33730. frontNsfw: {
  33731. height: math.unit(15, "feet"),
  33732. weight: math.unit(5000, "kg"),
  33733. name: "Front (NSFW)",
  33734. image: {
  33735. source: "./media/characters/kairne/front-nsfw.svg",
  33736. extra: 908/814,
  33737. bottom: 26/934
  33738. }
  33739. },
  33740. dickCaged: {
  33741. height: math.unit(0.65, "meters"),
  33742. name: "Dick-caged",
  33743. image: {
  33744. source: "./media/characters/kairne/dick-caged.svg"
  33745. }
  33746. },
  33747. dick: {
  33748. height: math.unit(0.79, "meters"),
  33749. name: "Dick",
  33750. image: {
  33751. source: "./media/characters/kairne/dick.svg"
  33752. }
  33753. },
  33754. genitals: {
  33755. height: math.unit(1.29, "meters"),
  33756. name: "Genitals",
  33757. image: {
  33758. source: "./media/characters/kairne/genitals.svg"
  33759. }
  33760. },
  33761. maw: {
  33762. height: math.unit(1.73, "meters"),
  33763. name: "Maw",
  33764. image: {
  33765. source: "./media/characters/kairne/maw.svg"
  33766. }
  33767. },
  33768. },
  33769. [
  33770. {
  33771. name: "Normal",
  33772. height: math.unit(15, "feet"),
  33773. default: true
  33774. },
  33775. ]
  33776. ))
  33777. characterMakers.push(() => makeCharacter(
  33778. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33779. {
  33780. front: {
  33781. height: math.unit(5 + 8/12, "feet"),
  33782. weight: math.unit(139, "lb"),
  33783. name: "Front",
  33784. image: {
  33785. source: "./media/characters/biscuit-jackal/front.svg",
  33786. extra: 2106/1961,
  33787. bottom: 58/2164
  33788. }
  33789. },
  33790. back: {
  33791. height: math.unit(5 + 8/12, "feet"),
  33792. weight: math.unit(139, "lb"),
  33793. name: "Back",
  33794. image: {
  33795. source: "./media/characters/biscuit-jackal/back.svg",
  33796. extra: 2132/1976,
  33797. bottom: 57/2189
  33798. }
  33799. },
  33800. werejackal: {
  33801. height: math.unit(6 + 3/12, "feet"),
  33802. weight: math.unit(188, "lb"),
  33803. name: "Werejackal",
  33804. image: {
  33805. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33806. extra: 2373/2178,
  33807. bottom: 53/2426
  33808. }
  33809. },
  33810. },
  33811. [
  33812. {
  33813. name: "Normal",
  33814. height: math.unit(5 + 8/12, "feet"),
  33815. default: true
  33816. },
  33817. ]
  33818. ))
  33819. characterMakers.push(() => makeCharacter(
  33820. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33821. {
  33822. front: {
  33823. height: math.unit(140, "cm"),
  33824. weight: math.unit(45, "kg"),
  33825. name: "Front",
  33826. image: {
  33827. source: "./media/characters/tayra-white/front.svg",
  33828. extra: 2229/2192,
  33829. bottom: 75/2304
  33830. }
  33831. },
  33832. },
  33833. [
  33834. {
  33835. name: "Normal",
  33836. height: math.unit(140, "cm"),
  33837. default: true
  33838. },
  33839. ]
  33840. ))
  33841. characterMakers.push(() => makeCharacter(
  33842. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33843. {
  33844. front: {
  33845. height: math.unit(4 + 5/12, "feet"),
  33846. name: "Front",
  33847. image: {
  33848. source: "./media/characters/scoop/front.svg",
  33849. extra: 1257/1136,
  33850. bottom: 69/1326
  33851. }
  33852. },
  33853. back: {
  33854. height: math.unit(4 + 5/12, "feet"),
  33855. name: "Back",
  33856. image: {
  33857. source: "./media/characters/scoop/back.svg",
  33858. extra: 1321/1152,
  33859. bottom: 32/1353
  33860. }
  33861. },
  33862. maw: {
  33863. height: math.unit(0.68, "feet"),
  33864. name: "Maw",
  33865. image: {
  33866. source: "./media/characters/scoop/maw.svg"
  33867. }
  33868. },
  33869. },
  33870. [
  33871. {
  33872. name: "Really Small",
  33873. height: math.unit(1, "mm")
  33874. },
  33875. {
  33876. name: "Micro",
  33877. height: math.unit(1, "inch")
  33878. },
  33879. {
  33880. name: "Normal",
  33881. height: math.unit(4 + 5/12, "feet"),
  33882. default: true
  33883. },
  33884. {
  33885. name: "Macro",
  33886. height: math.unit(200, "feet")
  33887. },
  33888. {
  33889. name: "Megamacro",
  33890. height: math.unit(3240, "feet")
  33891. },
  33892. {
  33893. name: "Teramacro",
  33894. height: math.unit(2500, "miles")
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33900. {
  33901. front: {
  33902. height: math.unit(15 + 7/12, "feet"),
  33903. weight: math.unit(1150, "tons"),
  33904. name: "Front",
  33905. image: {
  33906. source: "./media/characters/saphinara/front.svg",
  33907. extra: 1837/1643,
  33908. bottom: 84/1921
  33909. },
  33910. form: "normal",
  33911. default: true
  33912. },
  33913. side: {
  33914. height: math.unit(15 + 7/12, "feet"),
  33915. weight: math.unit(1150, "tons"),
  33916. name: "Side",
  33917. image: {
  33918. source: "./media/characters/saphinara/side.svg",
  33919. extra: 605/547,
  33920. bottom: 6/611
  33921. },
  33922. form: "normal"
  33923. },
  33924. back: {
  33925. height: math.unit(15 + 7/12, "feet"),
  33926. weight: math.unit(1150, "tons"),
  33927. name: "Back",
  33928. image: {
  33929. source: "./media/characters/saphinara/back.svg",
  33930. extra: 591/531,
  33931. bottom: 13/604
  33932. },
  33933. form: "normal"
  33934. },
  33935. frontTail: {
  33936. height: math.unit(15 + 7/12, "feet"),
  33937. weight: math.unit(1150, "tons"),
  33938. name: "Front (Full Tail)",
  33939. image: {
  33940. source: "./media/characters/saphinara/front-tail.svg",
  33941. extra: 2256/1630,
  33942. bottom: 261/2517
  33943. },
  33944. form: "normal"
  33945. },
  33946. insides: {
  33947. height: math.unit(11.92, "feet"),
  33948. name: "Insides",
  33949. image: {
  33950. source: "./media/characters/saphinara/insides.svg"
  33951. },
  33952. form: "normal"
  33953. },
  33954. head: {
  33955. height: math.unit(4.17, "feet"),
  33956. name: "Head",
  33957. image: {
  33958. source: "./media/characters/saphinara/head.svg"
  33959. },
  33960. form: "normal"
  33961. },
  33962. tongue: {
  33963. height: math.unit(4.60, "feet"),
  33964. name: "Tongue",
  33965. image: {
  33966. source: "./media/characters/saphinara/tongue.svg"
  33967. },
  33968. form: "normal"
  33969. },
  33970. headEnraged: {
  33971. height: math.unit(5.55, "feet"),
  33972. name: "Head (Enraged)",
  33973. image: {
  33974. source: "./media/characters/saphinara/head-enraged.svg"
  33975. },
  33976. form: "normal"
  33977. },
  33978. wings: {
  33979. height: math.unit(11.95, "feet"),
  33980. name: "Wings",
  33981. image: {
  33982. source: "./media/characters/saphinara/wings.svg"
  33983. },
  33984. form: "normal"
  33985. },
  33986. feathers: {
  33987. height: math.unit(8.92, "feet"),
  33988. name: "Feathers",
  33989. image: {
  33990. source: "./media/characters/saphinara/feathers.svg"
  33991. },
  33992. form: "normal"
  33993. },
  33994. shackles: {
  33995. height: math.unit(2, "feet"),
  33996. name: "Shackles",
  33997. image: {
  33998. source: "./media/characters/saphinara/shackles.svg"
  33999. },
  34000. form: "normal"
  34001. },
  34002. eyes: {
  34003. height: math.unit(1.331, "feet"),
  34004. name: "Eyes",
  34005. image: {
  34006. source: "./media/characters/saphinara/eyes.svg"
  34007. },
  34008. form: "normal"
  34009. },
  34010. eyesEnraged: {
  34011. height: math.unit(1.331, "feet"),
  34012. name: "Eyes (Enraged)",
  34013. image: {
  34014. source: "./media/characters/saphinara/eyes-enraged.svg"
  34015. },
  34016. form: "normal"
  34017. },
  34018. trueFormSide: {
  34019. height: math.unit(200, "feet"),
  34020. weight: math.unit(1e7, "tons"),
  34021. name: "Side",
  34022. image: {
  34023. source: "./media/characters/saphinara/true-form-side.svg",
  34024. extra: 1399/770,
  34025. bottom: 97/1496
  34026. },
  34027. form: "true-form",
  34028. default: true
  34029. },
  34030. trueFormMaw: {
  34031. height: math.unit(71.5, "feet"),
  34032. name: "Maw",
  34033. image: {
  34034. source: "./media/characters/saphinara/true-form-maw.svg",
  34035. extra: 2302/1453,
  34036. bottom: 0/2302
  34037. },
  34038. form: "true-form"
  34039. },
  34040. },
  34041. [
  34042. {
  34043. name: "Normal",
  34044. height: math.unit(15 + 7/12, "feet"),
  34045. default: true,
  34046. form: "normal"
  34047. },
  34048. {
  34049. name: "Angry",
  34050. height: math.unit(30 + 6/12, "feet"),
  34051. form: "normal"
  34052. },
  34053. {
  34054. name: "Enraged",
  34055. height: math.unit(102 + 1/12, "feet"),
  34056. form: "normal"
  34057. },
  34058. {
  34059. name: "True",
  34060. height: math.unit(200, "feet"),
  34061. default: true,
  34062. form: "true-form"
  34063. }
  34064. ],
  34065. {
  34066. "normal": {
  34067. name: "Normal",
  34068. default: true
  34069. },
  34070. "true-form": {
  34071. name: "True Form"
  34072. }
  34073. }
  34074. ))
  34075. characterMakers.push(() => makeCharacter(
  34076. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34077. {
  34078. front: {
  34079. height: math.unit(6 + 8/12, "feet"),
  34080. weight: math.unit(300, "lb"),
  34081. name: "Front",
  34082. image: {
  34083. source: "./media/characters/jrain/front.svg",
  34084. extra: 3039/2865,
  34085. bottom: 399/3438
  34086. }
  34087. },
  34088. back: {
  34089. height: math.unit(6 + 8/12, "feet"),
  34090. weight: math.unit(300, "lb"),
  34091. name: "Back",
  34092. image: {
  34093. source: "./media/characters/jrain/back.svg",
  34094. extra: 3089/2938,
  34095. bottom: 172/3261
  34096. }
  34097. },
  34098. head: {
  34099. height: math.unit(2.14, "feet"),
  34100. name: "Head",
  34101. image: {
  34102. source: "./media/characters/jrain/head.svg"
  34103. }
  34104. },
  34105. maw: {
  34106. height: math.unit(1.77, "feet"),
  34107. name: "Maw",
  34108. image: {
  34109. source: "./media/characters/jrain/maw.svg"
  34110. }
  34111. },
  34112. leftHand: {
  34113. height: math.unit(1.1, "feet"),
  34114. name: "Left Hand",
  34115. image: {
  34116. source: "./media/characters/jrain/left-hand.svg"
  34117. }
  34118. },
  34119. rightHand: {
  34120. height: math.unit(1.1, "feet"),
  34121. name: "Right Hand",
  34122. image: {
  34123. source: "./media/characters/jrain/right-hand.svg"
  34124. }
  34125. },
  34126. eye: {
  34127. height: math.unit(0.35, "feet"),
  34128. name: "Eye",
  34129. image: {
  34130. source: "./media/characters/jrain/eye.svg"
  34131. }
  34132. },
  34133. },
  34134. [
  34135. {
  34136. name: "Normal",
  34137. height: math.unit(6 + 8/12, "feet"),
  34138. default: true
  34139. },
  34140. {
  34141. name: "Casually Large",
  34142. height: math.unit(25, "feet")
  34143. },
  34144. {
  34145. name: "Giant",
  34146. height: math.unit(100, "feet")
  34147. },
  34148. {
  34149. name: "Kaiju",
  34150. height: math.unit(300, "feet")
  34151. },
  34152. ]
  34153. ))
  34154. characterMakers.push(() => makeCharacter(
  34155. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34156. {
  34157. dragon: {
  34158. height: math.unit(5, "meters"),
  34159. name: "Dragon",
  34160. image: {
  34161. source: "./media/characters/sabrina/dragon.svg",
  34162. extra: 3670 / 2365,
  34163. bottom: 333 / 4003
  34164. }
  34165. },
  34166. gryphon: {
  34167. height: math.unit(3, "meters"),
  34168. name: "Gryphon",
  34169. image: {
  34170. source: "./media/characters/sabrina/gryphon.svg",
  34171. extra: 1576 / 945,
  34172. bottom: 71 / 1647
  34173. }
  34174. },
  34175. snake: {
  34176. height: math.unit(12, "meters"),
  34177. name: "Snake",
  34178. image: {
  34179. source: "./media/characters/sabrina/snake.svg",
  34180. extra: 1758 / 1320,
  34181. bottom: 186 / 1944
  34182. }
  34183. },
  34184. collar: {
  34185. height: math.unit(1.86, "meters"),
  34186. name: "Collar",
  34187. image: {
  34188. source: "./media/characters/sabrina/collar.svg"
  34189. }
  34190. },
  34191. eye: {
  34192. height: math.unit(0.53, "meters"),
  34193. name: "Eye",
  34194. image: {
  34195. source: "./media/characters/sabrina/eye.svg"
  34196. }
  34197. },
  34198. foot: {
  34199. height: math.unit(1.86, "meters"),
  34200. name: "Foot",
  34201. image: {
  34202. source: "./media/characters/sabrina/foot.svg"
  34203. }
  34204. },
  34205. hand: {
  34206. height: math.unit(1.32, "meters"),
  34207. name: "Hand",
  34208. image: {
  34209. source: "./media/characters/sabrina/hand.svg"
  34210. }
  34211. },
  34212. head: {
  34213. height: math.unit(2.44, "meters"),
  34214. name: "Head",
  34215. image: {
  34216. source: "./media/characters/sabrina/head.svg"
  34217. }
  34218. },
  34219. headAngry: {
  34220. height: math.unit(2.44, "meters"),
  34221. name: "Head (Angry))",
  34222. image: {
  34223. source: "./media/characters/sabrina/head-angry.svg"
  34224. }
  34225. },
  34226. maw: {
  34227. height: math.unit(1.65, "meters"),
  34228. name: "Maw",
  34229. image: {
  34230. source: "./media/characters/sabrina/maw.svg"
  34231. }
  34232. },
  34233. spikes: {
  34234. height: math.unit(1.69, "meters"),
  34235. name: "Spikes",
  34236. image: {
  34237. source: "./media/characters/sabrina/spikes.svg"
  34238. }
  34239. },
  34240. stomach: {
  34241. height: math.unit(1.15, "meters"),
  34242. name: "Stomach",
  34243. image: {
  34244. source: "./media/characters/sabrina/stomach.svg"
  34245. }
  34246. },
  34247. tongue: {
  34248. height: math.unit(1.27, "meters"),
  34249. name: "Tongue",
  34250. image: {
  34251. source: "./media/characters/sabrina/tongue.svg"
  34252. }
  34253. },
  34254. wingDorsal: {
  34255. height: math.unit(4.85, "meters"),
  34256. name: "Wing (Dorsal)",
  34257. image: {
  34258. source: "./media/characters/sabrina/wing-dorsal.svg"
  34259. }
  34260. },
  34261. wingVentral: {
  34262. height: math.unit(4.85, "meters"),
  34263. name: "Wing (Ventral)",
  34264. image: {
  34265. source: "./media/characters/sabrina/wing-ventral.svg"
  34266. }
  34267. },
  34268. },
  34269. [
  34270. {
  34271. name: "Normal",
  34272. height: math.unit(5, "meters"),
  34273. default: true
  34274. },
  34275. ]
  34276. ))
  34277. characterMakers.push(() => makeCharacter(
  34278. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34279. {
  34280. frontMaid: {
  34281. height: math.unit(5 + 5/12, "feet"),
  34282. weight: math.unit(130, "lb"),
  34283. name: "Front (Maid)",
  34284. image: {
  34285. source: "./media/characters/midnight-tales/front-maid.svg",
  34286. extra: 489/454,
  34287. bottom: 61/550
  34288. }
  34289. },
  34290. frontFormal: {
  34291. height: math.unit(5 + 5/12, "feet"),
  34292. weight: math.unit(130, "lb"),
  34293. name: "Front (Formal)",
  34294. image: {
  34295. source: "./media/characters/midnight-tales/front-formal.svg",
  34296. extra: 489/454,
  34297. bottom: 61/550
  34298. }
  34299. },
  34300. back: {
  34301. height: math.unit(5 + 5/12, "feet"),
  34302. weight: math.unit(130, "lb"),
  34303. name: "Back",
  34304. image: {
  34305. source: "./media/characters/midnight-tales/back.svg",
  34306. extra: 498/456,
  34307. bottom: 33/531
  34308. }
  34309. },
  34310. frontBeast: {
  34311. height: math.unit(40, "feet"),
  34312. weight: math.unit(64000, "lb"),
  34313. name: "Front (Beast)",
  34314. image: {
  34315. source: "./media/characters/midnight-tales/front-beast.svg",
  34316. extra: 927/860,
  34317. bottom: 53/980
  34318. }
  34319. },
  34320. backBeast: {
  34321. height: math.unit(40, "feet"),
  34322. weight: math.unit(64000, "lb"),
  34323. name: "Back (Beast)",
  34324. image: {
  34325. source: "./media/characters/midnight-tales/back-beast.svg",
  34326. extra: 929/855,
  34327. bottom: 16/945
  34328. }
  34329. },
  34330. footBeast: {
  34331. height: math.unit(6.7, "feet"),
  34332. name: "Foot (Beast)",
  34333. image: {
  34334. source: "./media/characters/midnight-tales/foot-beast.svg"
  34335. }
  34336. },
  34337. headBeast: {
  34338. height: math.unit(8, "feet"),
  34339. name: "Head (Beast)",
  34340. image: {
  34341. source: "./media/characters/midnight-tales/head-beast.svg"
  34342. }
  34343. },
  34344. },
  34345. [
  34346. {
  34347. name: "Normal",
  34348. height: math.unit(5 + 5 / 12, "feet"),
  34349. default: true
  34350. },
  34351. {
  34352. name: "Macro",
  34353. height: math.unit(25, "feet")
  34354. },
  34355. ]
  34356. ))
  34357. characterMakers.push(() => makeCharacter(
  34358. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34359. {
  34360. front: {
  34361. height: math.unit(5 + 10/12, "feet"),
  34362. name: "Front",
  34363. image: {
  34364. source: "./media/characters/argon/front.svg",
  34365. extra: 2009/1935,
  34366. bottom: 118/2127
  34367. }
  34368. },
  34369. back: {
  34370. height: math.unit(5 + 10/12, "feet"),
  34371. name: "Back",
  34372. image: {
  34373. source: "./media/characters/argon/back.svg",
  34374. extra: 2047/1992,
  34375. bottom: 20/2067
  34376. }
  34377. },
  34378. frontDressed: {
  34379. height: math.unit(5 + 10/12, "feet"),
  34380. name: "Front (Dressed)",
  34381. image: {
  34382. source: "./media/characters/argon/front-dressed.svg",
  34383. extra: 2009/1935,
  34384. bottom: 118/2127
  34385. }
  34386. },
  34387. },
  34388. [
  34389. {
  34390. name: "Normal",
  34391. height: math.unit(5 + 10/12, "feet"),
  34392. default: true
  34393. },
  34394. ]
  34395. ))
  34396. characterMakers.push(() => makeCharacter(
  34397. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34398. {
  34399. front: {
  34400. height: math.unit(8 + 6/12, "feet"),
  34401. weight: math.unit(1150, "lb"),
  34402. name: "Front",
  34403. image: {
  34404. source: "./media/characters/kichi/front.svg",
  34405. extra: 1267/1164,
  34406. bottom: 61/1328
  34407. }
  34408. },
  34409. back: {
  34410. height: math.unit(8 + 6/12, "feet"),
  34411. weight: math.unit(1150, "lb"),
  34412. name: "Back",
  34413. image: {
  34414. source: "./media/characters/kichi/back.svg",
  34415. extra: 1273/1166,
  34416. bottom: 33/1306
  34417. }
  34418. },
  34419. },
  34420. [
  34421. {
  34422. name: "Normal",
  34423. height: math.unit(8 + 6/12, "feet"),
  34424. default: true
  34425. },
  34426. ]
  34427. ))
  34428. characterMakers.push(() => makeCharacter(
  34429. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34430. {
  34431. front: {
  34432. height: math.unit(6, "feet"),
  34433. weight: math.unit(210, "lb"),
  34434. name: "Front",
  34435. image: {
  34436. source: "./media/characters/manetel-greyscale/front.svg",
  34437. extra: 350/312,
  34438. bottom: 8/358
  34439. }
  34440. },
  34441. },
  34442. [
  34443. {
  34444. name: "Micro",
  34445. height: math.unit(2, "inches")
  34446. },
  34447. {
  34448. name: "Normal",
  34449. height: math.unit(6, "feet"),
  34450. default: true
  34451. },
  34452. {
  34453. name: "Minimacro",
  34454. height: math.unit(17, "feet")
  34455. },
  34456. {
  34457. name: "Macro",
  34458. height: math.unit(117, "feet")
  34459. },
  34460. ]
  34461. ))
  34462. characterMakers.push(() => makeCharacter(
  34463. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34464. {
  34465. side: {
  34466. height: math.unit(5 + 1/12, "feet"),
  34467. weight: math.unit(418, "lb"),
  34468. name: "Side",
  34469. image: {
  34470. source: "./media/characters/softpurr/side.svg",
  34471. extra: 1993/1945,
  34472. bottom: 134/2127
  34473. }
  34474. },
  34475. front: {
  34476. height: math.unit(5 + 1/12, "feet"),
  34477. weight: math.unit(418, "lb"),
  34478. name: "Front",
  34479. image: {
  34480. source: "./media/characters/softpurr/front.svg",
  34481. extra: 1950/1856,
  34482. bottom: 174/2124
  34483. }
  34484. },
  34485. paw: {
  34486. height: math.unit(1, "feet"),
  34487. name: "Paw",
  34488. image: {
  34489. source: "./media/characters/softpurr/paw.svg"
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Normal",
  34496. height: math.unit(5 + 1/12, "feet"),
  34497. default: true
  34498. },
  34499. ]
  34500. ))
  34501. characterMakers.push(() => makeCharacter(
  34502. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34503. {
  34504. front: {
  34505. height: math.unit(260, "meters"),
  34506. name: "Front",
  34507. image: {
  34508. source: "./media/characters/anahita/front.svg",
  34509. extra: 665/635,
  34510. bottom: 89/754
  34511. }
  34512. },
  34513. },
  34514. [
  34515. {
  34516. name: "Macro",
  34517. height: math.unit(260, "meters"),
  34518. default: true
  34519. },
  34520. ]
  34521. ))
  34522. characterMakers.push(() => makeCharacter(
  34523. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34524. {
  34525. front: {
  34526. height: math.unit(4 + 10/12, "feet"),
  34527. weight: math.unit(160, "lb"),
  34528. name: "Front",
  34529. image: {
  34530. source: "./media/characters/chip-mouse/front.svg",
  34531. extra: 3528/3408,
  34532. bottom: 0/3528
  34533. }
  34534. },
  34535. frontNsfw: {
  34536. height: math.unit(4 + 10/12, "feet"),
  34537. weight: math.unit(160, "lb"),
  34538. name: "Front (NSFW)",
  34539. image: {
  34540. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34541. extra: 3528/3408,
  34542. bottom: 0/3528
  34543. }
  34544. },
  34545. },
  34546. [
  34547. {
  34548. name: "Normal",
  34549. height: math.unit(4 + 10/12, "feet"),
  34550. default: true
  34551. },
  34552. ]
  34553. ))
  34554. characterMakers.push(() => makeCharacter(
  34555. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34556. {
  34557. side: {
  34558. height: math.unit(10, "feet"),
  34559. weight: math.unit(14000, "lb"),
  34560. name: "Side",
  34561. image: {
  34562. source: "./media/characters/kremm/side.svg",
  34563. extra: 1390/1053,
  34564. bottom: 90/1480
  34565. }
  34566. },
  34567. gut: {
  34568. height: math.unit(5.8, "feet"),
  34569. name: "Gut",
  34570. image: {
  34571. source: "./media/characters/kremm/gut.svg"
  34572. }
  34573. },
  34574. ass: {
  34575. height: math.unit(6.1, "feet"),
  34576. name: "Ass",
  34577. image: {
  34578. source: "./media/characters/kremm/ass.svg"
  34579. }
  34580. },
  34581. jaws: {
  34582. height: math.unit(2.2, "feet"),
  34583. name: "Jaws",
  34584. image: {
  34585. source: "./media/characters/kremm/jaws.svg"
  34586. }
  34587. },
  34588. dick: {
  34589. height: math.unit(4.26, "feet"),
  34590. name: "Dick",
  34591. image: {
  34592. source: "./media/characters/kremm/dick.svg"
  34593. }
  34594. },
  34595. },
  34596. [
  34597. {
  34598. name: "Normal",
  34599. height: math.unit(10, "feet"),
  34600. default: true
  34601. },
  34602. ]
  34603. ))
  34604. characterMakers.push(() => makeCharacter(
  34605. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34606. {
  34607. front: {
  34608. height: math.unit(30, "stories"),
  34609. name: "Front",
  34610. image: {
  34611. source: "./media/characters/kai/front.svg",
  34612. extra: 1892/1718,
  34613. bottom: 162/2054
  34614. }
  34615. },
  34616. },
  34617. [
  34618. {
  34619. name: "Macro",
  34620. height: math.unit(30, "stories"),
  34621. default: true
  34622. },
  34623. ]
  34624. ))
  34625. characterMakers.push(() => makeCharacter(
  34626. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34627. {
  34628. front: {
  34629. height: math.unit(6 + 4/12, "feet"),
  34630. weight: math.unit(145, "lb"),
  34631. name: "Front",
  34632. image: {
  34633. source: "./media/characters/sykes/front.svg",
  34634. extra: 1321 / 1187,
  34635. bottom: 66 / 1387
  34636. }
  34637. },
  34638. back: {
  34639. height: math.unit(6 + 4/12, "feet"),
  34640. weight: math.unit(145, "lb"),
  34641. name: "Back",
  34642. image: {
  34643. source: "./media/characters/sykes/back.svg",
  34644. extra: 1326/1181,
  34645. bottom: 31/1357
  34646. }
  34647. },
  34648. traditionalOutfit: {
  34649. height: math.unit(6 + 4/12, "feet"),
  34650. weight: math.unit(145, "lb"),
  34651. name: "Traditional Outfit",
  34652. image: {
  34653. source: "./media/characters/sykes/traditional-outfit.svg",
  34654. extra: 1321 / 1187,
  34655. bottom: 66 / 1387
  34656. }
  34657. },
  34658. adventureOutfit: {
  34659. height: math.unit(6 + 4/12, "feet"),
  34660. weight: math.unit(145, "lb"),
  34661. name: "Adventure Outfit",
  34662. image: {
  34663. source: "./media/characters/sykes/adventure-outfit.svg",
  34664. extra: 1321 / 1187,
  34665. bottom: 66 / 1387
  34666. }
  34667. },
  34668. handLeft: {
  34669. height: math.unit(0.9, "feet"),
  34670. name: "Hand (Left)",
  34671. image: {
  34672. source: "./media/characters/sykes/hand-left.svg"
  34673. }
  34674. },
  34675. handRight: {
  34676. height: math.unit(0.839, "feet"),
  34677. name: "Hand (Right)",
  34678. image: {
  34679. source: "./media/characters/sykes/hand-right.svg"
  34680. }
  34681. },
  34682. leftFoot: {
  34683. height: math.unit(1.2, "feet"),
  34684. name: "Foot (Left)",
  34685. image: {
  34686. source: "./media/characters/sykes/foot-left.svg"
  34687. }
  34688. },
  34689. rightFoot: {
  34690. height: math.unit(1.2, "feet"),
  34691. name: "Foot (Right)",
  34692. image: {
  34693. source: "./media/characters/sykes/foot-right.svg"
  34694. }
  34695. },
  34696. maw: {
  34697. height: math.unit(1.93, "feet"),
  34698. name: "Maw",
  34699. image: {
  34700. source: "./media/characters/sykes/maw.svg"
  34701. }
  34702. },
  34703. teeth: {
  34704. height: math.unit(0.51, "feet"),
  34705. name: "Teeth",
  34706. image: {
  34707. source: "./media/characters/sykes/teeth.svg"
  34708. }
  34709. },
  34710. tongue: {
  34711. height: math.unit(2.13, "feet"),
  34712. name: "Tongue",
  34713. image: {
  34714. source: "./media/characters/sykes/tongue.svg"
  34715. }
  34716. },
  34717. uvula: {
  34718. height: math.unit(0.16, "feet"),
  34719. name: "Uvula",
  34720. image: {
  34721. source: "./media/characters/sykes/uvula.svg"
  34722. }
  34723. },
  34724. collar: {
  34725. height: math.unit(0.287, "feet"),
  34726. name: "Collar",
  34727. image: {
  34728. source: "./media/characters/sykes/collar.svg"
  34729. }
  34730. },
  34731. tail: {
  34732. height: math.unit(3.8, "feet"),
  34733. name: "Tail",
  34734. image: {
  34735. source: "./media/characters/sykes/tail.svg"
  34736. }
  34737. },
  34738. },
  34739. [
  34740. {
  34741. name: "Shrunken",
  34742. height: math.unit(5, "inches")
  34743. },
  34744. {
  34745. name: "Normal",
  34746. height: math.unit(6 + 4 / 12, "feet"),
  34747. default: true
  34748. },
  34749. {
  34750. name: "Big",
  34751. height: math.unit(15, "feet")
  34752. },
  34753. ]
  34754. ))
  34755. characterMakers.push(() => makeCharacter(
  34756. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34757. {
  34758. front: {
  34759. height: math.unit(5 + 8/12, "feet"),
  34760. weight: math.unit(190, "lb"),
  34761. name: "Front",
  34762. image: {
  34763. source: "./media/characters/oven-otter/front.svg",
  34764. extra: 1809/1740,
  34765. bottom: 181/1990
  34766. }
  34767. },
  34768. back: {
  34769. height: math.unit(5 + 8/12, "feet"),
  34770. weight: math.unit(190, "lb"),
  34771. name: "Back",
  34772. image: {
  34773. source: "./media/characters/oven-otter/back.svg",
  34774. extra: 1709/1635,
  34775. bottom: 118/1827
  34776. }
  34777. },
  34778. hand: {
  34779. height: math.unit(1.07, "feet"),
  34780. name: "Hand",
  34781. image: {
  34782. source: "./media/characters/oven-otter/hand.svg"
  34783. }
  34784. },
  34785. beans: {
  34786. height: math.unit(1.74, "feet"),
  34787. name: "Beans",
  34788. image: {
  34789. source: "./media/characters/oven-otter/beans.svg"
  34790. }
  34791. },
  34792. },
  34793. [
  34794. {
  34795. name: "Micro",
  34796. height: math.unit(0.5, "inches")
  34797. },
  34798. {
  34799. name: "Normal",
  34800. height: math.unit(5 + 8/12, "feet"),
  34801. default: true
  34802. },
  34803. {
  34804. name: "Macro",
  34805. height: math.unit(250, "feet")
  34806. },
  34807. {
  34808. name: "Really High",
  34809. height: math.unit(420, "feet")
  34810. },
  34811. ]
  34812. ))
  34813. characterMakers.push(() => makeCharacter(
  34814. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34815. {
  34816. front: {
  34817. height: math.unit(5, "meters"),
  34818. weight: math.unit(292000000000000, "kg"),
  34819. name: "Front",
  34820. image: {
  34821. source: "./media/characters/devourer/front.svg",
  34822. extra: 1800/1733,
  34823. bottom: 211/2011
  34824. }
  34825. },
  34826. maw: {
  34827. height: math.unit(1.1, "meter"),
  34828. name: "Maw",
  34829. image: {
  34830. source: "./media/characters/devourer/maw.svg"
  34831. }
  34832. },
  34833. },
  34834. [
  34835. {
  34836. name: "Small",
  34837. height: math.unit(3, "meters")
  34838. },
  34839. {
  34840. name: "Large",
  34841. height: math.unit(5, "meters"),
  34842. default: true
  34843. },
  34844. ]
  34845. ))
  34846. characterMakers.push(() => makeCharacter(
  34847. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34848. {
  34849. front: {
  34850. height: math.unit(6, "feet"),
  34851. weight: math.unit(400, "lb"),
  34852. name: "Front",
  34853. image: {
  34854. source: "./media/characters/ellarby/front.svg",
  34855. extra: 1909/1763,
  34856. bottom: 80/1989
  34857. }
  34858. },
  34859. back: {
  34860. height: math.unit(6, "feet"),
  34861. weight: math.unit(400, "lb"),
  34862. name: "Back",
  34863. image: {
  34864. source: "./media/characters/ellarby/back.svg",
  34865. extra: 1914/1784,
  34866. bottom: 172/2086
  34867. }
  34868. },
  34869. },
  34870. [
  34871. {
  34872. name: "Mischief",
  34873. height: math.unit(18, "inches")
  34874. },
  34875. {
  34876. name: "Trouble",
  34877. height: math.unit(12, "feet")
  34878. },
  34879. {
  34880. name: "Havoc",
  34881. height: math.unit(200, "feet"),
  34882. default: true
  34883. },
  34884. {
  34885. name: "Pandemonium",
  34886. height: math.unit(1, "mile")
  34887. },
  34888. {
  34889. name: "Catastrophe",
  34890. height: math.unit(100, "miles")
  34891. },
  34892. ]
  34893. ))
  34894. characterMakers.push(() => makeCharacter(
  34895. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34896. {
  34897. front: {
  34898. height: math.unit(4.7, "meters"),
  34899. weight: math.unit(6500, "kg"),
  34900. name: "Front",
  34901. image: {
  34902. source: "./media/characters/vex/front.svg",
  34903. extra: 1288/1140,
  34904. bottom: 100/1388
  34905. }
  34906. },
  34907. },
  34908. [
  34909. {
  34910. name: "Normal",
  34911. height: math.unit(4.7, "meters"),
  34912. default: true
  34913. },
  34914. ]
  34915. ))
  34916. characterMakers.push(() => makeCharacter(
  34917. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34918. {
  34919. normal: {
  34920. height: math.unit(6, "feet"),
  34921. weight: math.unit(350, "lb"),
  34922. name: "Normal",
  34923. image: {
  34924. source: "./media/characters/teshy/normal.svg",
  34925. extra: 1795/1735,
  34926. bottom: 16/1811
  34927. }
  34928. },
  34929. monsterFront: {
  34930. height: math.unit(12, "feet"),
  34931. weight: math.unit(4700, "lb"),
  34932. name: "Monster (Front)",
  34933. image: {
  34934. source: "./media/characters/teshy/monster-front.svg",
  34935. extra: 2042/2034,
  34936. bottom: 128/2170
  34937. }
  34938. },
  34939. monsterSide: {
  34940. height: math.unit(12, "feet"),
  34941. weight: math.unit(4700, "lb"),
  34942. name: "Monster (Side)",
  34943. image: {
  34944. source: "./media/characters/teshy/monster-side.svg",
  34945. extra: 2067/2056,
  34946. bottom: 70/2137
  34947. }
  34948. },
  34949. monsterBack: {
  34950. height: math.unit(12, "feet"),
  34951. weight: math.unit(4700, "lb"),
  34952. name: "Monster (Back)",
  34953. image: {
  34954. source: "./media/characters/teshy/monster-back.svg",
  34955. extra: 1921/1914,
  34956. bottom: 171/2092
  34957. }
  34958. },
  34959. },
  34960. [
  34961. {
  34962. name: "Normal",
  34963. height: math.unit(6, "feet"),
  34964. default: true
  34965. },
  34966. ]
  34967. ))
  34968. characterMakers.push(() => makeCharacter(
  34969. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34970. {
  34971. front: {
  34972. height: math.unit(6, "feet"),
  34973. name: "Front",
  34974. image: {
  34975. source: "./media/characters/ramey/front.svg",
  34976. extra: 790/787,
  34977. bottom: 27/817
  34978. }
  34979. },
  34980. },
  34981. [
  34982. {
  34983. name: "Normal",
  34984. height: math.unit(6, "feet"),
  34985. default: true
  34986. },
  34987. ]
  34988. ))
  34989. characterMakers.push(() => makeCharacter(
  34990. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34991. {
  34992. front: {
  34993. height: math.unit(5 + 5/12, "feet"),
  34994. weight: math.unit(120, "lb"),
  34995. name: "Front",
  34996. image: {
  34997. source: "./media/characters/phirae/front.svg",
  34998. extra: 2491/2436,
  34999. bottom: 38/2529
  35000. }
  35001. },
  35002. },
  35003. [
  35004. {
  35005. name: "Normal",
  35006. height: math.unit(5 + 5/12, "feet"),
  35007. default: true
  35008. },
  35009. ]
  35010. ))
  35011. characterMakers.push(() => makeCharacter(
  35012. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35013. {
  35014. front: {
  35015. height: math.unit(5 + 3/12, "feet"),
  35016. name: "Front",
  35017. image: {
  35018. source: "./media/characters/stagglas/front.svg",
  35019. extra: 962/882,
  35020. bottom: 53/1015
  35021. }
  35022. },
  35023. feral: {
  35024. height: math.unit(335, "cm"),
  35025. name: "Feral",
  35026. image: {
  35027. source: "./media/characters/stagglas/feral.svg",
  35028. extra: 1732/1090,
  35029. bottom: 48/1780
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Normal",
  35036. height: math.unit(5 + 3/12, "feet"),
  35037. default: true
  35038. },
  35039. ]
  35040. ))
  35041. characterMakers.push(() => makeCharacter(
  35042. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35043. {
  35044. front: {
  35045. height: math.unit(5 + 4/12, "feet"),
  35046. weight: math.unit(145, "lb"),
  35047. name: "Front",
  35048. image: {
  35049. source: "./media/characters/starra/front.svg",
  35050. extra: 1790/1691,
  35051. bottom: 91/1881
  35052. }
  35053. },
  35054. },
  35055. [
  35056. {
  35057. name: "Normal",
  35058. height: math.unit(5 + 4/12, "feet"),
  35059. default: true
  35060. },
  35061. ]
  35062. ))
  35063. characterMakers.push(() => makeCharacter(
  35064. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35065. {
  35066. front: {
  35067. height: math.unit(2.2, "meters"),
  35068. name: "Front",
  35069. image: {
  35070. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35071. extra: 1194/1005,
  35072. bottom: 25/1219
  35073. }
  35074. },
  35075. },
  35076. [
  35077. {
  35078. name: "Normal",
  35079. height: math.unit(2.2, "meters"),
  35080. default: true
  35081. },
  35082. ]
  35083. ))
  35084. characterMakers.push(() => makeCharacter(
  35085. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35086. {
  35087. side: {
  35088. height: math.unit(8 + 2/12, "feet"),
  35089. weight: math.unit(1240, "lb"),
  35090. name: "Side",
  35091. image: {
  35092. source: "./media/characters/mika-valentine/side.svg",
  35093. extra: 2670/2501,
  35094. bottom: 250/2920
  35095. }
  35096. },
  35097. },
  35098. [
  35099. {
  35100. name: "Normal",
  35101. height: math.unit(8 + 2/12, "feet"),
  35102. default: true
  35103. },
  35104. ]
  35105. ))
  35106. characterMakers.push(() => makeCharacter(
  35107. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35108. {
  35109. front: {
  35110. height: math.unit(7 + 2/12, "feet"),
  35111. name: "Front",
  35112. image: {
  35113. source: "./media/characters/xoltol/front.svg",
  35114. extra: 2212/2124,
  35115. bottom: 84/2296
  35116. }
  35117. },
  35118. side: {
  35119. height: math.unit(7 + 2/12, "feet"),
  35120. name: "Side",
  35121. image: {
  35122. source: "./media/characters/xoltol/side.svg",
  35123. extra: 2273/2197,
  35124. bottom: 26/2299
  35125. }
  35126. },
  35127. hand: {
  35128. height: math.unit(2.5, "feet"),
  35129. name: "Hand",
  35130. image: {
  35131. source: "./media/characters/xoltol/hand.svg"
  35132. }
  35133. },
  35134. },
  35135. [
  35136. {
  35137. name: "Small-ish",
  35138. height: math.unit(5 + 11/12, "feet")
  35139. },
  35140. {
  35141. name: "Normal",
  35142. height: math.unit(7 + 2/12, "feet")
  35143. },
  35144. {
  35145. name: "\"Macro\"",
  35146. height: math.unit(14 + 9/12, "feet"),
  35147. default: true
  35148. },
  35149. {
  35150. name: "Alternate Height",
  35151. height: math.unit(20, "feet")
  35152. },
  35153. {
  35154. name: "Actually Macro",
  35155. height: math.unit(100, "feet")
  35156. },
  35157. ]
  35158. ))
  35159. characterMakers.push(() => makeCharacter(
  35160. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35161. {
  35162. front: {
  35163. height: math.unit(5 + 2/12, "feet"),
  35164. name: "Front",
  35165. image: {
  35166. source: "./media/characters/kotetsu-redwood/front.svg",
  35167. extra: 1053/942,
  35168. bottom: 60/1113
  35169. }
  35170. },
  35171. },
  35172. [
  35173. {
  35174. name: "Normal",
  35175. height: math.unit(5 + 2/12, "feet"),
  35176. default: true
  35177. },
  35178. ]
  35179. ))
  35180. characterMakers.push(() => makeCharacter(
  35181. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35182. {
  35183. front: {
  35184. height: math.unit(2.4, "meters"),
  35185. weight: math.unit(125, "kg"),
  35186. name: "Front",
  35187. image: {
  35188. source: "./media/characters/lilith/front.svg",
  35189. extra: 1590/1513,
  35190. bottom: 203/1793
  35191. }
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "Humanoid",
  35197. height: math.unit(2.4, "meters")
  35198. },
  35199. {
  35200. name: "Normal",
  35201. height: math.unit(6, "meters"),
  35202. default: true
  35203. },
  35204. {
  35205. name: "Largest",
  35206. height: math.unit(55, "meters")
  35207. },
  35208. ]
  35209. ))
  35210. characterMakers.push(() => makeCharacter(
  35211. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35212. {
  35213. front: {
  35214. height: math.unit(8 + 4/12, "feet"),
  35215. weight: math.unit(535, "lb"),
  35216. name: "Front",
  35217. image: {
  35218. source: "./media/characters/beh'kah-bolger/front.svg",
  35219. extra: 1660/1603,
  35220. bottom: 37/1697
  35221. }
  35222. },
  35223. },
  35224. [
  35225. {
  35226. name: "Normal",
  35227. height: math.unit(8 + 4/12, "feet"),
  35228. default: true
  35229. },
  35230. {
  35231. name: "Kaiju",
  35232. height: math.unit(250, "feet")
  35233. },
  35234. {
  35235. name: "Still Growing",
  35236. height: math.unit(10, "miles")
  35237. },
  35238. {
  35239. name: "Continental",
  35240. height: math.unit(5000, "miles")
  35241. },
  35242. {
  35243. name: "Final Form",
  35244. height: math.unit(2500000, "miles")
  35245. },
  35246. ]
  35247. ))
  35248. characterMakers.push(() => makeCharacter(
  35249. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35250. {
  35251. front: {
  35252. height: math.unit(7 + 2/12, "feet"),
  35253. weight: math.unit(230, "kg"),
  35254. name: "Front",
  35255. image: {
  35256. source: "./media/characters/tatyana-milewska/front.svg",
  35257. extra: 1199/1150,
  35258. bottom: 86/1285
  35259. }
  35260. },
  35261. },
  35262. [
  35263. {
  35264. name: "Normal",
  35265. height: math.unit(7 + 2/12, "feet"),
  35266. default: true
  35267. },
  35268. {
  35269. name: "Big",
  35270. height: math.unit(12, "feet")
  35271. },
  35272. {
  35273. name: "Minimacro",
  35274. height: math.unit(20, "feet")
  35275. },
  35276. {
  35277. name: "Macro",
  35278. height: math.unit(120, "feet")
  35279. },
  35280. ]
  35281. ))
  35282. characterMakers.push(() => makeCharacter(
  35283. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35284. {
  35285. front: {
  35286. height: math.unit(7 + 8/12, "feet"),
  35287. weight: math.unit(152, "kg"),
  35288. name: "Front",
  35289. image: {
  35290. source: "./media/characters/helen-arri/front.svg",
  35291. extra: 440/423,
  35292. bottom: 14/454
  35293. }
  35294. },
  35295. back: {
  35296. height: math.unit(7 + 8/12, "feet"),
  35297. weight: math.unit(152, "kg"),
  35298. name: "Back",
  35299. image: {
  35300. source: "./media/characters/helen-arri/back.svg",
  35301. extra: 443/426,
  35302. bottom: 8/451
  35303. }
  35304. },
  35305. },
  35306. [
  35307. {
  35308. name: "Normal",
  35309. height: math.unit(7 + 8/12, "feet"),
  35310. default: true
  35311. },
  35312. {
  35313. name: "Big",
  35314. height: math.unit(14, "feet")
  35315. },
  35316. {
  35317. name: "Minimacro",
  35318. height: math.unit(24, "feet")
  35319. },
  35320. {
  35321. name: "Macro",
  35322. height: math.unit(140, "feet")
  35323. },
  35324. ]
  35325. ))
  35326. characterMakers.push(() => makeCharacter(
  35327. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35328. {
  35329. front: {
  35330. height: math.unit(6, "meters"),
  35331. name: "Front",
  35332. image: {
  35333. source: "./media/characters/ehanu-rehu/front.svg",
  35334. extra: 1800/1800,
  35335. bottom: 59/1859
  35336. }
  35337. },
  35338. },
  35339. [
  35340. {
  35341. name: "Normal",
  35342. height: math.unit(6, "meters"),
  35343. default: true
  35344. },
  35345. ]
  35346. ))
  35347. characterMakers.push(() => makeCharacter(
  35348. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35349. {
  35350. front: {
  35351. height: math.unit(7 + 3/12, "feet"),
  35352. name: "Front",
  35353. image: {
  35354. source: "./media/characters/renholder/front.svg",
  35355. extra: 3096/2960,
  35356. bottom: 250/3346
  35357. }
  35358. },
  35359. },
  35360. [
  35361. {
  35362. name: "Normal Bat",
  35363. height: math.unit(7 + 3/12, "feet"),
  35364. default: true
  35365. },
  35366. {
  35367. name: "Slightly Tall Bat",
  35368. height: math.unit(100, "feet")
  35369. },
  35370. {
  35371. name: "Big Bat",
  35372. height: math.unit(1000, "feet")
  35373. },
  35374. {
  35375. name: "City-Sized Bat",
  35376. height: math.unit(200000, "feet")
  35377. },
  35378. {
  35379. name: "Bigger Bat",
  35380. height: math.unit(10000, "miles")
  35381. },
  35382. {
  35383. name: "Solar Sized Bat",
  35384. height: math.unit(100, "AU")
  35385. },
  35386. {
  35387. name: "Galactic Bat",
  35388. height: math.unit(200000, "lightyears")
  35389. },
  35390. {
  35391. name: "Universally Known Bat",
  35392. height: math.unit(1, "universe")
  35393. },
  35394. ]
  35395. ))
  35396. characterMakers.push(() => makeCharacter(
  35397. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35398. {
  35399. front: {
  35400. height: math.unit(6 + 11/12, "feet"),
  35401. weight: math.unit(250, "lb"),
  35402. name: "Front",
  35403. image: {
  35404. source: "./media/characters/cookiecat/front.svg",
  35405. extra: 893/827,
  35406. bottom: 14/907
  35407. }
  35408. },
  35409. },
  35410. [
  35411. {
  35412. name: "Micro",
  35413. height: math.unit(3, "inches")
  35414. },
  35415. {
  35416. name: "Normal",
  35417. height: math.unit(6 + 11/12, "feet"),
  35418. default: true
  35419. },
  35420. {
  35421. name: "Macro",
  35422. height: math.unit(100, "feet")
  35423. },
  35424. {
  35425. name: "Macro+",
  35426. height: math.unit(404, "feet")
  35427. },
  35428. {
  35429. name: "Megamacro",
  35430. height: math.unit(165, "miles")
  35431. },
  35432. {
  35433. name: "Planetary",
  35434. height: math.unit(4600, "miles")
  35435. },
  35436. ]
  35437. ))
  35438. characterMakers.push(() => makeCharacter(
  35439. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35440. {
  35441. front: {
  35442. height: math.unit(10 + 3/12, "feet"),
  35443. weight: math.unit(1500, "lb"),
  35444. name: "Front",
  35445. image: {
  35446. source: "./media/characters/tux-kusanagi/front.svg",
  35447. extra: 944/840,
  35448. bottom: 39/983
  35449. }
  35450. },
  35451. back: {
  35452. height: math.unit(10 + 3/12, "feet"),
  35453. weight: math.unit(1500, "lb"),
  35454. name: "Back",
  35455. image: {
  35456. source: "./media/characters/tux-kusanagi/back.svg",
  35457. extra: 941/842,
  35458. bottom: 28/969
  35459. }
  35460. },
  35461. rump: {
  35462. height: math.unit(5.25, "feet"),
  35463. name: "Rump",
  35464. image: {
  35465. source: "./media/characters/tux-kusanagi/rump.svg"
  35466. }
  35467. },
  35468. beak: {
  35469. height: math.unit(1.54, "feet"),
  35470. name: "Beak",
  35471. image: {
  35472. source: "./media/characters/tux-kusanagi/beak.svg"
  35473. }
  35474. },
  35475. },
  35476. [
  35477. {
  35478. name: "Normal",
  35479. height: math.unit(10 + 3/12, "feet"),
  35480. default: true
  35481. },
  35482. ]
  35483. ))
  35484. characterMakers.push(() => makeCharacter(
  35485. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35486. {
  35487. front: {
  35488. height: math.unit(58, "feet"),
  35489. weight: math.unit(200, "tons"),
  35490. name: "Front",
  35491. image: {
  35492. source: "./media/characters/uzarmazari/front.svg",
  35493. extra: 1575/1455,
  35494. bottom: 152/1727
  35495. }
  35496. },
  35497. back: {
  35498. height: math.unit(58, "feet"),
  35499. weight: math.unit(200, "tons"),
  35500. name: "Back",
  35501. image: {
  35502. source: "./media/characters/uzarmazari/back.svg",
  35503. extra: 1585/1510,
  35504. bottom: 157/1742
  35505. }
  35506. },
  35507. head: {
  35508. height: math.unit(26, "feet"),
  35509. name: "Head",
  35510. image: {
  35511. source: "./media/characters/uzarmazari/head.svg"
  35512. }
  35513. },
  35514. },
  35515. [
  35516. {
  35517. name: "Normal",
  35518. height: math.unit(58, "feet"),
  35519. default: true
  35520. },
  35521. ]
  35522. ))
  35523. characterMakers.push(() => makeCharacter(
  35524. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35525. {
  35526. side: {
  35527. height: math.unit(15, "feet"),
  35528. name: "Side",
  35529. image: {
  35530. source: "./media/characters/akitu/side.svg",
  35531. extra: 1421/1321,
  35532. bottom: 157/1578
  35533. }
  35534. },
  35535. front: {
  35536. height: math.unit(15, "feet"),
  35537. name: "Front",
  35538. image: {
  35539. source: "./media/characters/akitu/front.svg",
  35540. extra: 1435/1326,
  35541. bottom: 232/1667
  35542. }
  35543. },
  35544. },
  35545. [
  35546. {
  35547. name: "Normal",
  35548. height: math.unit(15, "feet"),
  35549. default: true
  35550. },
  35551. ]
  35552. ))
  35553. characterMakers.push(() => makeCharacter(
  35554. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35555. {
  35556. front: {
  35557. height: math.unit(10 + 8/12, "feet"),
  35558. name: "Front",
  35559. image: {
  35560. source: "./media/characters/azalie-croixland/front.svg",
  35561. extra: 1972/1856,
  35562. bottom: 31/2003
  35563. }
  35564. },
  35565. },
  35566. [
  35567. {
  35568. name: "Original Height",
  35569. height: math.unit(5 + 4/12, "feet")
  35570. },
  35571. {
  35572. name: "Normal Height",
  35573. height: math.unit(10 + 8/12, "feet"),
  35574. default: true
  35575. },
  35576. ]
  35577. ))
  35578. characterMakers.push(() => makeCharacter(
  35579. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35580. {
  35581. side: {
  35582. height: math.unit(7 + 1/12, "feet"),
  35583. weight: math.unit(245, "lb"),
  35584. name: "Side",
  35585. image: {
  35586. source: "./media/characters/kavus-kazian/side.svg",
  35587. extra: 349/342,
  35588. bottom: 15/364
  35589. }
  35590. },
  35591. },
  35592. [
  35593. {
  35594. name: "Normal",
  35595. height: math.unit(7 + 1/12, "feet"),
  35596. default: true
  35597. },
  35598. ]
  35599. ))
  35600. characterMakers.push(() => makeCharacter(
  35601. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35602. {
  35603. normalFront: {
  35604. height: math.unit(5 + 11/12, "feet"),
  35605. name: "Front",
  35606. image: {
  35607. source: "./media/characters/moonlight-rose/normal-front.svg",
  35608. extra: 1980/1825,
  35609. bottom: 18/1998
  35610. },
  35611. form: "normal",
  35612. default: true
  35613. },
  35614. normalBack: {
  35615. height: math.unit(5 + 11/12, "feet"),
  35616. name: "Back",
  35617. image: {
  35618. source: "./media/characters/moonlight-rose/normal-back.svg",
  35619. extra: 2010/1839,
  35620. bottom: 10/2020
  35621. },
  35622. form: "normal"
  35623. },
  35624. demonFront: {
  35625. height: math.unit(1.5, "earths"),
  35626. name: "Front",
  35627. image: {
  35628. source: "./media/characters/moonlight-rose/demon.svg",
  35629. extra: 1400/1294,
  35630. bottom: 45/1445
  35631. },
  35632. form: "demon",
  35633. default: true
  35634. },
  35635. terraFront: {
  35636. height: math.unit(1.5, "earths"),
  35637. name: "Front",
  35638. image: {
  35639. source: "./media/characters/moonlight-rose/terra.svg"
  35640. },
  35641. form: "terra",
  35642. default: true
  35643. },
  35644. jupiterFront: {
  35645. height: math.unit(69911*2, "km"),
  35646. name: "Front",
  35647. image: {
  35648. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35649. extra: 1367/1286,
  35650. bottom: 55/1422
  35651. },
  35652. form: "jupiter",
  35653. default: true
  35654. },
  35655. neptuneFront: {
  35656. height: math.unit(24622*2, "feet"),
  35657. name: "Front",
  35658. image: {
  35659. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35660. extra: 1851/1712,
  35661. bottom: 0/1851
  35662. },
  35663. form: "neptune",
  35664. default: true
  35665. },
  35666. },
  35667. [
  35668. {
  35669. name: "\"Natural\" Height",
  35670. height: math.unit(5 + 11/12, "feet"),
  35671. form: "normal"
  35672. },
  35673. {
  35674. name: "Smallest comfortable size",
  35675. height: math.unit(40, "meters"),
  35676. form: "normal"
  35677. },
  35678. {
  35679. name: "Common size",
  35680. height: math.unit(50, "km"),
  35681. form: "normal",
  35682. default: true
  35683. },
  35684. {
  35685. name: "Normal",
  35686. height: math.unit(1.5, "earths"),
  35687. form: "demon",
  35688. default: true
  35689. },
  35690. {
  35691. name: "Universal",
  35692. height: math.unit(15, "universes"),
  35693. form: "demon"
  35694. },
  35695. {
  35696. name: "Earth",
  35697. height: math.unit(1.5, "earths"),
  35698. form: "terra",
  35699. default: true
  35700. },
  35701. {
  35702. name: "Super Earth",
  35703. height: math.unit(67.5, "earths"),
  35704. form: "terra"
  35705. },
  35706. {
  35707. name: "Doesn't fit in a solar system...",
  35708. height: math.unit(1, "galaxy"),
  35709. form: "terra"
  35710. },
  35711. {
  35712. name: "Saturn",
  35713. height: math.unit(58232*2, "km"),
  35714. form: "jupiter"
  35715. },
  35716. {
  35717. name: "Jupiter",
  35718. height: math.unit(69911*2, "km"),
  35719. form: "jupiter",
  35720. default: true
  35721. },
  35722. {
  35723. name: "HD 100546 b",
  35724. height: math.unit(482938, "km"),
  35725. form: "jupiter"
  35726. },
  35727. {
  35728. name: "Enceladus",
  35729. height: math.unit(513*2, "km"),
  35730. form: "neptune"
  35731. },
  35732. {
  35733. name: "Europe",
  35734. height: math.unit(1560*2, "km"),
  35735. form: "neptune"
  35736. },
  35737. {
  35738. name: "Neptune",
  35739. height: math.unit(24622*2, "km"),
  35740. form: "neptune",
  35741. default: true
  35742. },
  35743. {
  35744. name: "CoRoT-9b",
  35745. height: math.unit(75067*2, "km"),
  35746. form: "neptune"
  35747. },
  35748. ],
  35749. {
  35750. "normal": {
  35751. name: "Normal",
  35752. default: true
  35753. },
  35754. "demon": {
  35755. name: "Demon"
  35756. },
  35757. "terra": {
  35758. name: "Terra"
  35759. },
  35760. "jupiter": {
  35761. name: "Jupiter"
  35762. },
  35763. "neptune": {
  35764. name: "Neptune"
  35765. }
  35766. }
  35767. ))
  35768. characterMakers.push(() => makeCharacter(
  35769. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35770. {
  35771. front: {
  35772. height: math.unit(16, "feet"),
  35773. weight: math.unit(610, "kg"),
  35774. name: "Front",
  35775. image: {
  35776. source: "./media/characters/huckle/front.svg",
  35777. extra: 1731/1625,
  35778. bottom: 33/1764
  35779. }
  35780. },
  35781. back: {
  35782. height: math.unit(16, "feet"),
  35783. weight: math.unit(610, "kg"),
  35784. name: "Back",
  35785. image: {
  35786. source: "./media/characters/huckle/back.svg",
  35787. extra: 1738/1651,
  35788. bottom: 37/1775
  35789. }
  35790. },
  35791. laughing: {
  35792. height: math.unit(3.75, "feet"),
  35793. name: "Laughing",
  35794. image: {
  35795. source: "./media/characters/huckle/laughing.svg"
  35796. }
  35797. },
  35798. angry: {
  35799. height: math.unit(4.15, "feet"),
  35800. name: "Angry",
  35801. image: {
  35802. source: "./media/characters/huckle/angry.svg"
  35803. }
  35804. },
  35805. },
  35806. [
  35807. {
  35808. name: "Normal",
  35809. height: math.unit(16, "feet"),
  35810. default: true
  35811. },
  35812. {
  35813. name: "Mini Macro",
  35814. height: math.unit(463, "feet")
  35815. },
  35816. {
  35817. name: "Macro",
  35818. height: math.unit(1680, "meters")
  35819. },
  35820. {
  35821. name: "Mega Macro",
  35822. height: math.unit(175, "km")
  35823. },
  35824. {
  35825. name: "Terra Macro",
  35826. height: math.unit(32, "gigameters")
  35827. },
  35828. {
  35829. name: "Multiverse+",
  35830. height: math.unit(2.56e23, "yottameters")
  35831. },
  35832. ]
  35833. ))
  35834. characterMakers.push(() => makeCharacter(
  35835. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35836. {
  35837. front: {
  35838. height: math.unit(6 + 9/12, "feet"),
  35839. weight: math.unit(280, "lb"),
  35840. name: "Front",
  35841. image: {
  35842. source: "./media/characters/candy/front.svg",
  35843. extra: 234/217,
  35844. bottom: 11/245
  35845. }
  35846. },
  35847. },
  35848. [
  35849. {
  35850. name: "Really Small",
  35851. height: math.unit(0.1, "nm")
  35852. },
  35853. {
  35854. name: "Micro",
  35855. height: math.unit(2, "inches")
  35856. },
  35857. {
  35858. name: "Normal",
  35859. height: math.unit(6 + 9/12, "feet"),
  35860. default: true
  35861. },
  35862. {
  35863. name: "Small Macro",
  35864. height: math.unit(69, "feet")
  35865. },
  35866. {
  35867. name: "Macro",
  35868. height: math.unit(160, "feet")
  35869. },
  35870. {
  35871. name: "Megamacro",
  35872. height: math.unit(22000, "miles")
  35873. },
  35874. {
  35875. name: "Gigamacro",
  35876. height: math.unit(50000, "miles")
  35877. },
  35878. ]
  35879. ))
  35880. characterMakers.push(() => makeCharacter(
  35881. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35882. {
  35883. front: {
  35884. height: math.unit(4, "feet"),
  35885. weight: math.unit(90, "lb"),
  35886. name: "Front",
  35887. image: {
  35888. source: "./media/characters/joey-mcdonald/front.svg",
  35889. extra: 1059/852,
  35890. bottom: 33/1092
  35891. }
  35892. },
  35893. back: {
  35894. height: math.unit(4, "feet"),
  35895. weight: math.unit(90, "lb"),
  35896. name: "Back",
  35897. image: {
  35898. source: "./media/characters/joey-mcdonald/back.svg",
  35899. extra: 1077/879,
  35900. bottom: 5/1082
  35901. }
  35902. },
  35903. frontKobold: {
  35904. height: math.unit(4, "feet"),
  35905. weight: math.unit(100, "lb"),
  35906. name: "Front-kobold",
  35907. image: {
  35908. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35909. extra: 1480/1367,
  35910. bottom: 0/1480
  35911. }
  35912. },
  35913. backKobold: {
  35914. height: math.unit(4, "feet"),
  35915. weight: math.unit(100, "lb"),
  35916. name: "Back-kobold",
  35917. image: {
  35918. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35919. extra: 1449/1361,
  35920. bottom: 0/1449
  35921. }
  35922. },
  35923. },
  35924. [
  35925. {
  35926. name: "Normal",
  35927. height: math.unit(4, "feet"),
  35928. default: true
  35929. },
  35930. ]
  35931. ))
  35932. characterMakers.push(() => makeCharacter(
  35933. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35934. {
  35935. front: {
  35936. height: math.unit(12 + 6/12, "feet"),
  35937. name: "Front",
  35938. image: {
  35939. source: "./media/characters/kass-lockheed/front.svg",
  35940. extra: 354/343,
  35941. bottom: 9/363
  35942. }
  35943. },
  35944. back: {
  35945. height: math.unit(12 + 6/12, "feet"),
  35946. name: "Back",
  35947. image: {
  35948. source: "./media/characters/kass-lockheed/back.svg",
  35949. extra: 364/352,
  35950. bottom: 3/367
  35951. }
  35952. },
  35953. dick: {
  35954. height: math.unit(3.12, "feet"),
  35955. name: "Dick",
  35956. image: {
  35957. source: "./media/characters/kass-lockheed/dick.svg"
  35958. }
  35959. },
  35960. head: {
  35961. height: math.unit(2.6, "feet"),
  35962. name: "Head",
  35963. image: {
  35964. source: "./media/characters/kass-lockheed/head.svg"
  35965. }
  35966. },
  35967. bleh: {
  35968. height: math.unit(2.85, "feet"),
  35969. name: "Bleh",
  35970. image: {
  35971. source: "./media/characters/kass-lockheed/bleh.svg"
  35972. }
  35973. },
  35974. smug: {
  35975. height: math.unit(2.85, "feet"),
  35976. name: "Smug",
  35977. image: {
  35978. source: "./media/characters/kass-lockheed/smug.svg"
  35979. }
  35980. },
  35981. },
  35982. [
  35983. {
  35984. name: "Normal",
  35985. height: math.unit(12 + 6/12, "feet"),
  35986. default: true
  35987. },
  35988. ]
  35989. ))
  35990. characterMakers.push(() => makeCharacter(
  35991. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35992. {
  35993. front: {
  35994. height: math.unit(6 + 2/12, "feet"),
  35995. name: "Front",
  35996. image: {
  35997. source: "./media/characters/taylor/front.svg",
  35998. extra: 639/495,
  35999. bottom: 12/651
  36000. }
  36001. },
  36002. },
  36003. [
  36004. {
  36005. name: "Normal",
  36006. height: math.unit(6 + 2/12, "feet"),
  36007. default: true
  36008. },
  36009. {
  36010. name: "Big",
  36011. height: math.unit(15, "feet")
  36012. },
  36013. {
  36014. name: "Lorg",
  36015. height: math.unit(80, "feet")
  36016. },
  36017. {
  36018. name: "Too Lorg",
  36019. height: math.unit(120, "feet")
  36020. },
  36021. ]
  36022. ))
  36023. characterMakers.push(() => makeCharacter(
  36024. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36025. {
  36026. front: {
  36027. height: math.unit(15, "feet"),
  36028. name: "Front",
  36029. image: {
  36030. source: "./media/characters/kaizer/front.svg",
  36031. extra: 1612/1436,
  36032. bottom: 43/1655
  36033. }
  36034. },
  36035. },
  36036. [
  36037. {
  36038. name: "Normal",
  36039. height: math.unit(15, "feet"),
  36040. default: true
  36041. },
  36042. ]
  36043. ))
  36044. characterMakers.push(() => makeCharacter(
  36045. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36046. {
  36047. front: {
  36048. height: math.unit(2, "feet"),
  36049. weight: math.unit(30, "lb"),
  36050. name: "Front",
  36051. image: {
  36052. source: "./media/characters/sandy/front.svg",
  36053. extra: 1439/1307,
  36054. bottom: 194/1633
  36055. }
  36056. },
  36057. },
  36058. [
  36059. {
  36060. name: "Normal",
  36061. height: math.unit(2, "feet"),
  36062. default: true
  36063. },
  36064. ]
  36065. ))
  36066. characterMakers.push(() => makeCharacter(
  36067. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36068. {
  36069. front: {
  36070. height: math.unit(3, "feet"),
  36071. name: "Front",
  36072. image: {
  36073. source: "./media/characters/mellvi/front.svg",
  36074. extra: 1831/1630,
  36075. bottom: 58/1889
  36076. }
  36077. },
  36078. },
  36079. [
  36080. {
  36081. name: "Normal",
  36082. height: math.unit(3, "feet"),
  36083. default: true
  36084. },
  36085. ]
  36086. ))
  36087. characterMakers.push(() => makeCharacter(
  36088. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36089. {
  36090. front: {
  36091. height: math.unit(5 + 11/12, "feet"),
  36092. weight: math.unit(200, "lb"),
  36093. name: "Front",
  36094. image: {
  36095. source: "./media/characters/shirou/front.svg",
  36096. extra: 2491/2383,
  36097. bottom: 189/2680
  36098. }
  36099. },
  36100. back: {
  36101. height: math.unit(5 + 11/12, "feet"),
  36102. weight: math.unit(200, "lb"),
  36103. name: "Back",
  36104. image: {
  36105. source: "./media/characters/shirou/back.svg",
  36106. extra: 2554/2450,
  36107. bottom: 76/2630
  36108. }
  36109. },
  36110. },
  36111. [
  36112. {
  36113. name: "Normal",
  36114. height: math.unit(5 + 11/12, "feet"),
  36115. default: true
  36116. },
  36117. ]
  36118. ))
  36119. characterMakers.push(() => makeCharacter(
  36120. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36121. {
  36122. front: {
  36123. height: math.unit(6 + 3/12, "feet"),
  36124. weight: math.unit(177, "lb"),
  36125. name: "Front",
  36126. image: {
  36127. source: "./media/characters/noryu/front.svg",
  36128. extra: 973/885,
  36129. bottom: 10/983
  36130. }
  36131. },
  36132. },
  36133. [
  36134. {
  36135. name: "Normal",
  36136. height: math.unit(6 + 3/12, "feet"),
  36137. default: true
  36138. },
  36139. ]
  36140. ))
  36141. characterMakers.push(() => makeCharacter(
  36142. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36143. {
  36144. front: {
  36145. height: math.unit(5 + 6/12, "feet"),
  36146. weight: math.unit(170, "lb"),
  36147. name: "Front",
  36148. image: {
  36149. source: "./media/characters/mevolas-rubenido/front.svg",
  36150. extra: 2109/1901,
  36151. bottom: 96/2205
  36152. }
  36153. },
  36154. },
  36155. [
  36156. {
  36157. name: "Normal",
  36158. height: math.unit(5 + 6/12, "feet"),
  36159. default: true
  36160. },
  36161. ]
  36162. ))
  36163. characterMakers.push(() => makeCharacter(
  36164. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36165. {
  36166. front: {
  36167. height: math.unit(100, "feet"),
  36168. name: "Front",
  36169. image: {
  36170. source: "./media/characters/dee/front.svg",
  36171. extra: 2153/2036,
  36172. bottom: 59/2212
  36173. }
  36174. },
  36175. back: {
  36176. height: math.unit(100, "feet"),
  36177. name: "Back",
  36178. image: {
  36179. source: "./media/characters/dee/back.svg",
  36180. extra: 2183/2058,
  36181. bottom: 75/2258
  36182. }
  36183. },
  36184. foot: {
  36185. height: math.unit(19.43, "feet"),
  36186. name: "Foot",
  36187. image: {
  36188. source: "./media/characters/dee/foot.svg"
  36189. }
  36190. },
  36191. hoof: {
  36192. height: math.unit(20.6, "feet"),
  36193. name: "Hoof",
  36194. image: {
  36195. source: "./media/characters/dee/hoof.svg"
  36196. }
  36197. },
  36198. },
  36199. [
  36200. {
  36201. name: "Macro",
  36202. height: math.unit(100, "feet"),
  36203. default: true
  36204. },
  36205. ]
  36206. ))
  36207. characterMakers.push(() => makeCharacter(
  36208. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36209. {
  36210. front: {
  36211. height: math.unit(5 + 6/12, "feet"),
  36212. name: "Front",
  36213. image: {
  36214. source: "./media/characters/teh/front.svg",
  36215. extra: 1002/847,
  36216. bottom: 62/1064
  36217. }
  36218. },
  36219. },
  36220. [
  36221. {
  36222. name: "Normal",
  36223. height: math.unit(5 + 6/12, "feet"),
  36224. default: true
  36225. },
  36226. ]
  36227. ))
  36228. characterMakers.push(() => makeCharacter(
  36229. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36230. {
  36231. side: {
  36232. height: math.unit(6 + 1/12, "feet"),
  36233. weight: math.unit(204, "lb"),
  36234. name: "Side",
  36235. image: {
  36236. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36237. extra: 974/775,
  36238. bottom: 169/1143
  36239. }
  36240. },
  36241. sitting: {
  36242. height: math.unit(6 + 2/12, "feet"),
  36243. weight: math.unit(204, "lb"),
  36244. name: "Sitting",
  36245. image: {
  36246. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36247. extra: 1175/964,
  36248. bottom: 378/1553
  36249. }
  36250. },
  36251. },
  36252. [
  36253. {
  36254. name: "Normal",
  36255. height: math.unit(6 + 1/12, "feet"),
  36256. default: true
  36257. },
  36258. ]
  36259. ))
  36260. characterMakers.push(() => makeCharacter(
  36261. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36262. {
  36263. front: {
  36264. height: math.unit(6, "inches"),
  36265. name: "Front",
  36266. image: {
  36267. source: "./media/characters/tululi/front.svg",
  36268. extra: 1997/1876,
  36269. bottom: 20/2017
  36270. }
  36271. },
  36272. },
  36273. [
  36274. {
  36275. name: "Normal",
  36276. height: math.unit(6, "inches"),
  36277. default: true
  36278. },
  36279. ]
  36280. ))
  36281. characterMakers.push(() => makeCharacter(
  36282. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36283. {
  36284. front: {
  36285. height: math.unit(4 + 1/12, "feet"),
  36286. name: "Front",
  36287. image: {
  36288. source: "./media/characters/star/front.svg",
  36289. extra: 1493/1189,
  36290. bottom: 48/1541
  36291. }
  36292. },
  36293. },
  36294. [
  36295. {
  36296. name: "Normal",
  36297. height: math.unit(4 + 1/12, "feet"),
  36298. default: true
  36299. },
  36300. ]
  36301. ))
  36302. characterMakers.push(() => makeCharacter(
  36303. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36304. {
  36305. front: {
  36306. height: math.unit(6 + 3/12, "feet"),
  36307. name: "Front",
  36308. image: {
  36309. source: "./media/characters/comet/front.svg",
  36310. extra: 1681/1462,
  36311. bottom: 26/1707
  36312. }
  36313. },
  36314. },
  36315. [
  36316. {
  36317. name: "Normal",
  36318. height: math.unit(6 + 3/12, "feet"),
  36319. default: true
  36320. },
  36321. ]
  36322. ))
  36323. characterMakers.push(() => makeCharacter(
  36324. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36325. {
  36326. front: {
  36327. height: math.unit(950, "feet"),
  36328. name: "Front",
  36329. image: {
  36330. source: "./media/characters/vortex/front.svg",
  36331. extra: 1497/1434,
  36332. bottom: 56/1553
  36333. }
  36334. },
  36335. maw: {
  36336. height: math.unit(285, "feet"),
  36337. name: "Maw",
  36338. image: {
  36339. source: "./media/characters/vortex/maw.svg"
  36340. }
  36341. },
  36342. },
  36343. [
  36344. {
  36345. name: "Macro",
  36346. height: math.unit(950, "feet"),
  36347. default: true
  36348. },
  36349. ]
  36350. ))
  36351. characterMakers.push(() => makeCharacter(
  36352. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36353. {
  36354. front: {
  36355. height: math.unit(600, "feet"),
  36356. weight: math.unit(0.02, "grams"),
  36357. name: "Front",
  36358. image: {
  36359. source: "./media/characters/doodle/front.svg",
  36360. extra: 1578/1413,
  36361. bottom: 37/1615
  36362. }
  36363. },
  36364. },
  36365. [
  36366. {
  36367. name: "Macro",
  36368. height: math.unit(600, "feet"),
  36369. default: true
  36370. },
  36371. ]
  36372. ))
  36373. characterMakers.push(() => makeCharacter(
  36374. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36375. {
  36376. front: {
  36377. height: math.unit(6 + 6/12, "feet"),
  36378. name: "Front",
  36379. image: {
  36380. source: "./media/characters/jai/front.svg",
  36381. extra: 1645/1534,
  36382. bottom: 115/1760
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Normal",
  36389. height: math.unit(6 + 6/12, "feet"),
  36390. default: true
  36391. },
  36392. ]
  36393. ))
  36394. characterMakers.push(() => makeCharacter(
  36395. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36396. {
  36397. front: {
  36398. height: math.unit(6 + 8/12, "feet"),
  36399. name: "Front",
  36400. image: {
  36401. source: "./media/characters/pixel/front.svg",
  36402. extra: 1900/1735,
  36403. bottom: 63/1963
  36404. }
  36405. },
  36406. },
  36407. [
  36408. {
  36409. name: "Normal",
  36410. height: math.unit(6 + 8/12, "feet"),
  36411. default: true
  36412. },
  36413. ]
  36414. ))
  36415. characterMakers.push(() => makeCharacter(
  36416. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36417. {
  36418. back: {
  36419. height: math.unit(4 + 1/12, "feet"),
  36420. weight: math.unit(75, "lb"),
  36421. name: "Back",
  36422. image: {
  36423. source: "./media/characters/rhett/back.svg",
  36424. extra: 930/878,
  36425. bottom: 25/955
  36426. }
  36427. },
  36428. front: {
  36429. height: math.unit(4 + 1/12, "feet"),
  36430. weight: math.unit(75, "lb"),
  36431. name: "Front",
  36432. image: {
  36433. source: "./media/characters/rhett/front.svg",
  36434. extra: 1682/1586,
  36435. bottom: 92/1774
  36436. }
  36437. },
  36438. },
  36439. [
  36440. {
  36441. name: "Micro",
  36442. height: math.unit(8, "inches")
  36443. },
  36444. {
  36445. name: "Tiny",
  36446. height: math.unit(2, "feet")
  36447. },
  36448. {
  36449. name: "Normal",
  36450. height: math.unit(4 + 1/12, "feet"),
  36451. default: true
  36452. },
  36453. ]
  36454. ))
  36455. characterMakers.push(() => makeCharacter(
  36456. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36457. {
  36458. front: {
  36459. height: math.unit(3 + 3/12, "feet"),
  36460. name: "Front",
  36461. image: {
  36462. source: "./media/characters/penny/front.svg",
  36463. extra: 1406/1311,
  36464. bottom: 26/1432
  36465. }
  36466. },
  36467. },
  36468. [
  36469. {
  36470. name: "Normal",
  36471. height: math.unit(3 + 3/12, "feet"),
  36472. default: true
  36473. },
  36474. ]
  36475. ))
  36476. characterMakers.push(() => makeCharacter(
  36477. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36478. {
  36479. front: {
  36480. height: math.unit(4 + 11/12, "feet"),
  36481. name: "Front",
  36482. image: {
  36483. source: "./media/characters/monty/front.svg",
  36484. extra: 1479/1209,
  36485. bottom: 0/1479
  36486. }
  36487. },
  36488. },
  36489. [
  36490. {
  36491. name: "Normal",
  36492. height: math.unit(4 + 11/12, "feet"),
  36493. default: true
  36494. },
  36495. ]
  36496. ))
  36497. characterMakers.push(() => makeCharacter(
  36498. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36499. {
  36500. front: {
  36501. height: math.unit(8 + 4/12, "feet"),
  36502. name: "Front",
  36503. image: {
  36504. source: "./media/characters/sterling/front.svg",
  36505. extra: 1420/1236,
  36506. bottom: 27/1447
  36507. }
  36508. },
  36509. },
  36510. [
  36511. {
  36512. name: "Normal",
  36513. height: math.unit(8 + 4/12, "feet"),
  36514. default: true
  36515. },
  36516. ]
  36517. ))
  36518. characterMakers.push(() => makeCharacter(
  36519. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36520. {
  36521. front: {
  36522. height: math.unit(15, "feet"),
  36523. name: "Front",
  36524. image: {
  36525. source: "./media/characters/marble/front.svg",
  36526. extra: 973/937,
  36527. bottom: 32/1005
  36528. }
  36529. },
  36530. },
  36531. [
  36532. {
  36533. name: "Normal",
  36534. height: math.unit(15, "feet"),
  36535. default: true
  36536. },
  36537. ]
  36538. ))
  36539. characterMakers.push(() => makeCharacter(
  36540. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36541. {
  36542. front: {
  36543. height: math.unit(3, "inches"),
  36544. name: "Front",
  36545. image: {
  36546. source: "./media/characters/powder/front.svg",
  36547. extra: 1504/1334,
  36548. bottom: 518/2022
  36549. }
  36550. },
  36551. },
  36552. [
  36553. {
  36554. name: "Normal",
  36555. height: math.unit(3, "inches"),
  36556. default: true
  36557. },
  36558. ]
  36559. ))
  36560. characterMakers.push(() => makeCharacter(
  36561. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36562. {
  36563. front: {
  36564. height: math.unit(4 + 5/12, "feet"),
  36565. name: "Front",
  36566. image: {
  36567. source: "./media/characters/joey-raccoon/front.svg",
  36568. extra: 1273/1197,
  36569. bottom: 0/1273
  36570. }
  36571. },
  36572. },
  36573. [
  36574. {
  36575. name: "Normal",
  36576. height: math.unit(4 + 5/12, "feet"),
  36577. default: true
  36578. },
  36579. ]
  36580. ))
  36581. characterMakers.push(() => makeCharacter(
  36582. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36583. {
  36584. front: {
  36585. height: math.unit(8 + 4/12, "feet"),
  36586. name: "Front",
  36587. image: {
  36588. source: "./media/characters/vick/front.svg",
  36589. extra: 2187/2118,
  36590. bottom: 47/2234
  36591. }
  36592. },
  36593. },
  36594. [
  36595. {
  36596. name: "Normal",
  36597. height: math.unit(8 + 4/12, "feet"),
  36598. default: true
  36599. },
  36600. ]
  36601. ))
  36602. characterMakers.push(() => makeCharacter(
  36603. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36604. {
  36605. front: {
  36606. height: math.unit(5 + 5/12, "feet"),
  36607. name: "Front",
  36608. image: {
  36609. source: "./media/characters/mitsy/front.svg",
  36610. extra: 1842/1695,
  36611. bottom: 0/1842
  36612. }
  36613. },
  36614. },
  36615. [
  36616. {
  36617. name: "Normal",
  36618. height: math.unit(5 + 5/12, "feet"),
  36619. default: true
  36620. },
  36621. ]
  36622. ))
  36623. characterMakers.push(() => makeCharacter(
  36624. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36625. {
  36626. front: {
  36627. height: math.unit(6 + 3/12, "feet"),
  36628. name: "Front",
  36629. image: {
  36630. source: "./media/characters/silvy/front.svg",
  36631. extra: 1995/1836,
  36632. bottom: 225/2220
  36633. }
  36634. },
  36635. },
  36636. [
  36637. {
  36638. name: "Normal",
  36639. height: math.unit(6 + 3/12, "feet"),
  36640. default: true
  36641. },
  36642. ]
  36643. ))
  36644. characterMakers.push(() => makeCharacter(
  36645. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36646. {
  36647. front: {
  36648. height: math.unit(3 + 8/12, "feet"),
  36649. name: "Front",
  36650. image: {
  36651. source: "./media/characters/rodney/front.svg",
  36652. extra: 1956/1747,
  36653. bottom: 31/1987
  36654. }
  36655. },
  36656. frontDressed: {
  36657. height: math.unit(2.9, "feet"),
  36658. name: "Front (Dressed)",
  36659. image: {
  36660. source: "./media/characters/rodney/front-dressed.svg",
  36661. extra: 1382/1241,
  36662. bottom: 385/1767
  36663. }
  36664. },
  36665. },
  36666. [
  36667. {
  36668. name: "Normal",
  36669. height: math.unit(3 + 8/12, "feet"),
  36670. default: true
  36671. },
  36672. ]
  36673. ))
  36674. characterMakers.push(() => makeCharacter(
  36675. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36676. {
  36677. front: {
  36678. height: math.unit(5 + 9/12, "feet"),
  36679. weight: math.unit(194, "lbs"),
  36680. name: "Front",
  36681. image: {
  36682. source: "./media/characters/zakail-sudekai/front.svg",
  36683. extra: 2696/2533,
  36684. bottom: 248/2944
  36685. }
  36686. },
  36687. maw: {
  36688. height: math.unit(1.35, "feet"),
  36689. name: "Maw",
  36690. image: {
  36691. source: "./media/characters/zakail-sudekai/maw.svg"
  36692. }
  36693. },
  36694. },
  36695. [
  36696. {
  36697. name: "Normal",
  36698. height: math.unit(5 + 9/12, "feet"),
  36699. default: true
  36700. },
  36701. ]
  36702. ))
  36703. characterMakers.push(() => makeCharacter(
  36704. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36705. {
  36706. front: {
  36707. height: math.unit(8 + 4/12, "feet"),
  36708. weight: math.unit(1200, "lb"),
  36709. name: "Front",
  36710. image: {
  36711. source: "./media/characters/eleanor/front.svg",
  36712. extra: 1226/1192,
  36713. bottom: 52/1278
  36714. }
  36715. },
  36716. back: {
  36717. height: math.unit(8 + 4/12, "feet"),
  36718. weight: math.unit(1200, "lb"),
  36719. name: "Back",
  36720. image: {
  36721. source: "./media/characters/eleanor/back.svg",
  36722. extra: 1242/1184,
  36723. bottom: 60/1302
  36724. }
  36725. },
  36726. head: {
  36727. height: math.unit(2.62, "feet"),
  36728. name: "Head",
  36729. image: {
  36730. source: "./media/characters/eleanor/head.svg"
  36731. }
  36732. },
  36733. },
  36734. [
  36735. {
  36736. name: "Normal",
  36737. height: math.unit(8 + 4/12, "feet"),
  36738. default: true
  36739. },
  36740. ]
  36741. ))
  36742. characterMakers.push(() => makeCharacter(
  36743. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36744. {
  36745. front: {
  36746. height: math.unit(8 + 4/12, "feet"),
  36747. weight: math.unit(750, "lb"),
  36748. name: "Front",
  36749. image: {
  36750. source: "./media/characters/tanya/front.svg",
  36751. extra: 1749/1615,
  36752. bottom: 33/1782
  36753. }
  36754. },
  36755. },
  36756. [
  36757. {
  36758. name: "Normal",
  36759. height: math.unit(8 + 4/12, "feet"),
  36760. default: true
  36761. },
  36762. ]
  36763. ))
  36764. characterMakers.push(() => makeCharacter(
  36765. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36766. {
  36767. front: {
  36768. height: math.unit(5, "feet"),
  36769. weight: math.unit(225, "lb"),
  36770. name: "Front",
  36771. image: {
  36772. source: "./media/characters/cindy/front.svg",
  36773. extra: 1320/1250,
  36774. bottom: 42/1362
  36775. }
  36776. },
  36777. frontDressed: {
  36778. height: math.unit(5, "feet"),
  36779. weight: math.unit(225, "lb"),
  36780. name: "Front (Dressed)",
  36781. image: {
  36782. source: "./media/characters/cindy/front-dressed.svg",
  36783. extra: 1320/1250,
  36784. bottom: 42/1362
  36785. }
  36786. },
  36787. back: {
  36788. height: math.unit(5, "feet"),
  36789. weight: math.unit(225, "lb"),
  36790. name: "Back",
  36791. image: {
  36792. source: "./media/characters/cindy/back.svg",
  36793. extra: 1384/1346,
  36794. bottom: 14/1398
  36795. }
  36796. },
  36797. },
  36798. [
  36799. {
  36800. name: "Normal",
  36801. height: math.unit(5, "feet"),
  36802. default: true
  36803. },
  36804. ]
  36805. ))
  36806. characterMakers.push(() => makeCharacter(
  36807. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36808. {
  36809. front: {
  36810. height: math.unit(6 + 9/12, "feet"),
  36811. weight: math.unit(440, "lb"),
  36812. name: "Front",
  36813. image: {
  36814. source: "./media/characters/wilbur-owen/front.svg",
  36815. extra: 1575/1448,
  36816. bottom: 72/1647
  36817. }
  36818. },
  36819. back: {
  36820. height: math.unit(6 + 9/12, "feet"),
  36821. weight: math.unit(440, "lb"),
  36822. name: "Back",
  36823. image: {
  36824. source: "./media/characters/wilbur-owen/back.svg",
  36825. extra: 1578/1445,
  36826. bottom: 36/1614
  36827. }
  36828. },
  36829. },
  36830. [
  36831. {
  36832. name: "Normal",
  36833. height: math.unit(6 + 9/12, "feet"),
  36834. default: true
  36835. },
  36836. ]
  36837. ))
  36838. characterMakers.push(() => makeCharacter(
  36839. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36840. {
  36841. front: {
  36842. height: math.unit(6 + 5/12, "feet"),
  36843. weight: math.unit(650, "lb"),
  36844. name: "Front",
  36845. image: {
  36846. source: "./media/characters/keegan/front.svg",
  36847. extra: 2387/2198,
  36848. bottom: 33/2420
  36849. }
  36850. },
  36851. side: {
  36852. height: math.unit(6 + 5/12, "feet"),
  36853. weight: math.unit(650, "lb"),
  36854. name: "Side",
  36855. image: {
  36856. source: "./media/characters/keegan/side.svg",
  36857. extra: 2390/2202,
  36858. bottom: 47/2437
  36859. }
  36860. },
  36861. back: {
  36862. height: math.unit(6 + 5/12, "feet"),
  36863. weight: math.unit(650, "lb"),
  36864. name: "Back",
  36865. image: {
  36866. source: "./media/characters/keegan/back.svg",
  36867. extra: 2418/2268,
  36868. bottom: 15/2433
  36869. }
  36870. },
  36871. frontSfw: {
  36872. height: math.unit(6 + 5/12, "feet"),
  36873. weight: math.unit(650, "lb"),
  36874. name: "Front (SFW)",
  36875. image: {
  36876. source: "./media/characters/keegan/front-sfw.svg",
  36877. extra: 2387/2198,
  36878. bottom: 33/2420
  36879. }
  36880. },
  36881. beans: {
  36882. height: math.unit(1.85, "feet"),
  36883. name: "Beans",
  36884. image: {
  36885. source: "./media/characters/keegan/beans.svg"
  36886. }
  36887. },
  36888. },
  36889. [
  36890. {
  36891. name: "Normal",
  36892. height: math.unit(6 + 5/12, "feet"),
  36893. default: true
  36894. },
  36895. ]
  36896. ))
  36897. characterMakers.push(() => makeCharacter(
  36898. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36899. {
  36900. front: {
  36901. height: math.unit(9, "feet"),
  36902. name: "Front",
  36903. image: {
  36904. source: "./media/characters/colton/front.svg",
  36905. extra: 1589/1326,
  36906. bottom: 139/1728
  36907. }
  36908. },
  36909. },
  36910. [
  36911. {
  36912. name: "Normal",
  36913. height: math.unit(9, "feet"),
  36914. default: true
  36915. },
  36916. ]
  36917. ))
  36918. characterMakers.push(() => makeCharacter(
  36919. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36920. {
  36921. front: {
  36922. height: math.unit(2 + 9/12, "feet"),
  36923. name: "Front",
  36924. image: {
  36925. source: "./media/characters/bora/front.svg",
  36926. extra: 1265/1250,
  36927. bottom: 24/1289
  36928. }
  36929. },
  36930. },
  36931. [
  36932. {
  36933. name: "Normal",
  36934. height: math.unit(2 + 9/12, "feet"),
  36935. default: true
  36936. },
  36937. ]
  36938. ))
  36939. characterMakers.push(() => makeCharacter(
  36940. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36941. {
  36942. front: {
  36943. height: math.unit(8, "feet"),
  36944. name: "Front",
  36945. image: {
  36946. source: "./media/characters/myu-myu/front.svg",
  36947. extra: 1949/1857,
  36948. bottom: 90/2039
  36949. }
  36950. },
  36951. },
  36952. [
  36953. {
  36954. name: "Normal",
  36955. height: math.unit(8, "feet"),
  36956. default: true
  36957. },
  36958. {
  36959. name: "Big",
  36960. height: math.unit(15, "feet")
  36961. },
  36962. {
  36963. name: "BIG",
  36964. height: math.unit(25, "feet")
  36965. },
  36966. ]
  36967. ))
  36968. characterMakers.push(() => makeCharacter(
  36969. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36970. {
  36971. side: {
  36972. height: math.unit(7 + 5/12, "feet"),
  36973. weight: math.unit(2800, "lb"),
  36974. name: "Side",
  36975. image: {
  36976. source: "./media/characters/haloren/side.svg",
  36977. extra: 1793/409,
  36978. bottom: 59/1852
  36979. }
  36980. },
  36981. frontPaw: {
  36982. height: math.unit(2.36, "feet"),
  36983. name: "Front paw",
  36984. image: {
  36985. source: "./media/characters/haloren/front-paw.svg"
  36986. }
  36987. },
  36988. hindPaw: {
  36989. height: math.unit(3.18, "feet"),
  36990. name: "Hind paw",
  36991. image: {
  36992. source: "./media/characters/haloren/hind-paw.svg"
  36993. }
  36994. },
  36995. maw: {
  36996. height: math.unit(5.05, "feet"),
  36997. name: "Maw",
  36998. image: {
  36999. source: "./media/characters/haloren/maw.svg"
  37000. }
  37001. },
  37002. dick: {
  37003. height: math.unit(2.90, "feet"),
  37004. name: "Dick",
  37005. image: {
  37006. source: "./media/characters/haloren/dick.svg"
  37007. }
  37008. },
  37009. },
  37010. [
  37011. {
  37012. name: "Normal",
  37013. height: math.unit(7 + 5/12, "feet"),
  37014. default: true
  37015. },
  37016. {
  37017. name: "Enhanced",
  37018. height: math.unit(14 + 3/12, "feet")
  37019. },
  37020. ]
  37021. ))
  37022. characterMakers.push(() => makeCharacter(
  37023. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37024. {
  37025. front: {
  37026. height: math.unit(171, "cm"),
  37027. name: "Front",
  37028. image: {
  37029. source: "./media/characters/kimmy/front.svg",
  37030. extra: 1491/1435,
  37031. bottom: 53/1544
  37032. }
  37033. },
  37034. },
  37035. [
  37036. {
  37037. name: "Small",
  37038. height: math.unit(9, "cm")
  37039. },
  37040. {
  37041. name: "Normal",
  37042. height: math.unit(171, "cm"),
  37043. default: true
  37044. },
  37045. ]
  37046. ))
  37047. characterMakers.push(() => makeCharacter(
  37048. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37049. {
  37050. front: {
  37051. height: math.unit(8, "feet"),
  37052. weight: math.unit(300, "lb"),
  37053. name: "Front",
  37054. image: {
  37055. source: "./media/characters/galeboomer/front.svg",
  37056. extra: 4651/4415,
  37057. bottom: 162/4813
  37058. }
  37059. },
  37060. back: {
  37061. height: math.unit(8, "feet"),
  37062. weight: math.unit(300, "lb"),
  37063. name: "Back",
  37064. image: {
  37065. source: "./media/characters/galeboomer/back.svg",
  37066. extra: 4544/4314,
  37067. bottom: 16/4560
  37068. }
  37069. },
  37070. frontAlt: {
  37071. height: math.unit(8, "feet"),
  37072. weight: math.unit(300, "lb"),
  37073. name: "Front (Alt)",
  37074. image: {
  37075. source: "./media/characters/galeboomer/front-alt.svg",
  37076. extra: 4458/4228,
  37077. bottom: 68/4526
  37078. }
  37079. },
  37080. maw: {
  37081. height: math.unit(1.2, "feet"),
  37082. name: "Maw",
  37083. image: {
  37084. source: "./media/characters/galeboomer/maw.svg"
  37085. }
  37086. },
  37087. },
  37088. [
  37089. {
  37090. name: "Normal",
  37091. height: math.unit(8, "feet"),
  37092. default: true
  37093. },
  37094. ]
  37095. ))
  37096. characterMakers.push(() => makeCharacter(
  37097. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37098. {
  37099. front: {
  37100. height: math.unit(5 + 9/12, "feet"),
  37101. weight: math.unit(120, "lb"),
  37102. name: "Front",
  37103. image: {
  37104. source: "./media/characters/chyr/front.svg",
  37105. extra: 1323/1254,
  37106. bottom: 63/1386
  37107. }
  37108. },
  37109. back: {
  37110. height: math.unit(5 + 9/12, "feet"),
  37111. weight: math.unit(120, "lb"),
  37112. name: "Back",
  37113. image: {
  37114. source: "./media/characters/chyr/back.svg",
  37115. extra: 1323/1252,
  37116. bottom: 48/1371
  37117. }
  37118. },
  37119. },
  37120. [
  37121. {
  37122. name: "Normal",
  37123. height: math.unit(5 + 9/12, "feet"),
  37124. default: true
  37125. },
  37126. ]
  37127. ))
  37128. characterMakers.push(() => makeCharacter(
  37129. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37130. {
  37131. front: {
  37132. height: math.unit(7, "feet"),
  37133. weight: math.unit(310, "lb"),
  37134. name: "Front",
  37135. image: {
  37136. source: "./media/characters/solarus/front.svg",
  37137. extra: 2415/2021,
  37138. bottom: 103/2518
  37139. }
  37140. },
  37141. back: {
  37142. height: math.unit(7, "feet"),
  37143. weight: math.unit(310, "lb"),
  37144. name: "Back",
  37145. image: {
  37146. source: "./media/characters/solarus/back.svg",
  37147. extra: 2463/2089,
  37148. bottom: 79/2542
  37149. }
  37150. },
  37151. },
  37152. [
  37153. {
  37154. name: "Normal",
  37155. height: math.unit(7, "feet"),
  37156. default: true
  37157. },
  37158. ]
  37159. ))
  37160. characterMakers.push(() => makeCharacter(
  37161. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37162. {
  37163. front: {
  37164. height: math.unit(16, "feet"),
  37165. name: "Front",
  37166. image: {
  37167. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37168. extra: 1844/1780,
  37169. bottom: 58/1902
  37170. }
  37171. },
  37172. winterCoat: {
  37173. height: math.unit(16, "feet"),
  37174. name: "Winter Coat",
  37175. image: {
  37176. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37177. extra: 1807/1775,
  37178. bottom: 69/1876
  37179. }
  37180. },
  37181. },
  37182. [
  37183. {
  37184. name: "Normal",
  37185. height: math.unit(16, "feet"),
  37186. default: true
  37187. },
  37188. {
  37189. name: "Chicago Size",
  37190. height: math.unit(560, "feet")
  37191. },
  37192. ]
  37193. ))
  37194. characterMakers.push(() => makeCharacter(
  37195. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37196. {
  37197. front: {
  37198. height: math.unit(11 + 6/12, "feet"),
  37199. weight: math.unit(1366, "lb"),
  37200. name: "Front",
  37201. image: {
  37202. source: "./media/characters/lexor/front.svg",
  37203. extra: 1560/1481,
  37204. bottom: 211/1771
  37205. }
  37206. },
  37207. back: {
  37208. height: math.unit(11 + 6/12, "feet"),
  37209. weight: math.unit(1366, "lb"),
  37210. name: "Back",
  37211. image: {
  37212. source: "./media/characters/lexor/back.svg",
  37213. extra: 1614/1533,
  37214. bottom: 76/1690
  37215. }
  37216. },
  37217. maw: {
  37218. height: math.unit(3, "feet"),
  37219. name: "Maw",
  37220. image: {
  37221. source: "./media/characters/lexor/maw.svg"
  37222. }
  37223. },
  37224. dick: {
  37225. height: math.unit(2.59, "feet"),
  37226. name: "Dick",
  37227. image: {
  37228. source: "./media/characters/lexor/dick.svg"
  37229. }
  37230. },
  37231. },
  37232. [
  37233. {
  37234. name: "Normal",
  37235. height: math.unit(11 + 6/12, "feet"),
  37236. default: true
  37237. },
  37238. ]
  37239. ))
  37240. characterMakers.push(() => makeCharacter(
  37241. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37242. {
  37243. front: {
  37244. height: math.unit(5 + 8/12, "feet"),
  37245. name: "Front",
  37246. image: {
  37247. source: "./media/characters/magnum/front.svg",
  37248. extra: 942/855,
  37249. bottom: 26/968
  37250. }
  37251. },
  37252. },
  37253. [
  37254. {
  37255. name: "Normal",
  37256. height: math.unit(5 + 8/12, "feet"),
  37257. default: true
  37258. },
  37259. ]
  37260. ))
  37261. characterMakers.push(() => makeCharacter(
  37262. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37263. {
  37264. front: {
  37265. height: math.unit(18 + 4/12, "feet"),
  37266. weight: math.unit(1500, "kg"),
  37267. name: "Front",
  37268. image: {
  37269. source: "./media/characters/solas-sharpsman/front.svg",
  37270. extra: 1698/1589,
  37271. bottom: 0/1698
  37272. }
  37273. },
  37274. },
  37275. [
  37276. {
  37277. name: "Normal",
  37278. height: math.unit(18 + 4/12, "feet"),
  37279. default: true
  37280. },
  37281. ]
  37282. ))
  37283. characterMakers.push(() => makeCharacter(
  37284. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37285. {
  37286. front: {
  37287. height: math.unit(5 + 5/12, "feet"),
  37288. weight: math.unit(180, "lb"),
  37289. name: "Front",
  37290. image: {
  37291. source: "./media/characters/october/front.svg",
  37292. extra: 1800/1650,
  37293. bottom: 0/1800
  37294. }
  37295. },
  37296. frontNsfw: {
  37297. height: math.unit(5 + 5/12, "feet"),
  37298. weight: math.unit(180, "lb"),
  37299. name: "Front (NSFW)",
  37300. image: {
  37301. source: "./media/characters/october/front-nsfw.svg",
  37302. extra: 1392/1307,
  37303. bottom: 42/1434
  37304. }
  37305. },
  37306. },
  37307. [
  37308. {
  37309. name: "Normal",
  37310. height: math.unit(5 + 5/12, "feet"),
  37311. default: true
  37312. },
  37313. ]
  37314. ))
  37315. characterMakers.push(() => makeCharacter(
  37316. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37317. {
  37318. front: {
  37319. height: math.unit(8 + 6/12, "feet"),
  37320. name: "Front",
  37321. image: {
  37322. source: "./media/characters/essynkardi/front.svg",
  37323. extra: 1914/1846,
  37324. bottom: 22/1936
  37325. }
  37326. },
  37327. },
  37328. [
  37329. {
  37330. name: "Normal",
  37331. height: math.unit(8 + 6/12, "feet"),
  37332. default: true
  37333. },
  37334. ]
  37335. ))
  37336. characterMakers.push(() => makeCharacter(
  37337. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37338. {
  37339. front: {
  37340. height: math.unit(6 + 6/12, "feet"),
  37341. weight: math.unit(7, "lb"),
  37342. name: "Front",
  37343. image: {
  37344. source: "./media/characters/icky/front.svg",
  37345. extra: 813/782,
  37346. bottom: 66/879
  37347. }
  37348. },
  37349. back: {
  37350. height: math.unit(6 + 6/12, "feet"),
  37351. weight: math.unit(7, "lb"),
  37352. name: "Back",
  37353. image: {
  37354. source: "./media/characters/icky/back.svg",
  37355. extra: 754/735,
  37356. bottom: 56/810
  37357. }
  37358. },
  37359. },
  37360. [
  37361. {
  37362. name: "Normal",
  37363. height: math.unit(6 + 6/12, "feet"),
  37364. default: true
  37365. },
  37366. ]
  37367. ))
  37368. characterMakers.push(() => makeCharacter(
  37369. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37370. {
  37371. front: {
  37372. height: math.unit(15, "feet"),
  37373. name: "Front",
  37374. image: {
  37375. source: "./media/characters/rojas/front.svg",
  37376. extra: 1462/1408,
  37377. bottom: 95/1557
  37378. }
  37379. },
  37380. back: {
  37381. height: math.unit(15, "feet"),
  37382. name: "Back",
  37383. image: {
  37384. source: "./media/characters/rojas/back.svg",
  37385. extra: 1023/954,
  37386. bottom: 28/1051
  37387. }
  37388. },
  37389. },
  37390. [
  37391. {
  37392. name: "Normal",
  37393. height: math.unit(15, "feet"),
  37394. default: true
  37395. },
  37396. ]
  37397. ))
  37398. characterMakers.push(() => makeCharacter(
  37399. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37400. {
  37401. frontHuman: {
  37402. height: math.unit(5 + 7/12, "feet"),
  37403. name: "Front (Human)",
  37404. image: {
  37405. source: "./media/characters/alek-dryagan/front-human.svg",
  37406. extra: 1687/1667,
  37407. bottom: 69/1756
  37408. }
  37409. },
  37410. backHuman: {
  37411. height: math.unit(5 + 7/12, "feet"),
  37412. name: "Back (Human)",
  37413. image: {
  37414. source: "./media/characters/alek-dryagan/back-human.svg",
  37415. extra: 1670/1649,
  37416. bottom: 65/1735
  37417. }
  37418. },
  37419. frontDemi: {
  37420. height: math.unit(65, "feet"),
  37421. name: "Front (Demi)",
  37422. image: {
  37423. source: "./media/characters/alek-dryagan/front-demi.svg",
  37424. extra: 1669/1642,
  37425. bottom: 49/1718
  37426. }
  37427. },
  37428. backDemi: {
  37429. height: math.unit(65, "feet"),
  37430. name: "Back (Demi)",
  37431. image: {
  37432. source: "./media/characters/alek-dryagan/back-demi.svg",
  37433. extra: 1658/1637,
  37434. bottom: 40/1698
  37435. }
  37436. },
  37437. mawHuman: {
  37438. height: math.unit(0.3, "feet"),
  37439. name: "Maw (Human)",
  37440. image: {
  37441. source: "./media/characters/alek-dryagan/maw-human.svg"
  37442. }
  37443. },
  37444. mawDemi: {
  37445. height: math.unit(3.8, "feet"),
  37446. name: "Maw (Demi)",
  37447. image: {
  37448. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37449. }
  37450. },
  37451. },
  37452. [
  37453. {
  37454. name: "Normal",
  37455. height: math.unit(5 + 7/12, "feet"),
  37456. default: true
  37457. },
  37458. ]
  37459. ))
  37460. characterMakers.push(() => makeCharacter(
  37461. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37462. {
  37463. frontHuman: {
  37464. height: math.unit(5 + 2/12, "feet"),
  37465. name: "Front (Human)",
  37466. image: {
  37467. source: "./media/characters/gen/front-human.svg",
  37468. extra: 1627/1538,
  37469. bottom: 71/1698
  37470. }
  37471. },
  37472. backHuman: {
  37473. height: math.unit(5 + 2/12, "feet"),
  37474. name: "Back (Human)",
  37475. image: {
  37476. source: "./media/characters/gen/back-human.svg",
  37477. extra: 1638/1548,
  37478. bottom: 69/1707
  37479. }
  37480. },
  37481. frontDemi: {
  37482. height: math.unit(5 + 2/12, "feet"),
  37483. name: "Front (Demi)",
  37484. image: {
  37485. source: "./media/characters/gen/front-demi.svg",
  37486. extra: 1627/1538,
  37487. bottom: 71/1698
  37488. }
  37489. },
  37490. backDemi: {
  37491. height: math.unit(5 + 2/12, "feet"),
  37492. name: "Back (Demi)",
  37493. image: {
  37494. source: "./media/characters/gen/back-demi.svg",
  37495. extra: 1638/1548,
  37496. bottom: 69/1707
  37497. }
  37498. },
  37499. },
  37500. [
  37501. {
  37502. name: "Normal",
  37503. height: math.unit(5 + 2/12, "feet"),
  37504. default: true
  37505. },
  37506. ]
  37507. ))
  37508. characterMakers.push(() => makeCharacter(
  37509. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37510. {
  37511. frontImp: {
  37512. height: math.unit(1 + 11/12, "feet"),
  37513. name: "Front (Imp)",
  37514. image: {
  37515. source: "./media/characters/max-kobold/front-imp.svg",
  37516. extra: 1238/1134,
  37517. bottom: 81/1319
  37518. }
  37519. },
  37520. backImp: {
  37521. height: math.unit(1 + 11/12, "feet"),
  37522. name: "Back (Imp)",
  37523. image: {
  37524. source: "./media/characters/max-kobold/back-imp.svg",
  37525. extra: 1334/1175,
  37526. bottom: 34/1368
  37527. }
  37528. },
  37529. frontDemi: {
  37530. height: math.unit(5 + 9/12, "feet"),
  37531. name: "Front (Demi)",
  37532. image: {
  37533. source: "./media/characters/max-kobold/front-demi.svg",
  37534. extra: 1715/1685,
  37535. bottom: 54/1769
  37536. }
  37537. },
  37538. backDemi: {
  37539. height: math.unit(5 + 9/12, "feet"),
  37540. name: "Back (Demi)",
  37541. image: {
  37542. source: "./media/characters/max-kobold/back-demi.svg",
  37543. extra: 1752/1729,
  37544. bottom: 41/1793
  37545. }
  37546. },
  37547. handImp: {
  37548. height: math.unit(0.45, "feet"),
  37549. name: "Hand (Imp)",
  37550. image: {
  37551. source: "./media/characters/max-kobold/hand.svg"
  37552. }
  37553. },
  37554. pawImp: {
  37555. height: math.unit(0.46, "feet"),
  37556. name: "Paw (Imp)",
  37557. image: {
  37558. source: "./media/characters/max-kobold/paw.svg"
  37559. }
  37560. },
  37561. handDemi: {
  37562. height: math.unit(0.80, "feet"),
  37563. name: "Hand (Demi)",
  37564. image: {
  37565. source: "./media/characters/max-kobold/hand.svg"
  37566. }
  37567. },
  37568. pawDemi: {
  37569. height: math.unit(1.1, "feet"),
  37570. name: "Paw (Demi)",
  37571. image: {
  37572. source: "./media/characters/max-kobold/paw.svg"
  37573. }
  37574. },
  37575. headImp: {
  37576. height: math.unit(1.33, "feet"),
  37577. name: "Head (Imp)",
  37578. image: {
  37579. source: "./media/characters/max-kobold/head-imp.svg"
  37580. }
  37581. },
  37582. mawImp: {
  37583. height: math.unit(0.75, "feet"),
  37584. name: "Maw (Imp)",
  37585. image: {
  37586. source: "./media/characters/max-kobold/maw-imp.svg"
  37587. }
  37588. },
  37589. mawDemi: {
  37590. height: math.unit(0.42, "feet"),
  37591. name: "Maw (Demi)",
  37592. image: {
  37593. source: "./media/characters/max-kobold/maw-demi.svg"
  37594. }
  37595. },
  37596. },
  37597. [
  37598. {
  37599. name: "Normal",
  37600. height: math.unit(1 + 11/12, "feet"),
  37601. default: true
  37602. },
  37603. ]
  37604. ))
  37605. characterMakers.push(() => makeCharacter(
  37606. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37607. {
  37608. front: {
  37609. height: math.unit(7 + 5/12, "feet"),
  37610. name: "Front",
  37611. image: {
  37612. source: "./media/characters/carbon/front.svg",
  37613. extra: 1754/1689,
  37614. bottom: 65/1819
  37615. }
  37616. },
  37617. back: {
  37618. height: math.unit(7 + 5/12, "feet"),
  37619. name: "Back",
  37620. image: {
  37621. source: "./media/characters/carbon/back.svg",
  37622. extra: 1762/1695,
  37623. bottom: 24/1786
  37624. }
  37625. },
  37626. frontGigantamax: {
  37627. height: math.unit(150, "feet"),
  37628. name: "Front (Gigantamax)",
  37629. image: {
  37630. source: "./media/characters/carbon/front-gigantamax.svg",
  37631. extra: 1826/1669,
  37632. bottom: 59/1885
  37633. }
  37634. },
  37635. backGigantamax: {
  37636. height: math.unit(150, "feet"),
  37637. name: "Back (Gigantamax)",
  37638. image: {
  37639. source: "./media/characters/carbon/back-gigantamax.svg",
  37640. extra: 1796/1653,
  37641. bottom: 53/1849
  37642. }
  37643. },
  37644. maw: {
  37645. height: math.unit(0.48, "feet"),
  37646. name: "Maw",
  37647. image: {
  37648. source: "./media/characters/carbon/maw.svg"
  37649. }
  37650. },
  37651. mawGigantamax: {
  37652. height: math.unit(7.5, "feet"),
  37653. name: "Maw (Gigantamax)",
  37654. image: {
  37655. source: "./media/characters/carbon/maw-gigantamax.svg"
  37656. }
  37657. },
  37658. },
  37659. [
  37660. {
  37661. name: "Normal",
  37662. height: math.unit(7 + 5/12, "feet"),
  37663. default: true
  37664. },
  37665. ]
  37666. ))
  37667. characterMakers.push(() => makeCharacter(
  37668. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37669. {
  37670. front: {
  37671. height: math.unit(6, "feet"),
  37672. name: "Front",
  37673. image: {
  37674. source: "./media/characters/maverick/front.svg",
  37675. extra: 1672/1661,
  37676. bottom: 85/1757
  37677. }
  37678. },
  37679. back: {
  37680. height: math.unit(6, "feet"),
  37681. name: "Back",
  37682. image: {
  37683. source: "./media/characters/maverick/back.svg",
  37684. extra: 1642/1631,
  37685. bottom: 38/1680
  37686. }
  37687. },
  37688. },
  37689. [
  37690. {
  37691. name: "Normal",
  37692. height: math.unit(6, "feet"),
  37693. default: true
  37694. },
  37695. ]
  37696. ))
  37697. characterMakers.push(() => makeCharacter(
  37698. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37699. {
  37700. front: {
  37701. height: math.unit(15, "feet"),
  37702. weight: math.unit(615, "lb"),
  37703. name: "Front",
  37704. image: {
  37705. source: "./media/characters/grockle/front.svg",
  37706. extra: 1535/1427,
  37707. bottom: 56/1591
  37708. }
  37709. },
  37710. },
  37711. [
  37712. {
  37713. name: "Normal",
  37714. height: math.unit(15, "feet"),
  37715. default: true
  37716. },
  37717. {
  37718. name: "Large",
  37719. height: math.unit(150, "feet")
  37720. },
  37721. {
  37722. name: "Macro",
  37723. height: math.unit(1876, "feet")
  37724. },
  37725. {
  37726. name: "Mega Macro",
  37727. height: math.unit(121940, "feet")
  37728. },
  37729. {
  37730. name: "Giga Macro",
  37731. height: math.unit(750, "km")
  37732. },
  37733. {
  37734. name: "Tera Macro",
  37735. height: math.unit(750000, "km")
  37736. },
  37737. {
  37738. name: "Galactic",
  37739. height: math.unit(1.4e5, "km")
  37740. },
  37741. {
  37742. name: "Godlike",
  37743. height: math.unit(9.8e280, "galaxies")
  37744. },
  37745. ]
  37746. ))
  37747. characterMakers.push(() => makeCharacter(
  37748. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37749. {
  37750. front: {
  37751. height: math.unit(11, "meters"),
  37752. weight: math.unit(20, "tonnes"),
  37753. name: "Front",
  37754. image: {
  37755. source: "./media/characters/alistair/front.svg",
  37756. extra: 1265/1009,
  37757. bottom: 93/1358
  37758. }
  37759. },
  37760. },
  37761. [
  37762. {
  37763. name: "Normal",
  37764. height: math.unit(11, "meters"),
  37765. default: true
  37766. },
  37767. ]
  37768. ))
  37769. characterMakers.push(() => makeCharacter(
  37770. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37771. {
  37772. front: {
  37773. height: math.unit(5 + 8/12, "feet"),
  37774. name: "Front",
  37775. image: {
  37776. source: "./media/characters/haruka/front.svg",
  37777. extra: 2012/1952,
  37778. bottom: 0/2012
  37779. }
  37780. },
  37781. },
  37782. [
  37783. {
  37784. name: "Normal",
  37785. height: math.unit(5 + 8/12, "feet"),
  37786. default: true
  37787. },
  37788. ]
  37789. ))
  37790. characterMakers.push(() => makeCharacter(
  37791. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37792. {
  37793. back: {
  37794. height: math.unit(9, "feet"),
  37795. name: "Back",
  37796. image: {
  37797. source: "./media/characters/vivian-sylveon/back.svg",
  37798. extra: 1853/1714,
  37799. bottom: 0/1853
  37800. }
  37801. },
  37802. },
  37803. [
  37804. {
  37805. name: "Normal",
  37806. height: math.unit(9, "feet"),
  37807. default: true
  37808. },
  37809. {
  37810. name: "Macro",
  37811. height: math.unit(500, "feet")
  37812. },
  37813. {
  37814. name: "Megamacro",
  37815. height: math.unit(600, "miles")
  37816. },
  37817. {
  37818. name: "Gigamacro",
  37819. height: math.unit(30000, "miles")
  37820. },
  37821. ]
  37822. ))
  37823. characterMakers.push(() => makeCharacter(
  37824. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37825. {
  37826. anthro: {
  37827. height: math.unit(5 + 10/12, "feet"),
  37828. weight: math.unit(100, "lb"),
  37829. name: "Anthro",
  37830. image: {
  37831. source: "./media/characters/daiki/anthro.svg",
  37832. extra: 1115/1027,
  37833. bottom: 69/1184
  37834. }
  37835. },
  37836. feral: {
  37837. height: math.unit(200, "feet"),
  37838. name: "Feral",
  37839. image: {
  37840. source: "./media/characters/daiki/feral.svg",
  37841. extra: 1256/313,
  37842. bottom: 39/1295
  37843. }
  37844. },
  37845. feralHead: {
  37846. height: math.unit(171, "feet"),
  37847. name: "Feral Head",
  37848. image: {
  37849. source: "./media/characters/daiki/feral-head.svg"
  37850. }
  37851. },
  37852. manaDragon: {
  37853. height: math.unit(170, "meters"),
  37854. name: "Mana-dragon",
  37855. image: {
  37856. source: "./media/characters/daiki/mana-dragon.svg",
  37857. extra: 763/420,
  37858. bottom: 97/860
  37859. }
  37860. },
  37861. },
  37862. [
  37863. {
  37864. name: "Normal",
  37865. height: math.unit(5 + 10/12, "feet"),
  37866. default: true
  37867. },
  37868. ]
  37869. ))
  37870. characterMakers.push(() => makeCharacter(
  37871. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37872. {
  37873. fullyEquippedFront: {
  37874. height: math.unit(3 + 1/12, "feet"),
  37875. weight: math.unit(24, "lb"),
  37876. name: "Fully Equipped (Front)",
  37877. image: {
  37878. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37879. extra: 687/605,
  37880. bottom: 18/705
  37881. }
  37882. },
  37883. fullyEquippedBack: {
  37884. height: math.unit(3 + 1/12, "feet"),
  37885. weight: math.unit(24, "lb"),
  37886. name: "Fully Equipped (Back)",
  37887. image: {
  37888. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37889. extra: 689/590,
  37890. bottom: 18/707
  37891. }
  37892. },
  37893. dailyWear: {
  37894. height: math.unit(3 + 1/12, "feet"),
  37895. weight: math.unit(24, "lb"),
  37896. name: "Daily Wear",
  37897. image: {
  37898. source: "./media/characters/tea-spot/daily-wear.svg",
  37899. extra: 701/620,
  37900. bottom: 21/722
  37901. }
  37902. },
  37903. maidWork: {
  37904. height: math.unit(3 + 1/12, "feet"),
  37905. weight: math.unit(24, "lb"),
  37906. name: "Maid Work",
  37907. image: {
  37908. source: "./media/characters/tea-spot/maid-work.svg",
  37909. extra: 693/609,
  37910. bottom: 15/708
  37911. }
  37912. },
  37913. },
  37914. [
  37915. {
  37916. name: "Normal",
  37917. height: math.unit(3 + 1/12, "feet"),
  37918. default: true
  37919. },
  37920. ]
  37921. ))
  37922. characterMakers.push(() => makeCharacter(
  37923. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37924. {
  37925. front: {
  37926. height: math.unit(175, "cm"),
  37927. weight: math.unit(75, "kg"),
  37928. name: "Front",
  37929. image: {
  37930. source: "./media/characters/chee/front.svg",
  37931. extra: 1796/1740,
  37932. bottom: 40/1836
  37933. }
  37934. },
  37935. },
  37936. [
  37937. {
  37938. name: "Micro-Micro",
  37939. height: math.unit(1, "nm")
  37940. },
  37941. {
  37942. name: "Micro-erst",
  37943. height: math.unit(1, "micrometer")
  37944. },
  37945. {
  37946. name: "Micro-er",
  37947. height: math.unit(1, "cm")
  37948. },
  37949. {
  37950. name: "Normal",
  37951. height: math.unit(175, "cm"),
  37952. default: true
  37953. },
  37954. {
  37955. name: "Macro",
  37956. height: math.unit(100, "m")
  37957. },
  37958. {
  37959. name: "Macro-er",
  37960. height: math.unit(1, "km")
  37961. },
  37962. {
  37963. name: "Macro-erst",
  37964. height: math.unit(10, "km")
  37965. },
  37966. {
  37967. name: "Macro-Macro",
  37968. height: math.unit(100, "km")
  37969. },
  37970. ]
  37971. ))
  37972. characterMakers.push(() => makeCharacter(
  37973. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37974. {
  37975. front: {
  37976. height: math.unit(11 + 9/12, "feet"),
  37977. weight: math.unit(935, "lb"),
  37978. name: "Front",
  37979. image: {
  37980. source: "./media/characters/kingsley/front.svg",
  37981. extra: 1803/1674,
  37982. bottom: 127/1930
  37983. }
  37984. },
  37985. frontNude: {
  37986. height: math.unit(11 + 9/12, "feet"),
  37987. weight: math.unit(935, "lb"),
  37988. name: "Front (Nude)",
  37989. image: {
  37990. source: "./media/characters/kingsley/front-nude.svg",
  37991. extra: 1803/1674,
  37992. bottom: 127/1930
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Normal",
  37999. height: math.unit(11 + 9/12, "feet"),
  38000. default: true
  38001. },
  38002. ]
  38003. ))
  38004. characterMakers.push(() => makeCharacter(
  38005. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38006. {
  38007. side: {
  38008. height: math.unit(9, "feet"),
  38009. name: "Side",
  38010. image: {
  38011. source: "./media/characters/rymel/side.svg",
  38012. extra: 792/469,
  38013. bottom: 121/913
  38014. }
  38015. },
  38016. maw: {
  38017. height: math.unit(2.4, "meters"),
  38018. name: "Maw",
  38019. image: {
  38020. source: "./media/characters/rymel/maw.svg"
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "House Drake",
  38027. height: math.unit(2, "feet")
  38028. },
  38029. {
  38030. name: "Reduced",
  38031. height: math.unit(4.5, "feet")
  38032. },
  38033. {
  38034. name: "Normal",
  38035. height: math.unit(9, "feet"),
  38036. default: true
  38037. },
  38038. ]
  38039. ))
  38040. characterMakers.push(() => makeCharacter(
  38041. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38042. {
  38043. front: {
  38044. height: math.unit(1.74, "meters"),
  38045. weight: math.unit(55, "kg"),
  38046. name: "Front",
  38047. image: {
  38048. source: "./media/characters/rubus/front.svg",
  38049. extra: 1894/1742,
  38050. bottom: 44/1938
  38051. }
  38052. },
  38053. },
  38054. [
  38055. {
  38056. name: "Normal",
  38057. height: math.unit(1.74, "meters"),
  38058. default: true
  38059. },
  38060. ]
  38061. ))
  38062. characterMakers.push(() => makeCharacter(
  38063. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38064. {
  38065. front: {
  38066. height: math.unit(5 + 2/12, "feet"),
  38067. weight: math.unit(112, "lb"),
  38068. name: "Front",
  38069. image: {
  38070. source: "./media/characters/cassie-kingston/front.svg",
  38071. extra: 1438/1390,
  38072. bottom: 47/1485
  38073. }
  38074. },
  38075. },
  38076. [
  38077. {
  38078. name: "Normal",
  38079. height: math.unit(5 + 2/12, "feet"),
  38080. default: true
  38081. },
  38082. {
  38083. name: "Macro",
  38084. height: math.unit(128, "feet")
  38085. },
  38086. {
  38087. name: "Megamacro",
  38088. height: math.unit(2.56, "miles")
  38089. },
  38090. ]
  38091. ))
  38092. characterMakers.push(() => makeCharacter(
  38093. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38094. {
  38095. front: {
  38096. height: math.unit(7, "feet"),
  38097. name: "Front",
  38098. image: {
  38099. source: "./media/characters/fox/front.svg",
  38100. extra: 1798/1703,
  38101. bottom: 55/1853
  38102. }
  38103. },
  38104. back: {
  38105. height: math.unit(7, "feet"),
  38106. name: "Back",
  38107. image: {
  38108. source: "./media/characters/fox/back.svg",
  38109. extra: 1748/1649,
  38110. bottom: 32/1780
  38111. }
  38112. },
  38113. head: {
  38114. height: math.unit(1.95, "feet"),
  38115. name: "Head",
  38116. image: {
  38117. source: "./media/characters/fox/head.svg"
  38118. }
  38119. },
  38120. dick: {
  38121. height: math.unit(1.33, "feet"),
  38122. name: "Dick",
  38123. image: {
  38124. source: "./media/characters/fox/dick.svg"
  38125. }
  38126. },
  38127. foot: {
  38128. height: math.unit(1, "feet"),
  38129. name: "Foot",
  38130. image: {
  38131. source: "./media/characters/fox/foot.svg"
  38132. }
  38133. },
  38134. paw: {
  38135. height: math.unit(0.92, "feet"),
  38136. name: "Paw",
  38137. image: {
  38138. source: "./media/characters/fox/paw.svg"
  38139. }
  38140. },
  38141. },
  38142. [
  38143. {
  38144. name: "Small",
  38145. height: math.unit(3, "inches")
  38146. },
  38147. {
  38148. name: "\"Realistic\"",
  38149. height: math.unit(7, "feet")
  38150. },
  38151. {
  38152. name: "Normal",
  38153. height: math.unit(150, "feet"),
  38154. default: true
  38155. },
  38156. {
  38157. name: "BIG",
  38158. height: math.unit(1200, "feet")
  38159. },
  38160. {
  38161. name: "👀",
  38162. height: math.unit(5, "miles")
  38163. },
  38164. {
  38165. name: "👀👀👀",
  38166. height: math.unit(64, "miles")
  38167. },
  38168. ]
  38169. ))
  38170. characterMakers.push(() => makeCharacter(
  38171. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38172. {
  38173. front: {
  38174. height: math.unit(625, "feet"),
  38175. name: "Front",
  38176. image: {
  38177. source: "./media/characters/asonja-rossa/front.svg",
  38178. extra: 1833/1686,
  38179. bottom: 24/1857
  38180. }
  38181. },
  38182. back: {
  38183. height: math.unit(625, "feet"),
  38184. name: "Back",
  38185. image: {
  38186. source: "./media/characters/asonja-rossa/back.svg",
  38187. extra: 1852/1753,
  38188. bottom: 26/1878
  38189. }
  38190. },
  38191. },
  38192. [
  38193. {
  38194. name: "Macro",
  38195. height: math.unit(625, "feet"),
  38196. default: true
  38197. },
  38198. ]
  38199. ))
  38200. characterMakers.push(() => makeCharacter(
  38201. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38202. {
  38203. side: {
  38204. height: math.unit(8, "feet"),
  38205. name: "Side",
  38206. image: {
  38207. source: "./media/characters/rezukii/side.svg",
  38208. extra: 979/542,
  38209. bottom: 87/1066
  38210. }
  38211. },
  38212. sitting: {
  38213. height: math.unit(14.6, "feet"),
  38214. name: "Sitting",
  38215. image: {
  38216. source: "./media/characters/rezukii/sitting.svg",
  38217. extra: 1023/813,
  38218. bottom: 45/1068
  38219. }
  38220. },
  38221. },
  38222. [
  38223. {
  38224. name: "Tiny",
  38225. height: math.unit(2, "feet")
  38226. },
  38227. {
  38228. name: "Smol",
  38229. height: math.unit(4, "feet")
  38230. },
  38231. {
  38232. name: "Normal",
  38233. height: math.unit(8, "feet"),
  38234. default: true
  38235. },
  38236. {
  38237. name: "Big",
  38238. height: math.unit(12, "feet")
  38239. },
  38240. {
  38241. name: "Macro",
  38242. height: math.unit(30, "feet")
  38243. },
  38244. ]
  38245. ))
  38246. characterMakers.push(() => makeCharacter(
  38247. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38248. {
  38249. front: {
  38250. height: math.unit(14, "feet"),
  38251. weight: math.unit(9.5, "tonnes"),
  38252. name: "Front",
  38253. image: {
  38254. source: "./media/characters/dawnheart/front.svg",
  38255. extra: 2792/2675,
  38256. bottom: 64/2856
  38257. }
  38258. },
  38259. },
  38260. [
  38261. {
  38262. name: "Normal",
  38263. height: math.unit(14, "feet"),
  38264. default: true
  38265. },
  38266. ]
  38267. ))
  38268. characterMakers.push(() => makeCharacter(
  38269. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38270. {
  38271. front: {
  38272. height: math.unit(1.7, "m"),
  38273. name: "Front",
  38274. image: {
  38275. source: "./media/characters/gladi/front.svg",
  38276. extra: 1460/1362,
  38277. bottom: 19/1479
  38278. }
  38279. },
  38280. back: {
  38281. height: math.unit(1.7, "m"),
  38282. name: "Back",
  38283. image: {
  38284. source: "./media/characters/gladi/back.svg",
  38285. extra: 1459/1357,
  38286. bottom: 12/1471
  38287. }
  38288. },
  38289. feral: {
  38290. height: math.unit(2.05, "m"),
  38291. name: "Feral",
  38292. image: {
  38293. source: "./media/characters/gladi/feral.svg",
  38294. extra: 821/557,
  38295. bottom: 91/912
  38296. }
  38297. },
  38298. },
  38299. [
  38300. {
  38301. name: "Shortest",
  38302. height: math.unit(70, "cm")
  38303. },
  38304. {
  38305. name: "Normal",
  38306. height: math.unit(1.7, "m")
  38307. },
  38308. {
  38309. name: "Macro",
  38310. height: math.unit(10, "m"),
  38311. default: true
  38312. },
  38313. {
  38314. name: "Tallest",
  38315. height: math.unit(200, "m")
  38316. },
  38317. ]
  38318. ))
  38319. characterMakers.push(() => makeCharacter(
  38320. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38321. {
  38322. front: {
  38323. height: math.unit(5 + 7/12, "feet"),
  38324. weight: math.unit(2, "tons"),
  38325. name: "Front",
  38326. image: {
  38327. source: "./media/characters/erdno/front.svg",
  38328. extra: 1234/1129,
  38329. bottom: 35/1269
  38330. }
  38331. },
  38332. angled: {
  38333. height: math.unit(5 + 7/12, "feet"),
  38334. weight: math.unit(2, "tons"),
  38335. name: "Angled",
  38336. image: {
  38337. source: "./media/characters/erdno/angled.svg",
  38338. extra: 1185/1139,
  38339. bottom: 36/1221
  38340. }
  38341. },
  38342. side: {
  38343. height: math.unit(5 + 7/12, "feet"),
  38344. weight: math.unit(2, "tons"),
  38345. name: "Side",
  38346. image: {
  38347. source: "./media/characters/erdno/side.svg",
  38348. extra: 1191/1144,
  38349. bottom: 40/1231
  38350. }
  38351. },
  38352. back: {
  38353. height: math.unit(5 + 7/12, "feet"),
  38354. weight: math.unit(2, "tons"),
  38355. name: "Back",
  38356. image: {
  38357. source: "./media/characters/erdno/back.svg",
  38358. extra: 1202/1146,
  38359. bottom: 17/1219
  38360. }
  38361. },
  38362. frontNsfw: {
  38363. height: math.unit(5 + 7/12, "feet"),
  38364. weight: math.unit(2, "tons"),
  38365. name: "Front (NSFW)",
  38366. image: {
  38367. source: "./media/characters/erdno/front-nsfw.svg",
  38368. extra: 1234/1129,
  38369. bottom: 35/1269
  38370. }
  38371. },
  38372. angledNsfw: {
  38373. height: math.unit(5 + 7/12, "feet"),
  38374. weight: math.unit(2, "tons"),
  38375. name: "Angled (NSFW)",
  38376. image: {
  38377. source: "./media/characters/erdno/angled-nsfw.svg",
  38378. extra: 1185/1139,
  38379. bottom: 36/1221
  38380. }
  38381. },
  38382. sideNsfw: {
  38383. height: math.unit(5 + 7/12, "feet"),
  38384. weight: math.unit(2, "tons"),
  38385. name: "Side (NSFW)",
  38386. image: {
  38387. source: "./media/characters/erdno/side-nsfw.svg",
  38388. extra: 1191/1144,
  38389. bottom: 40/1231
  38390. }
  38391. },
  38392. backNsfw: {
  38393. height: math.unit(5 + 7/12, "feet"),
  38394. weight: math.unit(2, "tons"),
  38395. name: "Back (NSFW)",
  38396. image: {
  38397. source: "./media/characters/erdno/back-nsfw.svg",
  38398. extra: 1202/1146,
  38399. bottom: 17/1219
  38400. }
  38401. },
  38402. frontHyper: {
  38403. height: math.unit(5 + 7/12, "feet"),
  38404. weight: math.unit(2, "tons"),
  38405. name: "Front (Hyper)",
  38406. image: {
  38407. source: "./media/characters/erdno/front-hyper.svg",
  38408. extra: 1298/1136,
  38409. bottom: 35/1333
  38410. }
  38411. },
  38412. },
  38413. [
  38414. {
  38415. name: "Normal",
  38416. height: math.unit(5 + 7/12, "feet"),
  38417. default: true
  38418. },
  38419. {
  38420. name: "Big",
  38421. height: math.unit(5.7, "meters")
  38422. },
  38423. {
  38424. name: "Macro",
  38425. height: math.unit(5.7, "kilometers")
  38426. },
  38427. {
  38428. name: "Megamacro",
  38429. height: math.unit(5.7, "earths")
  38430. },
  38431. ]
  38432. ))
  38433. characterMakers.push(() => makeCharacter(
  38434. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38435. {
  38436. front: {
  38437. height: math.unit(5 + 10/12, "feet"),
  38438. weight: math.unit(150, "lb"),
  38439. name: "Front",
  38440. image: {
  38441. source: "./media/characters/jamie/front.svg",
  38442. extra: 1908/1768,
  38443. bottom: 19/1927
  38444. }
  38445. },
  38446. },
  38447. [
  38448. {
  38449. name: "Minimum",
  38450. height: math.unit(2, "cm")
  38451. },
  38452. {
  38453. name: "Micro",
  38454. height: math.unit(3, "inches")
  38455. },
  38456. {
  38457. name: "Normal",
  38458. height: math.unit(5 + 10/12, "feet"),
  38459. default: true
  38460. },
  38461. {
  38462. name: "Macro",
  38463. height: math.unit(150, "feet")
  38464. },
  38465. {
  38466. name: "Megamacro",
  38467. height: math.unit(10000, "m")
  38468. },
  38469. ]
  38470. ))
  38471. characterMakers.push(() => makeCharacter(
  38472. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38473. {
  38474. front: {
  38475. height: math.unit(2, "meters"),
  38476. weight: math.unit(100, "kg"),
  38477. name: "Front",
  38478. image: {
  38479. source: "./media/characters/shiron/front.svg",
  38480. extra: 2103/1985,
  38481. bottom: 98/2201
  38482. }
  38483. },
  38484. back: {
  38485. height: math.unit(2, "meters"),
  38486. weight: math.unit(100, "kg"),
  38487. name: "Back",
  38488. image: {
  38489. source: "./media/characters/shiron/back.svg",
  38490. extra: 2110/2015,
  38491. bottom: 89/2199
  38492. }
  38493. },
  38494. hand: {
  38495. height: math.unit(0.96, "feet"),
  38496. name: "Hand",
  38497. image: {
  38498. source: "./media/characters/shiron/hand.svg"
  38499. }
  38500. },
  38501. foot: {
  38502. height: math.unit(1.464, "feet"),
  38503. name: "Foot",
  38504. image: {
  38505. source: "./media/characters/shiron/foot.svg"
  38506. }
  38507. },
  38508. },
  38509. [
  38510. {
  38511. name: "Normal",
  38512. height: math.unit(2, "meters")
  38513. },
  38514. {
  38515. name: "Macro",
  38516. height: math.unit(500, "meters"),
  38517. default: true
  38518. },
  38519. {
  38520. name: "Megamacro",
  38521. height: math.unit(20, "km")
  38522. },
  38523. ]
  38524. ))
  38525. characterMakers.push(() => makeCharacter(
  38526. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38527. {
  38528. front: {
  38529. height: math.unit(6, "feet"),
  38530. name: "Front",
  38531. image: {
  38532. source: "./media/characters/sam/front.svg",
  38533. extra: 849/826,
  38534. bottom: 19/868
  38535. }
  38536. },
  38537. },
  38538. [
  38539. {
  38540. name: "Normal",
  38541. height: math.unit(6, "feet"),
  38542. default: true
  38543. },
  38544. ]
  38545. ))
  38546. characterMakers.push(() => makeCharacter(
  38547. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38548. {
  38549. front: {
  38550. height: math.unit(8 + 4/12, "feet"),
  38551. weight: math.unit(122, "kg"),
  38552. name: "Front",
  38553. image: {
  38554. source: "./media/characters/namori-kurogawa/front.svg",
  38555. extra: 1894/1576,
  38556. bottom: 34/1928
  38557. }
  38558. },
  38559. },
  38560. [
  38561. {
  38562. name: "Normal",
  38563. height: math.unit(8 + 4/12, "feet"),
  38564. default: true
  38565. },
  38566. ]
  38567. ))
  38568. characterMakers.push(() => makeCharacter(
  38569. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38570. {
  38571. front: {
  38572. height: math.unit(9, "feet"),
  38573. weight: math.unit(621, "lb"),
  38574. name: "Front",
  38575. image: {
  38576. source: "./media/characters/unmru/front.svg",
  38577. extra: 1853/1747,
  38578. bottom: 73/1926
  38579. }
  38580. },
  38581. side: {
  38582. height: math.unit(9, "feet"),
  38583. weight: math.unit(621, "lb"),
  38584. name: "Side",
  38585. image: {
  38586. source: "./media/characters/unmru/side.svg",
  38587. extra: 1781/1671,
  38588. bottom: 127/1908
  38589. }
  38590. },
  38591. back: {
  38592. height: math.unit(9, "feet"),
  38593. weight: math.unit(621, "lb"),
  38594. name: "Back",
  38595. image: {
  38596. source: "./media/characters/unmru/back.svg",
  38597. extra: 1894/1765,
  38598. bottom: 75/1969
  38599. }
  38600. },
  38601. dick: {
  38602. height: math.unit(3, "feet"),
  38603. weight: math.unit(35, "lb"),
  38604. name: "Dick",
  38605. image: {
  38606. source: "./media/characters/unmru/dick.svg"
  38607. }
  38608. },
  38609. },
  38610. [
  38611. {
  38612. name: "Normal",
  38613. height: math.unit(9, "feet")
  38614. },
  38615. {
  38616. name: "Natural",
  38617. height: math.unit(27, "feet"),
  38618. default: true
  38619. },
  38620. {
  38621. name: "Giant",
  38622. height: math.unit(90, "feet")
  38623. },
  38624. {
  38625. name: "Kaiju",
  38626. height: math.unit(270, "feet")
  38627. },
  38628. {
  38629. name: "Macro",
  38630. height: math.unit(900, "feet")
  38631. },
  38632. {
  38633. name: "Macro+",
  38634. height: math.unit(2700, "feet")
  38635. },
  38636. {
  38637. name: "Megamacro",
  38638. height: math.unit(9000, "feet")
  38639. },
  38640. {
  38641. name: "City-Crushing",
  38642. height: math.unit(27000, "feet")
  38643. },
  38644. {
  38645. name: "Mountain-Mashing",
  38646. height: math.unit(90000, "feet")
  38647. },
  38648. {
  38649. name: "Earth-Eclipsing",
  38650. height: math.unit(2.7e8, "feet")
  38651. },
  38652. {
  38653. name: "Sol-Swallowing",
  38654. height: math.unit(9e10, "feet")
  38655. },
  38656. {
  38657. name: "Majoris-Munching",
  38658. height: math.unit(2.7e13, "feet")
  38659. },
  38660. ]
  38661. ))
  38662. characterMakers.push(() => makeCharacter(
  38663. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38664. {
  38665. front: {
  38666. height: math.unit(1, "inch"),
  38667. name: "Front",
  38668. image: {
  38669. source: "./media/characters/squeaks-mouse/front.svg",
  38670. extra: 352/308,
  38671. bottom: 25/377
  38672. }
  38673. },
  38674. },
  38675. [
  38676. {
  38677. name: "Micro",
  38678. height: math.unit(1, "inch"),
  38679. default: true
  38680. },
  38681. ]
  38682. ))
  38683. characterMakers.push(() => makeCharacter(
  38684. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38685. {
  38686. side: {
  38687. height: math.unit(35, "feet"),
  38688. name: "Side",
  38689. image: {
  38690. source: "./media/characters/sayko/side.svg",
  38691. extra: 1697/1021,
  38692. bottom: 82/1779
  38693. }
  38694. },
  38695. head: {
  38696. height: math.unit(16, "feet"),
  38697. name: "Head",
  38698. image: {
  38699. source: "./media/characters/sayko/head.svg"
  38700. }
  38701. },
  38702. forepaw: {
  38703. height: math.unit(7.85, "feet"),
  38704. name: "Forepaw",
  38705. image: {
  38706. source: "./media/characters/sayko/forepaw.svg"
  38707. }
  38708. },
  38709. hindpaw: {
  38710. height: math.unit(8.8, "feet"),
  38711. name: "Hindpaw",
  38712. image: {
  38713. source: "./media/characters/sayko/hindpaw.svg"
  38714. }
  38715. },
  38716. },
  38717. [
  38718. {
  38719. name: "Normal",
  38720. height: math.unit(35, "feet"),
  38721. default: true
  38722. },
  38723. {
  38724. name: "Colossus",
  38725. height: math.unit(100, "meters")
  38726. },
  38727. {
  38728. name: "\"Small\" Deity",
  38729. height: math.unit(1, "km")
  38730. },
  38731. {
  38732. name: "\"Large\" Deity",
  38733. height: math.unit(15, "km")
  38734. },
  38735. ]
  38736. ))
  38737. characterMakers.push(() => makeCharacter(
  38738. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38739. {
  38740. front: {
  38741. height: math.unit(6, "feet"),
  38742. weight: math.unit(250, "lb"),
  38743. name: "Front",
  38744. image: {
  38745. source: "./media/characters/mukiro/front.svg",
  38746. extra: 1368/1310,
  38747. bottom: 34/1402
  38748. }
  38749. },
  38750. },
  38751. [
  38752. {
  38753. name: "Normal",
  38754. height: math.unit(6, "feet"),
  38755. default: true
  38756. },
  38757. ]
  38758. ))
  38759. characterMakers.push(() => makeCharacter(
  38760. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38761. {
  38762. front: {
  38763. height: math.unit(12 + 4/12, "feet"),
  38764. name: "Front",
  38765. image: {
  38766. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38767. extra: 1346/1311,
  38768. bottom: 65/1411
  38769. }
  38770. },
  38771. },
  38772. [
  38773. {
  38774. name: "Base",
  38775. height: math.unit(12 + 4/12, "feet"),
  38776. default: true
  38777. },
  38778. {
  38779. name: "Macro",
  38780. height: math.unit(150, "feet")
  38781. },
  38782. {
  38783. name: "Mega",
  38784. height: math.unit(2, "miles")
  38785. },
  38786. {
  38787. name: "Demi God",
  38788. height: math.unit(4, "AU")
  38789. },
  38790. {
  38791. name: "God Size",
  38792. height: math.unit(1, "universe")
  38793. },
  38794. ]
  38795. ))
  38796. characterMakers.push(() => makeCharacter(
  38797. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38798. {
  38799. front: {
  38800. height: math.unit(3 + 3/12, "feet"),
  38801. weight: math.unit(88, "lb"),
  38802. name: "Front",
  38803. image: {
  38804. source: "./media/characters/trey/front.svg",
  38805. extra: 1815/1509,
  38806. bottom: 60/1875
  38807. }
  38808. },
  38809. },
  38810. [
  38811. {
  38812. name: "Normal",
  38813. height: math.unit(3 + 3/12, "feet"),
  38814. default: true
  38815. },
  38816. ]
  38817. ))
  38818. characterMakers.push(() => makeCharacter(
  38819. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38820. {
  38821. front: {
  38822. height: math.unit(4, "meters"),
  38823. name: "Front",
  38824. image: {
  38825. source: "./media/characters/adelonda/front.svg",
  38826. extra: 1077/982,
  38827. bottom: 39/1116
  38828. }
  38829. },
  38830. back: {
  38831. height: math.unit(4, "meters"),
  38832. name: "Back",
  38833. image: {
  38834. source: "./media/characters/adelonda/back.svg",
  38835. extra: 1105/1003,
  38836. bottom: 25/1130
  38837. }
  38838. },
  38839. feral: {
  38840. height: math.unit(40/1.5, "meters"),
  38841. name: "Feral",
  38842. image: {
  38843. source: "./media/characters/adelonda/feral.svg",
  38844. extra: 597/271,
  38845. bottom: 387/984
  38846. }
  38847. },
  38848. },
  38849. [
  38850. {
  38851. name: "Normal",
  38852. height: math.unit(4, "meters"),
  38853. default: true
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38859. {
  38860. front: {
  38861. height: math.unit(8 + 4/12, "feet"),
  38862. weight: math.unit(670, "lb"),
  38863. name: "Front",
  38864. image: {
  38865. source: "./media/characters/acadiel/front.svg",
  38866. extra: 1901/1595,
  38867. bottom: 142/2043
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Normal",
  38874. height: math.unit(8 + 4/12, "feet"),
  38875. default: true
  38876. },
  38877. {
  38878. name: "Macro",
  38879. height: math.unit(200, "feet")
  38880. },
  38881. ]
  38882. ))
  38883. characterMakers.push(() => makeCharacter(
  38884. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38885. {
  38886. front: {
  38887. height: math.unit(6 + 2/12, "feet"),
  38888. weight: math.unit(185, "lb"),
  38889. name: "Front",
  38890. image: {
  38891. source: "./media/characters/kayne-ein/front.svg",
  38892. extra: 1780/1560,
  38893. bottom: 81/1861
  38894. }
  38895. },
  38896. },
  38897. [
  38898. {
  38899. name: "Normal",
  38900. height: math.unit(6 + 2/12, "feet"),
  38901. default: true
  38902. },
  38903. {
  38904. name: "Transformation Stage",
  38905. height: math.unit(15, "feet")
  38906. },
  38907. {
  38908. name: "Macro",
  38909. height: math.unit(150, "feet")
  38910. },
  38911. {
  38912. name: "Earth's Shadow",
  38913. height: math.unit(6200, "miles")
  38914. },
  38915. {
  38916. name: "Universal Demon",
  38917. height: math.unit(28e9, "parsecs")
  38918. },
  38919. {
  38920. name: "Multiverse God",
  38921. height: math.unit(3, "multiverses")
  38922. },
  38923. ]
  38924. ))
  38925. characterMakers.push(() => makeCharacter(
  38926. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38927. {
  38928. front: {
  38929. height: math.unit(5 + 5/12, "feet"),
  38930. name: "Front",
  38931. image: {
  38932. source: "./media/characters/fawn/front.svg",
  38933. extra: 1873/1731,
  38934. bottom: 95/1968
  38935. }
  38936. },
  38937. back: {
  38938. height: math.unit(5 + 5/12, "feet"),
  38939. name: "Back",
  38940. image: {
  38941. source: "./media/characters/fawn/back.svg",
  38942. extra: 1813/1700,
  38943. bottom: 14/1827
  38944. }
  38945. },
  38946. hoof: {
  38947. height: math.unit(1.45, "feet"),
  38948. name: "Hoof",
  38949. image: {
  38950. source: "./media/characters/fawn/hoof.svg"
  38951. }
  38952. },
  38953. },
  38954. [
  38955. {
  38956. name: "Normal",
  38957. height: math.unit(5 + 5/12, "feet"),
  38958. default: true
  38959. },
  38960. ]
  38961. ))
  38962. characterMakers.push(() => makeCharacter(
  38963. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38964. {
  38965. front: {
  38966. height: math.unit(2 + 5/12, "feet"),
  38967. name: "Front",
  38968. image: {
  38969. source: "./media/characters/orion/front.svg",
  38970. extra: 1366/1304,
  38971. bottom: 43/1409
  38972. }
  38973. },
  38974. paw: {
  38975. height: math.unit(0.52, "feet"),
  38976. name: "Paw",
  38977. image: {
  38978. source: "./media/characters/orion/paw.svg"
  38979. }
  38980. },
  38981. },
  38982. [
  38983. {
  38984. name: "Normal",
  38985. height: math.unit(2 + 5/12, "feet"),
  38986. default: true
  38987. },
  38988. ]
  38989. ))
  38990. characterMakers.push(() => makeCharacter(
  38991. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38992. {
  38993. front: {
  38994. height: math.unit(5 + 10/12, "feet"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/vera/front.svg",
  38998. extra: 1680/1575,
  38999. bottom: 49/1729
  39000. }
  39001. },
  39002. back: {
  39003. height: math.unit(5 + 10/12, "feet"),
  39004. name: "Back",
  39005. image: {
  39006. source: "./media/characters/vera/back.svg",
  39007. extra: 1700/1588,
  39008. bottom: 18/1718
  39009. }
  39010. },
  39011. arcanine: {
  39012. height: math.unit(6 + 8/12, "feet"),
  39013. name: "Arcanine",
  39014. image: {
  39015. source: "./media/characters/vera/arcanine.svg",
  39016. extra: 1590/1511,
  39017. bottom: 71/1661
  39018. }
  39019. },
  39020. maw: {
  39021. height: math.unit(0.82, "feet"),
  39022. name: "Maw",
  39023. image: {
  39024. source: "./media/characters/vera/maw.svg"
  39025. }
  39026. },
  39027. mawArcanine: {
  39028. height: math.unit(0.97, "feet"),
  39029. name: "Maw (Arcanine)",
  39030. image: {
  39031. source: "./media/characters/vera/maw-arcanine.svg"
  39032. }
  39033. },
  39034. paw: {
  39035. height: math.unit(0.75, "feet"),
  39036. name: "Paw",
  39037. image: {
  39038. source: "./media/characters/vera/paw.svg"
  39039. }
  39040. },
  39041. pawprint: {
  39042. height: math.unit(0.52, "feet"),
  39043. name: "Pawprint",
  39044. image: {
  39045. source: "./media/characters/vera/pawprint.svg"
  39046. }
  39047. },
  39048. },
  39049. [
  39050. {
  39051. name: "Normal",
  39052. height: math.unit(5 + 10/12, "feet"),
  39053. default: true
  39054. },
  39055. {
  39056. name: "Macro",
  39057. height: math.unit(75, "feet")
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39063. {
  39064. front: {
  39065. height: math.unit(4, "feet"),
  39066. weight: math.unit(40, "lb"),
  39067. name: "Front",
  39068. image: {
  39069. source: "./media/characters/orvan-rabbit/front.svg",
  39070. extra: 1896/1642,
  39071. bottom: 29/1925
  39072. }
  39073. },
  39074. },
  39075. [
  39076. {
  39077. name: "Normal",
  39078. height: math.unit(4, "feet"),
  39079. default: true
  39080. },
  39081. ]
  39082. ))
  39083. characterMakers.push(() => makeCharacter(
  39084. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39085. {
  39086. front: {
  39087. height: math.unit(6, "feet"),
  39088. weight: math.unit(168, "lb"),
  39089. name: "Front",
  39090. image: {
  39091. source: "./media/characters/lisa/front.svg",
  39092. extra: 2065/1867,
  39093. bottom: 46/2111
  39094. }
  39095. },
  39096. back: {
  39097. height: math.unit(6, "feet"),
  39098. weight: math.unit(168, "lb"),
  39099. name: "Back",
  39100. image: {
  39101. source: "./media/characters/lisa/back.svg",
  39102. extra: 1982/1838,
  39103. bottom: 29/2011
  39104. }
  39105. },
  39106. maw: {
  39107. height: math.unit(0.81, "feet"),
  39108. name: "Maw",
  39109. image: {
  39110. source: "./media/characters/lisa/maw.svg"
  39111. }
  39112. },
  39113. paw: {
  39114. height: math.unit(0.9, "feet"),
  39115. name: "Paw",
  39116. image: {
  39117. source: "./media/characters/lisa/paw.svg"
  39118. }
  39119. },
  39120. caribousune: {
  39121. height: math.unit(7 + 2/12, "feet"),
  39122. weight: math.unit(268, "lb"),
  39123. name: "Caribousune",
  39124. image: {
  39125. source: "./media/characters/lisa/caribousune.svg",
  39126. extra: 1843/1633,
  39127. bottom: 29/1872
  39128. }
  39129. },
  39130. frontCaribousune: {
  39131. height: math.unit(7 + 2/12, "feet"),
  39132. weight: math.unit(268, "lb"),
  39133. name: "Front (Caribousune)",
  39134. image: {
  39135. source: "./media/characters/lisa/front-caribousune.svg",
  39136. extra: 1818/1638,
  39137. bottom: 52/1870
  39138. }
  39139. },
  39140. sideCaribousune: {
  39141. height: math.unit(7 + 2/12, "feet"),
  39142. weight: math.unit(268, "lb"),
  39143. name: "Side (Caribousune)",
  39144. image: {
  39145. source: "./media/characters/lisa/side-caribousune.svg",
  39146. extra: 1851/1635,
  39147. bottom: 16/1867
  39148. }
  39149. },
  39150. backCaribousune: {
  39151. height: math.unit(7 + 2/12, "feet"),
  39152. weight: math.unit(268, "lb"),
  39153. name: "Back (Caribousune)",
  39154. image: {
  39155. source: "./media/characters/lisa/back-caribousune.svg",
  39156. extra: 1801/1604,
  39157. bottom: 44/1845
  39158. }
  39159. },
  39160. caribou: {
  39161. height: math.unit(7 + 2/12, "feet"),
  39162. weight: math.unit(268, "lb"),
  39163. name: "Caribou",
  39164. image: {
  39165. source: "./media/characters/lisa/caribou.svg",
  39166. extra: 1843/1633,
  39167. bottom: 29/1872
  39168. }
  39169. },
  39170. frontCaribou: {
  39171. height: math.unit(7 + 2/12, "feet"),
  39172. weight: math.unit(268, "lb"),
  39173. name: "Front (Caribou)",
  39174. image: {
  39175. source: "./media/characters/lisa/front-caribou.svg",
  39176. extra: 1818/1638,
  39177. bottom: 52/1870
  39178. }
  39179. },
  39180. sideCaribou: {
  39181. height: math.unit(7 + 2/12, "feet"),
  39182. weight: math.unit(268, "lb"),
  39183. name: "Side (Caribou)",
  39184. image: {
  39185. source: "./media/characters/lisa/side-caribou.svg",
  39186. extra: 1851/1635,
  39187. bottom: 16/1867
  39188. }
  39189. },
  39190. backCaribou: {
  39191. height: math.unit(7 + 2/12, "feet"),
  39192. weight: math.unit(268, "lb"),
  39193. name: "Back (Caribou)",
  39194. image: {
  39195. source: "./media/characters/lisa/back-caribou.svg",
  39196. extra: 1801/1604,
  39197. bottom: 44/1845
  39198. }
  39199. },
  39200. mawCaribou: {
  39201. height: math.unit(1.45, "feet"),
  39202. name: "Maw (Caribou)",
  39203. image: {
  39204. source: "./media/characters/lisa/maw-caribou.svg"
  39205. }
  39206. },
  39207. mawCaribousune: {
  39208. height: math.unit(1.45, "feet"),
  39209. name: "Maw (Caribousune)",
  39210. image: {
  39211. source: "./media/characters/lisa/maw-caribousune.svg"
  39212. }
  39213. },
  39214. pawCaribousune: {
  39215. height: math.unit(1.61, "feet"),
  39216. name: "Paw (Caribou)",
  39217. image: {
  39218. source: "./media/characters/lisa/paw-caribousune.svg"
  39219. }
  39220. },
  39221. },
  39222. [
  39223. {
  39224. name: "Normal",
  39225. height: math.unit(6, "feet")
  39226. },
  39227. {
  39228. name: "God Size",
  39229. height: math.unit(72, "feet"),
  39230. default: true
  39231. },
  39232. {
  39233. name: "Towering",
  39234. height: math.unit(288, "feet")
  39235. },
  39236. {
  39237. name: "City Size",
  39238. height: math.unit(48384, "feet")
  39239. },
  39240. {
  39241. name: "Continental",
  39242. height: math.unit(4200, "miles")
  39243. },
  39244. {
  39245. name: "Planet Eater",
  39246. height: math.unit(42, "earths")
  39247. },
  39248. {
  39249. name: "Star Swallower",
  39250. height: math.unit(42, "solarradii")
  39251. },
  39252. {
  39253. name: "System Swallower",
  39254. height: math.unit(84000, "AU")
  39255. },
  39256. {
  39257. name: "Galaxy Gobbler",
  39258. height: math.unit(42, "galaxies")
  39259. },
  39260. {
  39261. name: "Universe Devourer",
  39262. height: math.unit(42, "universes")
  39263. },
  39264. {
  39265. name: "Multiverse Muncher",
  39266. height: math.unit(42, "multiverses")
  39267. },
  39268. ]
  39269. ))
  39270. characterMakers.push(() => makeCharacter(
  39271. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39272. {
  39273. front: {
  39274. height: math.unit(36, "feet"),
  39275. name: "Front",
  39276. image: {
  39277. source: "./media/characters/shadow-rat/front.svg",
  39278. extra: 1845/1758,
  39279. bottom: 83/1928
  39280. }
  39281. },
  39282. },
  39283. [
  39284. {
  39285. name: "Macro",
  39286. height: math.unit(36, "feet"),
  39287. default: true
  39288. },
  39289. ]
  39290. ))
  39291. characterMakers.push(() => makeCharacter(
  39292. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39293. {
  39294. side: {
  39295. height: math.unit(8, "feet"),
  39296. weight: math.unit(2630, "lb"),
  39297. name: "Side",
  39298. image: {
  39299. source: "./media/characters/torallia/side.svg",
  39300. extra: 2164/2021,
  39301. bottom: 371/2535
  39302. }
  39303. },
  39304. },
  39305. [
  39306. {
  39307. name: "Mortal Interaction",
  39308. height: math.unit(8, "feet")
  39309. },
  39310. {
  39311. name: "Natural",
  39312. height: math.unit(24, "feet"),
  39313. default: true
  39314. },
  39315. {
  39316. name: "Giant",
  39317. height: math.unit(80, "feet")
  39318. },
  39319. {
  39320. name: "Kaiju",
  39321. height: math.unit(240, "feet")
  39322. },
  39323. {
  39324. name: "Macro",
  39325. height: math.unit(800, "feet")
  39326. },
  39327. {
  39328. name: "Macro+",
  39329. height: math.unit(2400, "feet")
  39330. },
  39331. {
  39332. name: "Macro++",
  39333. height: math.unit(8000, "feet")
  39334. },
  39335. {
  39336. name: "City-Crushing",
  39337. height: math.unit(24000, "feet")
  39338. },
  39339. {
  39340. name: "Mountain-Mashing",
  39341. height: math.unit(80000, "feet")
  39342. },
  39343. {
  39344. name: "District Demolisher",
  39345. height: math.unit(240000, "feet")
  39346. },
  39347. {
  39348. name: "Tri-County Terror",
  39349. height: math.unit(800000, "feet")
  39350. },
  39351. {
  39352. name: "State Smasher",
  39353. height: math.unit(2.4e6, "feet")
  39354. },
  39355. {
  39356. name: "Nation Nemesis",
  39357. height: math.unit(8e6, "feet")
  39358. },
  39359. {
  39360. name: "Continent Cracker",
  39361. height: math.unit(2.4e7, "feet")
  39362. },
  39363. {
  39364. name: "Planet-Pillaging",
  39365. height: math.unit(8e7, "feet")
  39366. },
  39367. {
  39368. name: "Earth-Eclipsing",
  39369. height: math.unit(2.4e8, "feet")
  39370. },
  39371. {
  39372. name: "Jovian-Jostling",
  39373. height: math.unit(8e8, "feet")
  39374. },
  39375. {
  39376. name: "Gas Giant Gulper",
  39377. height: math.unit(2.4e9, "feet")
  39378. },
  39379. {
  39380. name: "Astral Annihilator",
  39381. height: math.unit(8e9, "feet")
  39382. },
  39383. {
  39384. name: "Celestial Conqueror",
  39385. height: math.unit(2.4e10, "feet")
  39386. },
  39387. {
  39388. name: "Sol-Swallowing",
  39389. height: math.unit(8e10, "feet")
  39390. },
  39391. {
  39392. name: "Hunter of the Heavens",
  39393. height: math.unit(2.4e13, "feet")
  39394. },
  39395. ]
  39396. ))
  39397. characterMakers.push(() => makeCharacter(
  39398. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39399. {
  39400. front: {
  39401. height: math.unit(6 + 8/12, "feet"),
  39402. name: "Front",
  39403. image: {
  39404. source: "./media/characters/rebecca-pawlson/front.svg",
  39405. extra: 1737/1596,
  39406. bottom: 107/1844
  39407. }
  39408. },
  39409. back: {
  39410. height: math.unit(6 + 8/12, "feet"),
  39411. name: "Back",
  39412. image: {
  39413. source: "./media/characters/rebecca-pawlson/back.svg",
  39414. extra: 1702/1523,
  39415. bottom: 86/1788
  39416. }
  39417. },
  39418. },
  39419. [
  39420. {
  39421. name: "Normal",
  39422. height: math.unit(6 + 8/12, "feet")
  39423. },
  39424. {
  39425. name: "Mini Macro",
  39426. height: math.unit(10, "feet"),
  39427. default: true
  39428. },
  39429. {
  39430. name: "Macro",
  39431. height: math.unit(100, "feet")
  39432. },
  39433. {
  39434. name: "Mega Macro",
  39435. height: math.unit(2500, "feet")
  39436. },
  39437. {
  39438. name: "Giga Macro",
  39439. height: math.unit(50, "miles")
  39440. },
  39441. ]
  39442. ))
  39443. characterMakers.push(() => makeCharacter(
  39444. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39445. {
  39446. front: {
  39447. height: math.unit(7 + 6/12, "feet"),
  39448. weight: math.unit(600, "lb"),
  39449. name: "Front",
  39450. image: {
  39451. source: "./media/characters/moxie-nova/front.svg",
  39452. extra: 1734/1652,
  39453. bottom: 41/1775
  39454. }
  39455. },
  39456. },
  39457. [
  39458. {
  39459. name: "Normal",
  39460. height: math.unit(7 + 6/12, "feet"),
  39461. default: true
  39462. },
  39463. ]
  39464. ))
  39465. characterMakers.push(() => makeCharacter(
  39466. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39467. {
  39468. goat: {
  39469. height: math.unit(4, "feet"),
  39470. weight: math.unit(180, "lb"),
  39471. name: "Goat",
  39472. image: {
  39473. source: "./media/characters/tiffany/goat.svg",
  39474. extra: 1845/1595,
  39475. bottom: 106/1951
  39476. }
  39477. },
  39478. front: {
  39479. height: math.unit(5, "feet"),
  39480. weight: math.unit(150, "lb"),
  39481. name: "Foxcoon",
  39482. image: {
  39483. source: "./media/characters/tiffany/foxcoon.svg",
  39484. extra: 1941/1845,
  39485. bottom: 58/1999
  39486. }
  39487. },
  39488. },
  39489. [
  39490. {
  39491. name: "Normal",
  39492. height: math.unit(5, "feet"),
  39493. default: true
  39494. },
  39495. ]
  39496. ))
  39497. characterMakers.push(() => makeCharacter(
  39498. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39499. {
  39500. front: {
  39501. height: math.unit(8, "feet"),
  39502. weight: math.unit(300, "lb"),
  39503. name: "Front",
  39504. image: {
  39505. source: "./media/characters/raxinath/front.svg",
  39506. extra: 1407/1309,
  39507. bottom: 39/1446
  39508. }
  39509. },
  39510. back: {
  39511. height: math.unit(8, "feet"),
  39512. weight: math.unit(300, "lb"),
  39513. name: "Back",
  39514. image: {
  39515. source: "./media/characters/raxinath/back.svg",
  39516. extra: 1405/1315,
  39517. bottom: 9/1414
  39518. }
  39519. },
  39520. },
  39521. [
  39522. {
  39523. name: "Speck",
  39524. height: math.unit(0.5, "nm")
  39525. },
  39526. {
  39527. name: "Micro",
  39528. height: math.unit(3, "inches")
  39529. },
  39530. {
  39531. name: "Kobold",
  39532. height: math.unit(3, "feet")
  39533. },
  39534. {
  39535. name: "Normal",
  39536. height: math.unit(8, "feet"),
  39537. default: true
  39538. },
  39539. {
  39540. name: "Giant",
  39541. height: math.unit(50, "feet")
  39542. },
  39543. {
  39544. name: "Macro",
  39545. height: math.unit(1000, "feet")
  39546. },
  39547. {
  39548. name: "Megamacro",
  39549. height: math.unit(1, "mile")
  39550. },
  39551. ]
  39552. ))
  39553. characterMakers.push(() => makeCharacter(
  39554. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39555. {
  39556. front: {
  39557. height: math.unit(10, "feet"),
  39558. weight: math.unit(1442, "lb"),
  39559. name: "Front",
  39560. image: {
  39561. source: "./media/characters/mal-dragon/front.svg",
  39562. extra: 1515/1444,
  39563. bottom: 113/1628
  39564. }
  39565. },
  39566. back: {
  39567. height: math.unit(10, "feet"),
  39568. weight: math.unit(1442, "lb"),
  39569. name: "Back",
  39570. image: {
  39571. source: "./media/characters/mal-dragon/back.svg",
  39572. extra: 1527/1434,
  39573. bottom: 25/1552
  39574. }
  39575. },
  39576. },
  39577. [
  39578. {
  39579. name: "Mortal Interaction",
  39580. height: math.unit(10, "feet"),
  39581. default: true
  39582. },
  39583. {
  39584. name: "Large",
  39585. height: math.unit(30, "feet")
  39586. },
  39587. {
  39588. name: "Kaiju",
  39589. height: math.unit(300, "feet")
  39590. },
  39591. {
  39592. name: "Megamacro",
  39593. height: math.unit(10000, "feet")
  39594. },
  39595. {
  39596. name: "Continent Cracker",
  39597. height: math.unit(30000000, "feet")
  39598. },
  39599. {
  39600. name: "Sol-Swallowing",
  39601. height: math.unit(1e11, "feet")
  39602. },
  39603. {
  39604. name: "Light Universal",
  39605. height: math.unit(5, "universes")
  39606. },
  39607. {
  39608. name: "Universe Atoms",
  39609. height: math.unit(1.829e9, "universes")
  39610. },
  39611. {
  39612. name: "Light Multiversal",
  39613. height: math.unit(5, "multiverses")
  39614. },
  39615. {
  39616. name: "Multiverse Atoms",
  39617. height: math.unit(1.829e9, "multiverses")
  39618. },
  39619. {
  39620. name: "Fabric of Time",
  39621. height: math.unit(1e262, "multiverses")
  39622. },
  39623. ]
  39624. ))
  39625. characterMakers.push(() => makeCharacter(
  39626. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39627. {
  39628. front: {
  39629. height: math.unit(9, "feet"),
  39630. weight: math.unit(1050, "lb"),
  39631. name: "Front",
  39632. image: {
  39633. source: "./media/characters/tabitha/front.svg",
  39634. extra: 2083/1994,
  39635. bottom: 68/2151
  39636. }
  39637. },
  39638. },
  39639. [
  39640. {
  39641. name: "Baseline",
  39642. height: math.unit(9, "feet"),
  39643. default: true
  39644. },
  39645. {
  39646. name: "Giant",
  39647. height: math.unit(90, "feet")
  39648. },
  39649. {
  39650. name: "Macro",
  39651. height: math.unit(900, "feet")
  39652. },
  39653. {
  39654. name: "Megamacro",
  39655. height: math.unit(9000, "feet")
  39656. },
  39657. {
  39658. name: "City-Crushing",
  39659. height: math.unit(27000, "feet")
  39660. },
  39661. {
  39662. name: "Mountain-Mashing",
  39663. height: math.unit(90000, "feet")
  39664. },
  39665. {
  39666. name: "Nation Nemesis",
  39667. height: math.unit(9e6, "feet")
  39668. },
  39669. {
  39670. name: "Continent Cracker",
  39671. height: math.unit(27e6, "feet")
  39672. },
  39673. {
  39674. name: "Earth-Eclipsing",
  39675. height: math.unit(2.7e8, "feet")
  39676. },
  39677. {
  39678. name: "Gas Giant Gulper",
  39679. height: math.unit(2.7e9, "feet")
  39680. },
  39681. {
  39682. name: "Sol-Swallowing",
  39683. height: math.unit(9e10, "feet")
  39684. },
  39685. {
  39686. name: "Galaxy Gulper",
  39687. height: math.unit(9, "galaxies")
  39688. },
  39689. {
  39690. name: "Cosmos Churner",
  39691. height: math.unit(9, "universes")
  39692. },
  39693. ]
  39694. ))
  39695. characterMakers.push(() => makeCharacter(
  39696. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39697. {
  39698. front: {
  39699. height: math.unit(160, "cm"),
  39700. weight: math.unit(55, "kg"),
  39701. name: "Front",
  39702. image: {
  39703. source: "./media/characters/tow/front.svg",
  39704. extra: 1751/1722,
  39705. bottom: 74/1825
  39706. }
  39707. },
  39708. },
  39709. [
  39710. {
  39711. name: "Norm",
  39712. height: math.unit(160, "cm")
  39713. },
  39714. {
  39715. name: "Casual",
  39716. height: math.unit(3200, "m"),
  39717. default: true
  39718. },
  39719. {
  39720. name: "Show-Off",
  39721. height: math.unit(160, "km")
  39722. },
  39723. ]
  39724. ))
  39725. characterMakers.push(() => makeCharacter(
  39726. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39727. {
  39728. front: {
  39729. height: math.unit(7 + 11/12, "feet"),
  39730. weight: math.unit(342.8, "lb"),
  39731. name: "Front",
  39732. image: {
  39733. source: "./media/characters/vivian-orca-dragon/front.svg",
  39734. extra: 1890/1865,
  39735. bottom: 28/1918
  39736. }
  39737. },
  39738. },
  39739. [
  39740. {
  39741. name: "Micro",
  39742. height: math.unit(5, "inches")
  39743. },
  39744. {
  39745. name: "Normal",
  39746. height: math.unit(7 + 11/12, "feet"),
  39747. default: true
  39748. },
  39749. {
  39750. name: "Macro",
  39751. height: math.unit(395 + 7/12, "feet")
  39752. },
  39753. ]
  39754. ))
  39755. characterMakers.push(() => makeCharacter(
  39756. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39757. {
  39758. side: {
  39759. height: math.unit(10, "feet"),
  39760. weight: math.unit(1442, "lb"),
  39761. name: "Side",
  39762. image: {
  39763. source: "./media/characters/lotherakon/side.svg",
  39764. extra: 1604/1497,
  39765. bottom: 89/1693
  39766. }
  39767. },
  39768. },
  39769. [
  39770. {
  39771. name: "Mortal Interaction",
  39772. height: math.unit(10, "feet")
  39773. },
  39774. {
  39775. name: "Large",
  39776. height: math.unit(30, "feet"),
  39777. default: true
  39778. },
  39779. {
  39780. name: "Giant",
  39781. height: math.unit(100, "feet")
  39782. },
  39783. {
  39784. name: "Kaiju",
  39785. height: math.unit(300, "feet")
  39786. },
  39787. {
  39788. name: "Macro",
  39789. height: math.unit(1000, "feet")
  39790. },
  39791. {
  39792. name: "Macro+",
  39793. height: math.unit(3000, "feet")
  39794. },
  39795. {
  39796. name: "Megamacro",
  39797. height: math.unit(10000, "feet")
  39798. },
  39799. {
  39800. name: "City-Crushing",
  39801. height: math.unit(30000, "feet")
  39802. },
  39803. {
  39804. name: "Continent Cracker",
  39805. height: math.unit(30e6, "feet")
  39806. },
  39807. {
  39808. name: "Earth Eclipsing",
  39809. height: math.unit(3e8, "feet")
  39810. },
  39811. {
  39812. name: "Gas Giant Gulper",
  39813. height: math.unit(3e9, "feet")
  39814. },
  39815. {
  39816. name: "Sol-Swallowing",
  39817. height: math.unit(1e11, "feet")
  39818. },
  39819. {
  39820. name: "System Swallower",
  39821. height: math.unit(3e14, "feet")
  39822. },
  39823. {
  39824. name: "Galaxy Gulper",
  39825. height: math.unit(10, "galaxies")
  39826. },
  39827. {
  39828. name: "Light Universal",
  39829. height: math.unit(5, "universes")
  39830. },
  39831. {
  39832. name: "Universe Palm",
  39833. height: math.unit(20, "universes")
  39834. },
  39835. {
  39836. name: "Light Multiversal",
  39837. height: math.unit(5, "multiverses")
  39838. },
  39839. {
  39840. name: "Multiverse Palm",
  39841. height: math.unit(20, "multiverses")
  39842. },
  39843. {
  39844. name: "Inferno Incarnate",
  39845. height: math.unit(1e7, "multiverses")
  39846. },
  39847. ]
  39848. ))
  39849. characterMakers.push(() => makeCharacter(
  39850. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39851. {
  39852. front: {
  39853. height: math.unit(8, "feet"),
  39854. weight: math.unit(1200, "lb"),
  39855. name: "Front",
  39856. image: {
  39857. source: "./media/characters/malithee/front.svg",
  39858. extra: 1675/1640,
  39859. bottom: 162/1837
  39860. }
  39861. },
  39862. },
  39863. [
  39864. {
  39865. name: "Mortal Interaction",
  39866. height: math.unit(8, "feet"),
  39867. default: true
  39868. },
  39869. {
  39870. name: "Large",
  39871. height: math.unit(24, "feet")
  39872. },
  39873. {
  39874. name: "Kaiju",
  39875. height: math.unit(240, "feet")
  39876. },
  39877. {
  39878. name: "Megamacro",
  39879. height: math.unit(8000, "feet")
  39880. },
  39881. {
  39882. name: "Continent Cracker",
  39883. height: math.unit(24e6, "feet")
  39884. },
  39885. {
  39886. name: "Earth-Eclipsing",
  39887. height: math.unit(2.4e8, "feet")
  39888. },
  39889. {
  39890. name: "Sol-Swallowing",
  39891. height: math.unit(8e10, "feet")
  39892. },
  39893. {
  39894. name: "Galaxy Gulper",
  39895. height: math.unit(8, "galaxies")
  39896. },
  39897. {
  39898. name: "Light Universal",
  39899. height: math.unit(4, "universes")
  39900. },
  39901. {
  39902. name: "Universe Atoms",
  39903. height: math.unit(1.829e9, "universes")
  39904. },
  39905. {
  39906. name: "Light Multiversal",
  39907. height: math.unit(4, "multiverses")
  39908. },
  39909. {
  39910. name: "Multiverse Atoms",
  39911. height: math.unit(1.829e9, "multiverses")
  39912. },
  39913. {
  39914. name: "Nigh-Omnipresence",
  39915. height: math.unit(8e261, "multiverses")
  39916. },
  39917. ]
  39918. ))
  39919. characterMakers.push(() => makeCharacter(
  39920. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39921. {
  39922. front: {
  39923. height: math.unit(10, "feet"),
  39924. weight: math.unit(1500, "lb"),
  39925. name: "Front",
  39926. image: {
  39927. source: "./media/characters/miles-thestia/front.svg",
  39928. extra: 1812/1727,
  39929. bottom: 86/1898
  39930. }
  39931. },
  39932. back: {
  39933. height: math.unit(10, "feet"),
  39934. weight: math.unit(1500, "lb"),
  39935. name: "Back",
  39936. image: {
  39937. source: "./media/characters/miles-thestia/back.svg",
  39938. extra: 1799/1690,
  39939. bottom: 47/1846
  39940. }
  39941. },
  39942. frontNsfw: {
  39943. height: math.unit(10, "feet"),
  39944. weight: math.unit(1500, "lb"),
  39945. name: "Front (NSFW)",
  39946. image: {
  39947. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39948. extra: 1812/1727,
  39949. bottom: 86/1898
  39950. }
  39951. },
  39952. },
  39953. [
  39954. {
  39955. name: "Mini-Macro",
  39956. height: math.unit(10, "feet"),
  39957. default: true
  39958. },
  39959. ]
  39960. ))
  39961. characterMakers.push(() => makeCharacter(
  39962. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39963. {
  39964. front: {
  39965. height: math.unit(25, "feet"),
  39966. name: "Front",
  39967. image: {
  39968. source: "./media/characters/titan-s-wulf/front.svg",
  39969. extra: 1560/1484,
  39970. bottom: 76/1636
  39971. }
  39972. },
  39973. },
  39974. [
  39975. {
  39976. name: "Smallest",
  39977. height: math.unit(25, "feet"),
  39978. default: true
  39979. },
  39980. {
  39981. name: "Normal",
  39982. height: math.unit(200, "feet")
  39983. },
  39984. {
  39985. name: "Macro",
  39986. height: math.unit(200000, "feet")
  39987. },
  39988. {
  39989. name: "Multiversal Original",
  39990. height: math.unit(10000, "multiverses")
  39991. },
  39992. ]
  39993. ))
  39994. characterMakers.push(() => makeCharacter(
  39995. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39996. {
  39997. front: {
  39998. height: math.unit(8, "feet"),
  39999. weight: math.unit(553, "lb"),
  40000. name: "Front",
  40001. image: {
  40002. source: "./media/characters/tawendeh/front.svg",
  40003. extra: 2365/2268,
  40004. bottom: 83/2448
  40005. }
  40006. },
  40007. frontClothed: {
  40008. height: math.unit(8, "feet"),
  40009. weight: math.unit(553, "lb"),
  40010. name: "Front (Clothed)",
  40011. image: {
  40012. source: "./media/characters/tawendeh/front-clothed.svg",
  40013. extra: 2365/2268,
  40014. bottom: 83/2448
  40015. }
  40016. },
  40017. back: {
  40018. height: math.unit(8, "feet"),
  40019. weight: math.unit(553, "lb"),
  40020. name: "Back",
  40021. image: {
  40022. source: "./media/characters/tawendeh/back.svg",
  40023. extra: 2397/2294,
  40024. bottom: 42/2439
  40025. }
  40026. },
  40027. },
  40028. [
  40029. {
  40030. name: "Mortal Interaction",
  40031. height: math.unit(8, "feet"),
  40032. default: true
  40033. },
  40034. {
  40035. name: "Giant",
  40036. height: math.unit(80, "feet")
  40037. },
  40038. {
  40039. name: "Macro",
  40040. height: math.unit(800, "feet")
  40041. },
  40042. {
  40043. name: "Megamacro",
  40044. height: math.unit(8000, "feet")
  40045. },
  40046. {
  40047. name: "City-Crushing",
  40048. height: math.unit(24000, "feet")
  40049. },
  40050. {
  40051. name: "Mountain-Mashing",
  40052. height: math.unit(80000, "feet")
  40053. },
  40054. {
  40055. name: "Nation Nemesis",
  40056. height: math.unit(8e6, "feet")
  40057. },
  40058. {
  40059. name: "Continent Cracker",
  40060. height: math.unit(24e6, "feet")
  40061. },
  40062. {
  40063. name: "Earth-Eclipsing",
  40064. height: math.unit(2.4e8, "feet")
  40065. },
  40066. {
  40067. name: "Gas Giant Gulper",
  40068. height: math.unit(2.4e9, "feet")
  40069. },
  40070. {
  40071. name: "Sol-Swallowing",
  40072. height: math.unit(8e10, "feet")
  40073. },
  40074. {
  40075. name: "Galaxy Gulper",
  40076. height: math.unit(8, "galaxies")
  40077. },
  40078. {
  40079. name: "Cosmos Churner",
  40080. height: math.unit(8, "universes")
  40081. },
  40082. {
  40083. name: "Omnipotent Otter",
  40084. height: math.unit(80, "universes")
  40085. },
  40086. ]
  40087. ))
  40088. characterMakers.push(() => makeCharacter(
  40089. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40090. {
  40091. front: {
  40092. height: math.unit(2.6, "meters"),
  40093. weight: math.unit(900, "kg"),
  40094. name: "Front",
  40095. image: {
  40096. source: "./media/characters/neesha/front.svg",
  40097. extra: 1803/1653,
  40098. bottom: 128/1931
  40099. }
  40100. },
  40101. },
  40102. [
  40103. {
  40104. name: "Normal",
  40105. height: math.unit(2.6, "meters"),
  40106. default: true
  40107. },
  40108. {
  40109. name: "Macro",
  40110. height: math.unit(50, "meters")
  40111. },
  40112. ]
  40113. ))
  40114. characterMakers.push(() => makeCharacter(
  40115. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40116. {
  40117. front: {
  40118. height: math.unit(5, "feet"),
  40119. weight: math.unit(185, "lb"),
  40120. name: "Front",
  40121. image: {
  40122. source: "./media/characters/kyera/front.svg",
  40123. extra: 1875/1790,
  40124. bottom: 96/1971
  40125. }
  40126. },
  40127. },
  40128. [
  40129. {
  40130. name: "Normal",
  40131. height: math.unit(5, "feet"),
  40132. default: true
  40133. },
  40134. ]
  40135. ))
  40136. characterMakers.push(() => makeCharacter(
  40137. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40138. {
  40139. front: {
  40140. height: math.unit(7 + 6/12, "feet"),
  40141. weight: math.unit(540, "lb"),
  40142. name: "Front",
  40143. image: {
  40144. source: "./media/characters/yuko/front.svg",
  40145. extra: 1282/1222,
  40146. bottom: 101/1383
  40147. }
  40148. },
  40149. frontClothed: {
  40150. height: math.unit(7 + 6/12, "feet"),
  40151. weight: math.unit(540, "lb"),
  40152. name: "Front (Clothed)",
  40153. image: {
  40154. source: "./media/characters/yuko/front-clothed.svg",
  40155. extra: 1282/1222,
  40156. bottom: 101/1383
  40157. }
  40158. },
  40159. },
  40160. [
  40161. {
  40162. name: "Normal",
  40163. height: math.unit(7 + 6/12, "feet"),
  40164. default: true
  40165. },
  40166. {
  40167. name: "Macro",
  40168. height: math.unit(26 + 9/12, "feet")
  40169. },
  40170. {
  40171. name: "Megamacro",
  40172. height: math.unit(300, "feet")
  40173. },
  40174. {
  40175. name: "Gigamacro",
  40176. height: math.unit(5000, "feet")
  40177. },
  40178. {
  40179. name: "Planetary",
  40180. height: math.unit(10000, "miles")
  40181. },
  40182. ]
  40183. ))
  40184. characterMakers.push(() => makeCharacter(
  40185. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40186. {
  40187. front: {
  40188. height: math.unit(8 + 2/12, "feet"),
  40189. weight: math.unit(600, "lb"),
  40190. name: "Front",
  40191. image: {
  40192. source: "./media/characters/deam-nitrel/front.svg",
  40193. extra: 1308/1234,
  40194. bottom: 125/1433
  40195. }
  40196. },
  40197. },
  40198. [
  40199. {
  40200. name: "Normal",
  40201. height: math.unit(8 + 2/12, "feet"),
  40202. default: true
  40203. },
  40204. ]
  40205. ))
  40206. characterMakers.push(() => makeCharacter(
  40207. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40208. {
  40209. front: {
  40210. height: math.unit(6.1, "feet"),
  40211. weight: math.unit(180, "lb"),
  40212. name: "Front",
  40213. image: {
  40214. source: "./media/characters/skyress/front.svg",
  40215. extra: 1045/915,
  40216. bottom: 28/1073
  40217. }
  40218. },
  40219. maw: {
  40220. height: math.unit(1, "feet"),
  40221. name: "Maw",
  40222. image: {
  40223. source: "./media/characters/skyress/maw.svg"
  40224. }
  40225. },
  40226. },
  40227. [
  40228. {
  40229. name: "Normal",
  40230. height: math.unit(6.1, "feet"),
  40231. default: true
  40232. },
  40233. {
  40234. name: "Macro",
  40235. height: math.unit(200, "feet")
  40236. },
  40237. ]
  40238. ))
  40239. characterMakers.push(() => makeCharacter(
  40240. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40241. {
  40242. front: {
  40243. height: math.unit(4 + 2/12, "feet"),
  40244. weight: math.unit(40, "kg"),
  40245. name: "Front",
  40246. image: {
  40247. source: "./media/characters/amethyst-jones/front.svg",
  40248. extra: 1220/1150,
  40249. bottom: 101/1321
  40250. }
  40251. },
  40252. },
  40253. [
  40254. {
  40255. name: "Normal",
  40256. height: math.unit(4 + 2/12, "feet"),
  40257. default: true
  40258. },
  40259. ]
  40260. ))
  40261. characterMakers.push(() => makeCharacter(
  40262. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40263. {
  40264. front: {
  40265. height: math.unit(1.7, "m"),
  40266. weight: math.unit(135, "lb"),
  40267. name: "Front",
  40268. image: {
  40269. source: "./media/characters/jade/front.svg",
  40270. extra: 1818/1767,
  40271. bottom: 32/1850
  40272. }
  40273. },
  40274. back: {
  40275. height: math.unit(1.7, "m"),
  40276. weight: math.unit(135, "lb"),
  40277. name: "Back",
  40278. image: {
  40279. source: "./media/characters/jade/back.svg",
  40280. extra: 1869/1809,
  40281. bottom: 35/1904
  40282. }
  40283. },
  40284. hand: {
  40285. height: math.unit(0.24, "m"),
  40286. name: "Hand",
  40287. image: {
  40288. source: "./media/characters/jade/hand.svg"
  40289. }
  40290. },
  40291. foot: {
  40292. height: math.unit(0.263, "m"),
  40293. name: "Foot",
  40294. image: {
  40295. source: "./media/characters/jade/foot.svg"
  40296. }
  40297. },
  40298. dick: {
  40299. height: math.unit(0.47, "m"),
  40300. name: "Dick",
  40301. image: {
  40302. source: "./media/characters/jade/dick.svg"
  40303. }
  40304. },
  40305. },
  40306. [
  40307. {
  40308. name: "Micro",
  40309. height: math.unit(22, "cm")
  40310. },
  40311. {
  40312. name: "Normal",
  40313. height: math.unit(1.7, "m"),
  40314. default: true
  40315. },
  40316. {
  40317. name: "Macro",
  40318. height: math.unit(152, "m")
  40319. },
  40320. ]
  40321. ))
  40322. characterMakers.push(() => makeCharacter(
  40323. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40324. {
  40325. front: {
  40326. height: math.unit(100, "miles"),
  40327. weight: math.unit(20000, "tons"),
  40328. name: "Front",
  40329. image: {
  40330. source: "./media/characters/cookie/front.svg",
  40331. extra: 1125/1070,
  40332. bottom: 30/1155
  40333. }
  40334. },
  40335. },
  40336. [
  40337. {
  40338. name: "Big",
  40339. height: math.unit(50, "feet")
  40340. },
  40341. {
  40342. name: "Macro",
  40343. height: math.unit(100, "miles"),
  40344. default: true
  40345. },
  40346. {
  40347. name: "Megamacro",
  40348. height: math.unit(90000, "miles")
  40349. },
  40350. ]
  40351. ))
  40352. characterMakers.push(() => makeCharacter(
  40353. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40354. {
  40355. front: {
  40356. height: math.unit(6, "feet"),
  40357. weight: math.unit(145, "lb"),
  40358. name: "Front",
  40359. image: {
  40360. source: "./media/characters/farzian/front.svg",
  40361. extra: 1902/1693,
  40362. bottom: 108/2010
  40363. }
  40364. },
  40365. },
  40366. [
  40367. {
  40368. name: "Macro",
  40369. height: math.unit(500, "feet"),
  40370. default: true
  40371. },
  40372. ]
  40373. ))
  40374. characterMakers.push(() => makeCharacter(
  40375. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40376. {
  40377. front: {
  40378. height: math.unit(3 + 6/12, "feet"),
  40379. weight: math.unit(50, "lb"),
  40380. name: "Front",
  40381. image: {
  40382. source: "./media/characters/kimberly-tilson/front.svg",
  40383. extra: 1400/1322,
  40384. bottom: 36/1436
  40385. }
  40386. },
  40387. back: {
  40388. height: math.unit(3 + 6/12, "feet"),
  40389. weight: math.unit(50, "lb"),
  40390. name: "Back",
  40391. image: {
  40392. source: "./media/characters/kimberly-tilson/back.svg",
  40393. extra: 1370/1307,
  40394. bottom: 20/1390
  40395. }
  40396. },
  40397. },
  40398. [
  40399. {
  40400. name: "Normal",
  40401. height: math.unit(3 + 6/12, "feet"),
  40402. default: true
  40403. },
  40404. ]
  40405. ))
  40406. characterMakers.push(() => makeCharacter(
  40407. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40408. {
  40409. front: {
  40410. height: math.unit(1148, "feet"),
  40411. weight: math.unit(34057, "lb"),
  40412. name: "Front",
  40413. image: {
  40414. source: "./media/characters/harthos/front.svg",
  40415. extra: 1391/1339,
  40416. bottom: 13/1404
  40417. }
  40418. },
  40419. },
  40420. [
  40421. {
  40422. name: "Macro",
  40423. height: math.unit(1148, "feet"),
  40424. default: true
  40425. },
  40426. ]
  40427. ))
  40428. characterMakers.push(() => makeCharacter(
  40429. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40430. {
  40431. front: {
  40432. height: math.unit(15, "feet"),
  40433. name: "Front",
  40434. image: {
  40435. source: "./media/characters/hypatia/front.svg",
  40436. extra: 1653/1591,
  40437. bottom: 79/1732
  40438. }
  40439. },
  40440. },
  40441. [
  40442. {
  40443. name: "Normal",
  40444. height: math.unit(15, "feet")
  40445. },
  40446. {
  40447. name: "Small",
  40448. height: math.unit(300, "feet")
  40449. },
  40450. {
  40451. name: "Macro",
  40452. height: math.unit(2500, "feet"),
  40453. default: true
  40454. },
  40455. {
  40456. name: "Mega Macro",
  40457. height: math.unit(1500, "miles")
  40458. },
  40459. {
  40460. name: "Giga Macro",
  40461. height: math.unit(1.5e6, "miles")
  40462. },
  40463. ]
  40464. ))
  40465. characterMakers.push(() => makeCharacter(
  40466. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40467. {
  40468. front: {
  40469. height: math.unit(6, "feet"),
  40470. weight: math.unit(200, "lb"),
  40471. name: "Front",
  40472. image: {
  40473. source: "./media/characters/wulver/front.svg",
  40474. extra: 1724/1632,
  40475. bottom: 130/1854
  40476. }
  40477. },
  40478. frontNsfw: {
  40479. height: math.unit(6, "feet"),
  40480. weight: math.unit(200, "lb"),
  40481. name: "Front (NSFW)",
  40482. image: {
  40483. source: "./media/characters/wulver/front-nsfw.svg",
  40484. extra: 1724/1632,
  40485. bottom: 130/1854
  40486. }
  40487. },
  40488. },
  40489. [
  40490. {
  40491. name: "Human-Sized",
  40492. height: math.unit(6, "feet")
  40493. },
  40494. {
  40495. name: "Normal",
  40496. height: math.unit(4, "meters"),
  40497. default: true
  40498. },
  40499. {
  40500. name: "Large",
  40501. height: math.unit(6, "m")
  40502. },
  40503. ]
  40504. ))
  40505. characterMakers.push(() => makeCharacter(
  40506. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40507. {
  40508. front: {
  40509. height: math.unit(7, "feet"),
  40510. name: "Front",
  40511. image: {
  40512. source: "./media/characters/maru/front.svg",
  40513. extra: 1595/1570,
  40514. bottom: 0/1595
  40515. }
  40516. },
  40517. },
  40518. [
  40519. {
  40520. name: "Normal",
  40521. height: math.unit(7, "feet"),
  40522. default: true
  40523. },
  40524. {
  40525. name: "Macro",
  40526. height: math.unit(700, "feet")
  40527. },
  40528. {
  40529. name: "Mega Macro",
  40530. height: math.unit(25, "miles")
  40531. },
  40532. ]
  40533. ))
  40534. characterMakers.push(() => makeCharacter(
  40535. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40536. {
  40537. front: {
  40538. height: math.unit(6, "feet"),
  40539. weight: math.unit(170, "lb"),
  40540. name: "Front",
  40541. image: {
  40542. source: "./media/characters/xenon/front.svg",
  40543. extra: 1376/1305,
  40544. bottom: 56/1432
  40545. }
  40546. },
  40547. back: {
  40548. height: math.unit(6, "feet"),
  40549. weight: math.unit(170, "lb"),
  40550. name: "Back",
  40551. image: {
  40552. source: "./media/characters/xenon/back.svg",
  40553. extra: 1328/1259,
  40554. bottom: 95/1423
  40555. }
  40556. },
  40557. maw: {
  40558. height: math.unit(0.52, "feet"),
  40559. name: "Maw",
  40560. image: {
  40561. source: "./media/characters/xenon/maw.svg"
  40562. }
  40563. },
  40564. hand: {
  40565. height: math.unit(0.82, "feet"),
  40566. name: "Hand",
  40567. image: {
  40568. source: "./media/characters/xenon/hand.svg"
  40569. }
  40570. },
  40571. foot: {
  40572. height: math.unit(1.13, "feet"),
  40573. name: "Foot",
  40574. image: {
  40575. source: "./media/characters/xenon/foot.svg"
  40576. }
  40577. },
  40578. },
  40579. [
  40580. {
  40581. name: "Micro",
  40582. height: math.unit(0.8, "inches")
  40583. },
  40584. {
  40585. name: "Normal",
  40586. height: math.unit(6, "feet")
  40587. },
  40588. {
  40589. name: "Macro",
  40590. height: math.unit(50, "feet"),
  40591. default: true
  40592. },
  40593. {
  40594. name: "Macro+",
  40595. height: math.unit(250, "feet")
  40596. },
  40597. {
  40598. name: "Megamacro",
  40599. height: math.unit(1500, "feet")
  40600. },
  40601. ]
  40602. ))
  40603. characterMakers.push(() => makeCharacter(
  40604. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40605. {
  40606. front: {
  40607. height: math.unit(7 + 5/12, "feet"),
  40608. name: "Front",
  40609. image: {
  40610. source: "./media/characters/zane/front.svg",
  40611. extra: 1260/1203,
  40612. bottom: 94/1354
  40613. }
  40614. },
  40615. back: {
  40616. height: math.unit(5.05, "feet"),
  40617. name: "Back",
  40618. image: {
  40619. source: "./media/characters/zane/back.svg",
  40620. extra: 893/829,
  40621. bottom: 30/923
  40622. }
  40623. },
  40624. werewolf: {
  40625. height: math.unit(11, "feet"),
  40626. name: "Werewolf",
  40627. image: {
  40628. source: "./media/characters/zane/werewolf.svg",
  40629. extra: 1383/1323,
  40630. bottom: 89/1472
  40631. }
  40632. },
  40633. foot: {
  40634. height: math.unit(1.46, "feet"),
  40635. name: "Foot",
  40636. image: {
  40637. source: "./media/characters/zane/foot.svg"
  40638. }
  40639. },
  40640. footFront: {
  40641. height: math.unit(0.784, "feet"),
  40642. name: "Foot (Front)",
  40643. image: {
  40644. source: "./media/characters/zane/foot-front.svg"
  40645. }
  40646. },
  40647. dick: {
  40648. height: math.unit(1.95, "feet"),
  40649. name: "Dick",
  40650. image: {
  40651. source: "./media/characters/zane/dick.svg"
  40652. }
  40653. },
  40654. dickWerewolf: {
  40655. height: math.unit(3.77, "feet"),
  40656. name: "Dick (Werewolf)",
  40657. image: {
  40658. source: "./media/characters/zane/dick.svg"
  40659. }
  40660. },
  40661. },
  40662. [
  40663. {
  40664. name: "Normal",
  40665. height: math.unit(7 + 5/12, "feet"),
  40666. default: true
  40667. },
  40668. ]
  40669. ))
  40670. characterMakers.push(() => makeCharacter(
  40671. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40672. {
  40673. front: {
  40674. height: math.unit(6 + 2/12, "feet"),
  40675. weight: math.unit(284, "lb"),
  40676. name: "Front",
  40677. image: {
  40678. source: "./media/characters/benni-desparque/front.svg",
  40679. extra: 1353/1126,
  40680. bottom: 69/1422
  40681. }
  40682. },
  40683. },
  40684. [
  40685. {
  40686. name: "Civilian",
  40687. height: math.unit(6 + 2/12, "feet")
  40688. },
  40689. {
  40690. name: "Normal",
  40691. height: math.unit(98, "feet"),
  40692. default: true
  40693. },
  40694. {
  40695. name: "Kaiju Fighter",
  40696. height: math.unit(268, "feet")
  40697. },
  40698. ]
  40699. ))
  40700. characterMakers.push(() => makeCharacter(
  40701. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40702. {
  40703. front: {
  40704. height: math.unit(5, "feet"),
  40705. weight: math.unit(105, "lb"),
  40706. name: "Front",
  40707. image: {
  40708. source: "./media/characters/maxine/front.svg",
  40709. extra: 1386/1250,
  40710. bottom: 71/1457
  40711. }
  40712. },
  40713. },
  40714. [
  40715. {
  40716. name: "Normal",
  40717. height: math.unit(5, "feet"),
  40718. default: true
  40719. },
  40720. ]
  40721. ))
  40722. characterMakers.push(() => makeCharacter(
  40723. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40724. {
  40725. front: {
  40726. height: math.unit(11 + 7/12, "feet"),
  40727. weight: math.unit(9576, "lb"),
  40728. name: "Front",
  40729. image: {
  40730. source: "./media/characters/scaly/front.svg",
  40731. extra: 888/867,
  40732. bottom: 36/924
  40733. }
  40734. },
  40735. },
  40736. [
  40737. {
  40738. name: "Normal",
  40739. height: math.unit(11 + 7/12, "feet"),
  40740. default: true
  40741. },
  40742. ]
  40743. ))
  40744. characterMakers.push(() => makeCharacter(
  40745. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40746. {
  40747. front: {
  40748. height: math.unit(6 + 3/12, "feet"),
  40749. name: "Front",
  40750. image: {
  40751. source: "./media/characters/saelria/front.svg",
  40752. extra: 1243/1138,
  40753. bottom: 46/1289
  40754. }
  40755. },
  40756. },
  40757. [
  40758. {
  40759. name: "Micro",
  40760. height: math.unit(6, "inches"),
  40761. },
  40762. {
  40763. name: "Normal",
  40764. height: math.unit(6 + 3/12, "feet"),
  40765. default: true
  40766. },
  40767. {
  40768. name: "Macro",
  40769. height: math.unit(25, "feet")
  40770. },
  40771. ]
  40772. ))
  40773. characterMakers.push(() => makeCharacter(
  40774. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40775. {
  40776. front: {
  40777. height: math.unit(80, "meters"),
  40778. weight: math.unit(7000, "tonnes"),
  40779. name: "Front",
  40780. image: {
  40781. source: "./media/characters/tef/front.svg",
  40782. extra: 2036/1991,
  40783. bottom: 54/2090
  40784. }
  40785. },
  40786. back: {
  40787. height: math.unit(80, "meters"),
  40788. weight: math.unit(7000, "tonnes"),
  40789. name: "Back",
  40790. image: {
  40791. source: "./media/characters/tef/back.svg",
  40792. extra: 2036/1991,
  40793. bottom: 54/2090
  40794. }
  40795. },
  40796. },
  40797. [
  40798. {
  40799. name: "Macro",
  40800. height: math.unit(80, "meters"),
  40801. default: true
  40802. },
  40803. ]
  40804. ))
  40805. characterMakers.push(() => makeCharacter(
  40806. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40807. {
  40808. front: {
  40809. height: math.unit(13, "feet"),
  40810. weight: math.unit(6, "tons"),
  40811. name: "Front",
  40812. image: {
  40813. source: "./media/characters/rover/front.svg",
  40814. extra: 1233/1156,
  40815. bottom: 50/1283
  40816. }
  40817. },
  40818. back: {
  40819. height: math.unit(13, "feet"),
  40820. weight: math.unit(6, "tons"),
  40821. name: "Back",
  40822. image: {
  40823. source: "./media/characters/rover/back.svg",
  40824. extra: 1327/1258,
  40825. bottom: 39/1366
  40826. }
  40827. },
  40828. },
  40829. [
  40830. {
  40831. name: "Normal",
  40832. height: math.unit(13, "feet"),
  40833. default: true
  40834. },
  40835. {
  40836. name: "Macro",
  40837. height: math.unit(1300, "feet")
  40838. },
  40839. {
  40840. name: "Megamacro",
  40841. height: math.unit(1300, "miles")
  40842. },
  40843. {
  40844. name: "Gigamacro",
  40845. height: math.unit(1300000, "miles")
  40846. },
  40847. ]
  40848. ))
  40849. characterMakers.push(() => makeCharacter(
  40850. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40851. {
  40852. front: {
  40853. height: math.unit(6, "feet"),
  40854. weight: math.unit(150, "lb"),
  40855. name: "Front",
  40856. image: {
  40857. source: "./media/characters/ariz/front.svg",
  40858. extra: 1401/1346,
  40859. bottom: 5/1406
  40860. }
  40861. },
  40862. },
  40863. [
  40864. {
  40865. name: "Normal",
  40866. height: math.unit(10, "feet"),
  40867. default: true
  40868. },
  40869. ]
  40870. ))
  40871. characterMakers.push(() => makeCharacter(
  40872. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40873. {
  40874. front: {
  40875. height: math.unit(6, "feet"),
  40876. weight: math.unit(140, "lb"),
  40877. name: "Front",
  40878. image: {
  40879. source: "./media/characters/sigrun/front.svg",
  40880. extra: 1418/1359,
  40881. bottom: 27/1445
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Macro",
  40888. height: math.unit(35, "feet"),
  40889. default: true
  40890. },
  40891. ]
  40892. ))
  40893. characterMakers.push(() => makeCharacter(
  40894. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40895. {
  40896. front: {
  40897. height: math.unit(6, "feet"),
  40898. weight: math.unit(150, "lb"),
  40899. name: "Front",
  40900. image: {
  40901. source: "./media/characters/numin/front.svg",
  40902. extra: 1433/1388,
  40903. bottom: 12/1445
  40904. }
  40905. },
  40906. },
  40907. [
  40908. {
  40909. name: "Macro",
  40910. height: math.unit(21.5, "km"),
  40911. default: true
  40912. },
  40913. ]
  40914. ))
  40915. characterMakers.push(() => makeCharacter(
  40916. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40917. {
  40918. front: {
  40919. height: math.unit(6, "feet"),
  40920. weight: math.unit(463, "lb"),
  40921. name: "Front",
  40922. image: {
  40923. source: "./media/characters/melwa/front.svg",
  40924. extra: 1307/1248,
  40925. bottom: 93/1400
  40926. }
  40927. },
  40928. },
  40929. [
  40930. {
  40931. name: "Macro",
  40932. height: math.unit(50, "meters"),
  40933. default: true
  40934. },
  40935. ]
  40936. ))
  40937. characterMakers.push(() => makeCharacter(
  40938. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40939. {
  40940. front: {
  40941. height: math.unit(325, "feet"),
  40942. name: "Front",
  40943. image: {
  40944. source: "./media/characters/zorkaiju/front.svg",
  40945. extra: 1955/1814,
  40946. bottom: 40/1995
  40947. }
  40948. },
  40949. frontExtended: {
  40950. height: math.unit(325, "feet"),
  40951. name: "Front (Extended)",
  40952. image: {
  40953. source: "./media/characters/zorkaiju/front-extended.svg",
  40954. extra: 1955/1814,
  40955. bottom: 40/1995
  40956. }
  40957. },
  40958. side: {
  40959. height: math.unit(325, "feet"),
  40960. name: "Side",
  40961. image: {
  40962. source: "./media/characters/zorkaiju/side.svg",
  40963. extra: 1495/1396,
  40964. bottom: 17/1512
  40965. }
  40966. },
  40967. sideExtended: {
  40968. height: math.unit(325, "feet"),
  40969. name: "Side (Extended)",
  40970. image: {
  40971. source: "./media/characters/zorkaiju/side-extended.svg",
  40972. extra: 1495/1396,
  40973. bottom: 17/1512
  40974. }
  40975. },
  40976. back: {
  40977. height: math.unit(325, "feet"),
  40978. name: "Back",
  40979. image: {
  40980. source: "./media/characters/zorkaiju/back.svg",
  40981. extra: 1959/1821,
  40982. bottom: 31/1990
  40983. }
  40984. },
  40985. backExtended: {
  40986. height: math.unit(325, "feet"),
  40987. name: "Back (Extended)",
  40988. image: {
  40989. source: "./media/characters/zorkaiju/back-extended.svg",
  40990. extra: 1959/1821,
  40991. bottom: 31/1990
  40992. }
  40993. },
  40994. hand: {
  40995. height: math.unit(58.4, "feet"),
  40996. name: "Hand",
  40997. image: {
  40998. source: "./media/characters/zorkaiju/hand.svg"
  40999. }
  41000. },
  41001. handExtended: {
  41002. height: math.unit(61.4, "feet"),
  41003. name: "Hand (Extended)",
  41004. image: {
  41005. source: "./media/characters/zorkaiju/hand-extended.svg"
  41006. }
  41007. },
  41008. foot: {
  41009. height: math.unit(95, "feet"),
  41010. name: "Foot",
  41011. image: {
  41012. source: "./media/characters/zorkaiju/foot.svg"
  41013. }
  41014. },
  41015. leftArm: {
  41016. height: math.unit(59, "feet"),
  41017. name: "Left Arm",
  41018. image: {
  41019. source: "./media/characters/zorkaiju/left-arm.svg"
  41020. }
  41021. },
  41022. rightArm: {
  41023. height: math.unit(59, "feet"),
  41024. name: "Right Arm",
  41025. image: {
  41026. source: "./media/characters/zorkaiju/right-arm.svg"
  41027. }
  41028. },
  41029. tail: {
  41030. height: math.unit(104, "feet"),
  41031. name: "Tail",
  41032. image: {
  41033. source: "./media/characters/zorkaiju/tail.svg"
  41034. }
  41035. },
  41036. tailExtended: {
  41037. height: math.unit(104, "feet"),
  41038. name: "Tail (Extended)",
  41039. image: {
  41040. source: "./media/characters/zorkaiju/tail-extended.svg"
  41041. }
  41042. },
  41043. tailBottom: {
  41044. height: math.unit(104, "feet"),
  41045. name: "Tail Bottom",
  41046. image: {
  41047. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41048. }
  41049. },
  41050. crystal: {
  41051. height: math.unit(27.54, "feet"),
  41052. name: "Crystal",
  41053. image: {
  41054. source: "./media/characters/zorkaiju/crystal.svg"
  41055. }
  41056. },
  41057. },
  41058. [
  41059. {
  41060. name: "Kaiju",
  41061. height: math.unit(325, "feet"),
  41062. default: true
  41063. },
  41064. ]
  41065. ))
  41066. characterMakers.push(() => makeCharacter(
  41067. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41068. {
  41069. front: {
  41070. height: math.unit(6 + 1/12, "feet"),
  41071. weight: math.unit(115, "lb"),
  41072. name: "Front",
  41073. image: {
  41074. source: "./media/characters/bailey-belfry/front.svg",
  41075. extra: 1240/1121,
  41076. bottom: 101/1341
  41077. }
  41078. },
  41079. },
  41080. [
  41081. {
  41082. name: "Normal",
  41083. height: math.unit(6 + 1/12, "feet"),
  41084. default: true
  41085. },
  41086. ]
  41087. ))
  41088. characterMakers.push(() => makeCharacter(
  41089. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41090. {
  41091. side: {
  41092. height: math.unit(4, "meters"),
  41093. weight: math.unit(250, "kg"),
  41094. name: "Side",
  41095. image: {
  41096. source: "./media/characters/blacky/side.svg",
  41097. extra: 1027/919,
  41098. bottom: 43/1070
  41099. }
  41100. },
  41101. maw: {
  41102. height: math.unit(1, "meters"),
  41103. name: "Maw",
  41104. image: {
  41105. source: "./media/characters/blacky/maw.svg"
  41106. }
  41107. },
  41108. paw: {
  41109. height: math.unit(1, "meters"),
  41110. name: "Paw",
  41111. image: {
  41112. source: "./media/characters/blacky/paw.svg"
  41113. }
  41114. },
  41115. },
  41116. [
  41117. {
  41118. name: "Normal",
  41119. height: math.unit(4, "meters"),
  41120. default: true
  41121. },
  41122. ]
  41123. ))
  41124. characterMakers.push(() => makeCharacter(
  41125. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41126. {
  41127. front: {
  41128. height: math.unit(170, "cm"),
  41129. weight: math.unit(66, "kg"),
  41130. name: "Front",
  41131. image: {
  41132. source: "./media/characters/thux-ei/front.svg",
  41133. extra: 1109/1011,
  41134. bottom: 8/1117
  41135. }
  41136. },
  41137. },
  41138. [
  41139. {
  41140. name: "Normal",
  41141. height: math.unit(170, "cm"),
  41142. default: true
  41143. },
  41144. ]
  41145. ))
  41146. characterMakers.push(() => makeCharacter(
  41147. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41148. {
  41149. front: {
  41150. height: math.unit(5, "feet"),
  41151. weight: math.unit(120, "lb"),
  41152. name: "Front",
  41153. image: {
  41154. source: "./media/characters/roxanne-voltaire/front.svg",
  41155. extra: 1901/1779,
  41156. bottom: 53/1954
  41157. }
  41158. },
  41159. },
  41160. [
  41161. {
  41162. name: "Normal",
  41163. height: math.unit(5, "feet"),
  41164. default: true
  41165. },
  41166. {
  41167. name: "Giant",
  41168. height: math.unit(50, "feet")
  41169. },
  41170. {
  41171. name: "Titan",
  41172. height: math.unit(500, "feet")
  41173. },
  41174. {
  41175. name: "Macro",
  41176. height: math.unit(5000, "feet")
  41177. },
  41178. {
  41179. name: "Megamacro",
  41180. height: math.unit(50000, "feet")
  41181. },
  41182. {
  41183. name: "Gigamacro",
  41184. height: math.unit(500000, "feet")
  41185. },
  41186. {
  41187. name: "Teramacro",
  41188. height: math.unit(5e6, "feet")
  41189. },
  41190. ]
  41191. ))
  41192. characterMakers.push(() => makeCharacter(
  41193. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41194. {
  41195. front: {
  41196. height: math.unit(6 + 2/12, "feet"),
  41197. name: "Front",
  41198. image: {
  41199. source: "./media/characters/squeaks/front.svg",
  41200. extra: 1823/1768,
  41201. bottom: 138/1961
  41202. }
  41203. },
  41204. },
  41205. [
  41206. {
  41207. name: "Micro",
  41208. height: math.unit(0.5, "inches")
  41209. },
  41210. {
  41211. name: "Normal",
  41212. height: math.unit(6 + 2/12, "feet"),
  41213. default: true
  41214. },
  41215. {
  41216. name: "Macro",
  41217. height: math.unit(600, "feet")
  41218. },
  41219. ]
  41220. ))
  41221. characterMakers.push(() => makeCharacter(
  41222. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41223. {
  41224. front: {
  41225. height: math.unit(1.72, "meters"),
  41226. name: "Front",
  41227. image: {
  41228. source: "./media/characters/archinger/front.svg",
  41229. extra: 1861/1675,
  41230. bottom: 125/1986
  41231. }
  41232. },
  41233. back: {
  41234. height: math.unit(1.72, "meters"),
  41235. name: "Back",
  41236. image: {
  41237. source: "./media/characters/archinger/back.svg",
  41238. extra: 1844/1701,
  41239. bottom: 104/1948
  41240. }
  41241. },
  41242. cock: {
  41243. height: math.unit(0.59, "feet"),
  41244. name: "Cock",
  41245. image: {
  41246. source: "./media/characters/archinger/cock.svg"
  41247. }
  41248. },
  41249. },
  41250. [
  41251. {
  41252. name: "Normal",
  41253. height: math.unit(1.72, "meters"),
  41254. default: true
  41255. },
  41256. {
  41257. name: "Macro",
  41258. height: math.unit(84, "meters")
  41259. },
  41260. {
  41261. name: "Macro+",
  41262. height: math.unit(112, "meters")
  41263. },
  41264. {
  41265. name: "Macro++",
  41266. height: math.unit(960, "meters")
  41267. },
  41268. {
  41269. name: "Macro+++",
  41270. height: math.unit(4, "km")
  41271. },
  41272. {
  41273. name: "Macro++++",
  41274. height: math.unit(48, "km")
  41275. },
  41276. {
  41277. name: "Macro+++++",
  41278. height: math.unit(4500, "km")
  41279. },
  41280. ]
  41281. ))
  41282. characterMakers.push(() => makeCharacter(
  41283. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41284. {
  41285. front: {
  41286. height: math.unit(5 + 5/12, "feet"),
  41287. name: "Front",
  41288. image: {
  41289. source: "./media/characters/alsnapz/front.svg",
  41290. extra: 1157/1065,
  41291. bottom: 42/1199
  41292. }
  41293. },
  41294. },
  41295. [
  41296. {
  41297. name: "Normal",
  41298. height: math.unit(5 + 5/12, "feet"),
  41299. default: true
  41300. },
  41301. ]
  41302. ))
  41303. characterMakers.push(() => makeCharacter(
  41304. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41305. {
  41306. side: {
  41307. height: math.unit(3.2, "earths"),
  41308. name: "Side",
  41309. image: {
  41310. source: "./media/characters/mag/side.svg",
  41311. extra: 1331/1008,
  41312. bottom: 52/1383
  41313. }
  41314. },
  41315. wing: {
  41316. height: math.unit(1.94, "earths"),
  41317. name: "Wing",
  41318. image: {
  41319. source: "./media/characters/mag/wing.svg"
  41320. }
  41321. },
  41322. dick: {
  41323. height: math.unit(1.8, "earths"),
  41324. name: "Dick",
  41325. image: {
  41326. source: "./media/characters/mag/dick.svg"
  41327. }
  41328. },
  41329. ass: {
  41330. height: math.unit(1.33, "earths"),
  41331. name: "Ass",
  41332. image: {
  41333. source: "./media/characters/mag/ass.svg"
  41334. }
  41335. },
  41336. head: {
  41337. height: math.unit(1.1, "earths"),
  41338. name: "Head",
  41339. image: {
  41340. source: "./media/characters/mag/head.svg"
  41341. }
  41342. },
  41343. maw: {
  41344. height: math.unit(1.62, "earths"),
  41345. name: "Maw",
  41346. image: {
  41347. source: "./media/characters/mag/maw.svg"
  41348. }
  41349. },
  41350. },
  41351. [
  41352. {
  41353. name: "Small",
  41354. height: math.unit(162, "feet")
  41355. },
  41356. {
  41357. name: "Normal",
  41358. height: math.unit(3.2, "earths"),
  41359. default: true
  41360. },
  41361. ]
  41362. ))
  41363. characterMakers.push(() => makeCharacter(
  41364. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41365. {
  41366. front: {
  41367. height: math.unit(512, "feet"),
  41368. weight: math.unit(63509, "tonnes"),
  41369. name: "Front",
  41370. image: {
  41371. source: "./media/characters/vorrel-harroc/front.svg",
  41372. extra: 1075/1063,
  41373. bottom: 62/1137
  41374. }
  41375. },
  41376. },
  41377. [
  41378. {
  41379. name: "Normal",
  41380. height: math.unit(10, "feet")
  41381. },
  41382. {
  41383. name: "Macro",
  41384. height: math.unit(512, "feet"),
  41385. default: true
  41386. },
  41387. {
  41388. name: "Megamacro",
  41389. height: math.unit(256, "miles")
  41390. },
  41391. {
  41392. name: "Gigamacro",
  41393. height: math.unit(4096, "miles")
  41394. },
  41395. ]
  41396. ))
  41397. characterMakers.push(() => makeCharacter(
  41398. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41399. {
  41400. side: {
  41401. height: math.unit(50, "feet"),
  41402. name: "Side",
  41403. image: {
  41404. source: "./media/characters/froimar/side.svg",
  41405. extra: 855/638,
  41406. bottom: 99/954
  41407. }
  41408. },
  41409. },
  41410. [
  41411. {
  41412. name: "Macro",
  41413. height: math.unit(50, "feet"),
  41414. default: true
  41415. },
  41416. ]
  41417. ))
  41418. characterMakers.push(() => makeCharacter(
  41419. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41420. {
  41421. front: {
  41422. height: math.unit(210, "miles"),
  41423. name: "Front",
  41424. image: {
  41425. source: "./media/characters/timothy/front.svg",
  41426. extra: 1007/943,
  41427. bottom: 62/1069
  41428. }
  41429. },
  41430. frontSkirt: {
  41431. height: math.unit(210, "miles"),
  41432. name: "Front (Skirt)",
  41433. image: {
  41434. source: "./media/characters/timothy/front-skirt.svg",
  41435. extra: 1007/943,
  41436. bottom: 62/1069
  41437. }
  41438. },
  41439. frontCoat: {
  41440. height: math.unit(210, "miles"),
  41441. name: "Front (Coat)",
  41442. image: {
  41443. source: "./media/characters/timothy/front-coat.svg",
  41444. extra: 1007/943,
  41445. bottom: 62/1069
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Macro",
  41452. height: math.unit(210, "miles"),
  41453. default: true
  41454. },
  41455. {
  41456. name: "Megamacro",
  41457. height: math.unit(210000, "miles")
  41458. },
  41459. ]
  41460. ))
  41461. characterMakers.push(() => makeCharacter(
  41462. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41463. {
  41464. front: {
  41465. height: math.unit(188, "feet"),
  41466. name: "Front",
  41467. image: {
  41468. source: "./media/characters/pyotr/front.svg",
  41469. extra: 1912/1826,
  41470. bottom: 18/1930
  41471. }
  41472. },
  41473. },
  41474. [
  41475. {
  41476. name: "Macro",
  41477. height: math.unit(188, "feet"),
  41478. default: true
  41479. },
  41480. {
  41481. name: "Megamacro",
  41482. height: math.unit(8, "miles")
  41483. },
  41484. ]
  41485. ))
  41486. characterMakers.push(() => makeCharacter(
  41487. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41488. {
  41489. side: {
  41490. height: math.unit(10, "feet"),
  41491. weight: math.unit(4500, "lb"),
  41492. name: "Side",
  41493. image: {
  41494. source: "./media/characters/ackart/side.svg",
  41495. extra: 1776/1668,
  41496. bottom: 116/1892
  41497. }
  41498. },
  41499. },
  41500. [
  41501. {
  41502. name: "Normal",
  41503. height: math.unit(10, "feet"),
  41504. default: true
  41505. },
  41506. ]
  41507. ))
  41508. characterMakers.push(() => makeCharacter(
  41509. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41510. {
  41511. side: {
  41512. height: math.unit(21, "feet"),
  41513. name: "Side",
  41514. image: {
  41515. source: "./media/characters/nolow/side.svg",
  41516. extra: 1484/1434,
  41517. bottom: 85/1569
  41518. }
  41519. },
  41520. sideErect: {
  41521. height: math.unit(21, "feet"),
  41522. name: "Side-erect",
  41523. image: {
  41524. source: "./media/characters/nolow/side-erect.svg",
  41525. extra: 1484/1434,
  41526. bottom: 85/1569
  41527. }
  41528. },
  41529. },
  41530. [
  41531. {
  41532. name: "Regular",
  41533. height: math.unit(12, "feet")
  41534. },
  41535. {
  41536. name: "Big Chee",
  41537. height: math.unit(21, "feet"),
  41538. default: true
  41539. },
  41540. ]
  41541. ))
  41542. characterMakers.push(() => makeCharacter(
  41543. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41544. {
  41545. front: {
  41546. height: math.unit(7, "feet"),
  41547. weight: math.unit(250, "lb"),
  41548. name: "Front",
  41549. image: {
  41550. source: "./media/characters/nines/front.svg",
  41551. extra: 1741/1607,
  41552. bottom: 41/1782
  41553. }
  41554. },
  41555. side: {
  41556. height: math.unit(7, "feet"),
  41557. weight: math.unit(250, "lb"),
  41558. name: "Side",
  41559. image: {
  41560. source: "./media/characters/nines/side.svg",
  41561. extra: 1854/1735,
  41562. bottom: 93/1947
  41563. }
  41564. },
  41565. back: {
  41566. height: math.unit(7, "feet"),
  41567. weight: math.unit(250, "lb"),
  41568. name: "Back",
  41569. image: {
  41570. source: "./media/characters/nines/back.svg",
  41571. extra: 1748/1615,
  41572. bottom: 20/1768
  41573. }
  41574. },
  41575. },
  41576. [
  41577. {
  41578. name: "Megamacro",
  41579. height: math.unit(99, "km"),
  41580. default: true
  41581. },
  41582. ]
  41583. ))
  41584. characterMakers.push(() => makeCharacter(
  41585. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41586. {
  41587. front: {
  41588. height: math.unit(5 + 10/12, "feet"),
  41589. weight: math.unit(210, "lb"),
  41590. name: "Front",
  41591. image: {
  41592. source: "./media/characters/zenith/front.svg",
  41593. extra: 1531/1452,
  41594. bottom: 198/1729
  41595. }
  41596. },
  41597. back: {
  41598. height: math.unit(5 + 10/12, "feet"),
  41599. weight: math.unit(210, "lb"),
  41600. name: "Back",
  41601. image: {
  41602. source: "./media/characters/zenith/back.svg",
  41603. extra: 1571/1487,
  41604. bottom: 75/1646
  41605. }
  41606. },
  41607. },
  41608. [
  41609. {
  41610. name: "Normal",
  41611. height: math.unit(5 + 10/12, "feet"),
  41612. default: true
  41613. }
  41614. ]
  41615. ))
  41616. characterMakers.push(() => makeCharacter(
  41617. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41618. {
  41619. front: {
  41620. height: math.unit(4, "feet"),
  41621. weight: math.unit(60, "lb"),
  41622. name: "Front",
  41623. image: {
  41624. source: "./media/characters/jasper/front.svg",
  41625. extra: 1450/1379,
  41626. bottom: 19/1469
  41627. }
  41628. },
  41629. },
  41630. [
  41631. {
  41632. name: "Normal",
  41633. height: math.unit(4, "feet"),
  41634. default: true
  41635. },
  41636. ]
  41637. ))
  41638. characterMakers.push(() => makeCharacter(
  41639. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41640. {
  41641. front: {
  41642. height: math.unit(6 + 5/12, "feet"),
  41643. weight: math.unit(290, "lb"),
  41644. name: "Front",
  41645. image: {
  41646. source: "./media/characters/tiberius-thyben/front.svg",
  41647. extra: 757/739,
  41648. bottom: 39/796
  41649. }
  41650. },
  41651. },
  41652. [
  41653. {
  41654. name: "Micro",
  41655. height: math.unit(1.5, "inches")
  41656. },
  41657. {
  41658. name: "Normal",
  41659. height: math.unit(6 + 5/12, "feet"),
  41660. default: true
  41661. },
  41662. {
  41663. name: "Macro",
  41664. height: math.unit(300, "feet")
  41665. },
  41666. ]
  41667. ))
  41668. characterMakers.push(() => makeCharacter(
  41669. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41670. {
  41671. front: {
  41672. height: math.unit(5 + 6/12, "feet"),
  41673. weight: math.unit(60, "kg"),
  41674. name: "Front",
  41675. image: {
  41676. source: "./media/characters/sabre/front.svg",
  41677. extra: 738/671,
  41678. bottom: 27/765
  41679. }
  41680. },
  41681. },
  41682. [
  41683. {
  41684. name: "Teeny",
  41685. height: math.unit(2, "inches")
  41686. },
  41687. {
  41688. name: "Smol",
  41689. height: math.unit(8, "inches")
  41690. },
  41691. {
  41692. name: "Normal",
  41693. height: math.unit(5 + 6/12, "feet"),
  41694. default: true
  41695. },
  41696. {
  41697. name: "Mini-Macro",
  41698. height: math.unit(15, "feet")
  41699. },
  41700. {
  41701. name: "Macro",
  41702. height: math.unit(50, "feet")
  41703. },
  41704. ]
  41705. ))
  41706. characterMakers.push(() => makeCharacter(
  41707. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41708. {
  41709. front: {
  41710. height: math.unit(6 + 4/12, "feet"),
  41711. weight: math.unit(170, "lb"),
  41712. name: "Front",
  41713. image: {
  41714. source: "./media/characters/charlie/front.svg",
  41715. extra: 1348/1228,
  41716. bottom: 15/1363
  41717. }
  41718. },
  41719. },
  41720. [
  41721. {
  41722. name: "Macro",
  41723. height: math.unit(1700, "meters"),
  41724. default: true
  41725. },
  41726. {
  41727. name: "MegaMacro",
  41728. height: math.unit(20400, "meters")
  41729. },
  41730. ]
  41731. ))
  41732. characterMakers.push(() => makeCharacter(
  41733. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41734. {
  41735. front: {
  41736. height: math.unit(6 + 3/12, "feet"),
  41737. weight: math.unit(185, "lb"),
  41738. name: "Front",
  41739. image: {
  41740. source: "./media/characters/susan-grant/front.svg",
  41741. extra: 1351/1327,
  41742. bottom: 26/1377
  41743. }
  41744. },
  41745. },
  41746. [
  41747. {
  41748. name: "Normal",
  41749. height: math.unit(6 + 3/12, "feet"),
  41750. default: true
  41751. },
  41752. {
  41753. name: "Macro",
  41754. height: math.unit(225, "feet")
  41755. },
  41756. {
  41757. name: "Macro+",
  41758. height: math.unit(900, "feet")
  41759. },
  41760. {
  41761. name: "MegaMacro",
  41762. height: math.unit(14400, "feet")
  41763. },
  41764. ]
  41765. ))
  41766. characterMakers.push(() => makeCharacter(
  41767. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41768. {
  41769. front: {
  41770. height: math.unit(5 + 4/12, "feet"),
  41771. weight: math.unit(110, "lb"),
  41772. name: "Front",
  41773. image: {
  41774. source: "./media/characters/axel-isanov/front.svg",
  41775. extra: 1096/1065,
  41776. bottom: 13/1109
  41777. }
  41778. },
  41779. },
  41780. [
  41781. {
  41782. name: "Normal",
  41783. height: math.unit(5 + 4/12, "feet"),
  41784. default: true
  41785. },
  41786. ]
  41787. ))
  41788. characterMakers.push(() => makeCharacter(
  41789. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41790. {
  41791. front: {
  41792. height: math.unit(9, "feet"),
  41793. weight: math.unit(467, "lb"),
  41794. name: "Front",
  41795. image: {
  41796. source: "./media/characters/necahual/front.svg",
  41797. extra: 920/873,
  41798. bottom: 26/946
  41799. }
  41800. },
  41801. back: {
  41802. height: math.unit(9, "feet"),
  41803. weight: math.unit(467, "lb"),
  41804. name: "Back",
  41805. image: {
  41806. source: "./media/characters/necahual/back.svg",
  41807. extra: 930/884,
  41808. bottom: 16/946
  41809. }
  41810. },
  41811. frontUnderwear: {
  41812. height: math.unit(9, "feet"),
  41813. weight: math.unit(467, "lb"),
  41814. name: "Front (Underwear)",
  41815. image: {
  41816. source: "./media/characters/necahual/front-underwear.svg",
  41817. extra: 920/873,
  41818. bottom: 26/946
  41819. }
  41820. },
  41821. frontDressed: {
  41822. height: math.unit(9, "feet"),
  41823. weight: math.unit(467, "lb"),
  41824. name: "Front (Dressed)",
  41825. image: {
  41826. source: "./media/characters/necahual/front-dressed.svg",
  41827. extra: 920/873,
  41828. bottom: 26/946
  41829. }
  41830. },
  41831. },
  41832. [
  41833. {
  41834. name: "Comprsesed",
  41835. height: math.unit(9, "feet")
  41836. },
  41837. {
  41838. name: "Natural",
  41839. height: math.unit(15, "feet"),
  41840. default: true
  41841. },
  41842. {
  41843. name: "Boosted",
  41844. height: math.unit(50, "feet")
  41845. },
  41846. {
  41847. name: "Boosted+",
  41848. height: math.unit(150, "feet")
  41849. },
  41850. {
  41851. name: "Max",
  41852. height: math.unit(500, "feet")
  41853. },
  41854. ]
  41855. ))
  41856. characterMakers.push(() => makeCharacter(
  41857. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41858. {
  41859. front: {
  41860. height: math.unit(22 + 1/12, "feet"),
  41861. weight: math.unit(3200, "lb"),
  41862. name: "Front",
  41863. image: {
  41864. source: "./media/characters/theo-acacia/front.svg",
  41865. extra: 1796/1741,
  41866. bottom: 83/1879
  41867. }
  41868. },
  41869. frontUnderwear: {
  41870. height: math.unit(22 + 1/12, "feet"),
  41871. weight: math.unit(3200, "lb"),
  41872. name: "Front (Underwear)",
  41873. image: {
  41874. source: "./media/characters/theo-acacia/front-underwear.svg",
  41875. extra: 1796/1741,
  41876. bottom: 83/1879
  41877. }
  41878. },
  41879. frontNude: {
  41880. height: math.unit(22 + 1/12, "feet"),
  41881. weight: math.unit(3200, "lb"),
  41882. name: "Front (Nude)",
  41883. image: {
  41884. source: "./media/characters/theo-acacia/front-nude.svg",
  41885. extra: 1796/1741,
  41886. bottom: 83/1879
  41887. }
  41888. },
  41889. },
  41890. [
  41891. {
  41892. name: "Normal",
  41893. height: math.unit(22 + 1/12, "feet"),
  41894. default: true
  41895. },
  41896. ]
  41897. ))
  41898. characterMakers.push(() => makeCharacter(
  41899. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41900. {
  41901. front: {
  41902. height: math.unit(20, "feet"),
  41903. name: "Front",
  41904. image: {
  41905. source: "./media/characters/astra/front.svg",
  41906. extra: 1850/1714,
  41907. bottom: 106/1956
  41908. }
  41909. },
  41910. frontUndressed: {
  41911. height: math.unit(20, "feet"),
  41912. name: "Front (Undressed)",
  41913. image: {
  41914. source: "./media/characters/astra/front-undressed.svg",
  41915. extra: 1926/1749,
  41916. bottom: 0/1926
  41917. }
  41918. },
  41919. hand: {
  41920. height: math.unit(1.53, "feet"),
  41921. name: "Hand",
  41922. image: {
  41923. source: "./media/characters/astra/hand.svg"
  41924. }
  41925. },
  41926. paw: {
  41927. height: math.unit(1.53, "feet"),
  41928. name: "Paw",
  41929. image: {
  41930. source: "./media/characters/astra/paw.svg"
  41931. }
  41932. },
  41933. },
  41934. [
  41935. {
  41936. name: "Smallest",
  41937. height: math.unit(20, "feet")
  41938. },
  41939. {
  41940. name: "Normal",
  41941. height: math.unit(1e9, "miles"),
  41942. default: true
  41943. },
  41944. {
  41945. name: "Larger",
  41946. height: math.unit(5, "multiverses")
  41947. },
  41948. {
  41949. name: "Largest",
  41950. height: math.unit(1e9, "multiverses")
  41951. },
  41952. ]
  41953. ))
  41954. characterMakers.push(() => makeCharacter(
  41955. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41956. {
  41957. front: {
  41958. height: math.unit(8, "feet"),
  41959. name: "Front",
  41960. image: {
  41961. source: "./media/characters/breanna/front.svg",
  41962. extra: 1912/1632,
  41963. bottom: 33/1945
  41964. }
  41965. },
  41966. },
  41967. [
  41968. {
  41969. name: "Smallest",
  41970. height: math.unit(8, "feet")
  41971. },
  41972. {
  41973. name: "Normal",
  41974. height: math.unit(1, "mile"),
  41975. default: true
  41976. },
  41977. {
  41978. name: "Maximum",
  41979. height: math.unit(1500000000000, "lightyears")
  41980. },
  41981. ]
  41982. ))
  41983. characterMakers.push(() => makeCharacter(
  41984. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41985. {
  41986. front: {
  41987. height: math.unit(5 + 11/12, "feet"),
  41988. weight: math.unit(155, "lb"),
  41989. name: "Front",
  41990. image: {
  41991. source: "./media/characters/cai/front.svg",
  41992. extra: 1823/1702,
  41993. bottom: 32/1855
  41994. }
  41995. },
  41996. back: {
  41997. height: math.unit(5 + 11/12, "feet"),
  41998. weight: math.unit(155, "lb"),
  41999. name: "Back",
  42000. image: {
  42001. source: "./media/characters/cai/back.svg",
  42002. extra: 1809/1708,
  42003. bottom: 31/1840
  42004. }
  42005. },
  42006. },
  42007. [
  42008. {
  42009. name: "Normal",
  42010. height: math.unit(5 + 11/12, "feet"),
  42011. default: true
  42012. },
  42013. {
  42014. name: "Big",
  42015. height: math.unit(15, "feet")
  42016. },
  42017. {
  42018. name: "Macro",
  42019. height: math.unit(200, "feet")
  42020. },
  42021. ]
  42022. ))
  42023. characterMakers.push(() => makeCharacter(
  42024. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42025. {
  42026. front: {
  42027. height: math.unit(5 + 6/12, "feet"),
  42028. weight: math.unit(160, "lb"),
  42029. name: "Front",
  42030. image: {
  42031. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42032. extra: 1227/1174,
  42033. bottom: 37/1264
  42034. }
  42035. },
  42036. },
  42037. [
  42038. {
  42039. name: "Macro",
  42040. height: math.unit(444, "meters"),
  42041. default: true
  42042. },
  42043. ]
  42044. ))
  42045. characterMakers.push(() => makeCharacter(
  42046. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42047. {
  42048. front: {
  42049. height: math.unit(18 + 7/12, "feet"),
  42050. name: "Front",
  42051. image: {
  42052. source: "./media/characters/rex/front.svg",
  42053. extra: 1941/1807,
  42054. bottom: 66/2007
  42055. }
  42056. },
  42057. back: {
  42058. height: math.unit(18 + 7/12, "feet"),
  42059. name: "Back",
  42060. image: {
  42061. source: "./media/characters/rex/back.svg",
  42062. extra: 1937/1822,
  42063. bottom: 42/1979
  42064. }
  42065. },
  42066. boot: {
  42067. height: math.unit(3.45, "feet"),
  42068. name: "Boot",
  42069. image: {
  42070. source: "./media/characters/rex/boot.svg"
  42071. }
  42072. },
  42073. paw: {
  42074. height: math.unit(4.17, "feet"),
  42075. name: "Paw",
  42076. image: {
  42077. source: "./media/characters/rex/paw.svg"
  42078. }
  42079. },
  42080. head: {
  42081. height: math.unit(6.728, "feet"),
  42082. name: "Head",
  42083. image: {
  42084. source: "./media/characters/rex/head.svg"
  42085. }
  42086. },
  42087. },
  42088. [
  42089. {
  42090. name: "Nano",
  42091. height: math.unit(18 + 7/12, "feet")
  42092. },
  42093. {
  42094. name: "Micro",
  42095. height: math.unit(1.5, "megameters")
  42096. },
  42097. {
  42098. name: "Normal",
  42099. height: math.unit(440, "megameters"),
  42100. default: true
  42101. },
  42102. {
  42103. name: "Macro",
  42104. height: math.unit(2.5, "gigameters")
  42105. },
  42106. {
  42107. name: "Gigamacro",
  42108. height: math.unit(2, "galaxies")
  42109. },
  42110. ]
  42111. ))
  42112. characterMakers.push(() => makeCharacter(
  42113. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42114. {
  42115. side: {
  42116. height: math.unit(32, "feet"),
  42117. weight: math.unit(250000, "lb"),
  42118. name: "Side",
  42119. image: {
  42120. source: "./media/characters/silverwing/side.svg",
  42121. extra: 1100/1019,
  42122. bottom: 204/1304
  42123. }
  42124. },
  42125. },
  42126. [
  42127. {
  42128. name: "Normal",
  42129. height: math.unit(32, "feet"),
  42130. default: true
  42131. },
  42132. ]
  42133. ))
  42134. characterMakers.push(() => makeCharacter(
  42135. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42136. {
  42137. front: {
  42138. height: math.unit(6 + 6/12, "feet"),
  42139. weight: math.unit(350, "lb"),
  42140. name: "Front",
  42141. image: {
  42142. source: "./media/characters/tristan-hawthorne/front.svg",
  42143. extra: 1159/1124,
  42144. bottom: 37/1196
  42145. },
  42146. form: "labrador",
  42147. default: true
  42148. },
  42149. skunkFront: {
  42150. height: math.unit(4 + 6/12, "feet"),
  42151. weight: math.unit(120, "lb"),
  42152. name: "Front",
  42153. image: {
  42154. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42155. extra: 1609/1551,
  42156. bottom: 169/1778
  42157. },
  42158. form: "skunk",
  42159. default: true
  42160. },
  42161. },
  42162. [
  42163. {
  42164. name: "Normal",
  42165. height: math.unit(6 + 6/12, "feet"),
  42166. form: "labrador",
  42167. default: true
  42168. },
  42169. {
  42170. name: "Normal",
  42171. height: math.unit(4 + 6/12, "feet"),
  42172. form: "skunk",
  42173. default: true
  42174. },
  42175. ],
  42176. {
  42177. "labrador": {
  42178. name: "Labrador",
  42179. default: true
  42180. },
  42181. "skunk": {
  42182. name: "Skunk"
  42183. }
  42184. }
  42185. ))
  42186. characterMakers.push(() => makeCharacter(
  42187. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42188. {
  42189. front: {
  42190. height: math.unit(5 + 11/12, "feet"),
  42191. weight: math.unit(190, "lb"),
  42192. name: "Front",
  42193. image: {
  42194. source: "./media/characters/mizu/front.svg",
  42195. extra: 1988/1788,
  42196. bottom: 14/2002
  42197. }
  42198. },
  42199. },
  42200. [
  42201. {
  42202. name: "Normal",
  42203. height: math.unit(5 + 11/12, "feet"),
  42204. default: true
  42205. },
  42206. ]
  42207. ))
  42208. characterMakers.push(() => makeCharacter(
  42209. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42210. {
  42211. front: {
  42212. height: math.unit(1.7, "feet"),
  42213. weight: math.unit(50, "lb"),
  42214. name: "Front",
  42215. image: {
  42216. source: "./media/characters/dechroma/front.svg",
  42217. extra: 1095/859,
  42218. bottom: 64/1159
  42219. }
  42220. },
  42221. },
  42222. [
  42223. {
  42224. name: "Normal",
  42225. height: math.unit(1.7, "feet"),
  42226. default: true
  42227. },
  42228. ]
  42229. ))
  42230. characterMakers.push(() => makeCharacter(
  42231. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42232. {
  42233. side: {
  42234. height: math.unit(30, "feet"),
  42235. name: "Side",
  42236. image: {
  42237. source: "./media/characters/veluren-thanazel/side.svg",
  42238. extra: 1611/633,
  42239. bottom: 118/1729
  42240. }
  42241. },
  42242. front: {
  42243. height: math.unit(30, "feet"),
  42244. name: "Front",
  42245. image: {
  42246. source: "./media/characters/veluren-thanazel/front.svg",
  42247. extra: 1486/636,
  42248. bottom: 238/1724
  42249. }
  42250. },
  42251. head: {
  42252. height: math.unit(21.4, "feet"),
  42253. name: "Head",
  42254. image: {
  42255. source: "./media/characters/veluren-thanazel/head.svg"
  42256. }
  42257. },
  42258. genitals: {
  42259. height: math.unit(19.4, "feet"),
  42260. name: "Genitals",
  42261. image: {
  42262. source: "./media/characters/veluren-thanazel/genitals.svg"
  42263. }
  42264. },
  42265. },
  42266. [
  42267. {
  42268. name: "Social",
  42269. height: math.unit(6, "feet")
  42270. },
  42271. {
  42272. name: "Play",
  42273. height: math.unit(12, "feet")
  42274. },
  42275. {
  42276. name: "True",
  42277. height: math.unit(30, "feet"),
  42278. default: true
  42279. },
  42280. ]
  42281. ))
  42282. characterMakers.push(() => makeCharacter(
  42283. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42284. {
  42285. front: {
  42286. height: math.unit(7 + 6/12, "feet"),
  42287. weight: math.unit(500, "kg"),
  42288. name: "Front",
  42289. image: {
  42290. source: "./media/characters/arcturas/front.svg",
  42291. extra: 1700/1500,
  42292. bottom: 145/1845
  42293. }
  42294. },
  42295. },
  42296. [
  42297. {
  42298. name: "Normal",
  42299. height: math.unit(7 + 6/12, "feet"),
  42300. default: true
  42301. },
  42302. ]
  42303. ))
  42304. characterMakers.push(() => makeCharacter(
  42305. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42306. {
  42307. side: {
  42308. height: math.unit(6, "feet"),
  42309. weight: math.unit(2, "tons"),
  42310. name: "Side",
  42311. image: {
  42312. source: "./media/characters/vitaen/side.svg",
  42313. extra: 1157/617,
  42314. bottom: 122/1279
  42315. }
  42316. },
  42317. },
  42318. [
  42319. {
  42320. name: "Normal",
  42321. height: math.unit(6, "feet"),
  42322. default: true
  42323. },
  42324. ]
  42325. ))
  42326. characterMakers.push(() => makeCharacter(
  42327. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42328. {
  42329. front: {
  42330. height: math.unit(19, "feet"),
  42331. name: "Front",
  42332. image: {
  42333. source: "./media/characters/fia-dreamweaver/front.svg",
  42334. extra: 1630/1504,
  42335. bottom: 25/1655
  42336. }
  42337. },
  42338. },
  42339. [
  42340. {
  42341. name: "Normal",
  42342. height: math.unit(19, "feet"),
  42343. default: true
  42344. },
  42345. ]
  42346. ))
  42347. characterMakers.push(() => makeCharacter(
  42348. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42349. {
  42350. front: {
  42351. height: math.unit(5 + 4/12, "feet"),
  42352. name: "Front",
  42353. image: {
  42354. source: "./media/characters/artan/front.svg",
  42355. extra: 1618/1535,
  42356. bottom: 46/1664
  42357. }
  42358. },
  42359. back: {
  42360. height: math.unit(5 + 4/12, "feet"),
  42361. name: "Back",
  42362. image: {
  42363. source: "./media/characters/artan/back.svg",
  42364. extra: 1618/1543,
  42365. bottom: 31/1649
  42366. }
  42367. },
  42368. },
  42369. [
  42370. {
  42371. name: "Normal",
  42372. height: math.unit(5 + 4/12, "feet"),
  42373. default: true
  42374. },
  42375. ]
  42376. ))
  42377. characterMakers.push(() => makeCharacter(
  42378. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42379. {
  42380. side: {
  42381. height: math.unit(182, "cm"),
  42382. weight: math.unit(1000, "lb"),
  42383. name: "Side",
  42384. image: {
  42385. source: "./media/characters/silver-dragon/side.svg",
  42386. extra: 710/287,
  42387. bottom: 88/798
  42388. }
  42389. },
  42390. },
  42391. [
  42392. {
  42393. name: "Normal",
  42394. height: math.unit(182, "cm"),
  42395. default: true
  42396. },
  42397. ]
  42398. ))
  42399. characterMakers.push(() => makeCharacter(
  42400. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42401. {
  42402. side: {
  42403. height: math.unit(6 + 6/12, "feet"),
  42404. weight: math.unit(1.5, "tons"),
  42405. name: "Side",
  42406. image: {
  42407. source: "./media/characters/zephyr/side.svg",
  42408. extra: 1433/586,
  42409. bottom: 109/1542
  42410. }
  42411. },
  42412. },
  42413. [
  42414. {
  42415. name: "Normal",
  42416. height: math.unit(6 + 6/12, "feet"),
  42417. default: true
  42418. },
  42419. ]
  42420. ))
  42421. characterMakers.push(() => makeCharacter(
  42422. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42423. {
  42424. side: {
  42425. height: math.unit(1, "feet"),
  42426. name: "Side",
  42427. image: {
  42428. source: "./media/characters/vixye/side.svg",
  42429. extra: 632/541,
  42430. bottom: 0/632
  42431. }
  42432. },
  42433. },
  42434. [
  42435. {
  42436. name: "Normal",
  42437. height: math.unit(1, "feet"),
  42438. default: true
  42439. },
  42440. {
  42441. name: "True",
  42442. height: math.unit(1e15, "multiverses")
  42443. },
  42444. ]
  42445. ))
  42446. characterMakers.push(() => makeCharacter(
  42447. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42448. {
  42449. front: {
  42450. height: math.unit(8 + 2/12, "feet"),
  42451. weight: math.unit(650, "lb"),
  42452. name: "Front",
  42453. image: {
  42454. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42455. extra: 1174/1137,
  42456. bottom: 82/1256
  42457. }
  42458. },
  42459. back: {
  42460. height: math.unit(8 + 2/12, "feet"),
  42461. weight: math.unit(650, "lb"),
  42462. name: "Back",
  42463. image: {
  42464. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42465. extra: 1204/1157,
  42466. bottom: 46/1250
  42467. }
  42468. },
  42469. },
  42470. [
  42471. {
  42472. name: "Wildform",
  42473. height: math.unit(8 + 2/12, "feet"),
  42474. default: true
  42475. },
  42476. ]
  42477. ))
  42478. characterMakers.push(() => makeCharacter(
  42479. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42480. {
  42481. front: {
  42482. height: math.unit(18, "feet"),
  42483. name: "Front",
  42484. image: {
  42485. source: "./media/characters/cyphin/front.svg",
  42486. extra: 970/886,
  42487. bottom: 42/1012
  42488. }
  42489. },
  42490. back: {
  42491. height: math.unit(18, "feet"),
  42492. name: "Back",
  42493. image: {
  42494. source: "./media/characters/cyphin/back.svg",
  42495. extra: 1009/894,
  42496. bottom: 24/1033
  42497. }
  42498. },
  42499. head: {
  42500. height: math.unit(5.05, "feet"),
  42501. name: "Head",
  42502. image: {
  42503. source: "./media/characters/cyphin/head.svg"
  42504. }
  42505. },
  42506. tailbud: {
  42507. height: math.unit(5, "feet"),
  42508. name: "Tailbud",
  42509. image: {
  42510. source: "./media/characters/cyphin/tailbud.svg"
  42511. }
  42512. },
  42513. },
  42514. [
  42515. ]
  42516. ))
  42517. characterMakers.push(() => makeCharacter(
  42518. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42519. {
  42520. side: {
  42521. height: math.unit(10, "feet"),
  42522. weight: math.unit(6, "tons"),
  42523. name: "Side",
  42524. image: {
  42525. source: "./media/characters/raijin/side.svg",
  42526. extra: 1529/613,
  42527. bottom: 337/1866
  42528. }
  42529. },
  42530. },
  42531. [
  42532. {
  42533. name: "Normal",
  42534. height: math.unit(10, "feet"),
  42535. default: true
  42536. },
  42537. ]
  42538. ))
  42539. characterMakers.push(() => makeCharacter(
  42540. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42541. {
  42542. side: {
  42543. height: math.unit(9, "feet"),
  42544. name: "Side",
  42545. image: {
  42546. source: "./media/characters/nilghais/side.svg",
  42547. extra: 1047/744,
  42548. bottom: 91/1138
  42549. }
  42550. },
  42551. head: {
  42552. height: math.unit(3.14, "feet"),
  42553. name: "Head",
  42554. image: {
  42555. source: "./media/characters/nilghais/head.svg"
  42556. }
  42557. },
  42558. mouth: {
  42559. height: math.unit(4.6, "feet"),
  42560. name: "Mouth",
  42561. image: {
  42562. source: "./media/characters/nilghais/mouth.svg"
  42563. }
  42564. },
  42565. wings: {
  42566. height: math.unit(24, "feet"),
  42567. name: "Wings",
  42568. image: {
  42569. source: "./media/characters/nilghais/wings.svg"
  42570. }
  42571. },
  42572. ass: {
  42573. height: math.unit(6.12, "feet"),
  42574. name: "Ass",
  42575. image: {
  42576. source: "./media/characters/nilghais/ass.svg"
  42577. }
  42578. },
  42579. },
  42580. [
  42581. {
  42582. name: "Normal",
  42583. height: math.unit(9, "feet"),
  42584. default: true
  42585. },
  42586. ]
  42587. ))
  42588. characterMakers.push(() => makeCharacter(
  42589. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42590. {
  42591. regular: {
  42592. height: math.unit(16 + 2/12, "feet"),
  42593. weight: math.unit(2300, "lb"),
  42594. name: "Regular",
  42595. image: {
  42596. source: "./media/characters/zolgar/regular.svg",
  42597. extra: 1246/1004,
  42598. bottom: 124/1370
  42599. }
  42600. },
  42601. boxers: {
  42602. height: math.unit(16 + 2/12, "feet"),
  42603. weight: math.unit(2300, "lb"),
  42604. name: "Boxers",
  42605. image: {
  42606. source: "./media/characters/zolgar/boxers.svg",
  42607. extra: 1246/1004,
  42608. bottom: 124/1370
  42609. }
  42610. },
  42611. armored: {
  42612. height: math.unit(16 + 2/12, "feet"),
  42613. weight: math.unit(2300, "lb"),
  42614. name: "Armored",
  42615. image: {
  42616. source: "./media/characters/zolgar/armored.svg",
  42617. extra: 1246/1004,
  42618. bottom: 124/1370
  42619. }
  42620. },
  42621. goth: {
  42622. height: math.unit(16 + 2/12, "feet"),
  42623. weight: math.unit(2300, "lb"),
  42624. name: "Goth",
  42625. image: {
  42626. source: "./media/characters/zolgar/goth.svg",
  42627. extra: 1246/1004,
  42628. bottom: 124/1370
  42629. }
  42630. },
  42631. },
  42632. [
  42633. {
  42634. name: "Shrunken Down",
  42635. height: math.unit(9 + 2/12, "feet")
  42636. },
  42637. {
  42638. name: "Normal",
  42639. height: math.unit(16 + 2/12, "feet"),
  42640. default: true
  42641. },
  42642. ]
  42643. ))
  42644. characterMakers.push(() => makeCharacter(
  42645. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42646. {
  42647. front: {
  42648. height: math.unit(6, "feet"),
  42649. weight: math.unit(168, "lb"),
  42650. name: "Front",
  42651. image: {
  42652. source: "./media/characters/luca/front.svg",
  42653. extra: 841/667,
  42654. bottom: 102/943
  42655. }
  42656. },
  42657. },
  42658. [
  42659. {
  42660. name: "Normal",
  42661. height: math.unit(6, "feet"),
  42662. default: true
  42663. },
  42664. ]
  42665. ))
  42666. characterMakers.push(() => makeCharacter(
  42667. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42668. {
  42669. side: {
  42670. height: math.unit(7 + 3/12, "feet"),
  42671. weight: math.unit(312, "lb"),
  42672. name: "Side",
  42673. image: {
  42674. source: "./media/characters/zezo/side.svg",
  42675. extra: 1192/1067,
  42676. bottom: 63/1255
  42677. }
  42678. },
  42679. },
  42680. [
  42681. {
  42682. name: "Normal",
  42683. height: math.unit(7 + 3/12, "feet"),
  42684. default: true
  42685. },
  42686. ]
  42687. ))
  42688. characterMakers.push(() => makeCharacter(
  42689. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42690. {
  42691. front: {
  42692. height: math.unit(5 + 5/12, "feet"),
  42693. weight: math.unit(170, "lb"),
  42694. name: "Front",
  42695. image: {
  42696. source: "./media/characters/mayso/front.svg",
  42697. extra: 1215/1108,
  42698. bottom: 16/1231
  42699. }
  42700. },
  42701. },
  42702. [
  42703. {
  42704. name: "Normal",
  42705. height: math.unit(5 + 5/12, "feet"),
  42706. default: true
  42707. },
  42708. ]
  42709. ))
  42710. characterMakers.push(() => makeCharacter(
  42711. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42712. {
  42713. front: {
  42714. height: math.unit(4 + 3/12, "feet"),
  42715. weight: math.unit(80, "lb"),
  42716. name: "Front",
  42717. image: {
  42718. source: "./media/characters/hess/front.svg",
  42719. extra: 1200/1123,
  42720. bottom: 16/1216
  42721. }
  42722. },
  42723. },
  42724. [
  42725. {
  42726. name: "Normal",
  42727. height: math.unit(4 + 3/12, "feet"),
  42728. default: true
  42729. },
  42730. ]
  42731. ))
  42732. characterMakers.push(() => makeCharacter(
  42733. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42734. {
  42735. front: {
  42736. height: math.unit(1.9, "meters"),
  42737. name: "Front",
  42738. image: {
  42739. source: "./media/characters/ashgar/front.svg",
  42740. extra: 1177/1146,
  42741. bottom: 99/1276
  42742. }
  42743. },
  42744. back: {
  42745. height: math.unit(1.9, "meters"),
  42746. name: "Back",
  42747. image: {
  42748. source: "./media/characters/ashgar/back.svg",
  42749. extra: 1201/1183,
  42750. bottom: 53/1254
  42751. }
  42752. },
  42753. feral: {
  42754. height: math.unit(1.4, "meters"),
  42755. name: "Feral",
  42756. image: {
  42757. source: "./media/characters/ashgar/feral.svg",
  42758. extra: 370/345,
  42759. bottom: 45/415
  42760. }
  42761. },
  42762. },
  42763. [
  42764. {
  42765. name: "Normal",
  42766. height: math.unit(1.9, "meters"),
  42767. default: true
  42768. },
  42769. ]
  42770. ))
  42771. characterMakers.push(() => makeCharacter(
  42772. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42773. {
  42774. regular: {
  42775. height: math.unit(6, "feet"),
  42776. weight: math.unit(220, "lb"),
  42777. name: "Regular",
  42778. image: {
  42779. source: "./media/characters/phillip/regular.svg",
  42780. extra: 1373/1277,
  42781. bottom: 75/1448
  42782. }
  42783. },
  42784. dressed: {
  42785. height: math.unit(6, "feet"),
  42786. weight: math.unit(220, "lb"),
  42787. name: "Dressed",
  42788. image: {
  42789. source: "./media/characters/phillip/dressed.svg",
  42790. extra: 1373/1277,
  42791. bottom: 75/1448
  42792. }
  42793. },
  42794. paw: {
  42795. height: math.unit(1.44, "feet"),
  42796. name: "Paw",
  42797. image: {
  42798. source: "./media/characters/phillip/paw.svg"
  42799. }
  42800. },
  42801. },
  42802. [
  42803. {
  42804. name: "Normal",
  42805. height: math.unit(6, "feet"),
  42806. default: true
  42807. },
  42808. ]
  42809. ))
  42810. characterMakers.push(() => makeCharacter(
  42811. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42812. {
  42813. side: {
  42814. height: math.unit(42, "feet"),
  42815. name: "Side",
  42816. image: {
  42817. source: "./media/characters/uvula/side.svg",
  42818. extra: 683/586,
  42819. bottom: 60/743
  42820. }
  42821. },
  42822. front: {
  42823. height: math.unit(42, "feet"),
  42824. name: "Front",
  42825. image: {
  42826. source: "./media/characters/uvula/front.svg",
  42827. extra: 705/613,
  42828. bottom: 54/759
  42829. }
  42830. },
  42831. maw: {
  42832. height: math.unit(23.5, "feet"),
  42833. name: "Maw",
  42834. image: {
  42835. source: "./media/characters/uvula/maw.svg"
  42836. }
  42837. },
  42838. },
  42839. [
  42840. {
  42841. name: "Original Size",
  42842. height: math.unit(14, "inches")
  42843. },
  42844. {
  42845. name: "Human Size",
  42846. height: math.unit(6, "feet")
  42847. },
  42848. {
  42849. name: "Big",
  42850. height: math.unit(42, "feet"),
  42851. default: true
  42852. },
  42853. {
  42854. name: "Bigger",
  42855. height: math.unit(100, "feet")
  42856. },
  42857. ]
  42858. ))
  42859. characterMakers.push(() => makeCharacter(
  42860. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42861. {
  42862. front: {
  42863. height: math.unit(5 + 11/12, "feet"),
  42864. name: "Front",
  42865. image: {
  42866. source: "./media/characters/lannah/front.svg",
  42867. extra: 1208/1113,
  42868. bottom: 97/1305
  42869. }
  42870. },
  42871. },
  42872. [
  42873. {
  42874. name: "Normal",
  42875. height: math.unit(5 + 11/12, "feet"),
  42876. default: true
  42877. },
  42878. ]
  42879. ))
  42880. characterMakers.push(() => makeCharacter(
  42881. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42882. {
  42883. front: {
  42884. height: math.unit(6 + 3/12, "feet"),
  42885. weight: math.unit(3.5, "tons"),
  42886. name: "Front",
  42887. image: {
  42888. source: "./media/characters/emberflame/front.svg",
  42889. extra: 1198/672,
  42890. bottom: 82/1280
  42891. }
  42892. },
  42893. side: {
  42894. height: math.unit(6 + 3/12, "feet"),
  42895. weight: math.unit(3.5, "tons"),
  42896. name: "Side",
  42897. image: {
  42898. source: "./media/characters/emberflame/side.svg",
  42899. extra: 938/527,
  42900. bottom: 56/994
  42901. }
  42902. },
  42903. },
  42904. [
  42905. {
  42906. name: "Normal",
  42907. height: math.unit(6 + 3/12, "feet"),
  42908. default: true
  42909. },
  42910. ]
  42911. ))
  42912. characterMakers.push(() => makeCharacter(
  42913. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42914. {
  42915. side: {
  42916. height: math.unit(17.5, "feet"),
  42917. weight: math.unit(35, "tons"),
  42918. name: "Side",
  42919. image: {
  42920. source: "./media/characters/sophie-ambrose/side.svg",
  42921. extra: 1573/1242,
  42922. bottom: 71/1644
  42923. }
  42924. },
  42925. maw: {
  42926. height: math.unit(7.4, "feet"),
  42927. name: "Maw",
  42928. image: {
  42929. source: "./media/characters/sophie-ambrose/maw.svg"
  42930. }
  42931. },
  42932. },
  42933. [
  42934. {
  42935. name: "Normal",
  42936. height: math.unit(17.5, "feet"),
  42937. default: true
  42938. },
  42939. ]
  42940. ))
  42941. characterMakers.push(() => makeCharacter(
  42942. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42943. {
  42944. front: {
  42945. height: math.unit(280, "feet"),
  42946. weight: math.unit(550, "tons"),
  42947. name: "Front",
  42948. image: {
  42949. source: "./media/characters/king-mugi/front.svg",
  42950. extra: 1102/947,
  42951. bottom: 104/1206
  42952. }
  42953. },
  42954. },
  42955. [
  42956. {
  42957. name: "King Mugi",
  42958. height: math.unit(280, "feet"),
  42959. default: true
  42960. },
  42961. ]
  42962. ))
  42963. characterMakers.push(() => makeCharacter(
  42964. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42965. {
  42966. front: {
  42967. height: math.unit(64, "meters"),
  42968. name: "Front",
  42969. image: {
  42970. source: "./media/characters/nova-fox/front.svg",
  42971. extra: 1310/1246,
  42972. bottom: 65/1375
  42973. }
  42974. },
  42975. },
  42976. [
  42977. {
  42978. name: "Macro",
  42979. height: math.unit(64, "meters"),
  42980. default: true
  42981. },
  42982. ]
  42983. ))
  42984. characterMakers.push(() => makeCharacter(
  42985. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42986. {
  42987. front: {
  42988. height: math.unit(6 + 3/12, "feet"),
  42989. weight: math.unit(170, "lb"),
  42990. name: "Front",
  42991. image: {
  42992. source: "./media/characters/sam-bat/front.svg",
  42993. extra: 1601/1411,
  42994. bottom: 125/1726
  42995. }
  42996. },
  42997. back: {
  42998. height: math.unit(6 + 3/12, "feet"),
  42999. weight: math.unit(170, "lb"),
  43000. name: "Back",
  43001. image: {
  43002. source: "./media/characters/sam-bat/back.svg",
  43003. extra: 1577/1405,
  43004. bottom: 58/1635
  43005. }
  43006. },
  43007. },
  43008. [
  43009. {
  43010. name: "Normal",
  43011. height: math.unit(6 + 3/12, "feet"),
  43012. default: true
  43013. },
  43014. ]
  43015. ))
  43016. characterMakers.push(() => makeCharacter(
  43017. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43018. {
  43019. front: {
  43020. height: math.unit(59, "feet"),
  43021. weight: math.unit(40000, "lb"),
  43022. name: "Front",
  43023. image: {
  43024. source: "./media/characters/inari/front.svg",
  43025. extra: 1884/1350,
  43026. bottom: 95/1979
  43027. }
  43028. },
  43029. },
  43030. [
  43031. {
  43032. name: "Gigantamax",
  43033. height: math.unit(59, "feet"),
  43034. default: true
  43035. },
  43036. ]
  43037. ))
  43038. characterMakers.push(() => makeCharacter(
  43039. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43040. {
  43041. front: {
  43042. height: math.unit(5 + 8/12, "feet"),
  43043. name: "Front",
  43044. image: {
  43045. source: "./media/characters/elizabeth/front.svg",
  43046. extra: 1395/1298,
  43047. bottom: 54/1449
  43048. }
  43049. },
  43050. mouth: {
  43051. height: math.unit(1.97, "feet"),
  43052. name: "Mouth",
  43053. image: {
  43054. source: "./media/characters/elizabeth/mouth.svg"
  43055. }
  43056. },
  43057. foot: {
  43058. height: math.unit(1.17, "feet"),
  43059. name: "Foot",
  43060. image: {
  43061. source: "./media/characters/elizabeth/foot.svg"
  43062. }
  43063. },
  43064. },
  43065. [
  43066. {
  43067. name: "Normal",
  43068. height: math.unit(5 + 8/12, "feet"),
  43069. default: true
  43070. },
  43071. {
  43072. name: "Minimacro",
  43073. height: math.unit(18, "feet")
  43074. },
  43075. {
  43076. name: "Macro",
  43077. height: math.unit(180, "feet")
  43078. },
  43079. ]
  43080. ))
  43081. characterMakers.push(() => makeCharacter(
  43082. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43083. {
  43084. front: {
  43085. height: math.unit(5 + 2/12, "feet"),
  43086. name: "Front",
  43087. image: {
  43088. source: "./media/characters/october-gossamer/front.svg",
  43089. extra: 505/454,
  43090. bottom: 7/512
  43091. }
  43092. },
  43093. back: {
  43094. height: math.unit(5 + 2/12, "feet"),
  43095. name: "Back",
  43096. image: {
  43097. source: "./media/characters/october-gossamer/back.svg",
  43098. extra: 501/454,
  43099. bottom: 11/512
  43100. }
  43101. },
  43102. },
  43103. [
  43104. {
  43105. name: "Normal",
  43106. height: math.unit(5 + 2/12, "feet"),
  43107. default: true
  43108. },
  43109. ]
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43113. {
  43114. front: {
  43115. height: math.unit(5, "feet"),
  43116. name: "Front",
  43117. image: {
  43118. source: "./media/characters/epiglottis/front.svg",
  43119. extra: 923/849,
  43120. bottom: 17/940
  43121. }
  43122. },
  43123. },
  43124. [
  43125. {
  43126. name: "Original Size",
  43127. height: math.unit(10, "inches")
  43128. },
  43129. {
  43130. name: "Human Size",
  43131. height: math.unit(5, "feet"),
  43132. default: true
  43133. },
  43134. {
  43135. name: "Big",
  43136. height: math.unit(25, "feet")
  43137. },
  43138. {
  43139. name: "Bigger",
  43140. height: math.unit(50, "feet")
  43141. },
  43142. {
  43143. name: "oh lawd",
  43144. height: math.unit(75, "feet")
  43145. },
  43146. ]
  43147. ))
  43148. characterMakers.push(() => makeCharacter(
  43149. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43150. {
  43151. front: {
  43152. height: math.unit(2 + 4/12, "feet"),
  43153. weight: math.unit(60, "lb"),
  43154. name: "Front",
  43155. image: {
  43156. source: "./media/characters/lerm/front.svg",
  43157. extra: 796/790,
  43158. bottom: 79/875
  43159. }
  43160. },
  43161. },
  43162. [
  43163. {
  43164. name: "Normal",
  43165. height: math.unit(2 + 4/12, "feet"),
  43166. default: true
  43167. },
  43168. ]
  43169. ))
  43170. characterMakers.push(() => makeCharacter(
  43171. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43172. {
  43173. front: {
  43174. height: math.unit(5.5, "feet"),
  43175. weight: math.unit(130, "lb"),
  43176. name: "Front",
  43177. image: {
  43178. source: "./media/characters/xena-nebadon/front.svg",
  43179. extra: 1828/1730,
  43180. bottom: 79/1907
  43181. }
  43182. },
  43183. },
  43184. [
  43185. {
  43186. name: "Tiny Puppy",
  43187. height: math.unit(3, "inches")
  43188. },
  43189. {
  43190. name: "Normal",
  43191. height: math.unit(5.5, "feet"),
  43192. default: true
  43193. },
  43194. {
  43195. name: "Lotta Lady",
  43196. height: math.unit(12, "feet")
  43197. },
  43198. {
  43199. name: "Pretty Big",
  43200. height: math.unit(100, "feet")
  43201. },
  43202. {
  43203. name: "Big",
  43204. height: math.unit(500, "feet")
  43205. },
  43206. {
  43207. name: "Skyscraper Toys",
  43208. height: math.unit(2500, "feet")
  43209. },
  43210. {
  43211. name: "Plane Catcher",
  43212. height: math.unit(8, "miles")
  43213. },
  43214. {
  43215. name: "Planet Toys",
  43216. height: math.unit(15, "earths")
  43217. },
  43218. {
  43219. name: "Stardust",
  43220. height: math.unit(0.25, "galaxies")
  43221. },
  43222. {
  43223. name: "Snacks",
  43224. height: math.unit(70, "universes")
  43225. },
  43226. ]
  43227. ))
  43228. characterMakers.push(() => makeCharacter(
  43229. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43230. {
  43231. front: {
  43232. height: math.unit(1.6, "meters"),
  43233. weight: math.unit(60, "kg"),
  43234. name: "Front",
  43235. image: {
  43236. source: "./media/characters/bounty/front.svg",
  43237. extra: 1426/1308,
  43238. bottom: 15/1441
  43239. }
  43240. },
  43241. back: {
  43242. height: math.unit(1.6, "meters"),
  43243. weight: math.unit(60, "kg"),
  43244. name: "Back",
  43245. image: {
  43246. source: "./media/characters/bounty/back.svg",
  43247. extra: 1417/1307,
  43248. bottom: 8/1425
  43249. }
  43250. },
  43251. },
  43252. [
  43253. {
  43254. name: "Normal",
  43255. height: math.unit(1.6, "meters"),
  43256. default: true
  43257. },
  43258. {
  43259. name: "Macro",
  43260. height: math.unit(300, "meters")
  43261. },
  43262. ]
  43263. ))
  43264. characterMakers.push(() => makeCharacter(
  43265. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43266. {
  43267. front: {
  43268. height: math.unit(2 + 8/12, "feet"),
  43269. weight: math.unit(15, "lb"),
  43270. name: "Front",
  43271. image: {
  43272. source: "./media/characters/mochi/front.svg",
  43273. extra: 1022/852,
  43274. bottom: 435/1457
  43275. }
  43276. },
  43277. back: {
  43278. height: math.unit(2 + 8/12, "feet"),
  43279. weight: math.unit(15, "lb"),
  43280. name: "Back",
  43281. image: {
  43282. source: "./media/characters/mochi/back.svg",
  43283. extra: 1335/1119,
  43284. bottom: 39/1374
  43285. }
  43286. },
  43287. bird: {
  43288. height: math.unit(2 + 8/12, "feet"),
  43289. weight: math.unit(15, "lb"),
  43290. name: "Bird",
  43291. image: {
  43292. source: "./media/characters/mochi/bird.svg",
  43293. extra: 1251/1113,
  43294. bottom: 178/1429
  43295. }
  43296. },
  43297. kaiju: {
  43298. height: math.unit(154, "feet"),
  43299. weight: math.unit(1e7, "lb"),
  43300. name: "Kaiju",
  43301. image: {
  43302. source: "./media/characters/mochi/kaiju.svg",
  43303. extra: 460/324,
  43304. bottom: 40/500
  43305. }
  43306. },
  43307. head: {
  43308. height: math.unit(1.21, "feet"),
  43309. name: "Head",
  43310. image: {
  43311. source: "./media/characters/mochi/head.svg"
  43312. }
  43313. },
  43314. alternateTail: {
  43315. height: math.unit(2 + 8/12, "feet"),
  43316. weight: math.unit(45, "lb"),
  43317. name: "Alternate Tail",
  43318. image: {
  43319. source: "./media/characters/mochi/alternate-tail.svg",
  43320. extra: 139/76,
  43321. bottom: 45/184
  43322. }
  43323. },
  43324. },
  43325. [
  43326. {
  43327. name: "Micro",
  43328. height: math.unit(2, "inches")
  43329. },
  43330. {
  43331. name: "Normal",
  43332. height: math.unit(2 + 8/12, "feet"),
  43333. default: true
  43334. },
  43335. {
  43336. name: "Macro",
  43337. height: math.unit(106, "feet")
  43338. },
  43339. ]
  43340. ))
  43341. characterMakers.push(() => makeCharacter(
  43342. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43343. {
  43344. front: {
  43345. height: math.unit(5.67, "feet"),
  43346. weight: math.unit(135, "lb"),
  43347. name: "Front",
  43348. image: {
  43349. source: "./media/characters/sarel/front.svg",
  43350. extra: 865/788,
  43351. bottom: 97/962
  43352. }
  43353. },
  43354. back: {
  43355. height: math.unit(5.67, "feet"),
  43356. weight: math.unit(135, "lb"),
  43357. name: "Back",
  43358. image: {
  43359. source: "./media/characters/sarel/back.svg",
  43360. extra: 857/777,
  43361. bottom: 32/889
  43362. }
  43363. },
  43364. chozoan: {
  43365. height: math.unit(5.67, "feet"),
  43366. weight: math.unit(135, "lb"),
  43367. name: "Chozoan",
  43368. image: {
  43369. source: "./media/characters/sarel/chozoan.svg",
  43370. extra: 865/788,
  43371. bottom: 97/962
  43372. }
  43373. },
  43374. current: {
  43375. height: math.unit(5.67, "feet"),
  43376. weight: math.unit(135, "lb"),
  43377. name: "Current",
  43378. image: {
  43379. source: "./media/characters/sarel/current.svg",
  43380. extra: 865/788,
  43381. bottom: 97/962
  43382. }
  43383. },
  43384. head: {
  43385. height: math.unit(1.77, "feet"),
  43386. name: "Head",
  43387. image: {
  43388. source: "./media/characters/sarel/head.svg"
  43389. }
  43390. },
  43391. claws: {
  43392. height: math.unit(1.8, "feet"),
  43393. name: "Claws",
  43394. image: {
  43395. source: "./media/characters/sarel/claws.svg"
  43396. }
  43397. },
  43398. clawsAlt: {
  43399. height: math.unit(1.8, "feet"),
  43400. name: "Claws-alt",
  43401. image: {
  43402. source: "./media/characters/sarel/claws-alt.svg"
  43403. }
  43404. },
  43405. },
  43406. [
  43407. {
  43408. name: "Normal",
  43409. height: math.unit(5.67, "feet"),
  43410. default: true
  43411. },
  43412. ]
  43413. ))
  43414. characterMakers.push(() => makeCharacter(
  43415. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43416. {
  43417. front: {
  43418. height: math.unit(5500, "feet"),
  43419. name: "Front",
  43420. image: {
  43421. source: "./media/characters/alyonia/front.svg",
  43422. extra: 1200/1135,
  43423. bottom: 29/1229
  43424. }
  43425. },
  43426. back: {
  43427. height: math.unit(5500, "feet"),
  43428. name: "Back",
  43429. image: {
  43430. source: "./media/characters/alyonia/back.svg",
  43431. extra: 1205/1138,
  43432. bottom: 10/1215
  43433. }
  43434. },
  43435. },
  43436. [
  43437. {
  43438. name: "Small",
  43439. height: math.unit(10, "feet")
  43440. },
  43441. {
  43442. name: "Macro",
  43443. height: math.unit(500, "feet")
  43444. },
  43445. {
  43446. name: "Mega Macro",
  43447. height: math.unit(5500, "feet"),
  43448. default: true
  43449. },
  43450. {
  43451. name: "Mega Macro+",
  43452. height: math.unit(500000, "feet")
  43453. },
  43454. {
  43455. name: "Giga Macro",
  43456. height: math.unit(3000, "miles")
  43457. },
  43458. {
  43459. name: "Tera Macro",
  43460. height: math.unit(2.8e6, "miles")
  43461. },
  43462. {
  43463. name: "Galactic",
  43464. height: math.unit(120000, "lightyears")
  43465. },
  43466. ]
  43467. ))
  43468. characterMakers.push(() => makeCharacter(
  43469. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43470. {
  43471. werewolf: {
  43472. height: math.unit(8, "feet"),
  43473. weight: math.unit(425, "lb"),
  43474. name: "Werewolf",
  43475. image: {
  43476. source: "./media/characters/autumn/werewolf.svg",
  43477. extra: 2154/2031,
  43478. bottom: 160/2314
  43479. }
  43480. },
  43481. human: {
  43482. height: math.unit(5 + 8/12, "feet"),
  43483. weight: math.unit(150, "lb"),
  43484. name: "Human",
  43485. image: {
  43486. source: "./media/characters/autumn/human.svg",
  43487. extra: 1200/1149,
  43488. bottom: 30/1230
  43489. }
  43490. },
  43491. },
  43492. [
  43493. {
  43494. name: "Normal",
  43495. height: math.unit(8, "feet"),
  43496. default: true
  43497. },
  43498. ]
  43499. ))
  43500. characterMakers.push(() => makeCharacter(
  43501. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43502. {
  43503. front: {
  43504. height: math.unit(8 + 5/12, "feet"),
  43505. weight: math.unit(825, "lb"),
  43506. name: "Front",
  43507. image: {
  43508. source: "./media/characters/cobalt-charizard/front.svg",
  43509. extra: 1268/1155,
  43510. bottom: 122/1390
  43511. }
  43512. },
  43513. side: {
  43514. height: math.unit(8 + 5/12, "feet"),
  43515. weight: math.unit(825, "lb"),
  43516. name: "Side",
  43517. image: {
  43518. source: "./media/characters/cobalt-charizard/side.svg",
  43519. extra: 1348/1257,
  43520. bottom: 58/1406
  43521. }
  43522. },
  43523. gMax: {
  43524. height: math.unit(134 + 11/12, "feet"),
  43525. name: "G-Max",
  43526. image: {
  43527. source: "./media/characters/cobalt-charizard/g-max.svg",
  43528. extra: 1835/1541,
  43529. bottom: 151/1986
  43530. }
  43531. },
  43532. },
  43533. [
  43534. {
  43535. name: "Normal",
  43536. height: math.unit(8 + 5/12, "feet"),
  43537. default: true
  43538. },
  43539. ]
  43540. ))
  43541. characterMakers.push(() => makeCharacter(
  43542. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43543. {
  43544. front: {
  43545. height: math.unit(6 + 3/12, "feet"),
  43546. weight: math.unit(210, "lb"),
  43547. name: "Front",
  43548. image: {
  43549. source: "./media/characters/stella/front.svg",
  43550. extra: 3549/3335,
  43551. bottom: 51/3600
  43552. }
  43553. },
  43554. },
  43555. [
  43556. {
  43557. name: "Normal",
  43558. height: math.unit(6 + 3/12, "feet"),
  43559. default: true
  43560. },
  43561. ]
  43562. ))
  43563. characterMakers.push(() => makeCharacter(
  43564. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43565. {
  43566. front: {
  43567. height: math.unit(5, "feet"),
  43568. weight: math.unit(90, "lb"),
  43569. name: "Front",
  43570. image: {
  43571. source: "./media/characters/riley-bishop/front.svg",
  43572. extra: 1450/1428,
  43573. bottom: 152/1602
  43574. }
  43575. },
  43576. },
  43577. [
  43578. {
  43579. name: "Normal",
  43580. height: math.unit(5, "feet"),
  43581. default: true
  43582. },
  43583. ]
  43584. ))
  43585. characterMakers.push(() => makeCharacter(
  43586. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43587. {
  43588. side: {
  43589. height: math.unit(8 + 2/12, "feet"),
  43590. weight: math.unit(500, "kg"),
  43591. name: "Side",
  43592. image: {
  43593. source: "./media/characters/theo-arcanine/side.svg",
  43594. extra: 1342/1074,
  43595. bottom: 111/1453
  43596. }
  43597. },
  43598. },
  43599. [
  43600. {
  43601. name: "Normal",
  43602. height: math.unit(8 + 2/12, "feet"),
  43603. default: true
  43604. },
  43605. ]
  43606. ))
  43607. characterMakers.push(() => makeCharacter(
  43608. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43609. {
  43610. front: {
  43611. height: math.unit(4, "feet"),
  43612. name: "Front",
  43613. image: {
  43614. source: "./media/characters/kali/front.svg",
  43615. extra: 1921/1357,
  43616. bottom: 70/1991
  43617. }
  43618. },
  43619. },
  43620. [
  43621. {
  43622. name: "Normal",
  43623. height: math.unit(4, "feet"),
  43624. default: true
  43625. },
  43626. {
  43627. name: "Macro",
  43628. height: math.unit(32, "meters")
  43629. },
  43630. {
  43631. name: "Macro+",
  43632. height: math.unit(150, "meters")
  43633. },
  43634. {
  43635. name: "Megamacro",
  43636. height: math.unit(7500, "meters")
  43637. },
  43638. {
  43639. name: "Megamacro+",
  43640. height: math.unit(80, "kilometers")
  43641. },
  43642. ]
  43643. ))
  43644. characterMakers.push(() => makeCharacter(
  43645. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43646. {
  43647. side: {
  43648. height: math.unit(5 + 11/12, "feet"),
  43649. weight: math.unit(236, "lb"),
  43650. name: "Side",
  43651. image: {
  43652. source: "./media/characters/gapp/side.svg",
  43653. extra: 775/340,
  43654. bottom: 58/833
  43655. }
  43656. },
  43657. mouth: {
  43658. height: math.unit(2.98, "feet"),
  43659. name: "Mouth",
  43660. image: {
  43661. source: "./media/characters/gapp/mouth.svg"
  43662. }
  43663. },
  43664. },
  43665. [
  43666. {
  43667. name: "Normal",
  43668. height: math.unit(5 + 1/12, "feet"),
  43669. default: true
  43670. },
  43671. ]
  43672. ))
  43673. characterMakers.push(() => makeCharacter(
  43674. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43675. {
  43676. front: {
  43677. height: math.unit(6, "feet"),
  43678. name: "Front",
  43679. image: {
  43680. source: "./media/characters/persephone/front.svg",
  43681. extra: 1895/1717,
  43682. bottom: 96/1991
  43683. }
  43684. },
  43685. back: {
  43686. height: math.unit(6, "feet"),
  43687. name: "Back",
  43688. image: {
  43689. source: "./media/characters/persephone/back.svg",
  43690. extra: 1868/1679,
  43691. bottom: 26/1894
  43692. }
  43693. },
  43694. casual: {
  43695. height: math.unit(6, "feet"),
  43696. name: "Casual",
  43697. image: {
  43698. source: "./media/characters/persephone/casual.svg",
  43699. extra: 1713/1541,
  43700. bottom: 76/1789
  43701. }
  43702. },
  43703. },
  43704. [
  43705. {
  43706. name: "Human Size",
  43707. height: math.unit(6, "feet")
  43708. },
  43709. {
  43710. name: "Big Steppy",
  43711. height: math.unit(600, "meters"),
  43712. default: true
  43713. },
  43714. {
  43715. name: "Galaxy Brain",
  43716. height: math.unit(1, "zettameter")
  43717. },
  43718. ]
  43719. ))
  43720. characterMakers.push(() => makeCharacter(
  43721. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43722. {
  43723. front: {
  43724. height: math.unit(1.85, "meters"),
  43725. name: "Front",
  43726. image: {
  43727. source: "./media/characters/riley-foxthing/front.svg",
  43728. extra: 1495/1354,
  43729. bottom: 122/1617
  43730. }
  43731. },
  43732. frontAlt: {
  43733. height: math.unit(1.85, "meters"),
  43734. name: "Front (Alt)",
  43735. image: {
  43736. source: "./media/characters/riley-foxthing/front-alt.svg",
  43737. extra: 1572/1389,
  43738. bottom: 116/1688
  43739. }
  43740. },
  43741. },
  43742. [
  43743. {
  43744. name: "Normal Sized",
  43745. height: math.unit(1.85, "meters"),
  43746. default: true
  43747. },
  43748. {
  43749. name: "Quite Sizable",
  43750. height: math.unit(5, "meters")
  43751. },
  43752. {
  43753. name: "Rather Large",
  43754. height: math.unit(20, "meters")
  43755. },
  43756. {
  43757. name: "Macro",
  43758. height: math.unit(450, "meters")
  43759. },
  43760. {
  43761. name: "Giga",
  43762. height: math.unit(5, "km")
  43763. },
  43764. ]
  43765. ))
  43766. characterMakers.push(() => makeCharacter(
  43767. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43768. {
  43769. front: {
  43770. height: math.unit(6, "feet"),
  43771. weight: math.unit(200, "lb"),
  43772. name: "Front",
  43773. image: {
  43774. source: "./media/characters/blizzard/front.svg",
  43775. extra: 1136/990,
  43776. bottom: 136/1272
  43777. }
  43778. },
  43779. back: {
  43780. height: math.unit(6, "feet"),
  43781. weight: math.unit(200, "lb"),
  43782. name: "Back",
  43783. image: {
  43784. source: "./media/characters/blizzard/back.svg",
  43785. extra: 1175/1034,
  43786. bottom: 97/1272
  43787. }
  43788. },
  43789. sitting: {
  43790. height: math.unit(3.725, "feet"),
  43791. weight: math.unit(200, "lb"),
  43792. name: "Sitting",
  43793. image: {
  43794. source: "./media/characters/blizzard/sitting.svg",
  43795. extra: 581/485,
  43796. bottom: 90/671
  43797. }
  43798. },
  43799. frontWizard: {
  43800. height: math.unit(7.9, "feet"),
  43801. weight: math.unit(200, "lb"),
  43802. name: "Front (Wizard)",
  43803. image: {
  43804. source: "./media/characters/blizzard/front-wizard.svg"
  43805. }
  43806. },
  43807. backWizard: {
  43808. height: math.unit(7.9, "feet"),
  43809. weight: math.unit(200, "lb"),
  43810. name: "Back (Wizard)",
  43811. image: {
  43812. source: "./media/characters/blizzard/back-wizard.svg"
  43813. }
  43814. },
  43815. frontNsfw: {
  43816. height: math.unit(6, "feet"),
  43817. weight: math.unit(200, "lb"),
  43818. name: "Front (NSFW)",
  43819. image: {
  43820. source: "./media/characters/blizzard/front-nsfw.svg",
  43821. extra: 1136/990,
  43822. bottom: 136/1272
  43823. }
  43824. },
  43825. backNsfw: {
  43826. height: math.unit(6, "feet"),
  43827. weight: math.unit(200, "lb"),
  43828. name: "Back (NSFW)",
  43829. image: {
  43830. source: "./media/characters/blizzard/back-nsfw.svg",
  43831. extra: 1175/1034,
  43832. bottom: 97/1272
  43833. }
  43834. },
  43835. sittingNsfw: {
  43836. height: math.unit(3.725, "feet"),
  43837. weight: math.unit(200, "lb"),
  43838. name: "Sitting (NSFW)",
  43839. image: {
  43840. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43841. extra: 581/485,
  43842. bottom: 90/671
  43843. }
  43844. },
  43845. wizardFrontNsfw: {
  43846. height: math.unit(7.9, "feet"),
  43847. weight: math.unit(200, "lb"),
  43848. name: "Wizard (Front, NSFW)",
  43849. image: {
  43850. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43851. }
  43852. },
  43853. },
  43854. [
  43855. {
  43856. name: "Normal",
  43857. height: math.unit(6, "feet"),
  43858. default: true
  43859. },
  43860. ]
  43861. ))
  43862. characterMakers.push(() => makeCharacter(
  43863. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43864. {
  43865. front: {
  43866. height: math.unit(5 + 2/12, "feet"),
  43867. name: "Front",
  43868. image: {
  43869. source: "./media/characters/lumi/front.svg",
  43870. extra: 1328/1268,
  43871. bottom: 103/1431
  43872. }
  43873. },
  43874. back: {
  43875. height: math.unit(5 + 2/12, "feet"),
  43876. name: "Back",
  43877. image: {
  43878. source: "./media/characters/lumi/back.svg",
  43879. extra: 1381/1327,
  43880. bottom: 43/1424
  43881. }
  43882. },
  43883. },
  43884. [
  43885. {
  43886. name: "Normal",
  43887. height: math.unit(5 + 2/12, "feet"),
  43888. default: true
  43889. },
  43890. ]
  43891. ))
  43892. characterMakers.push(() => makeCharacter(
  43893. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43894. {
  43895. front: {
  43896. height: math.unit(5 + 9/12, "feet"),
  43897. name: "Front",
  43898. image: {
  43899. source: "./media/characters/aliya-cotton/front.svg",
  43900. extra: 577/564,
  43901. bottom: 29/606
  43902. }
  43903. },
  43904. },
  43905. [
  43906. {
  43907. name: "Normal",
  43908. height: math.unit(5 + 9/12, "feet"),
  43909. default: true
  43910. },
  43911. ]
  43912. ))
  43913. characterMakers.push(() => makeCharacter(
  43914. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43915. {
  43916. front: {
  43917. height: math.unit(2.7, "meters"),
  43918. weight: math.unit(25000, "lb"),
  43919. name: "Front",
  43920. image: {
  43921. source: "./media/characters/noah-luxray/front.svg",
  43922. extra: 1644/825,
  43923. bottom: 339/1983
  43924. }
  43925. },
  43926. side: {
  43927. height: math.unit(2.97, "meters"),
  43928. weight: math.unit(25000, "lb"),
  43929. name: "Side",
  43930. image: {
  43931. source: "./media/characters/noah-luxray/side.svg",
  43932. extra: 1319/650,
  43933. bottom: 163/1482
  43934. }
  43935. },
  43936. dick: {
  43937. height: math.unit(7.4, "feet"),
  43938. weight: math.unit(2500, "lb"),
  43939. name: "Dick",
  43940. image: {
  43941. source: "./media/characters/noah-luxray/dick.svg"
  43942. }
  43943. },
  43944. dickAlt: {
  43945. height: math.unit(10.83, "feet"),
  43946. weight: math.unit(2500, "lb"),
  43947. name: "Dick-alt",
  43948. image: {
  43949. source: "./media/characters/noah-luxray/dick-alt.svg"
  43950. }
  43951. },
  43952. },
  43953. [
  43954. {
  43955. name: "BIG",
  43956. height: math.unit(2.7, "meters"),
  43957. default: true
  43958. },
  43959. ]
  43960. ))
  43961. characterMakers.push(() => makeCharacter(
  43962. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43963. {
  43964. standing: {
  43965. height: math.unit(183, "cm"),
  43966. weight: math.unit(68, "kg"),
  43967. name: "Standing",
  43968. image: {
  43969. source: "./media/characters/arion/standing.svg",
  43970. extra: 1869/1807,
  43971. bottom: 93/1962
  43972. }
  43973. },
  43974. reclining: {
  43975. height: math.unit(70.5, "cm"),
  43976. weight: math.unit(68, "lb"),
  43977. name: "Reclining",
  43978. image: {
  43979. source: "./media/characters/arion/reclining.svg",
  43980. extra: 937/870,
  43981. bottom: 63/1000
  43982. }
  43983. },
  43984. },
  43985. [
  43986. {
  43987. name: "Colossus Size, Low",
  43988. height: math.unit(33, "meters"),
  43989. default: true
  43990. },
  43991. {
  43992. name: "Colossus Size, Mid",
  43993. height: math.unit(52, "meters")
  43994. },
  43995. {
  43996. name: "Colossus Size, High",
  43997. height: math.unit(60, "meters")
  43998. },
  43999. {
  44000. name: "Titan Size, Low",
  44001. height: math.unit(91, "meters"),
  44002. },
  44003. {
  44004. name: "Titan Size, Mid",
  44005. height: math.unit(122, "meters")
  44006. },
  44007. {
  44008. name: "Titan Size, High",
  44009. height: math.unit(162, "meters")
  44010. },
  44011. ]
  44012. ))
  44013. characterMakers.push(() => makeCharacter(
  44014. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44015. {
  44016. front: {
  44017. height: math.unit(53, "meters"),
  44018. name: "Front",
  44019. image: {
  44020. source: "./media/characters/stellar-marbey/front.svg",
  44021. extra: 1913/1805,
  44022. bottom: 92/2005
  44023. }
  44024. },
  44025. back: {
  44026. height: math.unit(53, "meters"),
  44027. name: "Back",
  44028. image: {
  44029. source: "./media/characters/stellar-marbey/back.svg",
  44030. extra: 1960/1851,
  44031. bottom: 28/1988
  44032. }
  44033. },
  44034. mouth: {
  44035. height: math.unit(3.5, "meters"),
  44036. name: "Mouth",
  44037. image: {
  44038. source: "./media/characters/stellar-marbey/mouth.svg"
  44039. }
  44040. },
  44041. },
  44042. [
  44043. {
  44044. name: "Macro",
  44045. height: math.unit(53, "meters"),
  44046. default: true
  44047. },
  44048. ]
  44049. ))
  44050. characterMakers.push(() => makeCharacter(
  44051. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44052. {
  44053. front: {
  44054. height: math.unit(8 + 1/12, "feet"),
  44055. weight: math.unit(233, "lb"),
  44056. name: "Front",
  44057. image: {
  44058. source: "./media/characters/matsu/front.svg",
  44059. extra: 832/772,
  44060. bottom: 40/872
  44061. }
  44062. },
  44063. back: {
  44064. height: math.unit(8 + 1/12, "feet"),
  44065. weight: math.unit(233, "lb"),
  44066. name: "Back",
  44067. image: {
  44068. source: "./media/characters/matsu/back.svg",
  44069. extra: 839/780,
  44070. bottom: 47/886
  44071. }
  44072. },
  44073. },
  44074. [
  44075. {
  44076. name: "Normal",
  44077. height: math.unit(8 + 1/12, "feet"),
  44078. default: true
  44079. },
  44080. ]
  44081. ))
  44082. characterMakers.push(() => makeCharacter(
  44083. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44084. {
  44085. front: {
  44086. height: math.unit(4, "feet"),
  44087. weight: math.unit(148, "lb"),
  44088. name: "Front",
  44089. image: {
  44090. source: "./media/characters/thiz/front.svg",
  44091. extra: 1913/1748,
  44092. bottom: 62/1975
  44093. }
  44094. },
  44095. },
  44096. [
  44097. {
  44098. name: "Normal",
  44099. height: math.unit(4, "feet"),
  44100. default: true
  44101. },
  44102. ]
  44103. ))
  44104. characterMakers.push(() => makeCharacter(
  44105. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44106. {
  44107. front: {
  44108. height: math.unit(7 + 6/12, "feet"),
  44109. weight: math.unit(267, "lb"),
  44110. name: "Front",
  44111. image: {
  44112. source: "./media/characters/marcel/front.svg",
  44113. extra: 1221/1096,
  44114. bottom: 76/1297
  44115. }
  44116. },
  44117. },
  44118. [
  44119. {
  44120. name: "Normal",
  44121. height: math.unit(7 + 6/12, "feet"),
  44122. default: true
  44123. },
  44124. ]
  44125. ))
  44126. characterMakers.push(() => makeCharacter(
  44127. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44128. {
  44129. side: {
  44130. height: math.unit(42, "meters"),
  44131. name: "Side",
  44132. image: {
  44133. source: "./media/characters/flake/side.svg",
  44134. extra: 1525/1306,
  44135. bottom: 209/1734
  44136. }
  44137. },
  44138. },
  44139. [
  44140. {
  44141. name: "Normal",
  44142. height: math.unit(42, "meters"),
  44143. default: true
  44144. },
  44145. ]
  44146. ))
  44147. characterMakers.push(() => makeCharacter(
  44148. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44149. {
  44150. dressed: {
  44151. height: math.unit(6 + 4/12, "feet"),
  44152. weight: math.unit(520, "lb"),
  44153. name: "Dressed",
  44154. image: {
  44155. source: "./media/characters/someonne/dressed.svg",
  44156. extra: 1020/1010,
  44157. bottom: 178/1198
  44158. }
  44159. },
  44160. undressed: {
  44161. height: math.unit(6 + 4/12, "feet"),
  44162. weight: math.unit(520, "lb"),
  44163. name: "Undressed",
  44164. image: {
  44165. source: "./media/characters/someonne/undressed.svg",
  44166. extra: 1019/1014,
  44167. bottom: 169/1188
  44168. }
  44169. },
  44170. },
  44171. [
  44172. {
  44173. name: "Normal",
  44174. height: math.unit(6 + 4/12, "feet"),
  44175. default: true
  44176. },
  44177. ]
  44178. ))
  44179. characterMakers.push(() => makeCharacter(
  44180. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44181. {
  44182. front: {
  44183. height: math.unit(3, "feet"),
  44184. weight: math.unit(30, "lb"),
  44185. name: "Front",
  44186. image: {
  44187. source: "./media/characters/till/front.svg",
  44188. extra: 892/823,
  44189. bottom: 55/947
  44190. }
  44191. },
  44192. },
  44193. [
  44194. {
  44195. name: "Normal",
  44196. height: math.unit(3, "feet"),
  44197. default: true
  44198. },
  44199. ]
  44200. ))
  44201. characterMakers.push(() => makeCharacter(
  44202. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44203. {
  44204. front: {
  44205. height: math.unit(9 + 8/12, "feet"),
  44206. weight: math.unit(800, "lb"),
  44207. name: "Front",
  44208. image: {
  44209. source: "./media/characters/sydney-heki/front.svg",
  44210. extra: 1360/1300,
  44211. bottom: 22/1382
  44212. }
  44213. },
  44214. back: {
  44215. height: math.unit(9 + 8/12, "feet"),
  44216. weight: math.unit(800, "lb"),
  44217. name: "Back",
  44218. image: {
  44219. source: "./media/characters/sydney-heki/back.svg",
  44220. extra: 1356/1293,
  44221. bottom: 12/1368
  44222. }
  44223. },
  44224. frontDressed: {
  44225. height: math.unit(9 + 8/12, "feet"),
  44226. weight: math.unit(800, "lb"),
  44227. name: "Front-dressed",
  44228. image: {
  44229. source: "./media/characters/sydney-heki/front-dressed.svg",
  44230. extra: 1360/1300,
  44231. bottom: 22/1382
  44232. }
  44233. },
  44234. },
  44235. [
  44236. {
  44237. name: "Normal",
  44238. height: math.unit(9 + 8/12, "feet"),
  44239. default: true
  44240. },
  44241. {
  44242. name: "Macro",
  44243. height: math.unit(500, "feet")
  44244. },
  44245. {
  44246. name: "Megamacro",
  44247. height: math.unit(3.6, "miles")
  44248. },
  44249. ]
  44250. ))
  44251. characterMakers.push(() => makeCharacter(
  44252. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44253. {
  44254. front: {
  44255. height: math.unit(200, "cm"),
  44256. weight: math.unit(250, "lb"),
  44257. name: "Front",
  44258. image: {
  44259. source: "./media/characters/fowler-karlsson/front.svg",
  44260. extra: 897/845,
  44261. bottom: 123/1020
  44262. }
  44263. },
  44264. back: {
  44265. height: math.unit(200, "cm"),
  44266. weight: math.unit(250, "lb"),
  44267. name: "Back",
  44268. image: {
  44269. source: "./media/characters/fowler-karlsson/back.svg",
  44270. extra: 999/944,
  44271. bottom: 26/1025
  44272. }
  44273. },
  44274. dick: {
  44275. height: math.unit(1.92, "feet"),
  44276. weight: math.unit(150, "lb"),
  44277. name: "Dick",
  44278. image: {
  44279. source: "./media/characters/fowler-karlsson/dick.svg"
  44280. }
  44281. },
  44282. },
  44283. [
  44284. {
  44285. name: "Normal",
  44286. height: math.unit(200, "cm"),
  44287. default: true
  44288. },
  44289. {
  44290. name: "Smaller Macro",
  44291. height: math.unit(90, "m")
  44292. },
  44293. {
  44294. name: "Macro",
  44295. height: math.unit(150, "m")
  44296. },
  44297. {
  44298. name: "Bigger Macro",
  44299. height: math.unit(300, "m")
  44300. },
  44301. ]
  44302. ))
  44303. characterMakers.push(() => makeCharacter(
  44304. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44305. {
  44306. side: {
  44307. height: math.unit(8 + 2/12, "feet"),
  44308. weight: math.unit(1, "tonne"),
  44309. name: "Side",
  44310. image: {
  44311. source: "./media/characters/rylide/side.svg",
  44312. extra: 1318/1034,
  44313. bottom: 106/1424
  44314. }
  44315. },
  44316. sitting: {
  44317. height: math.unit(303, "cm"),
  44318. weight: math.unit(1, "tonne"),
  44319. name: "Sitting",
  44320. image: {
  44321. source: "./media/characters/rylide/sitting.svg",
  44322. extra: 1303/1103,
  44323. bottom: 36/1339
  44324. }
  44325. },
  44326. },
  44327. [
  44328. {
  44329. name: "Normal",
  44330. height: math.unit(8 + 2/12, "feet"),
  44331. default: true
  44332. },
  44333. ]
  44334. ))
  44335. characterMakers.push(() => makeCharacter(
  44336. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44337. {
  44338. front: {
  44339. height: math.unit(5 + 10/12, "feet"),
  44340. weight: math.unit(160, "lb"),
  44341. name: "Front",
  44342. image: {
  44343. source: "./media/characters/pudask/front.svg",
  44344. extra: 1616/1590,
  44345. bottom: 161/1777
  44346. }
  44347. },
  44348. },
  44349. [
  44350. {
  44351. name: "Ferret Height",
  44352. height: math.unit(2 + 5/12, "feet")
  44353. },
  44354. {
  44355. name: "Canon Height",
  44356. height: math.unit(5 + 10/12, "feet"),
  44357. default: true
  44358. },
  44359. ]
  44360. ))
  44361. characterMakers.push(() => makeCharacter(
  44362. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44363. {
  44364. front: {
  44365. height: math.unit(3 + 6/12, "feet"),
  44366. weight: math.unit(60, "lb"),
  44367. name: "Front",
  44368. image: {
  44369. source: "./media/characters/ramita/front.svg",
  44370. extra: 1402/1232,
  44371. bottom: 62/1464
  44372. }
  44373. },
  44374. dressed: {
  44375. height: math.unit(3 + 6/12, "feet"),
  44376. weight: math.unit(60, "lb"),
  44377. name: "Dressed",
  44378. image: {
  44379. source: "./media/characters/ramita/dressed.svg",
  44380. extra: 1534/1249,
  44381. bottom: 50/1584
  44382. }
  44383. },
  44384. },
  44385. [
  44386. {
  44387. name: "Normal",
  44388. height: math.unit(3 + 6/12, "feet"),
  44389. default: true
  44390. },
  44391. ]
  44392. ))
  44393. characterMakers.push(() => makeCharacter(
  44394. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44395. {
  44396. front: {
  44397. height: math.unit(8, "feet"),
  44398. name: "Front",
  44399. image: {
  44400. source: "./media/characters/ark/front.svg",
  44401. extra: 772/693,
  44402. bottom: 45/817
  44403. }
  44404. },
  44405. },
  44406. [
  44407. {
  44408. name: "Normal",
  44409. height: math.unit(8, "feet"),
  44410. default: true
  44411. },
  44412. ]
  44413. ))
  44414. characterMakers.push(() => makeCharacter(
  44415. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44416. {
  44417. front: {
  44418. height: math.unit(6, "feet"),
  44419. weight: math.unit(250, "lb"),
  44420. volume: math.unit(5/8, "gallons"),
  44421. name: "Front",
  44422. image: {
  44423. source: "./media/characters/ludwig-horn/front.svg",
  44424. extra: 1782/1635,
  44425. bottom: 96/1878
  44426. }
  44427. },
  44428. back: {
  44429. height: math.unit(6, "feet"),
  44430. weight: math.unit(250, "lb"),
  44431. volume: math.unit(5/8, "gallons"),
  44432. name: "Back",
  44433. image: {
  44434. source: "./media/characters/ludwig-horn/back.svg",
  44435. extra: 1874/1729,
  44436. bottom: 27/1901
  44437. }
  44438. },
  44439. dick: {
  44440. height: math.unit(1.05, "feet"),
  44441. weight: math.unit(15, "lb"),
  44442. volume: math.unit(5/8, "gallons"),
  44443. name: "Dick",
  44444. image: {
  44445. source: "./media/characters/ludwig-horn/dick.svg"
  44446. }
  44447. },
  44448. },
  44449. [
  44450. {
  44451. name: "Small",
  44452. height: math.unit(6, "feet")
  44453. },
  44454. {
  44455. name: "Typical",
  44456. height: math.unit(12, "feet"),
  44457. default: true
  44458. },
  44459. {
  44460. name: "Building",
  44461. height: math.unit(80, "feet")
  44462. },
  44463. {
  44464. name: "Town",
  44465. height: math.unit(800, "feet")
  44466. },
  44467. {
  44468. name: "Kingdom",
  44469. height: math.unit(80000, "feet")
  44470. },
  44471. {
  44472. name: "Planet",
  44473. height: math.unit(8000000, "feet")
  44474. },
  44475. {
  44476. name: "Universe",
  44477. height: math.unit(8000000000, "feet")
  44478. },
  44479. {
  44480. name: "Transcended",
  44481. height: math.unit(8e27, "feet")
  44482. },
  44483. ]
  44484. ))
  44485. characterMakers.push(() => makeCharacter(
  44486. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44487. {
  44488. front: {
  44489. height: math.unit(5, "feet"),
  44490. weight: math.unit(50, "kg"),
  44491. name: "Front",
  44492. image: {
  44493. source: "./media/characters/biot-avery/front.svg",
  44494. extra: 1295/1232,
  44495. bottom: 86/1381
  44496. }
  44497. },
  44498. },
  44499. [
  44500. {
  44501. name: "Normal",
  44502. height: math.unit(5, "feet"),
  44503. default: true
  44504. },
  44505. ]
  44506. ))
  44507. characterMakers.push(() => makeCharacter(
  44508. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44509. {
  44510. front: {
  44511. height: math.unit(6, "feet"),
  44512. name: "Front",
  44513. image: {
  44514. source: "./media/characters/kitsune-kiro/front.svg",
  44515. extra: 1270/1158,
  44516. bottom: 42/1312
  44517. }
  44518. },
  44519. frontAlt: {
  44520. height: math.unit(6, "feet"),
  44521. name: "Front-alt",
  44522. image: {
  44523. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44524. extra: 1130/1081,
  44525. bottom: 36/1166
  44526. }
  44527. },
  44528. },
  44529. [
  44530. {
  44531. name: "Smol",
  44532. height: math.unit(3, "feet")
  44533. },
  44534. {
  44535. name: "Normal",
  44536. height: math.unit(6, "feet"),
  44537. default: true
  44538. },
  44539. ]
  44540. ))
  44541. characterMakers.push(() => makeCharacter(
  44542. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44543. {
  44544. front: {
  44545. height: math.unit(6, "feet"),
  44546. weight: math.unit(125, "lb"),
  44547. name: "Front",
  44548. image: {
  44549. source: "./media/characters/jack-thatcher/front.svg",
  44550. extra: 1474/1370,
  44551. bottom: 26/1500
  44552. }
  44553. },
  44554. back: {
  44555. height: math.unit(6, "feet"),
  44556. weight: math.unit(125, "lb"),
  44557. name: "Back",
  44558. image: {
  44559. source: "./media/characters/jack-thatcher/back.svg",
  44560. extra: 1489/1384,
  44561. bottom: 18/1507
  44562. }
  44563. },
  44564. },
  44565. [
  44566. {
  44567. name: "Normal",
  44568. height: math.unit(6, "feet"),
  44569. default: true
  44570. },
  44571. {
  44572. name: "Macro",
  44573. height: math.unit(75, "feet")
  44574. },
  44575. {
  44576. name: "Macro-er",
  44577. height: math.unit(250, "feet")
  44578. },
  44579. ]
  44580. ))
  44581. characterMakers.push(() => makeCharacter(
  44582. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44583. {
  44584. front: {
  44585. height: math.unit(7, "feet"),
  44586. weight: math.unit(110, "kg"),
  44587. name: "Front",
  44588. image: {
  44589. source: "./media/characters/max-hyper/front.svg",
  44590. extra: 1969/1881,
  44591. bottom: 49/2018
  44592. }
  44593. },
  44594. },
  44595. [
  44596. {
  44597. name: "Normal",
  44598. height: math.unit(7, "feet"),
  44599. default: true
  44600. },
  44601. ]
  44602. ))
  44603. characterMakers.push(() => makeCharacter(
  44604. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44605. {
  44606. front: {
  44607. height: math.unit(5 + 5/12, "feet"),
  44608. weight: math.unit(160, "lb"),
  44609. name: "Front",
  44610. image: {
  44611. source: "./media/characters/spook/front.svg",
  44612. extra: 794/791,
  44613. bottom: 54/848
  44614. }
  44615. },
  44616. back: {
  44617. height: math.unit(5 + 5/12, "feet"),
  44618. weight: math.unit(160, "lb"),
  44619. name: "Back",
  44620. image: {
  44621. source: "./media/characters/spook/back.svg",
  44622. extra: 812/798,
  44623. bottom: 32/844
  44624. }
  44625. },
  44626. },
  44627. [
  44628. {
  44629. name: "Normal",
  44630. height: math.unit(5 + 5/12, "feet"),
  44631. default: true
  44632. },
  44633. ]
  44634. ))
  44635. characterMakers.push(() => makeCharacter(
  44636. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44637. {
  44638. front: {
  44639. height: math.unit(18, "feet"),
  44640. name: "Front",
  44641. image: {
  44642. source: "./media/characters/xeaduulix/front.svg",
  44643. extra: 1380/1166,
  44644. bottom: 110/1490
  44645. }
  44646. },
  44647. back: {
  44648. height: math.unit(18, "feet"),
  44649. name: "Back",
  44650. image: {
  44651. source: "./media/characters/xeaduulix/back.svg",
  44652. extra: 1592/1170,
  44653. bottom: 128/1720
  44654. }
  44655. },
  44656. frontNsfw: {
  44657. height: math.unit(18, "feet"),
  44658. name: "Front (NSFW)",
  44659. image: {
  44660. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44661. extra: 1380/1166,
  44662. bottom: 110/1490
  44663. }
  44664. },
  44665. backNsfw: {
  44666. height: math.unit(18, "feet"),
  44667. name: "Back (NSFW)",
  44668. image: {
  44669. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44670. extra: 1592/1170,
  44671. bottom: 128/1720
  44672. }
  44673. },
  44674. },
  44675. [
  44676. {
  44677. name: "Normal",
  44678. height: math.unit(18, "feet"),
  44679. default: true
  44680. },
  44681. ]
  44682. ))
  44683. characterMakers.push(() => makeCharacter(
  44684. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44685. {
  44686. spreadWings: {
  44687. height: math.unit(20, "feet"),
  44688. name: "Spread Wings",
  44689. image: {
  44690. source: "./media/characters/fledge/spread-wings.svg",
  44691. extra: 693/635,
  44692. bottom: 26/719
  44693. }
  44694. },
  44695. front: {
  44696. height: math.unit(20, "feet"),
  44697. name: "Front",
  44698. image: {
  44699. source: "./media/characters/fledge/front.svg",
  44700. extra: 684/637,
  44701. bottom: 18/702
  44702. }
  44703. },
  44704. frontAlt: {
  44705. height: math.unit(20, "feet"),
  44706. name: "Front (Alt)",
  44707. image: {
  44708. source: "./media/characters/fledge/front-alt.svg",
  44709. extra: 708/664,
  44710. bottom: 13/721
  44711. }
  44712. },
  44713. back: {
  44714. height: math.unit(20, "feet"),
  44715. name: "Back",
  44716. image: {
  44717. source: "./media/characters/fledge/back.svg",
  44718. extra: 718/634,
  44719. bottom: 22/740
  44720. }
  44721. },
  44722. head: {
  44723. height: math.unit(5.55, "feet"),
  44724. name: "Head",
  44725. image: {
  44726. source: "./media/characters/fledge/head.svg"
  44727. }
  44728. },
  44729. headAlt: {
  44730. height: math.unit(5.1, "feet"),
  44731. name: "Head (Alt)",
  44732. image: {
  44733. source: "./media/characters/fledge/head-alt.svg"
  44734. }
  44735. },
  44736. },
  44737. [
  44738. {
  44739. name: "Small",
  44740. height: math.unit(6 + 2/12, "feet")
  44741. },
  44742. {
  44743. name: "Big",
  44744. height: math.unit(20, "feet"),
  44745. default: true
  44746. },
  44747. {
  44748. name: "Giant",
  44749. height: math.unit(100, "feet")
  44750. },
  44751. {
  44752. name: "Macro",
  44753. height: math.unit(200, "feet")
  44754. },
  44755. ]
  44756. ))
  44757. characterMakers.push(() => makeCharacter(
  44758. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44759. {
  44760. front: {
  44761. height: math.unit(1, "meter"),
  44762. name: "Front",
  44763. image: {
  44764. source: "./media/characters/atlas-morenai/front.svg",
  44765. extra: 1275/1043,
  44766. bottom: 19/1294
  44767. }
  44768. },
  44769. back: {
  44770. height: math.unit(1, "meter"),
  44771. name: "Back",
  44772. image: {
  44773. source: "./media/characters/atlas-morenai/back.svg",
  44774. extra: 1141/1001,
  44775. bottom: 25/1166
  44776. }
  44777. },
  44778. },
  44779. [
  44780. {
  44781. name: "Normal",
  44782. height: math.unit(1, "meter"),
  44783. default: true
  44784. },
  44785. {
  44786. name: "Magic-Infused",
  44787. height: math.unit(5, "meters")
  44788. },
  44789. ]
  44790. ))
  44791. characterMakers.push(() => makeCharacter(
  44792. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44793. {
  44794. front: {
  44795. height: math.unit(5, "meters"),
  44796. name: "Front",
  44797. image: {
  44798. source: "./media/characters/cintia/front.svg",
  44799. extra: 1312/1228,
  44800. bottom: 38/1350
  44801. }
  44802. },
  44803. back: {
  44804. height: math.unit(5, "meters"),
  44805. name: "Back",
  44806. image: {
  44807. source: "./media/characters/cintia/back.svg",
  44808. extra: 1260/1166,
  44809. bottom: 98/1358
  44810. }
  44811. },
  44812. frontDick: {
  44813. height: math.unit(5, "meters"),
  44814. name: "Front (Dick)",
  44815. image: {
  44816. source: "./media/characters/cintia/front-dick.svg",
  44817. extra: 1312/1228,
  44818. bottom: 38/1350
  44819. }
  44820. },
  44821. backDick: {
  44822. height: math.unit(5, "meters"),
  44823. name: "Back (Dick)",
  44824. image: {
  44825. source: "./media/characters/cintia/back-dick.svg",
  44826. extra: 1260/1166,
  44827. bottom: 98/1358
  44828. }
  44829. },
  44830. bust: {
  44831. height: math.unit(1.97, "meters"),
  44832. name: "Bust",
  44833. image: {
  44834. source: "./media/characters/cintia/bust.svg",
  44835. extra: 617/565,
  44836. bottom: 0/617
  44837. }
  44838. },
  44839. },
  44840. [
  44841. {
  44842. name: "Normal",
  44843. height: math.unit(5, "meters"),
  44844. default: true
  44845. },
  44846. ]
  44847. ))
  44848. characterMakers.push(() => makeCharacter(
  44849. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44850. {
  44851. side: {
  44852. height: math.unit(100, "feet"),
  44853. name: "Side",
  44854. image: {
  44855. source: "./media/characters/denora/side.svg",
  44856. extra: 875/803,
  44857. bottom: 9/884
  44858. }
  44859. },
  44860. },
  44861. [
  44862. {
  44863. name: "Standard",
  44864. height: math.unit(100, "feet"),
  44865. default: true
  44866. },
  44867. {
  44868. name: "Grand",
  44869. height: math.unit(1000, "feet")
  44870. },
  44871. {
  44872. name: "Conquering",
  44873. height: math.unit(10000, "feet")
  44874. },
  44875. ]
  44876. ))
  44877. characterMakers.push(() => makeCharacter(
  44878. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44879. {
  44880. dressed: {
  44881. height: math.unit(8 + 5/12, "feet"),
  44882. weight: math.unit(700, "lb"),
  44883. name: "Dressed",
  44884. image: {
  44885. source: "./media/characters/kiva/dressed.svg",
  44886. extra: 1102/1055,
  44887. bottom: 60/1162
  44888. }
  44889. },
  44890. nude: {
  44891. height: math.unit(8 + 5/12, "feet"),
  44892. weight: math.unit(700, "lb"),
  44893. name: "Nude",
  44894. image: {
  44895. source: "./media/characters/kiva/nude.svg",
  44896. extra: 1102/1055,
  44897. bottom: 60/1162
  44898. }
  44899. },
  44900. },
  44901. [
  44902. {
  44903. name: "Base Height",
  44904. height: math.unit(8 + 5/12, "feet"),
  44905. default: true
  44906. },
  44907. {
  44908. name: "Macro",
  44909. height: math.unit(100, "feet")
  44910. },
  44911. {
  44912. name: "Max",
  44913. height: math.unit(3280, "feet")
  44914. },
  44915. ]
  44916. ))
  44917. characterMakers.push(() => makeCharacter(
  44918. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44919. {
  44920. front: {
  44921. height: math.unit(6 + 8/12, "feet"),
  44922. weight: math.unit(250, "lb"),
  44923. name: "Front",
  44924. image: {
  44925. source: "./media/characters/ztragon/front.svg",
  44926. extra: 1825/1684,
  44927. bottom: 98/1923
  44928. }
  44929. },
  44930. },
  44931. [
  44932. {
  44933. name: "Normal",
  44934. height: math.unit(6 + 8/12, "feet"),
  44935. default: true
  44936. },
  44937. {
  44938. name: "Macro",
  44939. height: math.unit(80, "feet")
  44940. },
  44941. ]
  44942. ))
  44943. characterMakers.push(() => makeCharacter(
  44944. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44945. {
  44946. front: {
  44947. height: math.unit(10.4, "feet"),
  44948. weight: math.unit(2, "tons"),
  44949. name: "Front",
  44950. image: {
  44951. source: "./media/characters/yesenia/front.svg",
  44952. extra: 1479/1474,
  44953. bottom: 233/1712
  44954. }
  44955. },
  44956. },
  44957. [
  44958. {
  44959. name: "Normal",
  44960. height: math.unit(10.4, "feet"),
  44961. default: true
  44962. },
  44963. ]
  44964. ))
  44965. characterMakers.push(() => makeCharacter(
  44966. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44967. {
  44968. normal: {
  44969. height: math.unit(6 + 1/12, "feet"),
  44970. weight: math.unit(180, "lb"),
  44971. name: "Normal",
  44972. image: {
  44973. source: "./media/characters/leanne-lycheborne/normal.svg",
  44974. extra: 1748/1660,
  44975. bottom: 98/1846
  44976. }
  44977. },
  44978. were: {
  44979. height: math.unit(12, "feet"),
  44980. weight: math.unit(1600, "lb"),
  44981. name: "Were",
  44982. image: {
  44983. source: "./media/characters/leanne-lycheborne/were.svg",
  44984. extra: 1485/1432,
  44985. bottom: 66/1551
  44986. }
  44987. },
  44988. },
  44989. [
  44990. {
  44991. name: "Normal",
  44992. height: math.unit(6 + 1/12, "feet"),
  44993. default: true
  44994. },
  44995. ]
  44996. ))
  44997. characterMakers.push(() => makeCharacter(
  44998. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44999. {
  45000. side: {
  45001. height: math.unit(13, "feet"),
  45002. name: "Side",
  45003. image: {
  45004. source: "./media/characters/kira-tyler/side.svg",
  45005. extra: 693/393,
  45006. bottom: 58/751
  45007. }
  45008. },
  45009. },
  45010. [
  45011. {
  45012. name: "Normal",
  45013. height: math.unit(13, "feet"),
  45014. default: true
  45015. },
  45016. ]
  45017. ))
  45018. characterMakers.push(() => makeCharacter(
  45019. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45020. {
  45021. front: {
  45022. height: math.unit(10.3, "feet"),
  45023. weight: math.unit(150, "lb"),
  45024. name: "Front",
  45025. image: {
  45026. source: "./media/characters/blaze/front.svg",
  45027. extra: 1378/1286,
  45028. bottom: 172/1550
  45029. }
  45030. },
  45031. },
  45032. [
  45033. {
  45034. name: "Normal",
  45035. height: math.unit(10.3, "feet"),
  45036. default: true
  45037. },
  45038. ]
  45039. ))
  45040. characterMakers.push(() => makeCharacter(
  45041. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45042. {
  45043. side: {
  45044. height: math.unit(2, "meters"),
  45045. weight: math.unit(400, "kg"),
  45046. name: "Side",
  45047. image: {
  45048. source: "./media/characters/anu/side.svg",
  45049. extra: 506/394,
  45050. bottom: 18/524
  45051. }
  45052. },
  45053. },
  45054. [
  45055. {
  45056. name: "Humanoid",
  45057. height: math.unit(2, "meters")
  45058. },
  45059. {
  45060. name: "Normal",
  45061. height: math.unit(5, "meters"),
  45062. default: true
  45063. },
  45064. ]
  45065. ))
  45066. characterMakers.push(() => makeCharacter(
  45067. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45068. {
  45069. front: {
  45070. height: math.unit(5 + 5/12, "feet"),
  45071. weight: math.unit(170, "lb"),
  45072. name: "Front",
  45073. image: {
  45074. source: "./media/characters/synx-the-lynx/front.svg",
  45075. extra: 1893/1745,
  45076. bottom: 17/1910
  45077. }
  45078. },
  45079. side: {
  45080. height: math.unit(5 + 5/12, "feet"),
  45081. weight: math.unit(170, "lb"),
  45082. name: "Side",
  45083. image: {
  45084. source: "./media/characters/synx-the-lynx/side.svg",
  45085. extra: 1884/1740,
  45086. bottom: 39/1923
  45087. }
  45088. },
  45089. back: {
  45090. height: math.unit(5 + 5/12, "feet"),
  45091. weight: math.unit(170, "lb"),
  45092. name: "Back",
  45093. image: {
  45094. source: "./media/characters/synx-the-lynx/back.svg",
  45095. extra: 1903/1755,
  45096. bottom: 14/1917
  45097. }
  45098. },
  45099. },
  45100. [
  45101. {
  45102. name: "Normal",
  45103. height: math.unit(5 + 5/12, "feet"),
  45104. default: true
  45105. },
  45106. ]
  45107. ))
  45108. characterMakers.push(() => makeCharacter(
  45109. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45110. {
  45111. back: {
  45112. height: math.unit(15, "feet"),
  45113. name: "Back",
  45114. image: {
  45115. source: "./media/characters/nadezda-fex/back.svg",
  45116. extra: 1695/1481,
  45117. bottom: 25/1720
  45118. }
  45119. },
  45120. },
  45121. [
  45122. {
  45123. name: "Normal",
  45124. height: math.unit(15, "feet"),
  45125. default: true
  45126. },
  45127. {
  45128. name: "Macro",
  45129. height: math.unit(2.5, "miles")
  45130. },
  45131. {
  45132. name: "Goddess",
  45133. height: math.unit(2, "multiverses")
  45134. },
  45135. ]
  45136. ))
  45137. characterMakers.push(() => makeCharacter(
  45138. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45139. {
  45140. front: {
  45141. height: math.unit(216, "cm"),
  45142. name: "Front",
  45143. image: {
  45144. source: "./media/characters/lev/front.svg",
  45145. extra: 1728/1670,
  45146. bottom: 82/1810
  45147. }
  45148. },
  45149. back: {
  45150. height: math.unit(216, "cm"),
  45151. name: "Back",
  45152. image: {
  45153. source: "./media/characters/lev/back.svg",
  45154. extra: 1738/1675,
  45155. bottom: 24/1762
  45156. }
  45157. },
  45158. dressed: {
  45159. height: math.unit(216, "cm"),
  45160. name: "Dressed",
  45161. image: {
  45162. source: "./media/characters/lev/dressed.svg",
  45163. extra: 1397/1351,
  45164. bottom: 73/1470
  45165. }
  45166. },
  45167. head: {
  45168. height: math.unit(0.51, "meter"),
  45169. name: "Head",
  45170. image: {
  45171. source: "./media/characters/lev/head.svg"
  45172. }
  45173. },
  45174. },
  45175. [
  45176. {
  45177. name: "Normal",
  45178. height: math.unit(216, "cm"),
  45179. default: true
  45180. },
  45181. {
  45182. name: "Relatively Macro",
  45183. height: math.unit(80, "meters")
  45184. },
  45185. {
  45186. name: "Megamacro",
  45187. height: math.unit(21600, "meters")
  45188. },
  45189. {
  45190. name: "Megamacro+",
  45191. height: math.unit(64800, "meters")
  45192. },
  45193. ]
  45194. ))
  45195. characterMakers.push(() => makeCharacter(
  45196. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45197. {
  45198. front: {
  45199. height: math.unit(2, "meters"),
  45200. weight: math.unit(80, "kg"),
  45201. name: "Front",
  45202. image: {
  45203. source: "./media/characters/moka/front.svg",
  45204. extra: 1337/1255,
  45205. bottom: 58/1395
  45206. }
  45207. },
  45208. },
  45209. [
  45210. {
  45211. name: "Micro",
  45212. height: math.unit(15, "cm")
  45213. },
  45214. {
  45215. name: "Normal",
  45216. height: math.unit(2, "meters"),
  45217. default: true
  45218. },
  45219. {
  45220. name: "Macro",
  45221. height: math.unit(20, "meters"),
  45222. },
  45223. ]
  45224. ))
  45225. characterMakers.push(() => makeCharacter(
  45226. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45227. {
  45228. front: {
  45229. height: math.unit(9, "feet"),
  45230. weight: math.unit(240, "lb"),
  45231. name: "Front",
  45232. image: {
  45233. source: "./media/characters/kuzco/front.svg",
  45234. extra: 1593/1487,
  45235. bottom: 32/1625
  45236. }
  45237. },
  45238. side: {
  45239. height: math.unit(9, "feet"),
  45240. weight: math.unit(240, "lb"),
  45241. name: "Side",
  45242. image: {
  45243. source: "./media/characters/kuzco/side.svg",
  45244. extra: 1575/1485,
  45245. bottom: 30/1605
  45246. }
  45247. },
  45248. back: {
  45249. height: math.unit(9, "feet"),
  45250. weight: math.unit(240, "lb"),
  45251. name: "Back",
  45252. image: {
  45253. source: "./media/characters/kuzco/back.svg",
  45254. extra: 1603/1514,
  45255. bottom: 14/1617
  45256. }
  45257. },
  45258. },
  45259. [
  45260. {
  45261. name: "Normal",
  45262. height: math.unit(9, "feet"),
  45263. default: true
  45264. },
  45265. ]
  45266. ))
  45267. characterMakers.push(() => makeCharacter(
  45268. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45269. {
  45270. side: {
  45271. height: math.unit(2, "meters"),
  45272. weight: math.unit(300, "kg"),
  45273. name: "Side",
  45274. image: {
  45275. source: "./media/characters/ceruleus/side.svg",
  45276. extra: 1068/974,
  45277. bottom: 126/1194
  45278. }
  45279. },
  45280. },
  45281. [
  45282. {
  45283. name: "Normal",
  45284. height: math.unit(16, "meters"),
  45285. default: true
  45286. },
  45287. ]
  45288. ))
  45289. characterMakers.push(() => makeCharacter(
  45290. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45291. {
  45292. front: {
  45293. height: math.unit(9, "feet"),
  45294. weight: math.unit(500, "kg"),
  45295. name: "Front",
  45296. image: {
  45297. source: "./media/characters/acouya/front.svg",
  45298. extra: 1660/1473,
  45299. bottom: 28/1688
  45300. }
  45301. },
  45302. },
  45303. [
  45304. {
  45305. name: "Normal",
  45306. height: math.unit(9, "feet"),
  45307. default: true
  45308. },
  45309. ]
  45310. ))
  45311. characterMakers.push(() => makeCharacter(
  45312. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45313. {
  45314. front: {
  45315. height: math.unit(5 + 6/12, "feet"),
  45316. weight: math.unit(195, "lb"),
  45317. name: "Front",
  45318. image: {
  45319. source: "./media/characters/vant/front.svg",
  45320. extra: 1396/1320,
  45321. bottom: 20/1416
  45322. }
  45323. },
  45324. back: {
  45325. height: math.unit(5 + 6/12, "feet"),
  45326. weight: math.unit(195, "lb"),
  45327. name: "Back",
  45328. image: {
  45329. source: "./media/characters/vant/back.svg",
  45330. extra: 1396/1320,
  45331. bottom: 20/1416
  45332. }
  45333. },
  45334. maw: {
  45335. height: math.unit(0.75, "feet"),
  45336. name: "Maw",
  45337. image: {
  45338. source: "./media/characters/vant/maw.svg"
  45339. }
  45340. },
  45341. paw: {
  45342. height: math.unit(1.07, "feet"),
  45343. name: "Paw",
  45344. image: {
  45345. source: "./media/characters/vant/paw.svg"
  45346. }
  45347. },
  45348. },
  45349. [
  45350. {
  45351. name: "Micro",
  45352. height: math.unit(0.25, "inches")
  45353. },
  45354. {
  45355. name: "Normal",
  45356. height: math.unit(5 + 6/12, "feet"),
  45357. default: true
  45358. },
  45359. {
  45360. name: "Macro",
  45361. height: math.unit(75, "feet")
  45362. },
  45363. ]
  45364. ))
  45365. characterMakers.push(() => makeCharacter(
  45366. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45367. {
  45368. front: {
  45369. height: math.unit(30, "meters"),
  45370. weight: math.unit(363, "tons"),
  45371. name: "Front",
  45372. image: {
  45373. source: "./media/characters/ahra/front.svg",
  45374. extra: 1914/1814,
  45375. bottom: 46/1960
  45376. }
  45377. },
  45378. },
  45379. [
  45380. {
  45381. name: "Macro",
  45382. height: math.unit(30, "meters"),
  45383. default: true
  45384. },
  45385. ]
  45386. ))
  45387. characterMakers.push(() => makeCharacter(
  45388. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45389. {
  45390. undressed: {
  45391. height: math.unit(2, "m"),
  45392. weight: math.unit(250, "kg"),
  45393. name: "Undressed",
  45394. image: {
  45395. source: "./media/characters/coriander/undressed.svg",
  45396. extra: 1757/1606,
  45397. bottom: 107/1864
  45398. }
  45399. },
  45400. dressed: {
  45401. height: math.unit(2, "m"),
  45402. weight: math.unit(250, "kg"),
  45403. name: "Dressed",
  45404. image: {
  45405. source: "./media/characters/coriander/dressed.svg",
  45406. extra: 1757/1606,
  45407. bottom: 107/1864
  45408. }
  45409. },
  45410. },
  45411. [
  45412. {
  45413. name: "Normal",
  45414. height: math.unit(4, "meters"),
  45415. default: true
  45416. },
  45417. {
  45418. name: "XL",
  45419. height: math.unit(6, "meters")
  45420. },
  45421. {
  45422. name: "XXL",
  45423. height: math.unit(8, "meters")
  45424. },
  45425. ]
  45426. ))
  45427. characterMakers.push(() => makeCharacter(
  45428. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45429. {
  45430. front: {
  45431. height: math.unit(6, "feet"),
  45432. name: "Front",
  45433. image: {
  45434. source: "./media/characters/syrinx/front.svg",
  45435. extra: 1557/1259,
  45436. bottom: 171/1728
  45437. }
  45438. },
  45439. },
  45440. [
  45441. {
  45442. name: "Normal",
  45443. height: math.unit(6 + 3/12, "feet"),
  45444. default: true
  45445. },
  45446. ]
  45447. ))
  45448. characterMakers.push(() => makeCharacter(
  45449. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45450. {
  45451. front: {
  45452. height: math.unit(11 + 6/12, "feet"),
  45453. weight: math.unit(1.5, "tons"),
  45454. name: "Front",
  45455. image: {
  45456. source: "./media/characters/bor/front.svg",
  45457. extra: 1189/1109,
  45458. bottom: 170/1359
  45459. }
  45460. },
  45461. },
  45462. [
  45463. {
  45464. name: "Normal",
  45465. height: math.unit(11 + 6/12, "feet"),
  45466. default: true
  45467. },
  45468. {
  45469. name: "Macro",
  45470. height: math.unit(32 + 9/12, "feet")
  45471. },
  45472. ]
  45473. ))
  45474. characterMakers.push(() => makeCharacter(
  45475. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45476. {
  45477. anthro: {
  45478. height: math.unit(9, "feet"),
  45479. weight: math.unit(2076, "lb"),
  45480. name: "Anthro",
  45481. image: {
  45482. source: "./media/characters/abacus/anthro.svg",
  45483. extra: 1540/1494,
  45484. bottom: 233/1773
  45485. }
  45486. },
  45487. pigeon: {
  45488. height: math.unit(1, "feet"),
  45489. name: "Pigeon",
  45490. image: {
  45491. source: "./media/characters/abacus/pigeon.svg",
  45492. extra: 528/525,
  45493. bottom: 46/574
  45494. }
  45495. },
  45496. },
  45497. [
  45498. {
  45499. name: "Normal",
  45500. height: math.unit(9, "feet"),
  45501. default: true
  45502. },
  45503. ]
  45504. ))
  45505. characterMakers.push(() => makeCharacter(
  45506. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45507. {
  45508. side: {
  45509. height: math.unit(6, "feet"),
  45510. name: "Side",
  45511. image: {
  45512. source: "./media/characters/delkhan/side.svg",
  45513. extra: 1884/1786,
  45514. bottom: 308/2192
  45515. }
  45516. },
  45517. head: {
  45518. height: math.unit(3.38, "feet"),
  45519. name: "Head",
  45520. image: {
  45521. source: "./media/characters/delkhan/head.svg"
  45522. }
  45523. },
  45524. },
  45525. [
  45526. {
  45527. name: "Normal",
  45528. height: math.unit(72, "feet"),
  45529. default: true
  45530. },
  45531. {
  45532. name: "Giant",
  45533. height: math.unit(172, "feet")
  45534. },
  45535. ]
  45536. ))
  45537. characterMakers.push(() => makeCharacter(
  45538. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45539. {
  45540. standing: {
  45541. height: math.unit(6, "feet"),
  45542. name: "Standing",
  45543. image: {
  45544. source: "./media/characters/euchidat/standing.svg",
  45545. extra: 1612/1553,
  45546. bottom: 116/1728
  45547. }
  45548. },
  45549. leaning: {
  45550. height: math.unit(6, "feet"),
  45551. name: "Leaning",
  45552. image: {
  45553. source: "./media/characters/euchidat/leaning.svg",
  45554. extra: 1719/1674,
  45555. bottom: 27/1746
  45556. }
  45557. },
  45558. },
  45559. [
  45560. {
  45561. name: "Normal",
  45562. height: math.unit(175, "feet"),
  45563. default: true
  45564. },
  45565. {
  45566. name: "Megamacro",
  45567. height: math.unit(190, "miles")
  45568. },
  45569. {
  45570. name: "Gigamacro",
  45571. height: math.unit(190000, "miles")
  45572. },
  45573. ]
  45574. ))
  45575. characterMakers.push(() => makeCharacter(
  45576. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45577. {
  45578. front: {
  45579. height: math.unit(6, "feet"),
  45580. weight: math.unit(150, "lb"),
  45581. name: "Front",
  45582. image: {
  45583. source: "./media/characters/rebecca-stack/front.svg",
  45584. extra: 1256/1201,
  45585. bottom: 18/1274
  45586. }
  45587. },
  45588. },
  45589. [
  45590. {
  45591. name: "Normal",
  45592. height: math.unit(5 + 8/12, "feet"),
  45593. default: true
  45594. },
  45595. {
  45596. name: "Demolitionist",
  45597. height: math.unit(200, "feet")
  45598. },
  45599. {
  45600. name: "Out of Control",
  45601. height: math.unit(2, "miles")
  45602. },
  45603. {
  45604. name: "Giga",
  45605. height: math.unit(7200, "miles")
  45606. },
  45607. ]
  45608. ))
  45609. characterMakers.push(() => makeCharacter(
  45610. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45611. {
  45612. front: {
  45613. height: math.unit(6, "feet"),
  45614. weight: math.unit(150, "lb"),
  45615. name: "Front",
  45616. image: {
  45617. source: "./media/characters/jenny-cartwright/front.svg",
  45618. extra: 1384/1376,
  45619. bottom: 58/1442
  45620. }
  45621. },
  45622. },
  45623. [
  45624. {
  45625. name: "Normal",
  45626. height: math.unit(6 + 7/12, "feet"),
  45627. default: true
  45628. },
  45629. {
  45630. name: "Librarian",
  45631. height: math.unit(55, "feet")
  45632. },
  45633. {
  45634. name: "Sightseer",
  45635. height: math.unit(50, "miles")
  45636. },
  45637. {
  45638. name: "Giga",
  45639. height: math.unit(30000, "miles")
  45640. },
  45641. ]
  45642. ))
  45643. characterMakers.push(() => makeCharacter(
  45644. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45645. {
  45646. nude: {
  45647. height: math.unit(8, "feet"),
  45648. weight: math.unit(225, "lb"),
  45649. name: "Nude",
  45650. image: {
  45651. source: "./media/characters/marvy/nude.svg",
  45652. extra: 1900/1683,
  45653. bottom: 89/1989
  45654. }
  45655. },
  45656. dressed: {
  45657. height: math.unit(8, "feet"),
  45658. weight: math.unit(225, "lb"),
  45659. name: "Dressed",
  45660. image: {
  45661. source: "./media/characters/marvy/dressed.svg",
  45662. extra: 1900/1683,
  45663. bottom: 89/1989
  45664. }
  45665. },
  45666. head: {
  45667. height: math.unit(2.85, "feet"),
  45668. name: "Head",
  45669. image: {
  45670. source: "./media/characters/marvy/head.svg"
  45671. }
  45672. },
  45673. },
  45674. [
  45675. {
  45676. name: "Normal",
  45677. height: math.unit(8, "feet"),
  45678. default: true
  45679. },
  45680. ]
  45681. ))
  45682. characterMakers.push(() => makeCharacter(
  45683. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45684. {
  45685. front: {
  45686. height: math.unit(8, "feet"),
  45687. weight: math.unit(250, "lb"),
  45688. name: "Front",
  45689. image: {
  45690. source: "./media/characters/leah/front.svg",
  45691. extra: 1257/1149,
  45692. bottom: 109/1366
  45693. }
  45694. },
  45695. },
  45696. [
  45697. {
  45698. name: "Normal",
  45699. height: math.unit(8, "feet"),
  45700. default: true
  45701. },
  45702. {
  45703. name: "Minimacro",
  45704. height: math.unit(40, "feet")
  45705. },
  45706. {
  45707. name: "Macro",
  45708. height: math.unit(124, "feet")
  45709. },
  45710. {
  45711. name: "Megamacro",
  45712. height: math.unit(850, "feet")
  45713. },
  45714. ]
  45715. ))
  45716. characterMakers.push(() => makeCharacter(
  45717. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45718. {
  45719. side: {
  45720. height: math.unit(13 + 6/12, "feet"),
  45721. weight: math.unit(3200, "lb"),
  45722. name: "Side",
  45723. image: {
  45724. source: "./media/characters/alvir/side.svg",
  45725. extra: 896/589,
  45726. bottom: 26/922
  45727. }
  45728. },
  45729. },
  45730. [
  45731. {
  45732. name: "Normal",
  45733. height: math.unit(13 + 6/12, "feet"),
  45734. default: true
  45735. },
  45736. ]
  45737. ))
  45738. characterMakers.push(() => makeCharacter(
  45739. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45740. {
  45741. front: {
  45742. height: math.unit(5 + 4/12, "feet"),
  45743. weight: math.unit(236, "lb"),
  45744. name: "Front",
  45745. image: {
  45746. source: "./media/characters/zaina-khalil/front.svg",
  45747. extra: 1533/1485,
  45748. bottom: 94/1627
  45749. }
  45750. },
  45751. side: {
  45752. height: math.unit(5 + 4/12, "feet"),
  45753. weight: math.unit(236, "lb"),
  45754. name: "Side",
  45755. image: {
  45756. source: "./media/characters/zaina-khalil/side.svg",
  45757. extra: 1537/1498,
  45758. bottom: 66/1603
  45759. }
  45760. },
  45761. back: {
  45762. height: math.unit(5 + 4/12, "feet"),
  45763. weight: math.unit(236, "lb"),
  45764. name: "Back",
  45765. image: {
  45766. source: "./media/characters/zaina-khalil/back.svg",
  45767. extra: 1546/1494,
  45768. bottom: 89/1635
  45769. }
  45770. },
  45771. },
  45772. [
  45773. {
  45774. name: "Normal",
  45775. height: math.unit(5 + 4/12, "feet"),
  45776. default: true
  45777. },
  45778. ]
  45779. ))
  45780. characterMakers.push(() => makeCharacter(
  45781. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45782. {
  45783. side: {
  45784. height: math.unit(12, "feet"),
  45785. weight: math.unit(4000, "lb"),
  45786. name: "Side",
  45787. image: {
  45788. source: "./media/characters/terry/side.svg",
  45789. extra: 1518/1439,
  45790. bottom: 149/1667
  45791. }
  45792. },
  45793. },
  45794. [
  45795. {
  45796. name: "Normal",
  45797. height: math.unit(12, "feet"),
  45798. default: true
  45799. },
  45800. ]
  45801. ))
  45802. characterMakers.push(() => makeCharacter(
  45803. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45804. {
  45805. front: {
  45806. height: math.unit(12, "feet"),
  45807. weight: math.unit(1500, "lb"),
  45808. name: "Front",
  45809. image: {
  45810. source: "./media/characters/kahea/front.svg",
  45811. extra: 1722/1617,
  45812. bottom: 179/1901
  45813. }
  45814. },
  45815. },
  45816. [
  45817. {
  45818. name: "Normal",
  45819. height: math.unit(12, "feet"),
  45820. default: true
  45821. },
  45822. ]
  45823. ))
  45824. characterMakers.push(() => makeCharacter(
  45825. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45826. {
  45827. demonFront: {
  45828. height: math.unit(36, "feet"),
  45829. name: "Front",
  45830. image: {
  45831. source: "./media/characters/alex-xuria/demon-front.svg",
  45832. extra: 1705/1673,
  45833. bottom: 198/1903
  45834. },
  45835. form: "demon",
  45836. default: true
  45837. },
  45838. demonBack: {
  45839. height: math.unit(36, "feet"),
  45840. name: "Back",
  45841. image: {
  45842. source: "./media/characters/alex-xuria/demon-back.svg",
  45843. extra: 1725/1693,
  45844. bottom: 70/1795
  45845. },
  45846. form: "demon"
  45847. },
  45848. demonHead: {
  45849. height: math.unit(2.14, "meters"),
  45850. name: "Head",
  45851. image: {
  45852. source: "./media/characters/alex-xuria/demon-head.svg"
  45853. },
  45854. form: "demon"
  45855. },
  45856. demonHand: {
  45857. height: math.unit(1.61, "meters"),
  45858. name: "Hand",
  45859. image: {
  45860. source: "./media/characters/alex-xuria/demon-hand.svg"
  45861. },
  45862. form: "demon"
  45863. },
  45864. demonPaw: {
  45865. height: math.unit(1.35, "meters"),
  45866. name: "Paw",
  45867. image: {
  45868. source: "./media/characters/alex-xuria/demon-paw.svg"
  45869. },
  45870. form: "demon"
  45871. },
  45872. demonFoot: {
  45873. height: math.unit(2.2, "meters"),
  45874. name: "Foot",
  45875. image: {
  45876. source: "./media/characters/alex-xuria/demon-foot.svg"
  45877. },
  45878. form: "demon"
  45879. },
  45880. demonCock: {
  45881. height: math.unit(1.74, "meters"),
  45882. name: "Cock",
  45883. image: {
  45884. source: "./media/characters/alex-xuria/demon-cock.svg"
  45885. },
  45886. form: "demon"
  45887. },
  45888. demonTailClosed: {
  45889. height: math.unit(1.47, "meters"),
  45890. name: "Tail (Closed)",
  45891. image: {
  45892. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45893. },
  45894. form: "demon"
  45895. },
  45896. demonTailOpen: {
  45897. height: math.unit(2.85, "meters"),
  45898. name: "Tail (Open)",
  45899. image: {
  45900. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45901. },
  45902. form: "demon"
  45903. },
  45904. incubusFront: {
  45905. height: math.unit(12, "feet"),
  45906. name: "Front",
  45907. image: {
  45908. source: "./media/characters/alex-xuria/incubus-front.svg",
  45909. extra: 1754/1677,
  45910. bottom: 125/1879
  45911. },
  45912. form: "incubus",
  45913. default: true
  45914. },
  45915. incubusBack: {
  45916. height: math.unit(12, "feet"),
  45917. name: "Back",
  45918. image: {
  45919. source: "./media/characters/alex-xuria/incubus-back.svg",
  45920. extra: 1702/1647,
  45921. bottom: 30/1732
  45922. },
  45923. form: "incubus"
  45924. },
  45925. incubusHead: {
  45926. height: math.unit(3.45, "feet"),
  45927. name: "Head",
  45928. image: {
  45929. source: "./media/characters/alex-xuria/incubus-head.svg"
  45930. },
  45931. form: "incubus"
  45932. },
  45933. rabbitFront: {
  45934. height: math.unit(6, "feet"),
  45935. name: "Front",
  45936. image: {
  45937. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45938. extra: 1369/1349,
  45939. bottom: 45/1414
  45940. },
  45941. form: "rabbit",
  45942. default: true
  45943. },
  45944. rabbitSide: {
  45945. height: math.unit(6, "feet"),
  45946. name: "Side",
  45947. image: {
  45948. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45949. extra: 1370/1356,
  45950. bottom: 37/1407
  45951. },
  45952. form: "rabbit"
  45953. },
  45954. rabbitBack: {
  45955. height: math.unit(6, "feet"),
  45956. name: "Back",
  45957. image: {
  45958. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45959. extra: 1375/1358,
  45960. bottom: 43/1418
  45961. },
  45962. form: "rabbit"
  45963. },
  45964. },
  45965. [
  45966. {
  45967. name: "Normal",
  45968. height: math.unit(6, "feet"),
  45969. default: true,
  45970. form: "rabbit"
  45971. },
  45972. {
  45973. name: "Incubus",
  45974. height: math.unit(12, "feet"),
  45975. default: true,
  45976. form: "incubus"
  45977. },
  45978. {
  45979. name: "Demon",
  45980. height: math.unit(36, "feet"),
  45981. default: true,
  45982. form: "demon"
  45983. }
  45984. ],
  45985. {
  45986. "demon": {
  45987. name: "Demon",
  45988. default: true
  45989. },
  45990. "incubus": {
  45991. name: "Incubus",
  45992. },
  45993. "rabbit": {
  45994. name: "Rabbit"
  45995. }
  45996. }
  45997. ))
  45998. characterMakers.push(() => makeCharacter(
  45999. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46000. {
  46001. front: {
  46002. height: math.unit(7 + 5/12, "feet"),
  46003. weight: math.unit(510, "lb"),
  46004. name: "Front",
  46005. image: {
  46006. source: "./media/characters/syrup/front.svg",
  46007. extra: 932/916,
  46008. bottom: 26/958
  46009. }
  46010. },
  46011. },
  46012. [
  46013. {
  46014. name: "Normal",
  46015. height: math.unit(7 + 5/12, "feet"),
  46016. default: true
  46017. },
  46018. {
  46019. name: "Big",
  46020. height: math.unit(50, "feet")
  46021. },
  46022. {
  46023. name: "Macro",
  46024. height: math.unit(300, "feet")
  46025. },
  46026. {
  46027. name: "Megamacro",
  46028. height: math.unit(1, "mile")
  46029. },
  46030. ]
  46031. ))
  46032. characterMakers.push(() => makeCharacter(
  46033. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46034. {
  46035. front: {
  46036. height: math.unit(6 + 9/12, "feet"),
  46037. name: "Front",
  46038. image: {
  46039. source: "./media/characters/zeimne/front.svg",
  46040. extra: 1969/1806,
  46041. bottom: 53/2022
  46042. }
  46043. },
  46044. },
  46045. [
  46046. {
  46047. name: "Normal",
  46048. height: math.unit(6 + 9/12, "feet"),
  46049. default: true
  46050. },
  46051. {
  46052. name: "Giant",
  46053. height: math.unit(550, "feet")
  46054. },
  46055. {
  46056. name: "Mega",
  46057. height: math.unit(3, "miles")
  46058. },
  46059. {
  46060. name: "Giga",
  46061. height: math.unit(250, "miles")
  46062. },
  46063. {
  46064. name: "Tera",
  46065. height: math.unit(1, "AU")
  46066. },
  46067. ]
  46068. ))
  46069. characterMakers.push(() => makeCharacter(
  46070. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46071. {
  46072. front: {
  46073. height: math.unit(5 + 2/12, "feet"),
  46074. name: "Front",
  46075. image: {
  46076. source: "./media/characters/grar/front.svg",
  46077. extra: 1331/1119,
  46078. bottom: 60/1391
  46079. }
  46080. },
  46081. back: {
  46082. height: math.unit(5 + 2/12, "feet"),
  46083. name: "Back",
  46084. image: {
  46085. source: "./media/characters/grar/back.svg",
  46086. extra: 1385/1169,
  46087. bottom: 23/1408
  46088. }
  46089. },
  46090. },
  46091. [
  46092. {
  46093. name: "Normal",
  46094. height: math.unit(5 + 2/12, "feet"),
  46095. default: true
  46096. },
  46097. ]
  46098. ))
  46099. characterMakers.push(() => makeCharacter(
  46100. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46101. {
  46102. front: {
  46103. height: math.unit(13 + 7/12, "feet"),
  46104. weight: math.unit(2200, "lb"),
  46105. name: "Front",
  46106. image: {
  46107. source: "./media/characters/endraya/front.svg",
  46108. extra: 1289/1215,
  46109. bottom: 50/1339
  46110. }
  46111. },
  46112. nude: {
  46113. height: math.unit(13 + 7/12, "feet"),
  46114. weight: math.unit(2200, "lb"),
  46115. name: "Nude",
  46116. image: {
  46117. source: "./media/characters/endraya/nude.svg",
  46118. extra: 1247/1171,
  46119. bottom: 40/1287
  46120. }
  46121. },
  46122. head: {
  46123. height: math.unit(2.6, "feet"),
  46124. name: "Head",
  46125. image: {
  46126. source: "./media/characters/endraya/head.svg"
  46127. }
  46128. },
  46129. slit: {
  46130. height: math.unit(3.4, "feet"),
  46131. name: "Slit",
  46132. image: {
  46133. source: "./media/characters/endraya/slit.svg"
  46134. }
  46135. },
  46136. },
  46137. [
  46138. {
  46139. name: "Normal",
  46140. height: math.unit(13 + 7/12, "feet"),
  46141. default: true
  46142. },
  46143. {
  46144. name: "Macro",
  46145. height: math.unit(200, "feet")
  46146. },
  46147. ]
  46148. ))
  46149. characterMakers.push(() => makeCharacter(
  46150. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46151. {
  46152. front: {
  46153. height: math.unit(1.81, "meters"),
  46154. weight: math.unit(69, "kg"),
  46155. name: "Front",
  46156. image: {
  46157. source: "./media/characters/rodryana/front.svg",
  46158. extra: 2002/1921,
  46159. bottom: 53/2055
  46160. }
  46161. },
  46162. back: {
  46163. height: math.unit(1.81, "meters"),
  46164. weight: math.unit(69, "kg"),
  46165. name: "Back",
  46166. image: {
  46167. source: "./media/characters/rodryana/back.svg",
  46168. extra: 1993/1926,
  46169. bottom: 48/2041
  46170. }
  46171. },
  46172. maw: {
  46173. height: math.unit(0.19769417475, "meters"),
  46174. name: "Maw",
  46175. image: {
  46176. source: "./media/characters/rodryana/maw.svg"
  46177. }
  46178. },
  46179. slit: {
  46180. height: math.unit(0.31631067961, "meters"),
  46181. name: "Slit",
  46182. image: {
  46183. source: "./media/characters/rodryana/slit.svg"
  46184. }
  46185. },
  46186. },
  46187. [
  46188. {
  46189. name: "Normal",
  46190. height: math.unit(1.81, "meters")
  46191. },
  46192. {
  46193. name: "Mini Macro",
  46194. height: math.unit(181, "meters")
  46195. },
  46196. {
  46197. name: "Macro",
  46198. height: math.unit(452, "meters"),
  46199. default: true
  46200. },
  46201. {
  46202. name: "Mega Macro",
  46203. height: math.unit(1.375, "km")
  46204. },
  46205. {
  46206. name: "Giga Macro",
  46207. height: math.unit(13.575, "km")
  46208. },
  46209. ]
  46210. ))
  46211. characterMakers.push(() => makeCharacter(
  46212. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46213. {
  46214. front: {
  46215. height: math.unit(6, "feet"),
  46216. weight: math.unit(1000, "lb"),
  46217. name: "Front",
  46218. image: {
  46219. source: "./media/characters/asaya/front.svg",
  46220. extra: 1460/1200,
  46221. bottom: 71/1531
  46222. }
  46223. },
  46224. },
  46225. [
  46226. {
  46227. name: "Normal",
  46228. height: math.unit(8, "km"),
  46229. default: true
  46230. },
  46231. ]
  46232. ))
  46233. characterMakers.push(() => makeCharacter(
  46234. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46235. {
  46236. front: {
  46237. height: math.unit(3.5, "meters"),
  46238. name: "Front",
  46239. image: {
  46240. source: "./media/characters/sarzu-and-israz/front.svg",
  46241. extra: 1570/1558,
  46242. bottom: 150/1720
  46243. },
  46244. },
  46245. back: {
  46246. height: math.unit(3.5, "meters"),
  46247. name: "Back",
  46248. image: {
  46249. source: "./media/characters/sarzu-and-israz/back.svg",
  46250. extra: 1523/1509,
  46251. bottom: 132/1655
  46252. },
  46253. },
  46254. frontFemale: {
  46255. height: math.unit(3.5, "meters"),
  46256. name: "Front (Female)",
  46257. image: {
  46258. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46259. extra: 1570/1558,
  46260. bottom: 150/1720
  46261. },
  46262. },
  46263. frontHerm: {
  46264. height: math.unit(3.5, "meters"),
  46265. name: "Front (Herm)",
  46266. image: {
  46267. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46268. extra: 1570/1558,
  46269. bottom: 150/1720
  46270. },
  46271. },
  46272. },
  46273. [
  46274. {
  46275. name: "Normal",
  46276. height: math.unit(3.5, "meters"),
  46277. default: true,
  46278. },
  46279. {
  46280. name: "Macro",
  46281. height: math.unit(65.5, "meters"),
  46282. },
  46283. ],
  46284. ))
  46285. characterMakers.push(() => makeCharacter(
  46286. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46287. {
  46288. front: {
  46289. height: math.unit(6, "feet"),
  46290. weight: math.unit(250, "lb"),
  46291. name: "Front",
  46292. image: {
  46293. source: "./media/characters/zenimma/front.svg",
  46294. extra: 1346/1320,
  46295. bottom: 58/1404
  46296. }
  46297. },
  46298. back: {
  46299. height: math.unit(6, "feet"),
  46300. weight: math.unit(250, "lb"),
  46301. name: "Back",
  46302. image: {
  46303. source: "./media/characters/zenimma/back.svg",
  46304. extra: 1324/1308,
  46305. bottom: 44/1368
  46306. }
  46307. },
  46308. dick: {
  46309. height: math.unit(1.44, "feet"),
  46310. name: "Dick",
  46311. image: {
  46312. source: "./media/characters/zenimma/dick.svg"
  46313. }
  46314. },
  46315. },
  46316. [
  46317. {
  46318. name: "Canon Height",
  46319. height: math.unit(66, "miles"),
  46320. default: true
  46321. },
  46322. ]
  46323. ))
  46324. characterMakers.push(() => makeCharacter(
  46325. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46326. {
  46327. nude: {
  46328. height: math.unit(6, "feet"),
  46329. weight: math.unit(150, "lb"),
  46330. name: "Nude",
  46331. image: {
  46332. source: "./media/characters/shavon/nude.svg",
  46333. extra: 1242/1096,
  46334. bottom: 98/1340
  46335. }
  46336. },
  46337. dressed: {
  46338. height: math.unit(6, "feet"),
  46339. weight: math.unit(150, "lb"),
  46340. name: "Dressed",
  46341. image: {
  46342. source: "./media/characters/shavon/dressed.svg",
  46343. extra: 1242/1096,
  46344. bottom: 98/1340
  46345. }
  46346. },
  46347. },
  46348. [
  46349. {
  46350. name: "Macro",
  46351. height: math.unit(255, "feet"),
  46352. default: true
  46353. },
  46354. ]
  46355. ))
  46356. characterMakers.push(() => makeCharacter(
  46357. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46358. {
  46359. front: {
  46360. height: math.unit(6, "feet"),
  46361. name: "Front",
  46362. image: {
  46363. source: "./media/characters/steph/front.svg",
  46364. extra: 1430/1330,
  46365. bottom: 54/1484
  46366. }
  46367. },
  46368. },
  46369. [
  46370. {
  46371. name: "Normal",
  46372. height: math.unit(6, "feet"),
  46373. default: true
  46374. },
  46375. ]
  46376. ))
  46377. characterMakers.push(() => makeCharacter(
  46378. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46379. {
  46380. front: {
  46381. height: math.unit(9, "feet"),
  46382. weight: math.unit(400, "lb"),
  46383. name: "Front",
  46384. image: {
  46385. source: "./media/characters/kil'aman/front.svg",
  46386. extra: 1210/1159,
  46387. bottom: 109/1319
  46388. }
  46389. },
  46390. head: {
  46391. height: math.unit(2.14, "feet"),
  46392. name: "Head",
  46393. image: {
  46394. source: "./media/characters/kil'aman/head.svg"
  46395. }
  46396. },
  46397. maw: {
  46398. height: math.unit(1.21, "feet"),
  46399. name: "Maw",
  46400. image: {
  46401. source: "./media/characters/kil'aman/maw.svg"
  46402. }
  46403. },
  46404. foot: {
  46405. height: math.unit(1.7, "feet"),
  46406. name: "Foot",
  46407. image: {
  46408. source: "./media/characters/kil'aman/foot.svg"
  46409. }
  46410. },
  46411. dick: {
  46412. height: math.unit(2.1, "feet"),
  46413. name: "Dick",
  46414. image: {
  46415. source: "./media/characters/kil'aman/dick.svg"
  46416. }
  46417. },
  46418. },
  46419. [
  46420. {
  46421. name: "Normal",
  46422. height: math.unit(9, "feet")
  46423. },
  46424. {
  46425. name: "Canon Height",
  46426. height: math.unit(10, "miles"),
  46427. default: true
  46428. },
  46429. {
  46430. name: "Maximum",
  46431. height: math.unit(6e9, "miles")
  46432. },
  46433. ]
  46434. ))
  46435. characterMakers.push(() => makeCharacter(
  46436. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46437. {
  46438. front: {
  46439. height: math.unit(90, "feet"),
  46440. weight: math.unit(675000, "lb"),
  46441. name: "Front",
  46442. image: {
  46443. source: "./media/characters/qadan/front.svg",
  46444. extra: 1012/1004,
  46445. bottom: 78/1090
  46446. }
  46447. },
  46448. back: {
  46449. height: math.unit(90, "feet"),
  46450. weight: math.unit(675000, "lb"),
  46451. name: "Back",
  46452. image: {
  46453. source: "./media/characters/qadan/back.svg",
  46454. extra: 1042/1031,
  46455. bottom: 55/1097
  46456. }
  46457. },
  46458. armored: {
  46459. height: math.unit(90, "feet"),
  46460. weight: math.unit(675000, "lb"),
  46461. name: "Armored",
  46462. image: {
  46463. source: "./media/characters/qadan/armored.svg",
  46464. extra: 1047/1037,
  46465. bottom: 48/1095
  46466. }
  46467. },
  46468. },
  46469. [
  46470. {
  46471. name: "Normal",
  46472. height: math.unit(90, "feet"),
  46473. default: true
  46474. },
  46475. ]
  46476. ))
  46477. characterMakers.push(() => makeCharacter(
  46478. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46479. {
  46480. front: {
  46481. height: math.unit(6, "feet"),
  46482. weight: math.unit(225, "lb"),
  46483. name: "Front",
  46484. image: {
  46485. source: "./media/characters/brooke/front.svg",
  46486. extra: 1050/1010,
  46487. bottom: 66/1116
  46488. }
  46489. },
  46490. back: {
  46491. height: math.unit(6, "feet"),
  46492. weight: math.unit(225, "lb"),
  46493. name: "Back",
  46494. image: {
  46495. source: "./media/characters/brooke/back.svg",
  46496. extra: 1053/1013,
  46497. bottom: 41/1094
  46498. }
  46499. },
  46500. dressed: {
  46501. height: math.unit(6, "feet"),
  46502. weight: math.unit(225, "lb"),
  46503. name: "Dressed",
  46504. image: {
  46505. source: "./media/characters/brooke/dressed.svg",
  46506. extra: 1050/1010,
  46507. bottom: 66/1116
  46508. }
  46509. },
  46510. },
  46511. [
  46512. {
  46513. name: "Canon Height",
  46514. height: math.unit(500, "miles"),
  46515. default: true
  46516. },
  46517. ]
  46518. ))
  46519. characterMakers.push(() => makeCharacter(
  46520. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46521. {
  46522. front: {
  46523. height: math.unit(6 + 2/12, "feet"),
  46524. weight: math.unit(210, "lb"),
  46525. name: "Front",
  46526. image: {
  46527. source: "./media/characters/wubs/front.svg",
  46528. extra: 1345/1325,
  46529. bottom: 70/1415
  46530. }
  46531. },
  46532. back: {
  46533. height: math.unit(6 + 2/12, "feet"),
  46534. weight: math.unit(210, "lb"),
  46535. name: "Back",
  46536. image: {
  46537. source: "./media/characters/wubs/back.svg",
  46538. extra: 1296/1275,
  46539. bottom: 58/1354
  46540. }
  46541. },
  46542. },
  46543. [
  46544. {
  46545. name: "Normal",
  46546. height: math.unit(6 + 2/12, "feet"),
  46547. default: true
  46548. },
  46549. {
  46550. name: "Macro",
  46551. height: math.unit(1000, "feet")
  46552. },
  46553. {
  46554. name: "Megamacro",
  46555. height: math.unit(1, "mile")
  46556. },
  46557. ]
  46558. ))
  46559. characterMakers.push(() => makeCharacter(
  46560. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46561. {
  46562. front: {
  46563. height: math.unit(4, "feet"),
  46564. weight: math.unit(120, "lb"),
  46565. name: "Front",
  46566. image: {
  46567. source: "./media/characters/blue/front.svg",
  46568. extra: 1636/1525,
  46569. bottom: 43/1679
  46570. }
  46571. },
  46572. back: {
  46573. height: math.unit(4, "feet"),
  46574. weight: math.unit(120, "lb"),
  46575. name: "Back",
  46576. image: {
  46577. source: "./media/characters/blue/back.svg",
  46578. extra: 1660/1560,
  46579. bottom: 57/1717
  46580. }
  46581. },
  46582. paws: {
  46583. height: math.unit(0.826, "feet"),
  46584. name: "Paws",
  46585. image: {
  46586. source: "./media/characters/blue/paws.svg"
  46587. }
  46588. },
  46589. },
  46590. [
  46591. {
  46592. name: "Micro",
  46593. height: math.unit(3, "inches")
  46594. },
  46595. {
  46596. name: "Normal",
  46597. height: math.unit(4, "feet"),
  46598. default: true
  46599. },
  46600. {
  46601. name: "Femenine Form",
  46602. height: math.unit(14, "feet")
  46603. },
  46604. {
  46605. name: "Werebat Form",
  46606. height: math.unit(18, "feet")
  46607. },
  46608. ]
  46609. ))
  46610. characterMakers.push(() => makeCharacter(
  46611. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46612. {
  46613. female: {
  46614. height: math.unit(7 + 4/12, "feet"),
  46615. weight: math.unit(243, "lb"),
  46616. name: "Female",
  46617. image: {
  46618. source: "./media/characters/kaya/female.svg",
  46619. extra: 975/898,
  46620. bottom: 34/1009
  46621. }
  46622. },
  46623. herm: {
  46624. height: math.unit(7 + 4/12, "feet"),
  46625. weight: math.unit(243, "lb"),
  46626. name: "Herm",
  46627. image: {
  46628. source: "./media/characters/kaya/herm.svg",
  46629. extra: 975/898,
  46630. bottom: 34/1009
  46631. }
  46632. },
  46633. },
  46634. [
  46635. {
  46636. name: "Normal",
  46637. height: math.unit(7 + 4/12, "feet"),
  46638. default: true
  46639. },
  46640. ]
  46641. ))
  46642. characterMakers.push(() => makeCharacter(
  46643. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46644. {
  46645. female: {
  46646. height: math.unit(9 + 4/12, "feet"),
  46647. weight: math.unit(398, "lb"),
  46648. name: "Female",
  46649. image: {
  46650. source: "./media/characters/kassandra/female.svg",
  46651. extra: 908/839,
  46652. bottom: 61/969
  46653. }
  46654. },
  46655. intersex: {
  46656. height: math.unit(9 + 4/12, "feet"),
  46657. weight: math.unit(398, "lb"),
  46658. name: "Intersex",
  46659. image: {
  46660. source: "./media/characters/kassandra/intersex.svg",
  46661. extra: 908/839,
  46662. bottom: 61/969
  46663. }
  46664. },
  46665. },
  46666. [
  46667. {
  46668. name: "Normal",
  46669. height: math.unit(9 + 4/12, "feet"),
  46670. default: true
  46671. },
  46672. ]
  46673. ))
  46674. characterMakers.push(() => makeCharacter(
  46675. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46676. {
  46677. front: {
  46678. height: math.unit(3, "meters"),
  46679. name: "Front",
  46680. image: {
  46681. source: "./media/characters/amy/front.svg",
  46682. extra: 1380/1343,
  46683. bottom: 70/1450
  46684. }
  46685. },
  46686. back: {
  46687. height: math.unit(3, "meters"),
  46688. name: "Back",
  46689. image: {
  46690. source: "./media/characters/amy/back.svg",
  46691. extra: 1380/1347,
  46692. bottom: 66/1446
  46693. }
  46694. },
  46695. },
  46696. [
  46697. {
  46698. name: "Normal",
  46699. height: math.unit(3, "meters"),
  46700. default: true
  46701. },
  46702. ]
  46703. ))
  46704. characterMakers.push(() => makeCharacter(
  46705. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46706. {
  46707. side: {
  46708. height: math.unit(47, "cm"),
  46709. weight: math.unit(10.8, "kg"),
  46710. name: "Side",
  46711. image: {
  46712. source: "./media/characters/alphaschakal/side.svg",
  46713. extra: 1058/568,
  46714. bottom: 62/1120
  46715. }
  46716. },
  46717. back: {
  46718. height: math.unit(78, "cm"),
  46719. weight: math.unit(10.8, "kg"),
  46720. name: "Back",
  46721. image: {
  46722. source: "./media/characters/alphaschakal/back.svg",
  46723. extra: 1102/942,
  46724. bottom: 185/1287
  46725. }
  46726. },
  46727. head: {
  46728. height: math.unit(28, "cm"),
  46729. name: "Head",
  46730. image: {
  46731. source: "./media/characters/alphaschakal/head.svg",
  46732. extra: 696/508,
  46733. bottom: 0/696
  46734. }
  46735. },
  46736. paw: {
  46737. height: math.unit(16, "cm"),
  46738. name: "Paw",
  46739. image: {
  46740. source: "./media/characters/alphaschakal/paw.svg"
  46741. }
  46742. },
  46743. },
  46744. [
  46745. {
  46746. name: "Normal",
  46747. height: math.unit(47, "cm"),
  46748. default: true
  46749. },
  46750. {
  46751. name: "Macro",
  46752. height: math.unit(340, "cm")
  46753. },
  46754. ]
  46755. ))
  46756. characterMakers.push(() => makeCharacter(
  46757. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46758. {
  46759. front: {
  46760. height: math.unit(36, "earths"),
  46761. name: "Front",
  46762. image: {
  46763. source: "./media/characters/ecobyss/front.svg",
  46764. extra: 1282/1215,
  46765. bottom: 11/1293
  46766. }
  46767. },
  46768. back: {
  46769. height: math.unit(36, "earths"),
  46770. name: "Back",
  46771. image: {
  46772. source: "./media/characters/ecobyss/back.svg",
  46773. extra: 1291/1222,
  46774. bottom: 8/1299
  46775. }
  46776. },
  46777. },
  46778. [
  46779. {
  46780. name: "Normal",
  46781. height: math.unit(36, "earths"),
  46782. default: true
  46783. },
  46784. ]
  46785. ))
  46786. characterMakers.push(() => makeCharacter(
  46787. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46788. {
  46789. front: {
  46790. height: math.unit(12, "feet"),
  46791. name: "Front",
  46792. image: {
  46793. source: "./media/characters/vasuk/front.svg",
  46794. extra: 1326/1207,
  46795. bottom: 64/1390
  46796. }
  46797. },
  46798. },
  46799. [
  46800. {
  46801. name: "Normal",
  46802. height: math.unit(12, "feet"),
  46803. default: true
  46804. },
  46805. ]
  46806. ))
  46807. characterMakers.push(() => makeCharacter(
  46808. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46809. {
  46810. side: {
  46811. height: math.unit(100, "feet"),
  46812. name: "Side",
  46813. image: {
  46814. source: "./media/characters/linneaus/side.svg",
  46815. extra: 987/807,
  46816. bottom: 47/1034
  46817. }
  46818. },
  46819. },
  46820. [
  46821. {
  46822. name: "Macro",
  46823. height: math.unit(100, "feet"),
  46824. default: true
  46825. },
  46826. ]
  46827. ))
  46828. characterMakers.push(() => makeCharacter(
  46829. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46830. {
  46831. front: {
  46832. height: math.unit(8, "feet"),
  46833. weight: math.unit(1200, "lb"),
  46834. name: "Front",
  46835. image: {
  46836. source: "./media/characters/nyterious-daligdig/front.svg",
  46837. extra: 1284/1094,
  46838. bottom: 84/1368
  46839. }
  46840. },
  46841. back: {
  46842. height: math.unit(8, "feet"),
  46843. weight: math.unit(1200, "lb"),
  46844. name: "Back",
  46845. image: {
  46846. source: "./media/characters/nyterious-daligdig/back.svg",
  46847. extra: 1301/1121,
  46848. bottom: 129/1430
  46849. }
  46850. },
  46851. mouth: {
  46852. height: math.unit(1.464, "feet"),
  46853. name: "Mouth",
  46854. image: {
  46855. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46856. }
  46857. },
  46858. },
  46859. [
  46860. {
  46861. name: "Small",
  46862. height: math.unit(8, "feet"),
  46863. default: true
  46864. },
  46865. {
  46866. name: "Normal",
  46867. height: math.unit(15, "feet")
  46868. },
  46869. {
  46870. name: "Macro",
  46871. height: math.unit(90, "feet")
  46872. },
  46873. ]
  46874. ))
  46875. characterMakers.push(() => makeCharacter(
  46876. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46877. {
  46878. front: {
  46879. height: math.unit(7 + 4/12, "feet"),
  46880. weight: math.unit(252, "lb"),
  46881. name: "Front",
  46882. image: {
  46883. source: "./media/characters/bandel/front.svg",
  46884. extra: 1946/1775,
  46885. bottom: 26/1972
  46886. }
  46887. },
  46888. back: {
  46889. height: math.unit(7 + 4/12, "feet"),
  46890. weight: math.unit(252, "lb"),
  46891. name: "Back",
  46892. image: {
  46893. source: "./media/characters/bandel/back.svg",
  46894. extra: 1940/1770,
  46895. bottom: 25/1965
  46896. }
  46897. },
  46898. maw: {
  46899. height: math.unit(2.15, "feet"),
  46900. name: "Maw",
  46901. image: {
  46902. source: "./media/characters/bandel/maw.svg"
  46903. }
  46904. },
  46905. stomach: {
  46906. height: math.unit(1.95, "feet"),
  46907. name: "Stomach",
  46908. image: {
  46909. source: "./media/characters/bandel/stomach.svg"
  46910. }
  46911. },
  46912. },
  46913. [
  46914. {
  46915. name: "Normal",
  46916. height: math.unit(7 + 4/12, "feet"),
  46917. default: true
  46918. },
  46919. ]
  46920. ))
  46921. characterMakers.push(() => makeCharacter(
  46922. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46923. {
  46924. front: {
  46925. height: math.unit(10 + 5/12, "feet"),
  46926. weight: math.unit(773.5, "kg"),
  46927. name: "Front",
  46928. image: {
  46929. source: "./media/characters/zed/front.svg",
  46930. extra: 987/941,
  46931. bottom: 52/1039
  46932. }
  46933. },
  46934. },
  46935. [
  46936. {
  46937. name: "Short",
  46938. height: math.unit(5 + 4/12, "feet")
  46939. },
  46940. {
  46941. name: "Average",
  46942. height: math.unit(10 + 5/12, "feet"),
  46943. default: true
  46944. },
  46945. {
  46946. name: "Mini-Macro",
  46947. height: math.unit(24 + 9/12, "feet")
  46948. },
  46949. {
  46950. name: "Macro",
  46951. height: math.unit(249, "feet")
  46952. },
  46953. {
  46954. name: "Mega-Macro",
  46955. height: math.unit(12490, "feet")
  46956. },
  46957. {
  46958. name: "Giga-Macro",
  46959. height: math.unit(24.9, "miles")
  46960. },
  46961. {
  46962. name: "Tera-Macro",
  46963. height: math.unit(24900, "miles")
  46964. },
  46965. {
  46966. name: "Cosmic Scale",
  46967. height: math.unit(38.9, "lightyears")
  46968. },
  46969. {
  46970. name: "Universal Scale",
  46971. height: math.unit(138e12, "lightyears")
  46972. },
  46973. ]
  46974. ))
  46975. characterMakers.push(() => makeCharacter(
  46976. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46977. {
  46978. front: {
  46979. height: math.unit(1561, "inches"),
  46980. name: "Front",
  46981. image: {
  46982. source: "./media/characters/ivan/front.svg",
  46983. extra: 1126/1071,
  46984. bottom: 26/1152
  46985. }
  46986. },
  46987. back: {
  46988. height: math.unit(1561, "inches"),
  46989. name: "Back",
  46990. image: {
  46991. source: "./media/characters/ivan/back.svg",
  46992. extra: 1134/1079,
  46993. bottom: 30/1164
  46994. }
  46995. },
  46996. },
  46997. [
  46998. {
  46999. name: "Normal",
  47000. height: math.unit(1561, "inches"),
  47001. default: true
  47002. },
  47003. ]
  47004. ))
  47005. characterMakers.push(() => makeCharacter(
  47006. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47007. {
  47008. front: {
  47009. height: math.unit(5 + 7/12, "feet"),
  47010. weight: math.unit(150, "lb"),
  47011. name: "Front",
  47012. image: {
  47013. source: "./media/characters/robin-arctic-hare/front.svg",
  47014. extra: 1148/974,
  47015. bottom: 20/1168
  47016. }
  47017. },
  47018. },
  47019. [
  47020. {
  47021. name: "Normal",
  47022. height: math.unit(5 + 7/12, "feet"),
  47023. default: true
  47024. },
  47025. ]
  47026. ))
  47027. characterMakers.push(() => makeCharacter(
  47028. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47029. {
  47030. side: {
  47031. height: math.unit(5, "feet"),
  47032. name: "Side",
  47033. image: {
  47034. source: "./media/characters/birch/side.svg",
  47035. extra: 985/796,
  47036. bottom: 111/1096
  47037. }
  47038. },
  47039. },
  47040. [
  47041. {
  47042. name: "Normal",
  47043. height: math.unit(5, "feet"),
  47044. default: true
  47045. },
  47046. ]
  47047. ))
  47048. characterMakers.push(() => makeCharacter(
  47049. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47050. {
  47051. front: {
  47052. height: math.unit(4, "feet"),
  47053. name: "Front",
  47054. image: {
  47055. source: "./media/characters/rasp/front.svg",
  47056. extra: 561/478,
  47057. bottom: 74/635
  47058. }
  47059. },
  47060. },
  47061. [
  47062. {
  47063. name: "Normal",
  47064. height: math.unit(4, "feet"),
  47065. default: true
  47066. },
  47067. ]
  47068. ))
  47069. characterMakers.push(() => makeCharacter(
  47070. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47071. {
  47072. front: {
  47073. height: math.unit(4 + 6/12, "feet"),
  47074. name: "Front",
  47075. image: {
  47076. source: "./media/characters/agatha/front.svg",
  47077. extra: 947/933,
  47078. bottom: 42/989
  47079. }
  47080. },
  47081. back: {
  47082. height: math.unit(4 + 6/12, "feet"),
  47083. name: "Back",
  47084. image: {
  47085. source: "./media/characters/agatha/back.svg",
  47086. extra: 935/922,
  47087. bottom: 48/983
  47088. }
  47089. },
  47090. },
  47091. [
  47092. {
  47093. name: "Normal",
  47094. height: math.unit(4 + 6 /12, "feet"),
  47095. default: true
  47096. },
  47097. {
  47098. name: "Max Size",
  47099. height: math.unit(500, "feet")
  47100. },
  47101. ]
  47102. ))
  47103. characterMakers.push(() => makeCharacter(
  47104. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47105. {
  47106. side: {
  47107. height: math.unit(30, "feet"),
  47108. name: "Side",
  47109. image: {
  47110. source: "./media/characters/roggy/side.svg",
  47111. extra: 909/643,
  47112. bottom: 63/972
  47113. }
  47114. },
  47115. lounging: {
  47116. height: math.unit(20, "feet"),
  47117. name: "Lounging",
  47118. image: {
  47119. source: "./media/characters/roggy/lounging.svg",
  47120. extra: 643/479,
  47121. bottom: 145/788
  47122. }
  47123. },
  47124. handpaw: {
  47125. height: math.unit(13.1, "feet"),
  47126. name: "Handpaw",
  47127. image: {
  47128. source: "./media/characters/roggy/handpaw.svg"
  47129. }
  47130. },
  47131. footpaw: {
  47132. height: math.unit(15.8, "feet"),
  47133. name: "Footpaw",
  47134. image: {
  47135. source: "./media/characters/roggy/footpaw.svg"
  47136. }
  47137. },
  47138. },
  47139. [
  47140. {
  47141. name: "Menacing",
  47142. height: math.unit(30, "feet"),
  47143. default: true
  47144. },
  47145. ]
  47146. ))
  47147. characterMakers.push(() => makeCharacter(
  47148. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47149. {
  47150. front: {
  47151. height: math.unit(5 + 7/12, "feet"),
  47152. weight: math.unit(135, "lb"),
  47153. name: "Front",
  47154. image: {
  47155. source: "./media/characters/naomi/front.svg",
  47156. extra: 1209/1154,
  47157. bottom: 129/1338
  47158. }
  47159. },
  47160. back: {
  47161. height: math.unit(5 + 7/12, "feet"),
  47162. weight: math.unit(135, "lb"),
  47163. name: "Back",
  47164. image: {
  47165. source: "./media/characters/naomi/back.svg",
  47166. extra: 1252/1190,
  47167. bottom: 23/1275
  47168. }
  47169. },
  47170. },
  47171. [
  47172. {
  47173. name: "Normal",
  47174. height: math.unit(5 + 7 /12, "feet"),
  47175. default: true
  47176. },
  47177. ]
  47178. ))
  47179. characterMakers.push(() => makeCharacter(
  47180. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47181. {
  47182. side: {
  47183. height: math.unit(35, "meters"),
  47184. name: "Side",
  47185. image: {
  47186. source: "./media/characters/kimpi/side.svg",
  47187. extra: 419/382,
  47188. bottom: 63/482
  47189. }
  47190. },
  47191. hand: {
  47192. height: math.unit(8.96, "meters"),
  47193. name: "Hand",
  47194. image: {
  47195. source: "./media/characters/kimpi/hand.svg"
  47196. }
  47197. },
  47198. },
  47199. [
  47200. {
  47201. name: "Normal",
  47202. height: math.unit(35, "meters"),
  47203. default: true
  47204. },
  47205. ]
  47206. ))
  47207. characterMakers.push(() => makeCharacter(
  47208. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47209. {
  47210. front: {
  47211. height: math.unit(4 + 4/12, "feet"),
  47212. name: "Front",
  47213. image: {
  47214. source: "./media/characters/pepper-purrloin/front.svg",
  47215. extra: 1141/1024,
  47216. bottom: 21/1162
  47217. }
  47218. },
  47219. },
  47220. [
  47221. {
  47222. name: "Normal",
  47223. height: math.unit(4 + 4/12, "feet"),
  47224. default: true
  47225. },
  47226. ]
  47227. ))
  47228. characterMakers.push(() => makeCharacter(
  47229. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47230. {
  47231. front: {
  47232. height: math.unit(6 + 2/12, "feet"),
  47233. name: "Front",
  47234. image: {
  47235. source: "./media/characters/raphael/front.svg",
  47236. extra: 1101/962,
  47237. bottom: 59/1160
  47238. }
  47239. },
  47240. },
  47241. [
  47242. {
  47243. name: "Normal",
  47244. height: math.unit(6 + 2/12, "feet"),
  47245. default: true
  47246. },
  47247. ]
  47248. ))
  47249. characterMakers.push(() => makeCharacter(
  47250. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47251. {
  47252. front: {
  47253. height: math.unit(6, "feet"),
  47254. weight: math.unit(150, "lb"),
  47255. name: "Front",
  47256. image: {
  47257. source: "./media/characters/victor-williams/front.svg",
  47258. extra: 1894/1825,
  47259. bottom: 67/1961
  47260. }
  47261. },
  47262. },
  47263. [
  47264. {
  47265. name: "Normal",
  47266. height: math.unit(6, "feet"),
  47267. default: true
  47268. },
  47269. ]
  47270. ))
  47271. characterMakers.push(() => makeCharacter(
  47272. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47273. {
  47274. front: {
  47275. height: math.unit(5 + 8/12, "feet"),
  47276. weight: math.unit(150, "lb"),
  47277. name: "Front",
  47278. image: {
  47279. source: "./media/characters/rachel/front.svg",
  47280. extra: 1902/1787,
  47281. bottom: 46/1948
  47282. }
  47283. },
  47284. },
  47285. [
  47286. {
  47287. name: "Base Height",
  47288. height: math.unit(5 + 8/12, "feet"),
  47289. default: true
  47290. },
  47291. {
  47292. name: "Macro",
  47293. height: math.unit(200, "feet")
  47294. },
  47295. {
  47296. name: "Mega Macro",
  47297. height: math.unit(1, "mile")
  47298. },
  47299. {
  47300. name: "Giga Macro",
  47301. height: math.unit(1500, "miles")
  47302. },
  47303. {
  47304. name: "Tera Macro",
  47305. height: math.unit(8000, "miles")
  47306. },
  47307. {
  47308. name: "Tera Macro+",
  47309. height: math.unit(2e5, "miles")
  47310. },
  47311. ]
  47312. ))
  47313. characterMakers.push(() => makeCharacter(
  47314. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47315. {
  47316. front: {
  47317. height: math.unit(6.5, "feet"),
  47318. name: "Front",
  47319. image: {
  47320. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47321. extra: 860/819,
  47322. bottom: 307/1167
  47323. }
  47324. },
  47325. back: {
  47326. height: math.unit(6.5, "feet"),
  47327. name: "Back",
  47328. image: {
  47329. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47330. extra: 880/837,
  47331. bottom: 395/1275
  47332. }
  47333. },
  47334. sleeping: {
  47335. height: math.unit(2.79, "feet"),
  47336. name: "Sleeping",
  47337. image: {
  47338. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47339. extra: 465/383,
  47340. bottom: 263/728
  47341. }
  47342. },
  47343. maw: {
  47344. height: math.unit(2.52, "feet"),
  47345. name: "Maw",
  47346. image: {
  47347. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47348. }
  47349. },
  47350. },
  47351. [
  47352. {
  47353. name: "Normal",
  47354. height: math.unit(6.5, "feet"),
  47355. default: true
  47356. },
  47357. ]
  47358. ))
  47359. characterMakers.push(() => makeCharacter(
  47360. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47361. {
  47362. front: {
  47363. height: math.unit(5, "feet"),
  47364. name: "Front",
  47365. image: {
  47366. source: "./media/characters/nova-nerium/front.svg",
  47367. extra: 1548/1392,
  47368. bottom: 374/1922
  47369. }
  47370. },
  47371. back: {
  47372. height: math.unit(5, "feet"),
  47373. name: "Back",
  47374. image: {
  47375. source: "./media/characters/nova-nerium/back.svg",
  47376. extra: 1658/1468,
  47377. bottom: 257/1915
  47378. }
  47379. },
  47380. },
  47381. [
  47382. {
  47383. name: "Normal",
  47384. height: math.unit(5, "feet"),
  47385. default: true
  47386. },
  47387. ]
  47388. ))
  47389. characterMakers.push(() => makeCharacter(
  47390. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47391. {
  47392. front: {
  47393. height: math.unit(5 + 4/12, "feet"),
  47394. name: "Front",
  47395. image: {
  47396. source: "./media/characters/ashe-pyriph/front.svg",
  47397. extra: 1935/1747,
  47398. bottom: 60/1995
  47399. }
  47400. },
  47401. },
  47402. [
  47403. {
  47404. name: "Normal",
  47405. height: math.unit(5 + 4/12, "feet"),
  47406. default: true
  47407. },
  47408. ]
  47409. ))
  47410. characterMakers.push(() => makeCharacter(
  47411. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47412. {
  47413. front: {
  47414. height: math.unit(8.7, "feet"),
  47415. name: "Front",
  47416. image: {
  47417. source: "./media/characters/flicker-wisp/front.svg",
  47418. extra: 1835/1613,
  47419. bottom: 449/2284
  47420. }
  47421. },
  47422. side: {
  47423. height: math.unit(8.7, "feet"),
  47424. name: "Side",
  47425. image: {
  47426. source: "./media/characters/flicker-wisp/side.svg",
  47427. extra: 1841/1642,
  47428. bottom: 336/2177
  47429. },
  47430. default: true
  47431. },
  47432. maw: {
  47433. height: math.unit(3.35, "feet"),
  47434. name: "Maw",
  47435. image: {
  47436. source: "./media/characters/flicker-wisp/maw.svg",
  47437. extra: 2338/1506,
  47438. bottom: 0/2338
  47439. }
  47440. },
  47441. ovipositor: {
  47442. height: math.unit(4.95, "feet"),
  47443. name: "Ovipositor",
  47444. image: {
  47445. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47446. }
  47447. },
  47448. egg: {
  47449. height: math.unit(0.385, "feet"),
  47450. weight: math.unit(2, "lb"),
  47451. name: "Egg",
  47452. image: {
  47453. source: "./media/characters/flicker-wisp/egg.svg"
  47454. }
  47455. },
  47456. },
  47457. [
  47458. {
  47459. name: "Normal",
  47460. height: math.unit(8.7, "feet"),
  47461. default: true
  47462. },
  47463. ]
  47464. ))
  47465. characterMakers.push(() => makeCharacter(
  47466. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47467. {
  47468. side: {
  47469. height: math.unit(11, "feet"),
  47470. name: "Side",
  47471. image: {
  47472. source: "./media/characters/faefnul/side.svg",
  47473. extra: 1100/1007,
  47474. bottom: 0/1100
  47475. }
  47476. },
  47477. },
  47478. [
  47479. {
  47480. name: "Normal",
  47481. height: math.unit(11, "feet"),
  47482. default: true
  47483. },
  47484. ]
  47485. ))
  47486. characterMakers.push(() => makeCharacter(
  47487. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47488. {
  47489. front: {
  47490. height: math.unit(6 + 2/12, "feet"),
  47491. name: "Front",
  47492. image: {
  47493. source: "./media/characters/shady/front.svg",
  47494. extra: 502/461,
  47495. bottom: 9/511
  47496. }
  47497. },
  47498. kneeling: {
  47499. height: math.unit(4.6, "feet"),
  47500. name: "Kneeling",
  47501. image: {
  47502. source: "./media/characters/shady/kneeling.svg",
  47503. extra: 1328/1219,
  47504. bottom: 117/1445
  47505. }
  47506. },
  47507. maw: {
  47508. height: math.unit(2, "feet"),
  47509. name: "Maw",
  47510. image: {
  47511. source: "./media/characters/shady/maw.svg"
  47512. }
  47513. },
  47514. },
  47515. [
  47516. {
  47517. name: "Nano",
  47518. height: math.unit(1, "mm")
  47519. },
  47520. {
  47521. name: "Micro",
  47522. height: math.unit(12, "mm")
  47523. },
  47524. {
  47525. name: "Tiny",
  47526. height: math.unit(3, "inches")
  47527. },
  47528. {
  47529. name: "Normal",
  47530. height: math.unit(6 + 2/12, "feet"),
  47531. default: true
  47532. },
  47533. {
  47534. name: "Big",
  47535. height: math.unit(15, "feet")
  47536. },
  47537. {
  47538. name: "Macro",
  47539. height: math.unit(150, "feet")
  47540. },
  47541. {
  47542. name: "Titanic",
  47543. height: math.unit(500, "feet")
  47544. },
  47545. ]
  47546. ))
  47547. characterMakers.push(() => makeCharacter(
  47548. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47549. {
  47550. front: {
  47551. height: math.unit(12, "feet"),
  47552. name: "Front",
  47553. image: {
  47554. source: "./media/characters/fenrir/front.svg",
  47555. extra: 968/875,
  47556. bottom: 22/990
  47557. }
  47558. },
  47559. },
  47560. [
  47561. {
  47562. name: "Big",
  47563. height: math.unit(12, "feet"),
  47564. default: true
  47565. },
  47566. ]
  47567. ))
  47568. characterMakers.push(() => makeCharacter(
  47569. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47570. {
  47571. front: {
  47572. height: math.unit(5 + 4/12, "feet"),
  47573. name: "Front",
  47574. image: {
  47575. source: "./media/characters/makar/front.svg",
  47576. extra: 1181/1112,
  47577. bottom: 78/1259
  47578. }
  47579. },
  47580. },
  47581. [
  47582. {
  47583. name: "Normal",
  47584. height: math.unit(5 + 4/12, "feet"),
  47585. default: true
  47586. },
  47587. ]
  47588. ))
  47589. characterMakers.push(() => makeCharacter(
  47590. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47591. {
  47592. front: {
  47593. height: math.unit(5 + 7/12, "feet"),
  47594. name: "Front",
  47595. image: {
  47596. source: "./media/characters/callow/front.svg",
  47597. extra: 1482/1304,
  47598. bottom: 23/1505
  47599. }
  47600. },
  47601. back: {
  47602. height: math.unit(5 + 7/12, "feet"),
  47603. name: "Back",
  47604. image: {
  47605. source: "./media/characters/callow/back.svg",
  47606. extra: 1484/1296,
  47607. bottom: 25/1509
  47608. }
  47609. },
  47610. },
  47611. [
  47612. {
  47613. name: "Micro",
  47614. height: math.unit(3, "inches"),
  47615. default: true
  47616. },
  47617. {
  47618. name: "Normal",
  47619. height: math.unit(5 + 7/12, "feet")
  47620. },
  47621. ]
  47622. ))
  47623. characterMakers.push(() => makeCharacter(
  47624. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47625. {
  47626. front: {
  47627. height: math.unit(6 + 2/12, "feet"),
  47628. name: "Front",
  47629. image: {
  47630. source: "./media/characters/natel/front.svg",
  47631. extra: 1833/1692,
  47632. bottom: 166/1999
  47633. }
  47634. },
  47635. },
  47636. [
  47637. {
  47638. name: "Normal",
  47639. height: math.unit(6 + 2/12, "feet"),
  47640. default: true
  47641. },
  47642. ]
  47643. ))
  47644. characterMakers.push(() => makeCharacter(
  47645. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47646. {
  47647. front: {
  47648. height: math.unit(1.75, "meters"),
  47649. name: "Front",
  47650. image: {
  47651. source: "./media/characters/misu/front.svg",
  47652. extra: 1690/1558,
  47653. bottom: 234/1924
  47654. }
  47655. },
  47656. back: {
  47657. height: math.unit(1.75, "meters"),
  47658. name: "Back",
  47659. image: {
  47660. source: "./media/characters/misu/back.svg",
  47661. extra: 1762/1618,
  47662. bottom: 146/1908
  47663. }
  47664. },
  47665. frontNude: {
  47666. height: math.unit(1.75, "meters"),
  47667. name: "Front (Nude)",
  47668. image: {
  47669. source: "./media/characters/misu/front-nude.svg",
  47670. extra: 1690/1558,
  47671. bottom: 234/1924
  47672. }
  47673. },
  47674. backNude: {
  47675. height: math.unit(1.75, "meters"),
  47676. name: "Back (Nude)",
  47677. image: {
  47678. source: "./media/characters/misu/back-nude.svg",
  47679. extra: 1762/1618,
  47680. bottom: 146/1908
  47681. }
  47682. },
  47683. frontErect: {
  47684. height: math.unit(1.75, "meters"),
  47685. name: "Front (Erect)",
  47686. image: {
  47687. source: "./media/characters/misu/front-erect.svg",
  47688. extra: 1690/1558,
  47689. bottom: 234/1924
  47690. }
  47691. },
  47692. maw: {
  47693. height: math.unit(0.47, "meters"),
  47694. name: "Maw",
  47695. image: {
  47696. source: "./media/characters/misu/maw.svg"
  47697. }
  47698. },
  47699. head: {
  47700. height: math.unit(0.35, "meters"),
  47701. name: "Head",
  47702. image: {
  47703. source: "./media/characters/misu/head.svg"
  47704. }
  47705. },
  47706. rear: {
  47707. height: math.unit(0.47, "meters"),
  47708. name: "Rear",
  47709. image: {
  47710. source: "./media/characters/misu/rear.svg"
  47711. }
  47712. },
  47713. },
  47714. [
  47715. {
  47716. name: "Normal",
  47717. height: math.unit(1.75, "meters")
  47718. },
  47719. {
  47720. name: "Not good for the people",
  47721. height: math.unit(42, "meters")
  47722. },
  47723. {
  47724. name: "Not good for the neighborhood",
  47725. height: math.unit(135, "meters")
  47726. },
  47727. {
  47728. name: "Bit bigger problem",
  47729. height: math.unit(380, "meters"),
  47730. default: true
  47731. },
  47732. {
  47733. name: "Not good for the city",
  47734. height: math.unit(1.5, "km")
  47735. },
  47736. {
  47737. name: "Not good for the county",
  47738. height: math.unit(5.5, "km")
  47739. },
  47740. {
  47741. name: "Not good for the state",
  47742. height: math.unit(25, "km")
  47743. },
  47744. {
  47745. name: "Not good for the country",
  47746. height: math.unit(125, "km")
  47747. },
  47748. {
  47749. name: "Not good for the continent",
  47750. height: math.unit(2100, "km")
  47751. },
  47752. {
  47753. name: "Not good for the planet",
  47754. height: math.unit(35000, "km")
  47755. },
  47756. {
  47757. name: "Just no",
  47758. height: math.unit(8.5e18, "km")
  47759. },
  47760. ]
  47761. ))
  47762. //characters
  47763. function makeCharacters() {
  47764. const results = [];
  47765. characterMakers.forEach(character => {
  47766. results.push(character());
  47767. });
  47768. return results;
  47769. }