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

47024 строки
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: ["mammal"]
  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. "mew": {
  1040. name: "Mew",
  1041. parents: ["pokemon"]
  1042. },
  1043. "eevee": {
  1044. name: "Eevee",
  1045. parents: ["eeveelution"]
  1046. },
  1047. "mienshao": {
  1048. name: "Mienshao",
  1049. parents: ["pokemon"]
  1050. },
  1051. "sugar-glider": {
  1052. name: "Sugar Glider",
  1053. parents: ["opossum"]
  1054. },
  1055. "spectral-bat": {
  1056. name: "Spectral Bat",
  1057. parents: ["bat"]
  1058. },
  1059. "scolipede": {
  1060. name: "Scolipede",
  1061. parents: ["pokemon", "insect"]
  1062. },
  1063. "jackalope": {
  1064. name: "Jackalope",
  1065. parents: ["rabbit", "antelope"]
  1066. },
  1067. "caracal": {
  1068. name: "Caracal",
  1069. parents: ["cat"]
  1070. },
  1071. "stoat": {
  1072. name: "Stoat",
  1073. parents: ["mammal"]
  1074. },
  1075. "african-golden-cat": {
  1076. name: "African Golden Cat",
  1077. parents: ["cat"]
  1078. },
  1079. "gigantosaurus": {
  1080. name: "Gigantosaurus",
  1081. parents: ["dinosaur"]
  1082. },
  1083. "zorgoia": {
  1084. name: "Zorgoia",
  1085. parents: ["mammal"]
  1086. },
  1087. "monitor-lizard": {
  1088. name: "Monitor Lizard",
  1089. parents: ["lizard"]
  1090. },
  1091. "ziralkia": {
  1092. name: "Ziralkia",
  1093. parents: ["mammal"]
  1094. },
  1095. "kiiasi": {
  1096. name: "Kiiasi",
  1097. parents: ["animal"]
  1098. },
  1099. "synx": {
  1100. name: "Synx",
  1101. parents: ["monster"]
  1102. },
  1103. "panther": {
  1104. name: "Panther",
  1105. parents: ["cat"]
  1106. },
  1107. "azumarill": {
  1108. name: "Azumarill",
  1109. parents: ["pokemon"]
  1110. },
  1111. "river-snaptail": {
  1112. name: "River Snaptail",
  1113. parents: ["otter", "crocodile"]
  1114. },
  1115. "great-blue-heron": {
  1116. name: "Great Blue Heron",
  1117. parents: ["avian"]
  1118. },
  1119. "smeargle": {
  1120. name: "Smeargle",
  1121. parents: ["pokemon"]
  1122. },
  1123. "vendeilen": {
  1124. name: "Vendeilen",
  1125. parents: ["monster"]
  1126. },
  1127. "ventura": {
  1128. name: "Ventura",
  1129. parents: ["canine"]
  1130. },
  1131. "clouded-leopard": {
  1132. name: "Clouded Leopard",
  1133. parents: ["leopard"]
  1134. },
  1135. "argonian": {
  1136. name: "Argonian",
  1137. parents: ["lizard"]
  1138. },
  1139. "salazzle": {
  1140. name: "Salazzle",
  1141. parents: ["pokemon", "lizard"]
  1142. },
  1143. "je-stoff-drachen": {
  1144. name: "Je-Stoff Drachen",
  1145. parents: ["dragon"]
  1146. },
  1147. "finnish-spitz-dog": {
  1148. name: "Finnish Spitz Dog",
  1149. parents: ["dog"]
  1150. },
  1151. "gray-fox": {
  1152. name: "Gray Fox",
  1153. parents: ["fox"]
  1154. },
  1155. "opossum": {
  1156. name: "Opossum",
  1157. parents: ["mammal"]
  1158. },
  1159. "antelope": {
  1160. name: "Antelope",
  1161. parents: ["mammal"]
  1162. },
  1163. "weavile": {
  1164. name: "Weavile",
  1165. parents: ["pokemon"]
  1166. },
  1167. "pikachu": {
  1168. name: "Pikachu",
  1169. parents: ["pokemon", "mouse"]
  1170. },
  1171. "grovyle": {
  1172. name: "Grovyle",
  1173. parents: ["pokemon", "plant"]
  1174. },
  1175. "sthara": {
  1176. name: "Sthara",
  1177. parents: ["snow-leopard", "reptile"]
  1178. },
  1179. "star-warrior": {
  1180. name: "Star Warrior",
  1181. parents: ["magical"]
  1182. },
  1183. "dragonoid": {
  1184. name: "Dragonoid",
  1185. parents: ["dragon"]
  1186. },
  1187. "suicune": {
  1188. name: "Suicune",
  1189. parents: ["pokemon"]
  1190. },
  1191. "vole": {
  1192. name: "Vole",
  1193. parents: ["mammal"]
  1194. },
  1195. "blaziken": {
  1196. name: "Blaziken",
  1197. parents: ["pokemon", "avian"]
  1198. },
  1199. "buizel": {
  1200. name: "Buizel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "floatzel": {
  1204. name: "Floatzel",
  1205. parents: ["pokemon", "fish"]
  1206. },
  1207. "umok": {
  1208. name: "Umok",
  1209. parents: ["avian"]
  1210. },
  1211. "sea-monster": {
  1212. name: "Sea Monster",
  1213. parents: ["monster", "fish"]
  1214. },
  1215. "egyptian-vulture": {
  1216. name: "Egyptian Vulture",
  1217. parents: ["avian"]
  1218. },
  1219. "doberman": {
  1220. name: "Doberman",
  1221. parents: ["dog"]
  1222. },
  1223. "zangoose": {
  1224. name: "Zangoose",
  1225. parents: ["pokemon", "mongoose"]
  1226. },
  1227. "mongoose": {
  1228. name: "Mongoose",
  1229. parents: ["mammal"]
  1230. },
  1231. "wickerbeast": {
  1232. name: "Wickerbeast",
  1233. parents: ["monster"]
  1234. },
  1235. "zenari": {
  1236. name: "Zenari",
  1237. parents: ["lizard"]
  1238. },
  1239. "plant": {
  1240. name: "Plant",
  1241. parents: []
  1242. },
  1243. "raskatox": {
  1244. name: "Raskatox",
  1245. parents: ["raccoon", "skunk", "cat", "fox"]
  1246. },
  1247. "mikromare": {
  1248. name: "mikromare",
  1249. parents: ["alien"]
  1250. },
  1251. "alien": {
  1252. name: "Alien",
  1253. parents: ["animal"]
  1254. },
  1255. "deity": {
  1256. name: "Deity",
  1257. parents: []
  1258. },
  1259. "skarlan": {
  1260. name: "Skarlan",
  1261. parents: ["slug", "dragon"]
  1262. },
  1263. "slug": {
  1264. name: "Slug",
  1265. parents: ["mollusk"]
  1266. },
  1267. "mollusk": {
  1268. name: "Mollusk",
  1269. parents: ["animal"]
  1270. },
  1271. "chimera": {
  1272. name: "Chimera",
  1273. parents: ["monster"]
  1274. },
  1275. "gestalt": {
  1276. name: "Gestalt",
  1277. parents: ["construct"]
  1278. },
  1279. "mimic": {
  1280. name: "Mimic",
  1281. parents: ["monster"]
  1282. },
  1283. "calico-rat": {
  1284. name: "Calico Rat",
  1285. parents: ["rat"]
  1286. },
  1287. "panda": {
  1288. name: "Panda",
  1289. parents: ["mammal"]
  1290. },
  1291. "oni": {
  1292. name: "Oni",
  1293. parents: ["monster"]
  1294. },
  1295. "pegasus": {
  1296. name: "Pegasus",
  1297. parents: ["horse"]
  1298. },
  1299. "vulpera": {
  1300. name: "Vulpera",
  1301. parents: ["fennec-fox"]
  1302. },
  1303. "ceratosaurus": {
  1304. name: "Ceratosaurus",
  1305. parents: ["dinosaur"]
  1306. },
  1307. "nykur": {
  1308. name: "Nykur",
  1309. parents: ["horse", "monster"]
  1310. },
  1311. "giraffe": {
  1312. name: "Giraffe",
  1313. parents: ["mammal"]
  1314. },
  1315. "tauren": {
  1316. name: "Tauren",
  1317. parents: ["cow"]
  1318. },
  1319. "draconi": {
  1320. name: "Draconi",
  1321. parents: ["alien", "cat", "cyborg"]
  1322. },
  1323. "dire-wolf": {
  1324. name: "Dire Wolf",
  1325. parents: ["wolf"]
  1326. },
  1327. "ferromorph": {
  1328. name: "Ferromorph",
  1329. parents: ["construct"]
  1330. },
  1331. "meowth": {
  1332. name: "Meowth",
  1333. parents: ["cat", "pokemon"]
  1334. },
  1335. "pavodragon": {
  1336. name: "Pavodragon",
  1337. parents: ["dragon"]
  1338. },
  1339. "aaltranae": {
  1340. name: "Aaltranae",
  1341. parents: ["dragon"]
  1342. },
  1343. "cyborg": {
  1344. name: "Cyborg",
  1345. parents: ["machine"]
  1346. },
  1347. "draptor": {
  1348. name: "Draptor",
  1349. parents: ["dragon"]
  1350. },
  1351. "candy": {
  1352. name: "Candy",
  1353. parents: []
  1354. },
  1355. "drenath": {
  1356. name: "Drenath",
  1357. parents: ["dragon", "snake", "rabbit"]
  1358. },
  1359. "coyju": {
  1360. name: "Coyju",
  1361. parents: ["coyote", "kaiju"]
  1362. },
  1363. "kaiju": {
  1364. name: "Kaiju",
  1365. parents: ["monster"]
  1366. },
  1367. "nickit": {
  1368. name: "Nickit",
  1369. parents: ["pokemon", "cat"]
  1370. },
  1371. "lopunny": {
  1372. name: "Lopunny",
  1373. parents: ["pokemon", "rabbit"]
  1374. },
  1375. "korean-jindo-dog": {
  1376. name: "Korean Jindo Dog",
  1377. parents: ["dog"]
  1378. },
  1379. "naga": {
  1380. name: "Naga",
  1381. parents: ["snake", "monster"]
  1382. },
  1383. "undead": {
  1384. name: "Undead",
  1385. parents: ["monster"]
  1386. },
  1387. "whale": {
  1388. name: "Whale",
  1389. parents: ["fish"]
  1390. },
  1391. "gelato-bee": {
  1392. name: "Gelato Bee",
  1393. parents: ["bee"]
  1394. },
  1395. "bee": {
  1396. name: "Bee",
  1397. parents: ["insect"]
  1398. },
  1399. "gardevoir": {
  1400. name: "Gardevoir",
  1401. parents: ["pokemon"]
  1402. },
  1403. "ant": {
  1404. name: "Ant",
  1405. parents: ["insect"]
  1406. },
  1407. "frog": {
  1408. name: "Frog",
  1409. parents: ["amphibian"]
  1410. },
  1411. "amphibian": {
  1412. name: "Amphibian",
  1413. parents: ["animal"]
  1414. },
  1415. "pangolin": {
  1416. name: "Pangolin",
  1417. parents: ["mammal"]
  1418. },
  1419. "uragi'viidorn": {
  1420. name: "Uragi'viidorn",
  1421. parents: ["avian", "bear"]
  1422. },
  1423. "gryphdelphais": {
  1424. name: "Gryphdelphais",
  1425. parents: ["dolphin", "gryphon"]
  1426. },
  1427. "plush": {
  1428. name: "Plush",
  1429. parents: ["construct"]
  1430. },
  1431. "draiger": {
  1432. name: "Draiger",
  1433. parents: ["dragon","tiger"]
  1434. },
  1435. "foxsky": {
  1436. name: "Foxsky",
  1437. parents: ["fox", "husky"]
  1438. },
  1439. "umbreon": {
  1440. name: "Umbreon",
  1441. parents: ["eeveelution"]
  1442. },
  1443. "slime-dragon": {
  1444. name: "Slime Dragon",
  1445. parents: ["dragon", "goo"]
  1446. },
  1447. "enderman": {
  1448. name: "Enderman",
  1449. parents: ["monster"]
  1450. },
  1451. "gremlin": {
  1452. name: "Gremlin",
  1453. parents: ["monster"]
  1454. },
  1455. "dragonsune": {
  1456. name: "Dragonsune",
  1457. parents: ["dragon", "kitsune"]
  1458. },
  1459. "ghost": {
  1460. name: "Ghost",
  1461. parents: ["supernatural"]
  1462. },
  1463. "false-vampire-bat": {
  1464. name: "False Vampire Bat",
  1465. parents: ["bat"]
  1466. },
  1467. "succubus": {
  1468. name: "Succubus",
  1469. parents: ["demon"]
  1470. },
  1471. "mia": {
  1472. name: "Mia",
  1473. parents: ["canine"]
  1474. },
  1475. "rainbow": {
  1476. name: "Rainbow",
  1477. parents: ["monster"]
  1478. },
  1479. "solgaleo": {
  1480. name: "Solgaleo",
  1481. parents: ["pokemon"]
  1482. },
  1483. "lucent-nargacuga": {
  1484. name: "Lucent Nargacuga",
  1485. parents: ["monster-hunter"]
  1486. },
  1487. "monster-hunter": {
  1488. name: "Monster Hunter",
  1489. parents: ["monster"]
  1490. },
  1491. "leviathan": {
  1492. "name": "Leviathan",
  1493. "url": "sea-monster"
  1494. },
  1495. "bull": {
  1496. name: "Bull",
  1497. parents: ["mammal"]
  1498. },
  1499. "tanuki": {
  1500. name: "Tanuki",
  1501. parents: ["monster"]
  1502. },
  1503. "chakat": {
  1504. name: "Chakat",
  1505. parents: ["cat"]
  1506. },
  1507. "hydra": {
  1508. name: "Hydra",
  1509. parents: ["monster"]
  1510. },
  1511. "zigzagoon": {
  1512. name: "Zigzagoon",
  1513. parents: ["raccoon", "pokemon"]
  1514. },
  1515. "vulture": {
  1516. name: "Vulture",
  1517. parents: ["avian"]
  1518. },
  1519. "eastern-dragon": {
  1520. name: "Eastern Dragon",
  1521. parents: ["dragon"]
  1522. },
  1523. "gryffon": {
  1524. name: "Gryffon",
  1525. parents: ["phoenix", "red-panda"]
  1526. },
  1527. "amtsvane": {
  1528. name: "Amtsvane",
  1529. parents: ["reptile"]
  1530. },
  1531. "kigavi": {
  1532. name: "Kigavi",
  1533. parents: ["avian"]
  1534. },
  1535. "turian": {
  1536. name: "Turian",
  1537. parents: ["avian"]
  1538. },
  1539. "zeraora": {
  1540. name: "Zeraora",
  1541. parents: ["pokemon"]
  1542. },
  1543. "sandshrew": {
  1544. name: "Sandshrew",
  1545. parents: ["pokemon", "pangolin"]
  1546. },
  1547. "valais-blacknose-sheep": {
  1548. name: "Valais Blacknose Sheep",
  1549. parents: ["sheep"]
  1550. },
  1551. "novaleit": {
  1552. name: "Novaleit",
  1553. parents: ["mammal"]
  1554. },
  1555. "dunnoh": {
  1556. name: "Dunnoh",
  1557. parents: ["mammal"]
  1558. },
  1559. "lunaral-dragon": {
  1560. name: "Lunaral Dragon",
  1561. parents: ["dragon"]
  1562. },
  1563. "arctic-wolf": {
  1564. name: "Arctic Wolf",
  1565. parents: ["wolf"]
  1566. },
  1567. "donkey": {
  1568. name: "Donkey",
  1569. parents: ["horse"]
  1570. },
  1571. "chinchilla": {
  1572. name: "Chinchilla",
  1573. parents: ["rodent"]
  1574. },
  1575. "felkin": {
  1576. name: "Felkin",
  1577. parents: ["dragon"]
  1578. },
  1579. "tykeriel": {
  1580. name: "Tykeriel",
  1581. parents: ["avian"]
  1582. },
  1583. "folf": {
  1584. name: "Folf",
  1585. parents: ["fox", "wolf"]
  1586. },
  1587. "pooltoy": {
  1588. name: "Pooltoy",
  1589. parents: ["construct"]
  1590. },
  1591. "demi": {
  1592. name: "Demi",
  1593. parents: ["human"]
  1594. },
  1595. "stegosaurus": {
  1596. name: "Stegosaurus",
  1597. parents: ["dinosaur"]
  1598. },
  1599. "computer-virus": {
  1600. name: "Computer Virus",
  1601. parents: ["program"]
  1602. },
  1603. "program": {
  1604. name: "Program",
  1605. parents: ["construct"]
  1606. },
  1607. "space-springhare": {
  1608. name: "Space Springhare",
  1609. parents: ["rabbit"]
  1610. },
  1611. "river-drake": {
  1612. name: "River Drake",
  1613. parents: ["dragon"]
  1614. },
  1615. "djinn": {
  1616. "name": "Djinn",
  1617. "url": "supernatural"
  1618. },
  1619. "supernatural": {
  1620. name: "Supernatural",
  1621. parents: ["monster"]
  1622. },
  1623. "grasshopper-mouse": {
  1624. name: "Grasshopper Mouse",
  1625. parents: ["mouse"]
  1626. },
  1627. "somali-cat": {
  1628. name: "Somali Cat",
  1629. parents: ["cat"]
  1630. },
  1631. "minccino": {
  1632. name: "Minccino",
  1633. parents: ["pokemon", "chinchilla"]
  1634. },
  1635. "pine-marten": {
  1636. name: "Pine Marten",
  1637. parents: ["marten"]
  1638. },
  1639. "marten": {
  1640. name: "Marten",
  1641. parents: ["mustelid"]
  1642. },
  1643. "mustelid": {
  1644. name: "Mustelid",
  1645. parents: ["mammal"]
  1646. },
  1647. "caribou": {
  1648. name: "Caribou",
  1649. parents: ["deer"]
  1650. },
  1651. "gnoll": {
  1652. name: "Gnoll",
  1653. parents: ["hyena", "monster"]
  1654. },
  1655. "peacekeeper": {
  1656. name: "Peacekeeper",
  1657. parents: ["human"]
  1658. },
  1659. "river-otter": {
  1660. name: "River Otter",
  1661. parents: ["otter"]
  1662. },
  1663. "dhole": {
  1664. name: "Dhole",
  1665. parents: ["canine"]
  1666. },
  1667. "springbok": {
  1668. name: "Springbok",
  1669. parents: ["antelope"]
  1670. },
  1671. "marsupial": {
  1672. name: "Marsupial",
  1673. parents: ["mammal"]
  1674. },
  1675. "townsend-big-eared-bat": {
  1676. name: "Townsend Big-eared Bat",
  1677. parents: ["bat"]
  1678. },
  1679. "squirrel": {
  1680. name: "Squirrel",
  1681. parents: ["rodent"]
  1682. },
  1683. "magpie": {
  1684. name: "Magpie",
  1685. parents: ["corvid"]
  1686. },
  1687. "civet": {
  1688. name: "Civet",
  1689. parents: ["feliform"]
  1690. },
  1691. "feliform": {
  1692. name: "Feliform",
  1693. parents: ["mammal"]
  1694. },
  1695. "tiefling": {
  1696. name: "Tiefling",
  1697. parents: ["devil"]
  1698. },
  1699. "devil": {
  1700. name: "Devil",
  1701. parents: ["supernatural"]
  1702. },
  1703. "sika-deer": {
  1704. name: "Sika Deer",
  1705. parents: ["deer"]
  1706. },
  1707. "vaporeon": {
  1708. name: "Vaporeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "leafeon": {
  1712. name: "Leafeon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "jolteon": {
  1716. name: "Jolteon",
  1717. parents: ["eeveelution"]
  1718. },
  1719. "spireborn": {
  1720. name: "Spireborn",
  1721. parents: ["zorgoia"]
  1722. },
  1723. "vampire": {
  1724. name: "Vampire",
  1725. parents: ["monster"]
  1726. },
  1727. "extraplanar": {
  1728. name: "Extraplanar",
  1729. parents: []
  1730. },
  1731. "goo": {
  1732. name: "Goo",
  1733. parents: []
  1734. },
  1735. "skink": {
  1736. name: "Skink",
  1737. parents: ["lizard"]
  1738. },
  1739. "bat-eared-fox": {
  1740. name: "Bat-eared Fox",
  1741. parents: ["fox"]
  1742. },
  1743. "belted-kingfisher": {
  1744. name: "Belted Kingfisher",
  1745. parents: ["avian"]
  1746. },
  1747. "omnifalcon": {
  1748. name: "Omnifalcon",
  1749. parents: ["gryphon", "falcon", "harpy-eagle"]
  1750. },
  1751. "falcon": {
  1752. name: "Falcon",
  1753. parents: ["avian"]
  1754. },
  1755. "avali": {
  1756. name: "Avali",
  1757. parents: ["avian", "alien"]
  1758. },
  1759. "arctic-fox": {
  1760. name: "Arctic Fox",
  1761. parents: ["fox"]
  1762. },
  1763. "snow-tiger": {
  1764. name: "Snow Tiger",
  1765. parents: ["tiger"]
  1766. },
  1767. "marble-fox": {
  1768. name: "Marble Fox",
  1769. parents: ["fox"]
  1770. },
  1771. "king-wickerbeast": {
  1772. name: "King Wickerbeast",
  1773. parents: ["wickerbeast"]
  1774. },
  1775. "wickerbeast": {
  1776. name: "Wickerbeast",
  1777. parents: ["mammal"]
  1778. },
  1779. "european-polecat": {
  1780. name: "European Polecat",
  1781. parents: ["mustelid"]
  1782. },
  1783. "teshari": {
  1784. name: "Teshari",
  1785. parents: ["avian", "raptor"]
  1786. },
  1787. "alicorn": {
  1788. name: "Alicorn",
  1789. parents: ["horse"]
  1790. },
  1791. "atlas-moth": {
  1792. name: "Atlas Moth",
  1793. parents: ["moth"]
  1794. },
  1795. "owlbear": {
  1796. name: "Owlbear",
  1797. parents: ["owl", "bear", "monster"]
  1798. },
  1799. "owl": {
  1800. name: "Owl",
  1801. parents: ["avian"]
  1802. },
  1803. "silvertongue": {
  1804. name: "Silvertongue",
  1805. parents: ["reptile"]
  1806. },
  1807. "ahuizotl": {
  1808. name: "Ahuizotl",
  1809. parents: ["monster"]
  1810. },
  1811. "ender-dragon": {
  1812. name: "Ender Dragon",
  1813. parents: ["dragon"]
  1814. },
  1815. "bruhathkayosaurus": {
  1816. name: "Bruhathkayosaurus",
  1817. parents: ["sauropod"]
  1818. },
  1819. "sauropod": {
  1820. name: "Sauropod",
  1821. parents: ["dinosaur"]
  1822. },
  1823. "black-sable-antelope": {
  1824. name: "Black Sable Antelope",
  1825. parents: ["antelope"]
  1826. },
  1827. "slime": {
  1828. name: "Slime",
  1829. parents: ["goo"]
  1830. },
  1831. "utahraptor": {
  1832. name: "Utahraptor",
  1833. parents: ["raptor"]
  1834. },
  1835. "indian-giant-squirrel": {
  1836. name: "Indian Giant Squirrel",
  1837. parents: ["squirrel"]
  1838. },
  1839. "golden-retriever": {
  1840. name: "Golden Retriever",
  1841. parents: ["dog"]
  1842. },
  1843. }
  1844. //species
  1845. function getSpeciesInfo(speciesList) {
  1846. let result = new Set();
  1847. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1848. result.add(entry)
  1849. });
  1850. return Array.from(result);
  1851. };
  1852. function getSpeciesInfoHelper(species) {
  1853. if (!speciesData[species]) {
  1854. console.warn(species + " doesn't exist");
  1855. return [];
  1856. }
  1857. if (speciesData[species].parents) {
  1858. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1859. } else {
  1860. return [species];
  1861. }
  1862. }
  1863. characterMakers.push(() => makeCharacter(
  1864. {
  1865. name: "Fen",
  1866. species: ["crux"],
  1867. description: {
  1868. title: "Bio",
  1869. text: "Very furry. Sheds on everything."
  1870. },
  1871. tags: [
  1872. "anthro",
  1873. "goo"
  1874. ]
  1875. },
  1876. {
  1877. front: {
  1878. height: math.unit(12, "feet"),
  1879. weight: math.unit(2400, "lb"),
  1880. name: "Front",
  1881. image: {
  1882. source: "./media/characters/fen/front.svg",
  1883. extra: 1804/1562,
  1884. bottom: 205/2009
  1885. }
  1886. },
  1887. diving: {
  1888. height: math.unit(4.9, "meters"),
  1889. weight: math.unit(2400, "lb"),
  1890. name: "Diving",
  1891. image: {
  1892. source: "./media/characters/fen/diving.svg"
  1893. }
  1894. },
  1895. goo: {
  1896. height: math.unit(12, "feet"),
  1897. weight: math.unit(3000, "lb"),
  1898. capacity: math.unit(6, "people"),
  1899. name: "Goo",
  1900. image: {
  1901. source: "./media/characters/fen/goo.svg",
  1902. extra: 1307/1071,
  1903. bottom: 134/1441
  1904. }
  1905. },
  1906. maw: {
  1907. height: math.unit(5.03, "feet"),
  1908. name: "Maw",
  1909. image: {
  1910. source: "./media/characters/fen/maw.svg"
  1911. }
  1912. },
  1913. gooCeiling: {
  1914. height: math.unit(6.6, "feet"),
  1915. weight: math.unit(3000, "lb"),
  1916. capacity: math.unit(6, "people"),
  1917. name: "Goo (Ceiling)",
  1918. image: {
  1919. source: "./media/characters/fen/goo-ceiling.svg"
  1920. }
  1921. },
  1922. back: {
  1923. height: math.unit(12, "feet"),
  1924. weight: math.unit(2400, "lb"),
  1925. name: "Back",
  1926. image: {
  1927. source: "./media/characters/fen/back.svg",
  1928. },
  1929. info: {
  1930. description: {
  1931. mode: "append",
  1932. text: "\n\nHe is not currently looking at you."
  1933. }
  1934. }
  1935. },
  1936. full: {
  1937. height: math.unit(1.6, "meter"),
  1938. weight: math.unit(3200, "lb"),
  1939. name: "Full",
  1940. image: {
  1941. source: "./media/characters/fen/full.svg",
  1942. extra: 1133/859,
  1943. bottom: 145/1278
  1944. },
  1945. info: {
  1946. description: {
  1947. mode: "append",
  1948. text: "\n\nMunch."
  1949. }
  1950. }
  1951. },
  1952. gooLounging: {
  1953. height: math.unit(4.53, "feet"),
  1954. weight: math.unit(3000, "lb"),
  1955. capacity: math.unit(6, "people"),
  1956. name: "Goo (Lounging)",
  1957. image: {
  1958. source: "./media/characters/fen/goo.svg",
  1959. bottom: 116 / 613
  1960. }
  1961. },
  1962. lounging: {
  1963. height: math.unit(10.52, "feet"),
  1964. weight: math.unit(2400, "lb"),
  1965. name: "Lounging",
  1966. image: {
  1967. source: "./media/characters/fen/lounging.svg"
  1968. }
  1969. },
  1970. },
  1971. [
  1972. {
  1973. name: "Small",
  1974. height: math.unit(2.2428, "meter")
  1975. },
  1976. {
  1977. name: "Normal",
  1978. height: math.unit(12, "feet"),
  1979. default: true,
  1980. },
  1981. {
  1982. name: "Big",
  1983. height: math.unit(20, "feet")
  1984. },
  1985. {
  1986. name: "Minimacro",
  1987. height: math.unit(40, "feet"),
  1988. info: {
  1989. description: {
  1990. mode: "append",
  1991. text: "\n\nTOO DAMN BIG"
  1992. }
  1993. }
  1994. },
  1995. {
  1996. name: "Macro",
  1997. height: math.unit(100, "feet"),
  1998. info: {
  1999. description: {
  2000. mode: "append",
  2001. text: "\n\nTOO DAMN BIG"
  2002. }
  2003. }
  2004. },
  2005. {
  2006. name: "Megamacro",
  2007. height: math.unit(2, "miles")
  2008. },
  2009. {
  2010. name: "Gigamacro",
  2011. height: math.unit(10, "earths")
  2012. },
  2013. ]
  2014. ))
  2015. characterMakers.push(() => makeCharacter(
  2016. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2017. {
  2018. front: {
  2019. height: math.unit(183, "cm"),
  2020. weight: math.unit(80, "kg"),
  2021. name: "Front",
  2022. image: {
  2023. source: "./media/characters/sofia-fluttertail/front.svg",
  2024. bottom: 0.01,
  2025. extra: 2154 / 2081
  2026. }
  2027. },
  2028. frontAlt: {
  2029. height: math.unit(183, "cm"),
  2030. weight: math.unit(80, "kg"),
  2031. name: "Front (alt)",
  2032. image: {
  2033. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2034. }
  2035. },
  2036. back: {
  2037. height: math.unit(183, "cm"),
  2038. weight: math.unit(80, "kg"),
  2039. name: "Back",
  2040. image: {
  2041. source: "./media/characters/sofia-fluttertail/back.svg"
  2042. }
  2043. },
  2044. kneeling: {
  2045. height: math.unit(125, "cm"),
  2046. weight: math.unit(80, "kg"),
  2047. name: "Kneeling",
  2048. image: {
  2049. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2050. extra: 1033 / 977,
  2051. bottom: 23.7 / 1057
  2052. }
  2053. },
  2054. maw: {
  2055. height: math.unit(183 / 5, "cm"),
  2056. name: "Maw",
  2057. image: {
  2058. source: "./media/characters/sofia-fluttertail/maw.svg"
  2059. }
  2060. },
  2061. mawcloseup: {
  2062. height: math.unit(183 / 5 * 0.41, "cm"),
  2063. name: "Maw (Closeup)",
  2064. image: {
  2065. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2066. }
  2067. },
  2068. paws: {
  2069. height: math.unit(1.17, "feet"),
  2070. name: "Paws",
  2071. image: {
  2072. source: "./media/characters/sofia-fluttertail/paws.svg",
  2073. extra: 851 / 851,
  2074. bottom: 17 / 868
  2075. }
  2076. },
  2077. },
  2078. [
  2079. {
  2080. name: "Normal",
  2081. height: math.unit(1.83, "meter")
  2082. },
  2083. {
  2084. name: "Size Thief",
  2085. height: math.unit(18, "feet")
  2086. },
  2087. {
  2088. name: "50 Foot Collie",
  2089. height: math.unit(50, "feet")
  2090. },
  2091. {
  2092. name: "Macro",
  2093. height: math.unit(96, "feet"),
  2094. default: true
  2095. },
  2096. {
  2097. name: "Megamerger",
  2098. height: math.unit(650, "feet")
  2099. },
  2100. ]
  2101. ))
  2102. characterMakers.push(() => makeCharacter(
  2103. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2104. {
  2105. front: {
  2106. height: math.unit(7, "feet"),
  2107. weight: math.unit(100, "kg"),
  2108. name: "Front",
  2109. image: {
  2110. source: "./media/characters/march/front.svg",
  2111. extra: 1992/1851,
  2112. bottom: 39/2031
  2113. }
  2114. },
  2115. foot: {
  2116. height: math.unit(0.9, "feet"),
  2117. name: "Foot",
  2118. image: {
  2119. source: "./media/characters/march/foot.svg"
  2120. }
  2121. },
  2122. },
  2123. [
  2124. {
  2125. name: "Normal",
  2126. height: math.unit(7.9, "feet")
  2127. },
  2128. {
  2129. name: "Macro",
  2130. height: math.unit(220, "meters")
  2131. },
  2132. {
  2133. name: "Megamacro",
  2134. height: math.unit(2.98, "km"),
  2135. default: true
  2136. },
  2137. {
  2138. name: "Gigamacro",
  2139. height: math.unit(15963, "km")
  2140. },
  2141. {
  2142. name: "Teramacro",
  2143. height: math.unit(2980000000, "km")
  2144. },
  2145. {
  2146. name: "Examacro",
  2147. height: math.unit(250, "parsecs")
  2148. },
  2149. ]
  2150. ))
  2151. characterMakers.push(() => makeCharacter(
  2152. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2153. {
  2154. front: {
  2155. height: math.unit(6, "feet"),
  2156. weight: math.unit(60, "kg"),
  2157. name: "Front",
  2158. image: {
  2159. source: "./media/characters/noir/front.svg",
  2160. extra: 1,
  2161. bottom: 0.032
  2162. }
  2163. },
  2164. },
  2165. [
  2166. {
  2167. name: "Normal",
  2168. height: math.unit(6.6, "feet")
  2169. },
  2170. {
  2171. name: "Macro",
  2172. height: math.unit(500, "feet")
  2173. },
  2174. {
  2175. name: "Megamacro",
  2176. height: math.unit(2.5, "km"),
  2177. default: true
  2178. },
  2179. {
  2180. name: "Gigamacro",
  2181. height: math.unit(22500, "km")
  2182. },
  2183. {
  2184. name: "Teramacro",
  2185. height: math.unit(2500000000, "km")
  2186. },
  2187. {
  2188. name: "Examacro",
  2189. height: math.unit(200, "parsecs")
  2190. },
  2191. ]
  2192. ))
  2193. characterMakers.push(() => makeCharacter(
  2194. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2195. {
  2196. front: {
  2197. height: math.unit(7, "feet"),
  2198. weight: math.unit(100, "kg"),
  2199. name: "Front",
  2200. image: {
  2201. source: "./media/characters/okuri/front.svg",
  2202. extra: 1,
  2203. bottom: 0.037
  2204. }
  2205. },
  2206. back: {
  2207. height: math.unit(7, "feet"),
  2208. weight: math.unit(100, "kg"),
  2209. name: "Back",
  2210. image: {
  2211. source: "./media/characters/okuri/back.svg",
  2212. extra: 1,
  2213. bottom: 0.007
  2214. }
  2215. },
  2216. },
  2217. [
  2218. {
  2219. name: "Megamacro",
  2220. height: math.unit(100, "miles"),
  2221. default: true
  2222. },
  2223. ]
  2224. ))
  2225. characterMakers.push(() => makeCharacter(
  2226. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2227. {
  2228. front: {
  2229. height: math.unit(7, "feet"),
  2230. weight: math.unit(100, "kg"),
  2231. name: "Front",
  2232. image: {
  2233. source: "./media/characters/manny/front.svg",
  2234. extra: 1,
  2235. bottom: 0.06
  2236. }
  2237. },
  2238. back: {
  2239. height: math.unit(7, "feet"),
  2240. weight: math.unit(100, "kg"),
  2241. name: "Back",
  2242. image: {
  2243. source: "./media/characters/manny/back.svg",
  2244. extra: 1,
  2245. bottom: 0.014
  2246. }
  2247. },
  2248. },
  2249. [
  2250. {
  2251. name: "Normal",
  2252. height: math.unit(7, "feet"),
  2253. },
  2254. {
  2255. name: "Macro",
  2256. height: math.unit(78, "feet"),
  2257. default: true
  2258. },
  2259. {
  2260. name: "Macro+",
  2261. height: math.unit(300, "meters")
  2262. },
  2263. {
  2264. name: "Macro++",
  2265. height: math.unit(2400, "meters")
  2266. },
  2267. {
  2268. name: "Megamacro",
  2269. height: math.unit(5167, "meters")
  2270. },
  2271. {
  2272. name: "Gigamacro",
  2273. height: math.unit(41769, "miles")
  2274. },
  2275. ]
  2276. ))
  2277. characterMakers.push(() => makeCharacter(
  2278. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2279. {
  2280. front: {
  2281. height: math.unit(7, "feet"),
  2282. weight: math.unit(100, "kg"),
  2283. name: "Front",
  2284. image: {
  2285. source: "./media/characters/adake/front-1.svg"
  2286. }
  2287. },
  2288. frontAlt: {
  2289. height: math.unit(7, "feet"),
  2290. weight: math.unit(100, "kg"),
  2291. name: "Front (Alt)",
  2292. image: {
  2293. source: "./media/characters/adake/front-2.svg",
  2294. extra: 1,
  2295. bottom: 0.01
  2296. }
  2297. },
  2298. back: {
  2299. height: math.unit(7, "feet"),
  2300. weight: math.unit(100, "kg"),
  2301. name: "Back",
  2302. image: {
  2303. source: "./media/characters/adake/back.svg",
  2304. }
  2305. },
  2306. kneel: {
  2307. height: math.unit(5.385, "feet"),
  2308. weight: math.unit(100, "kg"),
  2309. name: "Kneeling",
  2310. image: {
  2311. source: "./media/characters/adake/kneel.svg",
  2312. bottom: 0.052
  2313. }
  2314. },
  2315. },
  2316. [
  2317. {
  2318. name: "Normal",
  2319. height: math.unit(7, "feet"),
  2320. },
  2321. {
  2322. name: "Macro",
  2323. height: math.unit(78, "feet"),
  2324. default: true
  2325. },
  2326. {
  2327. name: "Macro+",
  2328. height: math.unit(300, "meters")
  2329. },
  2330. {
  2331. name: "Macro++",
  2332. height: math.unit(2400, "meters")
  2333. },
  2334. {
  2335. name: "Megamacro",
  2336. height: math.unit(5167, "meters")
  2337. },
  2338. {
  2339. name: "Gigamacro",
  2340. height: math.unit(41769, "miles")
  2341. },
  2342. ]
  2343. ))
  2344. characterMakers.push(() => makeCharacter(
  2345. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2346. {
  2347. front: {
  2348. height: math.unit(1.65, "meters"),
  2349. weight: math.unit(50, "kg"),
  2350. name: "Front",
  2351. image: {
  2352. source: "./media/characters/elijah/front.svg",
  2353. extra: 858 / 830,
  2354. bottom: 95.5 / 953.8559
  2355. }
  2356. },
  2357. back: {
  2358. height: math.unit(1.65, "meters"),
  2359. weight: math.unit(50, "kg"),
  2360. name: "Back",
  2361. image: {
  2362. source: "./media/characters/elijah/back.svg",
  2363. extra: 895 / 850,
  2364. bottom: 5.3 / 897.956
  2365. }
  2366. },
  2367. frontNsfw: {
  2368. height: math.unit(1.65, "meters"),
  2369. weight: math.unit(50, "kg"),
  2370. name: "Front (NSFW)",
  2371. image: {
  2372. source: "./media/characters/elijah/front-nsfw.svg",
  2373. extra: 858 / 830,
  2374. bottom: 95.5 / 953.8559
  2375. }
  2376. },
  2377. backNsfw: {
  2378. height: math.unit(1.65, "meters"),
  2379. weight: math.unit(50, "kg"),
  2380. name: "Back (NSFW)",
  2381. image: {
  2382. source: "./media/characters/elijah/back-nsfw.svg",
  2383. extra: 895 / 850,
  2384. bottom: 5.3 / 897.956
  2385. }
  2386. },
  2387. dick: {
  2388. height: math.unit(1, "feet"),
  2389. name: "Dick",
  2390. image: {
  2391. source: "./media/characters/elijah/dick.svg"
  2392. }
  2393. },
  2394. beakOpen: {
  2395. height: math.unit(1.25, "feet"),
  2396. name: "Beak (Open)",
  2397. image: {
  2398. source: "./media/characters/elijah/beak-open.svg"
  2399. }
  2400. },
  2401. beakShut: {
  2402. height: math.unit(1.25, "feet"),
  2403. name: "Beak (Shut)",
  2404. image: {
  2405. source: "./media/characters/elijah/beak-shut.svg"
  2406. }
  2407. },
  2408. footFlexing: {
  2409. height: math.unit(1.61, "feet"),
  2410. name: "Foot (Flexing)",
  2411. image: {
  2412. source: "./media/characters/elijah/foot-flexing.svg"
  2413. }
  2414. },
  2415. footStepping: {
  2416. height: math.unit(1.44, "feet"),
  2417. name: "Foot (Stepping)",
  2418. image: {
  2419. source: "./media/characters/elijah/foot-stepping.svg"
  2420. }
  2421. },
  2422. plantigradeLeg: {
  2423. height: math.unit(2.34, "feet"),
  2424. name: "Plantigrade Leg",
  2425. image: {
  2426. source: "./media/characters/elijah/plantigrade-leg.svg"
  2427. }
  2428. },
  2429. plantigradeFootLeft: {
  2430. height: math.unit(0.9, "feet"),
  2431. name: "Plantigrade Foot (Left)",
  2432. image: {
  2433. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2434. }
  2435. },
  2436. plantigradeFootRight: {
  2437. height: math.unit(0.9, "feet"),
  2438. name: "Plantigrade Foot (Right)",
  2439. image: {
  2440. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2441. }
  2442. },
  2443. },
  2444. [
  2445. {
  2446. name: "Normal",
  2447. height: math.unit(1.65, "meters")
  2448. },
  2449. {
  2450. name: "Macro",
  2451. height: math.unit(55, "meters"),
  2452. default: true
  2453. },
  2454. {
  2455. name: "Macro+",
  2456. height: math.unit(105, "meters")
  2457. },
  2458. ]
  2459. ))
  2460. characterMakers.push(() => makeCharacter(
  2461. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2462. {
  2463. front: {
  2464. height: math.unit(7 + 2/12, "feet"),
  2465. weight: math.unit(320, "kg"),
  2466. name: "Front",
  2467. image: {
  2468. source: "./media/characters/rai/front.svg",
  2469. extra: 1802/1696,
  2470. bottom: 68/1870
  2471. }
  2472. },
  2473. frontDressed: {
  2474. height: math.unit(7 + 2/12, "feet"),
  2475. weight: math.unit(320, "kg"),
  2476. name: "Front (Dressed)",
  2477. image: {
  2478. source: "./media/characters/rai/front-dressed.svg",
  2479. extra: 1802/1696,
  2480. bottom: 68/1870
  2481. }
  2482. },
  2483. side: {
  2484. height: math.unit(7 + 2/12, "feet"),
  2485. weight: math.unit(320, "kg"),
  2486. name: "Side",
  2487. image: {
  2488. source: "./media/characters/rai/side.svg",
  2489. extra: 1789/1710,
  2490. bottom: 115/1904
  2491. }
  2492. },
  2493. back: {
  2494. height: math.unit(7 + 2/12, "feet"),
  2495. weight: math.unit(320, "kg"),
  2496. name: "Back",
  2497. image: {
  2498. source: "./media/characters/rai/back.svg",
  2499. extra: 1770/1707,
  2500. bottom: 28/1798
  2501. }
  2502. },
  2503. feral: {
  2504. height: math.unit(9.5, "feet"),
  2505. weight: math.unit(640, "kg"),
  2506. name: "Feral",
  2507. image: {
  2508. source: "./media/characters/rai/feral.svg",
  2509. extra: 945/553,
  2510. bottom: 176/1121
  2511. }
  2512. },
  2513. dragon: {
  2514. height: math.unit(23, "feet"),
  2515. weight: math.unit(50000, "lb"),
  2516. name: "Dragon",
  2517. image: {
  2518. source: "./media/characters/rai/dragon.svg",
  2519. extra: 2498 / 2030,
  2520. bottom: 85.2 / 2584
  2521. }
  2522. },
  2523. maw: {
  2524. height: math.unit(1.69, "feet"),
  2525. name: "Maw",
  2526. image: {
  2527. source: "./media/characters/rai/maw.svg"
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(7 + 2/12, "feet")
  2535. },
  2536. {
  2537. name: "Big",
  2538. height: math.unit(11, "feet")
  2539. },
  2540. {
  2541. name: "Macro",
  2542. height: math.unit(302, "feet"),
  2543. default: true
  2544. },
  2545. ]
  2546. ))
  2547. characterMakers.push(() => makeCharacter(
  2548. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2549. {
  2550. frontDressed: {
  2551. height: math.unit(216, "feet"),
  2552. weight: math.unit(7000000, "lb"),
  2553. name: "Front (Dressed)",
  2554. image: {
  2555. source: "./media/characters/jazzy/front-dressed.svg",
  2556. extra: 2738 / 2651,
  2557. bottom: 41.8 / 2786
  2558. }
  2559. },
  2560. backDressed: {
  2561. height: math.unit(216, "feet"),
  2562. weight: math.unit(7000000, "lb"),
  2563. name: "Back (Dressed)",
  2564. image: {
  2565. source: "./media/characters/jazzy/back-dressed.svg",
  2566. extra: 2775 / 2673,
  2567. bottom: 36.8 / 2817
  2568. }
  2569. },
  2570. front: {
  2571. height: math.unit(216, "feet"),
  2572. weight: math.unit(7000000, "lb"),
  2573. name: "Front",
  2574. image: {
  2575. source: "./media/characters/jazzy/front.svg",
  2576. extra: 2738 / 2651,
  2577. bottom: 41.8 / 2786
  2578. }
  2579. },
  2580. back: {
  2581. height: math.unit(216, "feet"),
  2582. weight: math.unit(7000000, "lb"),
  2583. name: "Back",
  2584. image: {
  2585. source: "./media/characters/jazzy/back.svg",
  2586. extra: 2775 / 2673,
  2587. bottom: 36.8 / 2817
  2588. }
  2589. },
  2590. maw: {
  2591. height: math.unit(20, "feet"),
  2592. name: "Maw",
  2593. image: {
  2594. source: "./media/characters/jazzy/maw.svg"
  2595. }
  2596. },
  2597. paws: {
  2598. height: math.unit(27.5, "feet"),
  2599. name: "Paws",
  2600. image: {
  2601. source: "./media/characters/jazzy/paws.svg"
  2602. }
  2603. },
  2604. eye: {
  2605. height: math.unit(4.4, "feet"),
  2606. name: "Eye",
  2607. image: {
  2608. source: "./media/characters/jazzy/eye.svg"
  2609. }
  2610. },
  2611. droneOffense: {
  2612. height: math.unit(9.5, "inches"),
  2613. name: "Drone (Offense)",
  2614. image: {
  2615. source: "./media/characters/jazzy/drone-offense.svg"
  2616. }
  2617. },
  2618. droneRecon: {
  2619. height: math.unit(9.5, "inches"),
  2620. name: "Drone (Recon)",
  2621. image: {
  2622. source: "./media/characters/jazzy/drone-recon.svg"
  2623. }
  2624. },
  2625. droneDefense: {
  2626. height: math.unit(9.5, "inches"),
  2627. name: "Drone (Defense)",
  2628. image: {
  2629. source: "./media/characters/jazzy/drone-defense.svg"
  2630. }
  2631. },
  2632. },
  2633. [
  2634. {
  2635. name: "Macro",
  2636. height: math.unit(216, "feet"),
  2637. default: true
  2638. },
  2639. ]
  2640. ))
  2641. characterMakers.push(() => makeCharacter(
  2642. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2643. {
  2644. front: {
  2645. height: math.unit(9 + 6/12, "feet"),
  2646. weight: math.unit(700, "lb"),
  2647. name: "Front",
  2648. image: {
  2649. source: "./media/characters/flamm/front.svg",
  2650. extra: 1751/1632,
  2651. bottom: 46/1797
  2652. }
  2653. },
  2654. buff: {
  2655. height: math.unit(9 + 6/12, "feet"),
  2656. weight: math.unit(950, "lb"),
  2657. name: "Buff",
  2658. image: {
  2659. source: "./media/characters/flamm/buff.svg",
  2660. extra: 3018/2874,
  2661. bottom: 221/3239
  2662. }
  2663. },
  2664. },
  2665. [
  2666. {
  2667. name: "Normal",
  2668. height: math.unit(9.5, "feet")
  2669. },
  2670. {
  2671. name: "Macro",
  2672. height: math.unit(200, "feet"),
  2673. default: true
  2674. },
  2675. ]
  2676. ))
  2677. characterMakers.push(() => makeCharacter(
  2678. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2679. {
  2680. front: {
  2681. height: math.unit(5 + 3/12, "feet"),
  2682. weight: math.unit(60, "kg"),
  2683. name: "Front",
  2684. image: {
  2685. source: "./media/characters/zephiro/front.svg",
  2686. extra: 2309 / 2162,
  2687. bottom: 0.069
  2688. }
  2689. },
  2690. side: {
  2691. height: math.unit(5 + 3/12, "feet"),
  2692. weight: math.unit(60, "kg"),
  2693. name: "Side",
  2694. image: {
  2695. source: "./media/characters/zephiro/side.svg",
  2696. extra: 2403 / 2279,
  2697. bottom: 0.015
  2698. }
  2699. },
  2700. back: {
  2701. height: math.unit(5 + 3/12, "feet"),
  2702. weight: math.unit(60, "kg"),
  2703. name: "Back",
  2704. image: {
  2705. source: "./media/characters/zephiro/back.svg",
  2706. extra: 2373 / 2244,
  2707. bottom: 0.013
  2708. }
  2709. },
  2710. hand: {
  2711. height: math.unit(0.68, "feet"),
  2712. name: "Hand",
  2713. image: {
  2714. source: "./media/characters/zephiro/hand.svg"
  2715. }
  2716. },
  2717. paw: {
  2718. height: math.unit(1, "feet"),
  2719. name: "Paw",
  2720. image: {
  2721. source: "./media/characters/zephiro/paw.svg"
  2722. }
  2723. },
  2724. beans: {
  2725. height: math.unit(0.93, "feet"),
  2726. name: "Beans",
  2727. image: {
  2728. source: "./media/characters/zephiro/beans.svg"
  2729. }
  2730. },
  2731. },
  2732. [
  2733. {
  2734. name: "Micro",
  2735. height: math.unit(3, "inches")
  2736. },
  2737. {
  2738. name: "Normal",
  2739. height: math.unit(5 + 3 / 12, "feet"),
  2740. default: true
  2741. },
  2742. {
  2743. name: "Macro",
  2744. height: math.unit(118, "feet")
  2745. },
  2746. ]
  2747. ))
  2748. characterMakers.push(() => makeCharacter(
  2749. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2750. {
  2751. front: {
  2752. height: math.unit(5, "feet"),
  2753. weight: math.unit(90, "kg"),
  2754. name: "Front",
  2755. image: {
  2756. source: "./media/characters/fory/front.svg",
  2757. extra: 2862 / 2674,
  2758. bottom: 180 / 3043.8
  2759. }
  2760. },
  2761. back: {
  2762. height: math.unit(5, "feet"),
  2763. weight: math.unit(90, "kg"),
  2764. name: "Back",
  2765. image: {
  2766. source: "./media/characters/fory/back.svg",
  2767. extra: 2962 / 2791,
  2768. bottom: 106 / 3071.8
  2769. }
  2770. },
  2771. foot: {
  2772. height: math.unit(2.14, "feet"),
  2773. name: "Foot",
  2774. image: {
  2775. source: "./media/characters/fory/foot.svg"
  2776. }
  2777. },
  2778. },
  2779. [
  2780. {
  2781. name: "Normal",
  2782. height: math.unit(5, "feet")
  2783. },
  2784. {
  2785. name: "Macro",
  2786. height: math.unit(50, "feet"),
  2787. default: true
  2788. },
  2789. {
  2790. name: "Megamacro",
  2791. height: math.unit(10, "miles")
  2792. },
  2793. {
  2794. name: "Gigamacro",
  2795. height: math.unit(5, "earths")
  2796. },
  2797. ]
  2798. ))
  2799. characterMakers.push(() => makeCharacter(
  2800. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2801. {
  2802. front: {
  2803. height: math.unit(7, "feet"),
  2804. weight: math.unit(90, "kg"),
  2805. name: "Front",
  2806. image: {
  2807. source: "./media/characters/kurrikage/front.svg",
  2808. extra: 1845/1733,
  2809. bottom: 119/1964
  2810. }
  2811. },
  2812. back: {
  2813. height: math.unit(7, "feet"),
  2814. weight: math.unit(90, "kg"),
  2815. name: "Back",
  2816. image: {
  2817. source: "./media/characters/kurrikage/back.svg",
  2818. extra: 1790/1677,
  2819. bottom: 61/1851
  2820. }
  2821. },
  2822. dressed: {
  2823. height: math.unit(7, "feet"),
  2824. weight: math.unit(90, "kg"),
  2825. name: "Dressed",
  2826. image: {
  2827. source: "./media/characters/kurrikage/dressed.svg",
  2828. extra: 1845/1733,
  2829. bottom: 119/1964
  2830. }
  2831. },
  2832. foot: {
  2833. height: math.unit(1.5, "feet"),
  2834. name: "Foot",
  2835. image: {
  2836. source: "./media/characters/kurrikage/foot.svg"
  2837. }
  2838. },
  2839. staff: {
  2840. height: math.unit(6.7, "feet"),
  2841. name: "Staff",
  2842. image: {
  2843. source: "./media/characters/kurrikage/staff.svg"
  2844. }
  2845. },
  2846. peek: {
  2847. height: math.unit(1.05, "feet"),
  2848. name: "Peeking",
  2849. image: {
  2850. source: "./media/characters/kurrikage/peek.svg",
  2851. bottom: 0.08
  2852. }
  2853. },
  2854. },
  2855. [
  2856. {
  2857. name: "Normal",
  2858. height: math.unit(12, "feet"),
  2859. default: true
  2860. },
  2861. {
  2862. name: "Big",
  2863. height: math.unit(20, "feet")
  2864. },
  2865. {
  2866. name: "Macro",
  2867. height: math.unit(500, "feet")
  2868. },
  2869. {
  2870. name: "Megamacro",
  2871. height: math.unit(20, "miles")
  2872. },
  2873. ]
  2874. ))
  2875. characterMakers.push(() => makeCharacter(
  2876. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2877. {
  2878. front: {
  2879. height: math.unit(6, "feet"),
  2880. weight: math.unit(75, "kg"),
  2881. name: "Front",
  2882. image: {
  2883. source: "./media/characters/shingo/front.svg",
  2884. extra: 1900/1825,
  2885. bottom: 82/1982
  2886. }
  2887. },
  2888. side: {
  2889. height: math.unit(6, "feet"),
  2890. weight: math.unit(75, "kg"),
  2891. name: "Side",
  2892. image: {
  2893. source: "./media/characters/shingo/side.svg",
  2894. extra: 1930/1865,
  2895. bottom: 16/1946
  2896. }
  2897. },
  2898. back: {
  2899. height: math.unit(6, "feet"),
  2900. weight: math.unit(75, "kg"),
  2901. name: "Back",
  2902. image: {
  2903. source: "./media/characters/shingo/back.svg",
  2904. extra: 1922/1852,
  2905. bottom: 16/1938
  2906. }
  2907. },
  2908. frontDressed: {
  2909. height: math.unit(6, "feet"),
  2910. weight: math.unit(150, "lb"),
  2911. name: "Front-dressed",
  2912. image: {
  2913. source: "./media/characters/shingo/front-dressed.svg",
  2914. extra: 1900/1825,
  2915. bottom: 82/1982
  2916. }
  2917. },
  2918. paw: {
  2919. height: math.unit(1.29, "feet"),
  2920. name: "Paw",
  2921. image: {
  2922. source: "./media/characters/shingo/paw.svg"
  2923. }
  2924. },
  2925. hand: {
  2926. height: math.unit(1.07, "feet"),
  2927. name: "Hand",
  2928. image: {
  2929. source: "./media/characters/shingo/hand.svg"
  2930. }
  2931. },
  2932. frontAlt: {
  2933. height: math.unit(6, "feet"),
  2934. weight: math.unit(75, "kg"),
  2935. name: "Front (Alt)",
  2936. image: {
  2937. source: "./media/characters/shingo/front-alt.svg",
  2938. extra: 3511 / 3338,
  2939. bottom: 0.005
  2940. }
  2941. },
  2942. frontAlt2: {
  2943. height: math.unit(6, "feet"),
  2944. weight: math.unit(75, "kg"),
  2945. name: "Front (Alt 2)",
  2946. image: {
  2947. source: "./media/characters/shingo/front-alt-2.svg",
  2948. extra: 706/681,
  2949. bottom: 11/717
  2950. }
  2951. },
  2952. pawAlt: {
  2953. height: math.unit(1, "feet"),
  2954. name: "Paw (Alt)",
  2955. image: {
  2956. source: "./media/characters/shingo/paw-alt.svg"
  2957. }
  2958. },
  2959. },
  2960. [
  2961. {
  2962. name: "Micro",
  2963. height: math.unit(4, "inches")
  2964. },
  2965. {
  2966. name: "Normal",
  2967. height: math.unit(6, "feet"),
  2968. default: true
  2969. },
  2970. {
  2971. name: "Macro",
  2972. height: math.unit(108, "feet")
  2973. },
  2974. {
  2975. name: "Macro+",
  2976. height: math.unit(1500, "feet")
  2977. },
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2982. {
  2983. side: {
  2984. height: math.unit(6, "feet"),
  2985. weight: math.unit(75, "kg"),
  2986. name: "Side",
  2987. image: {
  2988. source: "./media/characters/aigey/side.svg"
  2989. }
  2990. },
  2991. },
  2992. [
  2993. {
  2994. name: "Macro",
  2995. height: math.unit(200, "feet"),
  2996. default: true
  2997. },
  2998. {
  2999. name: "Megamacro",
  3000. height: math.unit(100, "miles")
  3001. },
  3002. ]
  3003. )
  3004. )
  3005. characterMakers.push(() => makeCharacter(
  3006. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3007. {
  3008. front: {
  3009. height: math.unit(5 + 5 / 12, "feet"),
  3010. weight: math.unit(75, "kg"),
  3011. name: "Front",
  3012. image: {
  3013. source: "./media/characters/natasha/front.svg",
  3014. extra: 859 / 824,
  3015. bottom: 23 / 879.6
  3016. }
  3017. },
  3018. frontNsfw: {
  3019. height: math.unit(5 + 5 / 12, "feet"),
  3020. weight: math.unit(75, "kg"),
  3021. name: "Front (NSFW)",
  3022. image: {
  3023. source: "./media/characters/natasha/front-nsfw.svg",
  3024. extra: 859 / 824,
  3025. bottom: 23 / 879.6
  3026. }
  3027. },
  3028. frontErect: {
  3029. height: math.unit(5 + 5 / 12, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Front (Erect)",
  3032. image: {
  3033. source: "./media/characters/natasha/front-erect.svg",
  3034. extra: 859 / 824,
  3035. bottom: 23 / 879.6
  3036. }
  3037. },
  3038. back: {
  3039. height: math.unit(5 + 5 / 12, "feet"),
  3040. weight: math.unit(75, "kg"),
  3041. name: "Back",
  3042. image: {
  3043. source: "./media/characters/natasha/back.svg",
  3044. extra: 887.9 / 852.6,
  3045. bottom: 9.7 / 896.4
  3046. }
  3047. },
  3048. backAlt: {
  3049. height: math.unit(5 + 5 / 12, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Back (Alt)",
  3052. image: {
  3053. source: "./media/characters/natasha/back-alt.svg",
  3054. extra: 1236.7 / 1192,
  3055. bottom: 22.3 / 1258.2
  3056. }
  3057. },
  3058. dick: {
  3059. height: math.unit(1.772, "feet"),
  3060. name: "Dick",
  3061. image: {
  3062. source: "./media/characters/natasha/dick.svg"
  3063. }
  3064. },
  3065. paw: {
  3066. height: math.unit(0.250, "meters"),
  3067. name: "Paw",
  3068. image: {
  3069. source: "./media/characters/natasha/paw.svg"
  3070. }
  3071. },
  3072. },
  3073. [
  3074. {
  3075. name: "Normal",
  3076. height: math.unit(5 + 5 / 12, "feet")
  3077. },
  3078. {
  3079. name: "Large",
  3080. height: math.unit(12, "feet")
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(100, "feet"),
  3085. default: true
  3086. },
  3087. {
  3088. name: "Macro+",
  3089. height: math.unit(260, "feet")
  3090. },
  3091. {
  3092. name: "Macro++",
  3093. height: math.unit(1, "mile")
  3094. },
  3095. ]
  3096. ))
  3097. characterMakers.push(() => makeCharacter(
  3098. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3099. {
  3100. front: {
  3101. height: math.unit(6, "feet"),
  3102. weight: math.unit(75, "kg"),
  3103. name: "Front",
  3104. image: {
  3105. source: "./media/characters/malik/front.svg"
  3106. }
  3107. },
  3108. side: {
  3109. height: math.unit(6, "feet"),
  3110. weight: math.unit(75, "kg"),
  3111. name: "Side",
  3112. image: {
  3113. source: "./media/characters/malik/side.svg",
  3114. extra: 1.1539
  3115. }
  3116. },
  3117. back: {
  3118. height: math.unit(6, "feet"),
  3119. weight: math.unit(75, "kg"),
  3120. name: "Back",
  3121. image: {
  3122. source: "./media/characters/malik/back.svg"
  3123. }
  3124. },
  3125. },
  3126. [
  3127. {
  3128. name: "Macro",
  3129. height: math.unit(156, "feet"),
  3130. default: true
  3131. },
  3132. {
  3133. name: "Macro+",
  3134. height: math.unit(1188, "feet")
  3135. },
  3136. ]
  3137. ))
  3138. characterMakers.push(() => makeCharacter(
  3139. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3140. {
  3141. front: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(75, "kg"),
  3144. name: "Front",
  3145. image: {
  3146. source: "./media/characters/sefer/front.svg",
  3147. extra: 848 / 659,
  3148. bottom: 28.3 / 876.442
  3149. }
  3150. },
  3151. back: {
  3152. height: math.unit(6, "feet"),
  3153. weight: math.unit(75, "kg"),
  3154. name: "Back",
  3155. image: {
  3156. source: "./media/characters/sefer/back.svg",
  3157. extra: 864 / 695,
  3158. bottom: 10 / 871
  3159. }
  3160. },
  3161. frontDressed: {
  3162. height: math.unit(6, "feet"),
  3163. weight: math.unit(75, "kg"),
  3164. name: "Front (Dressed)",
  3165. image: {
  3166. source: "./media/characters/sefer/front-dressed.svg",
  3167. extra: 839 / 653,
  3168. bottom: 37.6 / 878
  3169. }
  3170. },
  3171. },
  3172. [
  3173. {
  3174. name: "Normal",
  3175. height: math.unit(6, "feet"),
  3176. default: true
  3177. },
  3178. ]
  3179. ))
  3180. characterMakers.push(() => makeCharacter(
  3181. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3182. {
  3183. body: {
  3184. height: math.unit(2.2428, "meter"),
  3185. weight: math.unit(124.738, "kg"),
  3186. name: "Body",
  3187. image: {
  3188. extra: 1225 / 1050,
  3189. source: "./media/characters/north/front.svg"
  3190. }
  3191. }
  3192. },
  3193. [
  3194. {
  3195. name: "Micro",
  3196. height: math.unit(4, "inches")
  3197. },
  3198. {
  3199. name: "Macro",
  3200. height: math.unit(63, "meters")
  3201. },
  3202. {
  3203. name: "Megamacro",
  3204. height: math.unit(101, "miles"),
  3205. default: true
  3206. }
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3211. {
  3212. angled: {
  3213. height: math.unit(4, "meter"),
  3214. weight: math.unit(150, "kg"),
  3215. name: "Angled",
  3216. image: {
  3217. source: "./media/characters/talan/angled-sfw.svg",
  3218. bottom: 29 / 3734
  3219. }
  3220. },
  3221. angledNsfw: {
  3222. height: math.unit(4, "meter"),
  3223. weight: math.unit(150, "kg"),
  3224. name: "Angled (NSFW)",
  3225. image: {
  3226. source: "./media/characters/talan/angled-nsfw.svg",
  3227. bottom: 29 / 3734
  3228. }
  3229. },
  3230. frontNsfw: {
  3231. height: math.unit(4, "meter"),
  3232. weight: math.unit(150, "kg"),
  3233. name: "Front (NSFW)",
  3234. image: {
  3235. source: "./media/characters/talan/front-nsfw.svg",
  3236. bottom: 29 / 3734
  3237. }
  3238. },
  3239. sideNsfw: {
  3240. height: math.unit(4, "meter"),
  3241. weight: math.unit(150, "kg"),
  3242. name: "Side (NSFW)",
  3243. image: {
  3244. source: "./media/characters/talan/side-nsfw.svg",
  3245. bottom: 29 / 3734
  3246. }
  3247. },
  3248. back: {
  3249. height: math.unit(4, "meter"),
  3250. weight: math.unit(150, "kg"),
  3251. name: "Back",
  3252. image: {
  3253. source: "./media/characters/talan/back.svg"
  3254. }
  3255. },
  3256. dickBottom: {
  3257. height: math.unit(0.621, "meter"),
  3258. name: "Dick (Bottom)",
  3259. image: {
  3260. source: "./media/characters/talan/dick-bottom.svg"
  3261. }
  3262. },
  3263. dickTop: {
  3264. height: math.unit(0.621, "meter"),
  3265. name: "Dick (Top)",
  3266. image: {
  3267. source: "./media/characters/talan/dick-top.svg"
  3268. }
  3269. },
  3270. dickSide: {
  3271. height: math.unit(0.305, "meter"),
  3272. name: "Dick (Side)",
  3273. image: {
  3274. source: "./media/characters/talan/dick-side.svg"
  3275. }
  3276. },
  3277. dickFront: {
  3278. height: math.unit(0.305, "meter"),
  3279. name: "Dick (Front)",
  3280. image: {
  3281. source: "./media/characters/talan/dick-front.svg"
  3282. }
  3283. },
  3284. },
  3285. [
  3286. {
  3287. name: "Normal",
  3288. height: math.unit(4, "meters")
  3289. },
  3290. {
  3291. name: "Macro",
  3292. height: math.unit(100, "meters")
  3293. },
  3294. {
  3295. name: "Megamacro",
  3296. height: math.unit(2, "miles"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Gigamacro",
  3301. height: math.unit(5000, "miles")
  3302. },
  3303. {
  3304. name: "Teramacro",
  3305. height: math.unit(100, "parsecs")
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3311. {
  3312. front: {
  3313. height: math.unit(2, "meter"),
  3314. weight: math.unit(90, "kg"),
  3315. name: "Front",
  3316. image: {
  3317. source: "./media/characters/gael'rathus/front.svg"
  3318. }
  3319. },
  3320. frontAlt: {
  3321. height: math.unit(2, "meter"),
  3322. weight: math.unit(90, "kg"),
  3323. name: "Front (alt)",
  3324. image: {
  3325. source: "./media/characters/gael'rathus/front-alt.svg"
  3326. }
  3327. },
  3328. frontAlt2: {
  3329. height: math.unit(2, "meter"),
  3330. weight: math.unit(90, "kg"),
  3331. name: "Front (alt 2)",
  3332. image: {
  3333. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3334. }
  3335. }
  3336. },
  3337. [
  3338. {
  3339. name: "Normal",
  3340. height: math.unit(9, "feet"),
  3341. default: true
  3342. },
  3343. {
  3344. name: "Large",
  3345. height: math.unit(25, "feet")
  3346. },
  3347. {
  3348. name: "Macro",
  3349. height: math.unit(0.25, "miles")
  3350. },
  3351. {
  3352. name: "Megamacro",
  3353. height: math.unit(10, "miles")
  3354. }
  3355. ]
  3356. ))
  3357. characterMakers.push(() => makeCharacter(
  3358. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3359. {
  3360. side: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(140, "kg"),
  3363. name: "Side",
  3364. image: {
  3365. source: "./media/characters/sosha/side.svg",
  3366. bottom: 0.042
  3367. }
  3368. },
  3369. },
  3370. [
  3371. {
  3372. name: "Normal",
  3373. height: math.unit(12, "feet"),
  3374. default: true
  3375. }
  3376. ]
  3377. ))
  3378. characterMakers.push(() => makeCharacter(
  3379. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3380. {
  3381. side: {
  3382. height: math.unit(5 + 5 / 12, "feet"),
  3383. weight: math.unit(170, "kg"),
  3384. name: "Side",
  3385. image: {
  3386. source: "./media/characters/runnola/side.svg",
  3387. extra: 741 / 448,
  3388. bottom: 0.05
  3389. }
  3390. },
  3391. },
  3392. [
  3393. {
  3394. name: "Small",
  3395. height: math.unit(3, "feet")
  3396. },
  3397. {
  3398. name: "Normal",
  3399. height: math.unit(5 + 5 / 12, "feet"),
  3400. default: true
  3401. },
  3402. {
  3403. name: "Big",
  3404. height: math.unit(10, "feet")
  3405. },
  3406. ]
  3407. ))
  3408. characterMakers.push(() => makeCharacter(
  3409. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3410. {
  3411. front: {
  3412. height: math.unit(2, "meter"),
  3413. weight: math.unit(50, "kg"),
  3414. name: "Front",
  3415. image: {
  3416. source: "./media/characters/kurribird/front.svg",
  3417. bottom: 0.015
  3418. }
  3419. },
  3420. frontAlt: {
  3421. height: math.unit(1.5, "meter"),
  3422. weight: math.unit(50, "kg"),
  3423. name: "Front (Alt)",
  3424. image: {
  3425. source: "./media/characters/kurribird/front-alt.svg",
  3426. extra: 1.45
  3427. }
  3428. },
  3429. },
  3430. [
  3431. {
  3432. name: "Normal",
  3433. height: math.unit(7, "feet")
  3434. },
  3435. {
  3436. name: "Big",
  3437. height: math.unit(12, "feet"),
  3438. default: true
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(1500, "feet")
  3443. },
  3444. {
  3445. name: "Megamacro",
  3446. height: math.unit(2, "miles")
  3447. }
  3448. ]
  3449. ))
  3450. characterMakers.push(() => makeCharacter(
  3451. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3452. {
  3453. front: {
  3454. height: math.unit(2, "meter"),
  3455. weight: math.unit(80, "kg"),
  3456. name: "Front",
  3457. image: {
  3458. source: "./media/characters/elbial/front.svg",
  3459. extra: 1643 / 1556,
  3460. bottom: 60.2 / 1696
  3461. }
  3462. },
  3463. side: {
  3464. height: math.unit(2, "meter"),
  3465. weight: math.unit(80, "kg"),
  3466. name: "Side",
  3467. image: {
  3468. source: "./media/characters/elbial/side.svg",
  3469. extra: 1601/1528,
  3470. bottom: 97/1698
  3471. }
  3472. },
  3473. back: {
  3474. height: math.unit(2, "meter"),
  3475. weight: math.unit(80, "kg"),
  3476. name: "Back",
  3477. image: {
  3478. source: "./media/characters/elbial/back.svg",
  3479. extra: 1653/1569,
  3480. bottom: 20/1673
  3481. }
  3482. },
  3483. frontDressed: {
  3484. height: math.unit(2, "meter"),
  3485. weight: math.unit(80, "kg"),
  3486. name: "Front (Dressed)",
  3487. image: {
  3488. source: "./media/characters/elbial/front-dressed.svg",
  3489. extra: 1638/1569,
  3490. bottom: 70/1708
  3491. }
  3492. },
  3493. genitals: {
  3494. height: math.unit(2 / 3.367, "meter"),
  3495. name: "Genitals",
  3496. image: {
  3497. source: "./media/characters/elbial/genitals.svg"
  3498. }
  3499. },
  3500. },
  3501. [
  3502. {
  3503. name: "Large",
  3504. height: math.unit(100, "feet")
  3505. },
  3506. {
  3507. name: "Macro",
  3508. height: math.unit(500, "feet"),
  3509. default: true
  3510. },
  3511. {
  3512. name: "Megamacro",
  3513. height: math.unit(10, "miles")
  3514. },
  3515. {
  3516. name: "Gigamacro",
  3517. height: math.unit(25000, "miles")
  3518. },
  3519. {
  3520. name: "Full-Size",
  3521. height: math.unit(8000000, "gigaparsecs")
  3522. }
  3523. ]
  3524. ))
  3525. characterMakers.push(() => makeCharacter(
  3526. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3527. {
  3528. front: {
  3529. height: math.unit(2, "meter"),
  3530. weight: math.unit(60, "kg"),
  3531. name: "Front",
  3532. image: {
  3533. source: "./media/characters/noah/front.svg"
  3534. }
  3535. },
  3536. talons: {
  3537. height: math.unit(0.315, "meter"),
  3538. name: "Talons",
  3539. image: {
  3540. source: "./media/characters/noah/talons.svg"
  3541. }
  3542. }
  3543. },
  3544. [
  3545. {
  3546. name: "Large",
  3547. height: math.unit(50, "feet")
  3548. },
  3549. {
  3550. name: "Macro",
  3551. height: math.unit(750, "feet"),
  3552. default: true
  3553. },
  3554. {
  3555. name: "Megamacro",
  3556. height: math.unit(50, "miles")
  3557. },
  3558. {
  3559. name: "Gigamacro",
  3560. height: math.unit(100000, "miles")
  3561. },
  3562. {
  3563. name: "Full-Size",
  3564. height: math.unit(3000000000, "miles")
  3565. }
  3566. ]
  3567. ))
  3568. characterMakers.push(() => makeCharacter(
  3569. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3570. {
  3571. front: {
  3572. height: math.unit(2, "meter"),
  3573. weight: math.unit(80, "kg"),
  3574. name: "Front",
  3575. image: {
  3576. source: "./media/characters/natalya/front.svg"
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(80, "kg"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/natalya/back.svg"
  3585. }
  3586. }
  3587. },
  3588. [
  3589. {
  3590. name: "Normal",
  3591. height: math.unit(150, "feet"),
  3592. default: true
  3593. },
  3594. {
  3595. name: "Megamacro",
  3596. height: math.unit(5, "miles")
  3597. },
  3598. {
  3599. name: "Full-Size",
  3600. height: math.unit(600, "kiloparsecs")
  3601. }
  3602. ]
  3603. ))
  3604. characterMakers.push(() => makeCharacter(
  3605. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3606. {
  3607. front: {
  3608. height: math.unit(2, "meter"),
  3609. weight: math.unit(50, "kg"),
  3610. name: "Front",
  3611. image: {
  3612. source: "./media/characters/erestrebah/front.svg",
  3613. extra: 1262/1162,
  3614. bottom: 96/1358
  3615. }
  3616. },
  3617. back: {
  3618. height: math.unit(2, "meter"),
  3619. weight: math.unit(50, "kg"),
  3620. name: "Back",
  3621. image: {
  3622. source: "./media/characters/erestrebah/back.svg",
  3623. extra: 1257/1139,
  3624. bottom: 13/1270
  3625. }
  3626. },
  3627. wing: {
  3628. height: math.unit(2, "meter"),
  3629. weight: math.unit(50, "kg"),
  3630. name: "Wing",
  3631. image: {
  3632. source: "./media/characters/erestrebah/wing.svg",
  3633. extra: 1262/1162,
  3634. bottom: 96/1358
  3635. }
  3636. },
  3637. mouth: {
  3638. height: math.unit(0.39, "feet"),
  3639. name: "Mouth",
  3640. image: {
  3641. source: "./media/characters/erestrebah/mouth.svg"
  3642. }
  3643. }
  3644. },
  3645. [
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(10, "feet")
  3649. },
  3650. {
  3651. name: "Large",
  3652. height: math.unit(50, "feet"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Macro",
  3657. height: math.unit(300, "feet")
  3658. },
  3659. {
  3660. name: "Macro+",
  3661. height: math.unit(750, "feet")
  3662. },
  3663. {
  3664. name: "Megamacro",
  3665. height: math.unit(3, "miles")
  3666. }
  3667. ]
  3668. ))
  3669. characterMakers.push(() => makeCharacter(
  3670. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3671. {
  3672. front: {
  3673. height: math.unit(2, "meter"),
  3674. weight: math.unit(80, "kg"),
  3675. name: "Front",
  3676. image: {
  3677. source: "./media/characters/jennifer/front.svg",
  3678. bottom: 0.11,
  3679. extra: 1.16
  3680. }
  3681. },
  3682. frontAlt: {
  3683. height: math.unit(2, "meter"),
  3684. weight: math.unit(80, "kg"),
  3685. name: "Front (Alt)",
  3686. image: {
  3687. source: "./media/characters/jennifer/front-alt.svg"
  3688. }
  3689. }
  3690. },
  3691. [
  3692. {
  3693. name: "Canon Height",
  3694. height: math.unit(120, "feet"),
  3695. default: true
  3696. },
  3697. {
  3698. name: "Macro+",
  3699. height: math.unit(300, "feet")
  3700. },
  3701. {
  3702. name: "Megamacro",
  3703. height: math.unit(20000, "feet")
  3704. }
  3705. ]
  3706. ))
  3707. characterMakers.push(() => makeCharacter(
  3708. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3709. {
  3710. front: {
  3711. height: math.unit(2, "meter"),
  3712. weight: math.unit(50, "kg"),
  3713. name: "Front",
  3714. image: {
  3715. source: "./media/characters/kalista/front.svg",
  3716. extra: 1314/1145,
  3717. bottom: 101/1415
  3718. }
  3719. },
  3720. back: {
  3721. height: math.unit(2, "meter"),
  3722. weight: math.unit(50, "kg"),
  3723. name: "Back",
  3724. image: {
  3725. source: "./media/characters/kalista/back.svg",
  3726. extra: 1366 / 1156,
  3727. bottom: 33.9 / 1362.78
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Uncomfortably Small",
  3734. height: math.unit(10, "feet")
  3735. },
  3736. {
  3737. name: "Small",
  3738. height: math.unit(30, "feet")
  3739. },
  3740. {
  3741. name: "Macro",
  3742. height: math.unit(100, "feet"),
  3743. default: true
  3744. },
  3745. {
  3746. name: "Macro+",
  3747. height: math.unit(2000, "feet")
  3748. },
  3749. {
  3750. name: "True Form",
  3751. height: math.unit(8924, "miles")
  3752. }
  3753. ]
  3754. ))
  3755. characterMakers.push(() => makeCharacter(
  3756. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3757. {
  3758. front: {
  3759. height: math.unit(2, "meter"),
  3760. weight: math.unit(120, "kg"),
  3761. name: "Front",
  3762. image: {
  3763. source: "./media/characters/ggv/front.svg"
  3764. }
  3765. },
  3766. side: {
  3767. height: math.unit(2, "meter"),
  3768. weight: math.unit(120, "kg"),
  3769. name: "Side",
  3770. image: {
  3771. source: "./media/characters/ggv/side.svg"
  3772. }
  3773. }
  3774. },
  3775. [
  3776. {
  3777. name: "Extremely Puny",
  3778. height: math.unit(9 + 5 / 12, "feet")
  3779. },
  3780. {
  3781. name: "Horribly Small",
  3782. height: math.unit(47.7, "miles"),
  3783. default: true
  3784. },
  3785. {
  3786. name: "Reasonably Sized",
  3787. height: math.unit(25000, "parsecs")
  3788. },
  3789. {
  3790. name: "Slightly Uncompressed",
  3791. height: math.unit(7.77e31, "parsecs")
  3792. },
  3793. {
  3794. name: "Omniversal",
  3795. height: math.unit(1e300, "meters")
  3796. },
  3797. ]
  3798. ))
  3799. characterMakers.push(() => makeCharacter(
  3800. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3801. {
  3802. front: {
  3803. height: math.unit(2, "meter"),
  3804. weight: math.unit(75, "lb"),
  3805. name: "Front",
  3806. image: {
  3807. source: "./media/characters/napalm/front.svg"
  3808. }
  3809. },
  3810. back: {
  3811. height: math.unit(2, "meter"),
  3812. weight: math.unit(75, "lb"),
  3813. name: "Back",
  3814. image: {
  3815. source: "./media/characters/napalm/back.svg"
  3816. }
  3817. }
  3818. },
  3819. [
  3820. {
  3821. name: "Standard",
  3822. height: math.unit(55, "feet"),
  3823. default: true
  3824. }
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3829. {
  3830. front: {
  3831. height: math.unit(7 + 5 / 6, "feet"),
  3832. weight: math.unit(325, "lb"),
  3833. name: "Front",
  3834. image: {
  3835. source: "./media/characters/asana/front.svg",
  3836. extra: 1133 / 1060,
  3837. bottom: 15.2 / 1148.6
  3838. }
  3839. },
  3840. back: {
  3841. height: math.unit(7 + 5 / 6, "feet"),
  3842. weight: math.unit(325, "lb"),
  3843. name: "Back",
  3844. image: {
  3845. source: "./media/characters/asana/back.svg",
  3846. extra: 1114 / 1043,
  3847. bottom: 5 / 1120
  3848. }
  3849. },
  3850. dressedDark: {
  3851. height: math.unit(7 + 5 / 6, "feet"),
  3852. weight: math.unit(325, "lb"),
  3853. name: "Dressed (Dark)",
  3854. image: {
  3855. source: "./media/characters/asana/dressed-dark.svg",
  3856. extra: 1133 / 1060,
  3857. bottom: 15.2 / 1148.6
  3858. }
  3859. },
  3860. dressedLight: {
  3861. height: math.unit(7 + 5 / 6, "feet"),
  3862. weight: math.unit(325, "lb"),
  3863. name: "Dressed (Light)",
  3864. image: {
  3865. source: "./media/characters/asana/dressed-light.svg",
  3866. extra: 1133 / 1060,
  3867. bottom: 15.2 / 1148.6
  3868. }
  3869. },
  3870. },
  3871. [
  3872. {
  3873. name: "Standard",
  3874. height: math.unit(7 + 5 / 6, "feet"),
  3875. default: true
  3876. },
  3877. {
  3878. name: "Large",
  3879. height: math.unit(10, "meters")
  3880. },
  3881. {
  3882. name: "Macro",
  3883. height: math.unit(2500, "meters")
  3884. },
  3885. {
  3886. name: "Megamacro",
  3887. height: math.unit(5e6, "meters")
  3888. },
  3889. {
  3890. name: "Examacro",
  3891. height: math.unit(5e12, "lightyears")
  3892. },
  3893. {
  3894. name: "Max Size",
  3895. height: math.unit(1e31, "lightyears")
  3896. }
  3897. ]
  3898. ))
  3899. characterMakers.push(() => makeCharacter(
  3900. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3901. {
  3902. front: {
  3903. height: math.unit(2, "meter"),
  3904. weight: math.unit(60, "kg"),
  3905. name: "Front",
  3906. image: {
  3907. source: "./media/characters/ebony/front.svg",
  3908. bottom: 0.03,
  3909. extra: 1045 / 810 + 0.03
  3910. }
  3911. },
  3912. side: {
  3913. height: math.unit(2, "meter"),
  3914. weight: math.unit(60, "kg"),
  3915. name: "Side",
  3916. image: {
  3917. source: "./media/characters/ebony/side.svg",
  3918. bottom: 0.03,
  3919. extra: 1045 / 810 + 0.03
  3920. }
  3921. },
  3922. back: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(60, "kg"),
  3925. name: "Back",
  3926. image: {
  3927. source: "./media/characters/ebony/back.svg",
  3928. bottom: 0.01,
  3929. extra: 1045 / 810 + 0.01
  3930. }
  3931. },
  3932. },
  3933. [
  3934. // TODO check why I did this lol
  3935. {
  3936. name: "Standard",
  3937. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Macro",
  3942. height: math.unit(200, "feet")
  3943. },
  3944. {
  3945. name: "Gigamacro",
  3946. height: math.unit(13000, "km")
  3947. }
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(6, "feet"),
  3955. weight: math.unit(175, "lb"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/mountain/front.svg",
  3959. extra: 972 / 955,
  3960. bottom: 64 / 1036.6
  3961. }
  3962. },
  3963. back: {
  3964. height: math.unit(6, "feet"),
  3965. weight: math.unit(175, "lb"),
  3966. name: "Back",
  3967. image: {
  3968. source: "./media/characters/mountain/back.svg",
  3969. extra: 970 / 950,
  3970. bottom: 28.25 / 999
  3971. }
  3972. },
  3973. },
  3974. [
  3975. {
  3976. name: "Large",
  3977. height: math.unit(20, "meters")
  3978. },
  3979. {
  3980. name: "Macro",
  3981. height: math.unit(300, "meters")
  3982. },
  3983. {
  3984. name: "Gigamacro",
  3985. height: math.unit(10000, "km"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Examacro",
  3990. height: math.unit(10e9, "lightyears")
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(8, "feet"),
  3999. weight: math.unit(500, "lb"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/rick/front.svg"
  4003. }
  4004. }
  4005. },
  4006. [
  4007. {
  4008. name: "Normal",
  4009. height: math.unit(8, "feet"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Macro",
  4014. height: math.unit(5, "km")
  4015. }
  4016. ]
  4017. ))
  4018. characterMakers.push(() => makeCharacter(
  4019. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4020. {
  4021. front: {
  4022. height: math.unit(8, "feet"),
  4023. weight: math.unit(120, "lb"),
  4024. name: "Front",
  4025. image: {
  4026. source: "./media/characters/ona/front.svg"
  4027. }
  4028. },
  4029. frontAlt: {
  4030. height: math.unit(8, "feet"),
  4031. weight: math.unit(120, "lb"),
  4032. name: "Front (Alt)",
  4033. image: {
  4034. source: "./media/characters/ona/front-alt.svg"
  4035. }
  4036. },
  4037. back: {
  4038. height: math.unit(8, "feet"),
  4039. weight: math.unit(120, "lb"),
  4040. name: "Back",
  4041. image: {
  4042. source: "./media/characters/ona/back.svg"
  4043. }
  4044. },
  4045. foot: {
  4046. height: math.unit(1.1, "feet"),
  4047. name: "Foot",
  4048. image: {
  4049. source: "./media/characters/ona/foot.svg"
  4050. }
  4051. }
  4052. },
  4053. [
  4054. {
  4055. name: "Megamacro",
  4056. height: math.unit(70, "km"),
  4057. default: true
  4058. },
  4059. {
  4060. name: "Gigamacro",
  4061. height: math.unit(681818, "miles")
  4062. },
  4063. {
  4064. name: "Examacro",
  4065. height: math.unit(3800000, "lightyears")
  4066. },
  4067. ]
  4068. ))
  4069. characterMakers.push(() => makeCharacter(
  4070. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4071. {
  4072. front: {
  4073. height: math.unit(12, "feet"),
  4074. weight: math.unit(3000, "lb"),
  4075. name: "Front",
  4076. image: {
  4077. source: "./media/characters/mech/front.svg",
  4078. extra: 2900 / 2770,
  4079. bottom: 110 / 3010
  4080. }
  4081. },
  4082. back: {
  4083. height: math.unit(12, "feet"),
  4084. weight: math.unit(3000, "lb"),
  4085. name: "Back",
  4086. image: {
  4087. source: "./media/characters/mech/back.svg",
  4088. extra: 3011 / 2890,
  4089. bottom: 94 / 3105
  4090. }
  4091. },
  4092. maw: {
  4093. height: math.unit(3.07, "feet"),
  4094. name: "Maw",
  4095. image: {
  4096. source: "./media/characters/mech/maw.svg"
  4097. }
  4098. },
  4099. head: {
  4100. height: math.unit(2.82, "feet"),
  4101. name: "Head",
  4102. image: {
  4103. source: "./media/characters/mech/head.svg"
  4104. }
  4105. },
  4106. dick: {
  4107. height: math.unit(1.43, "feet"),
  4108. name: "Dick",
  4109. image: {
  4110. source: "./media/characters/mech/dick.svg"
  4111. }
  4112. },
  4113. },
  4114. [
  4115. {
  4116. name: "Normal",
  4117. height: math.unit(12, "feet")
  4118. },
  4119. {
  4120. name: "Macro",
  4121. height: math.unit(300, "feet"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro+",
  4126. height: math.unit(1500, "feet")
  4127. },
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(1.3, "meter"),
  4135. weight: math.unit(30, "kg"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/gregory/front.svg",
  4139. }
  4140. }
  4141. },
  4142. [
  4143. {
  4144. name: "Normal",
  4145. height: math.unit(1.3, "meter"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Macro",
  4150. height: math.unit(20, "meter")
  4151. }
  4152. ]
  4153. ))
  4154. characterMakers.push(() => makeCharacter(
  4155. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4156. {
  4157. front: {
  4158. height: math.unit(2.8, "meter"),
  4159. weight: math.unit(200, "kg"),
  4160. name: "Front",
  4161. image: {
  4162. source: "./media/characters/elory/front.svg",
  4163. }
  4164. }
  4165. },
  4166. [
  4167. {
  4168. name: "Normal",
  4169. height: math.unit(2.8, "meter"),
  4170. default: true
  4171. },
  4172. {
  4173. name: "Macro",
  4174. height: math.unit(38, "meter")
  4175. }
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4180. {
  4181. front: {
  4182. height: math.unit(470, "feet"),
  4183. weight: math.unit(924, "tons"),
  4184. name: "Front",
  4185. image: {
  4186. source: "./media/characters/angelpatamon/front.svg",
  4187. }
  4188. }
  4189. },
  4190. [
  4191. {
  4192. name: "Normal",
  4193. height: math.unit(470, "feet"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Deity Size I",
  4198. height: math.unit(28651.2, "km")
  4199. },
  4200. {
  4201. name: "Deity Size II",
  4202. height: math.unit(171907.2, "km")
  4203. }
  4204. ]
  4205. ))
  4206. characterMakers.push(() => makeCharacter(
  4207. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4208. {
  4209. side: {
  4210. height: math.unit(7.2, "meter"),
  4211. weight: math.unit(8.2, "tons"),
  4212. name: "Side",
  4213. image: {
  4214. source: "./media/characters/cryae/side.svg",
  4215. extra: 3500 / 1500
  4216. }
  4217. }
  4218. },
  4219. [
  4220. {
  4221. name: "Normal",
  4222. height: math.unit(7.2, "meter"),
  4223. default: true
  4224. }
  4225. ]
  4226. ))
  4227. characterMakers.push(() => makeCharacter(
  4228. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4229. {
  4230. front: {
  4231. height: math.unit(6, "feet"),
  4232. weight: math.unit(175, "lb"),
  4233. name: "Front",
  4234. image: {
  4235. source: "./media/characters/xera/front.svg",
  4236. extra: 2377 / 1972,
  4237. bottom: 75.5 / 2452
  4238. }
  4239. },
  4240. side: {
  4241. height: math.unit(6, "feet"),
  4242. weight: math.unit(175, "lb"),
  4243. name: "Side",
  4244. image: {
  4245. source: "./media/characters/xera/side.svg",
  4246. extra: 2345 / 2019,
  4247. bottom: 39.7 / 2384
  4248. }
  4249. },
  4250. back: {
  4251. height: math.unit(6, "feet"),
  4252. weight: math.unit(175, "lb"),
  4253. name: "Back",
  4254. image: {
  4255. source: "./media/characters/xera/back.svg",
  4256. extra: 2095 / 1984,
  4257. bottom: 67 / 2166
  4258. }
  4259. },
  4260. },
  4261. [
  4262. {
  4263. name: "Small",
  4264. height: math.unit(10, "feet")
  4265. },
  4266. {
  4267. name: "Macro",
  4268. height: math.unit(500, "meters"),
  4269. default: true
  4270. },
  4271. {
  4272. name: "Macro+",
  4273. height: math.unit(10, "km")
  4274. },
  4275. {
  4276. name: "Gigamacro",
  4277. height: math.unit(25000, "km")
  4278. },
  4279. {
  4280. name: "Teramacro",
  4281. height: math.unit(3e6, "km")
  4282. }
  4283. ]
  4284. ))
  4285. characterMakers.push(() => makeCharacter(
  4286. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4287. {
  4288. front: {
  4289. height: math.unit(6, "feet"),
  4290. weight: math.unit(175, "lb"),
  4291. name: "Front",
  4292. image: {
  4293. source: "./media/characters/nebula/front.svg",
  4294. extra: 2566 / 2362,
  4295. bottom: 81 / 2644
  4296. }
  4297. }
  4298. },
  4299. [
  4300. {
  4301. name: "Small",
  4302. height: math.unit(4.5, "meters")
  4303. },
  4304. {
  4305. name: "Macro",
  4306. height: math.unit(1500, "meters"),
  4307. default: true
  4308. },
  4309. {
  4310. name: "Megamacro",
  4311. height: math.unit(150, "km")
  4312. },
  4313. {
  4314. name: "Gigamacro",
  4315. height: math.unit(27000, "km")
  4316. }
  4317. ]
  4318. ))
  4319. characterMakers.push(() => makeCharacter(
  4320. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4321. {
  4322. front: {
  4323. height: math.unit(6, "feet"),
  4324. weight: math.unit(225, "lb"),
  4325. name: "Front",
  4326. image: {
  4327. source: "./media/characters/abysgar/front.svg"
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Small",
  4334. height: math.unit(4.5, "meters")
  4335. },
  4336. {
  4337. name: "Macro",
  4338. height: math.unit(1250, "meters"),
  4339. default: true
  4340. },
  4341. {
  4342. name: "Megamacro",
  4343. height: math.unit(125, "km")
  4344. },
  4345. {
  4346. name: "Gigamacro",
  4347. height: math.unit(26000, "km")
  4348. }
  4349. ]
  4350. ))
  4351. characterMakers.push(() => makeCharacter(
  4352. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4353. {
  4354. front: {
  4355. height: math.unit(6, "feet"),
  4356. weight: math.unit(180, "lb"),
  4357. name: "Front",
  4358. image: {
  4359. source: "./media/characters/yakuz/front.svg"
  4360. }
  4361. }
  4362. },
  4363. [
  4364. {
  4365. name: "Small",
  4366. height: math.unit(5, "meters")
  4367. },
  4368. {
  4369. name: "Macro",
  4370. height: math.unit(1500, "meters"),
  4371. default: true
  4372. },
  4373. {
  4374. name: "Megamacro",
  4375. height: math.unit(200, "km")
  4376. },
  4377. {
  4378. name: "Gigamacro",
  4379. height: math.unit(100000, "km")
  4380. }
  4381. ]
  4382. ))
  4383. characterMakers.push(() => makeCharacter(
  4384. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4385. {
  4386. front: {
  4387. height: math.unit(6, "feet"),
  4388. weight: math.unit(175, "lb"),
  4389. name: "Front",
  4390. image: {
  4391. source: "./media/characters/mirova/front.svg",
  4392. extra: 3334 / 3071,
  4393. bottom: 42 / 3375.6
  4394. }
  4395. }
  4396. },
  4397. [
  4398. {
  4399. name: "Small",
  4400. height: math.unit(5, "meters")
  4401. },
  4402. {
  4403. name: "Macro",
  4404. height: math.unit(900, "meters"),
  4405. default: true
  4406. },
  4407. {
  4408. name: "Megamacro",
  4409. height: math.unit(135, "km")
  4410. },
  4411. {
  4412. name: "Gigamacro",
  4413. height: math.unit(20000, "km")
  4414. }
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4419. {
  4420. side: {
  4421. height: math.unit(28.35, "feet"),
  4422. weight: math.unit(99.75, "tons"),
  4423. name: "Side",
  4424. image: {
  4425. source: "./media/characters/asana-mech/side.svg",
  4426. extra: 923 / 699,
  4427. bottom: 50 / 975
  4428. }
  4429. },
  4430. chaingun: {
  4431. height: math.unit(7, "feet"),
  4432. weight: math.unit(2400, "lb"),
  4433. name: "Chaingun",
  4434. image: {
  4435. source: "./media/characters/asana-mech/chaingun.svg"
  4436. }
  4437. },
  4438. laser: {
  4439. height: math.unit(7.12, "feet"),
  4440. weight: math.unit(2000, "lb"),
  4441. name: "Laser",
  4442. image: {
  4443. source: "./media/characters/asana-mech/laser.svg"
  4444. }
  4445. },
  4446. },
  4447. [
  4448. {
  4449. name: "Normal",
  4450. height: math.unit(28.35, "feet"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Macro",
  4455. height: math.unit(2500, "feet")
  4456. },
  4457. {
  4458. name: "Megamacro",
  4459. height: math.unit(25, "miles")
  4460. },
  4461. {
  4462. name: "Examacro",
  4463. height: math.unit(6e8, "lightyears")
  4464. },
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4469. {
  4470. front: {
  4471. height: math.unit(5, "meters"),
  4472. weight: math.unit(1000, "kg"),
  4473. name: "Front",
  4474. image: {
  4475. source: "./media/characters/asche/front.svg",
  4476. extra: 1258 / 1190,
  4477. bottom: 47 / 1305
  4478. }
  4479. },
  4480. frontUnderwear: {
  4481. height: math.unit(5, "meters"),
  4482. weight: math.unit(1000, "kg"),
  4483. name: "Front (Underwear)",
  4484. image: {
  4485. source: "./media/characters/asche/front-underwear.svg",
  4486. extra: 1258 / 1190,
  4487. bottom: 47 / 1305
  4488. }
  4489. },
  4490. frontDressed: {
  4491. height: math.unit(5, "meters"),
  4492. weight: math.unit(1000, "kg"),
  4493. name: "Front (Dressed)",
  4494. image: {
  4495. source: "./media/characters/asche/front-dressed.svg",
  4496. extra: 1258 / 1190,
  4497. bottom: 47 / 1305
  4498. }
  4499. },
  4500. frontArmor: {
  4501. height: math.unit(5, "meters"),
  4502. weight: math.unit(1000, "kg"),
  4503. name: "Front (Armored)",
  4504. image: {
  4505. source: "./media/characters/asche/front-armored.svg",
  4506. extra: 1374 / 1308,
  4507. bottom: 23 / 1397
  4508. }
  4509. },
  4510. mp724: {
  4511. height: math.unit(0.96, "meters"),
  4512. weight: math.unit(38, "kg"),
  4513. name: "H&K MP724",
  4514. image: {
  4515. source: "./media/characters/asche/h&k-mp724.svg"
  4516. }
  4517. },
  4518. side: {
  4519. height: math.unit(5, "meters"),
  4520. weight: math.unit(1000, "kg"),
  4521. name: "Side",
  4522. image: {
  4523. source: "./media/characters/asche/side.svg",
  4524. extra: 1717 / 1609,
  4525. bottom: 0.005
  4526. }
  4527. },
  4528. back: {
  4529. height: math.unit(5, "meters"),
  4530. weight: math.unit(1000, "kg"),
  4531. name: "Back",
  4532. image: {
  4533. source: "./media/characters/asche/back.svg",
  4534. extra: 1570 / 1501
  4535. }
  4536. },
  4537. },
  4538. [
  4539. {
  4540. name: "DEFCON 5",
  4541. height: math.unit(5, "meters")
  4542. },
  4543. {
  4544. name: "DEFCON 4",
  4545. height: math.unit(500, "meters"),
  4546. default: true
  4547. },
  4548. {
  4549. name: "DEFCON 3",
  4550. height: math.unit(5, "km")
  4551. },
  4552. {
  4553. name: "DEFCON 2",
  4554. height: math.unit(500, "km")
  4555. },
  4556. {
  4557. name: "DEFCON 1",
  4558. height: math.unit(500000, "km")
  4559. },
  4560. {
  4561. name: "DEFCON 0",
  4562. height: math.unit(3, "gigaparsecs")
  4563. },
  4564. ]
  4565. ))
  4566. characterMakers.push(() => makeCharacter(
  4567. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4568. {
  4569. front: {
  4570. height: math.unit(2, "meters"),
  4571. weight: math.unit(76, "kg"),
  4572. name: "Front",
  4573. image: {
  4574. source: "./media/characters/gale/front.svg"
  4575. }
  4576. },
  4577. frontAlt1: {
  4578. height: math.unit(2, "meters"),
  4579. weight: math.unit(76, "kg"),
  4580. name: "Front (Alt 1)",
  4581. image: {
  4582. source: "./media/characters/gale/front-alt-1.svg"
  4583. }
  4584. },
  4585. frontAlt2: {
  4586. height: math.unit(2, "meters"),
  4587. weight: math.unit(76, "kg"),
  4588. name: "Front (Alt 2)",
  4589. image: {
  4590. source: "./media/characters/gale/front-alt-2.svg"
  4591. }
  4592. },
  4593. },
  4594. [
  4595. {
  4596. name: "Normal",
  4597. height: math.unit(7, "feet")
  4598. },
  4599. {
  4600. name: "Macro",
  4601. height: math.unit(150, "feet"),
  4602. default: true
  4603. },
  4604. {
  4605. name: "Macro+",
  4606. height: math.unit(300, "feet")
  4607. },
  4608. ]
  4609. ))
  4610. characterMakers.push(() => makeCharacter(
  4611. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4612. {
  4613. front: {
  4614. height: math.unit(5 + 10/12, "feet"),
  4615. weight: math.unit(67, "kg"),
  4616. name: "Front",
  4617. image: {
  4618. source: "./media/characters/draylen/front.svg",
  4619. extra: 832/777,
  4620. bottom: 85/917
  4621. }
  4622. }
  4623. },
  4624. [
  4625. {
  4626. name: "Normal",
  4627. height: math.unit(5 + 10/12, "feet")
  4628. },
  4629. {
  4630. name: "Macro",
  4631. height: math.unit(150, "feet"),
  4632. default: true
  4633. }
  4634. ]
  4635. ))
  4636. characterMakers.push(() => makeCharacter(
  4637. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4638. {
  4639. front: {
  4640. height: math.unit(7 + 9 / 12, "feet"),
  4641. weight: math.unit(379, "lbs"),
  4642. name: "Front",
  4643. image: {
  4644. source: "./media/characters/chez/front.svg"
  4645. }
  4646. },
  4647. side: {
  4648. height: math.unit(7 + 9 / 12, "feet"),
  4649. weight: math.unit(379, "lbs"),
  4650. name: "Side",
  4651. image: {
  4652. source: "./media/characters/chez/side.svg"
  4653. }
  4654. }
  4655. },
  4656. [
  4657. {
  4658. name: "Normal",
  4659. height: math.unit(7 + 9 / 12, "feet"),
  4660. default: true
  4661. },
  4662. {
  4663. name: "God King",
  4664. height: math.unit(9750000, "meters")
  4665. }
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(6, "feet"),
  4673. weight: math.unit(275, "lbs"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/kaylum/front.svg",
  4677. bottom: 0.01,
  4678. extra: 1166 / 1031
  4679. }
  4680. },
  4681. frontWingless: {
  4682. height: math.unit(6, "feet"),
  4683. weight: math.unit(275, "lbs"),
  4684. name: "Front (Wingless)",
  4685. image: {
  4686. source: "./media/characters/kaylum/front-wingless.svg",
  4687. bottom: 0.01,
  4688. extra: 1117 / 1031
  4689. }
  4690. }
  4691. },
  4692. [
  4693. {
  4694. name: "Normal",
  4695. height: math.unit(3.05, "meters")
  4696. },
  4697. {
  4698. name: "Master",
  4699. height: math.unit(5.5, "meters")
  4700. },
  4701. {
  4702. name: "Rampage",
  4703. height: math.unit(19, "meters")
  4704. },
  4705. {
  4706. name: "Macro Lite",
  4707. height: math.unit(37, "meters")
  4708. },
  4709. {
  4710. name: "Hyper Predator",
  4711. height: math.unit(61, "meters")
  4712. },
  4713. {
  4714. name: "Macro",
  4715. height: math.unit(138, "meters"),
  4716. default: true
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(6, "feet"),
  4725. weight: math.unit(150, "lbs"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/geta/front.svg"
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Micro",
  4735. height: math.unit(3, "inches"),
  4736. default: true
  4737. },
  4738. {
  4739. name: "Normal",
  4740. height: math.unit(5 + 5 / 12, "feet")
  4741. }
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(6, "feet"),
  4749. weight: math.unit(300, "lbs"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/tyrnn/front.svg"
  4753. }
  4754. }
  4755. },
  4756. [
  4757. {
  4758. name: "Main Height",
  4759. height: math.unit(355, "feet"),
  4760. default: true
  4761. },
  4762. {
  4763. name: "Fave. Height",
  4764. height: math.unit(2400, "feet")
  4765. }
  4766. ]
  4767. ))
  4768. characterMakers.push(() => makeCharacter(
  4769. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4770. {
  4771. front: {
  4772. height: math.unit(6, "feet"),
  4773. weight: math.unit(300, "lbs"),
  4774. name: "Front",
  4775. image: {
  4776. source: "./media/characters/appledectomy/front.svg"
  4777. }
  4778. }
  4779. },
  4780. [
  4781. {
  4782. name: "Macro",
  4783. height: math.unit(2500, "feet")
  4784. },
  4785. {
  4786. name: "Megamacro",
  4787. height: math.unit(50, "miles"),
  4788. default: true
  4789. },
  4790. {
  4791. name: "Gigamacro",
  4792. height: math.unit(5000, "miles")
  4793. },
  4794. {
  4795. name: "Teramacro",
  4796. height: math.unit(250000, "miles")
  4797. },
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4802. {
  4803. front: {
  4804. height: math.unit(6, "feet"),
  4805. weight: math.unit(200, "lbs"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/vulpes/front.svg",
  4809. extra: 573 / 543,
  4810. bottom: 0.033
  4811. }
  4812. },
  4813. side: {
  4814. height: math.unit(6, "feet"),
  4815. weight: math.unit(200, "lbs"),
  4816. name: "Side",
  4817. image: {
  4818. source: "./media/characters/vulpes/side.svg",
  4819. extra: 577 / 549,
  4820. bottom: 11 / 588
  4821. }
  4822. },
  4823. back: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(200, "lbs"),
  4826. name: "Back",
  4827. image: {
  4828. source: "./media/characters/vulpes/back.svg",
  4829. extra: 573 / 549,
  4830. bottom: 20 / 593
  4831. }
  4832. },
  4833. feet: {
  4834. height: math.unit(1.276, "feet"),
  4835. name: "Feet",
  4836. image: {
  4837. source: "./media/characters/vulpes/feet.svg"
  4838. }
  4839. },
  4840. maw: {
  4841. height: math.unit(1.18, "feet"),
  4842. name: "Maw",
  4843. image: {
  4844. source: "./media/characters/vulpes/maw.svg"
  4845. }
  4846. },
  4847. },
  4848. [
  4849. {
  4850. name: "Micro",
  4851. height: math.unit(2, "inches")
  4852. },
  4853. {
  4854. name: "Normal",
  4855. height: math.unit(6.3, "feet")
  4856. },
  4857. {
  4858. name: "Macro",
  4859. height: math.unit(850, "feet")
  4860. },
  4861. {
  4862. name: "Megamacro",
  4863. height: math.unit(7500, "feet"),
  4864. default: true
  4865. },
  4866. {
  4867. name: "Gigamacro",
  4868. height: math.unit(570000, "miles")
  4869. }
  4870. ]
  4871. ))
  4872. characterMakers.push(() => makeCharacter(
  4873. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4874. {
  4875. front: {
  4876. height: math.unit(6, "feet"),
  4877. weight: math.unit(210, "lbs"),
  4878. name: "Front",
  4879. image: {
  4880. source: "./media/characters/rain-fallen/front.svg"
  4881. }
  4882. },
  4883. side: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(210, "lbs"),
  4886. name: "Side",
  4887. image: {
  4888. source: "./media/characters/rain-fallen/side.svg"
  4889. }
  4890. },
  4891. back: {
  4892. height: math.unit(6, "feet"),
  4893. weight: math.unit(210, "lbs"),
  4894. name: "Back",
  4895. image: {
  4896. source: "./media/characters/rain-fallen/back.svg"
  4897. }
  4898. },
  4899. feral: {
  4900. height: math.unit(9, "feet"),
  4901. weight: math.unit(700, "lbs"),
  4902. name: "Feral",
  4903. image: {
  4904. source: "./media/characters/rain-fallen/feral.svg"
  4905. }
  4906. },
  4907. },
  4908. [
  4909. {
  4910. name: "Meddling with Mortals",
  4911. height: math.unit(8 + 8/12, "feet")
  4912. },
  4913. {
  4914. name: "Normal",
  4915. height: math.unit(5, "meter")
  4916. },
  4917. {
  4918. name: "Macro",
  4919. height: math.unit(150, "meter"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Megamacro",
  4924. height: math.unit(278e6, "meter")
  4925. },
  4926. {
  4927. name: "Gigamacro",
  4928. height: math.unit(2e9, "meter")
  4929. },
  4930. {
  4931. name: "Teramacro",
  4932. height: math.unit(8e12, "meter")
  4933. },
  4934. {
  4935. name: "Devourer",
  4936. height: math.unit(14, "zettameters")
  4937. },
  4938. {
  4939. name: "Scarlet King",
  4940. height: math.unit(18, "yottameters")
  4941. },
  4942. {
  4943. name: "Void",
  4944. height: math.unit(1e88, "yottameters")
  4945. }
  4946. ]
  4947. ))
  4948. characterMakers.push(() => makeCharacter(
  4949. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4950. {
  4951. standing: {
  4952. height: math.unit(6, "feet"),
  4953. weight: math.unit(180, "lbs"),
  4954. name: "Standing",
  4955. image: {
  4956. source: "./media/characters/zaakira/standing.svg",
  4957. extra: 1599/1504,
  4958. bottom: 39/1638
  4959. }
  4960. },
  4961. laying: {
  4962. height: math.unit(3, "feet"),
  4963. weight: math.unit(180, "lbs"),
  4964. name: "Laying",
  4965. image: {
  4966. source: "./media/characters/zaakira/laying.svg"
  4967. }
  4968. },
  4969. },
  4970. [
  4971. {
  4972. name: "Normal",
  4973. height: math.unit(12, "feet")
  4974. },
  4975. {
  4976. name: "Macro",
  4977. height: math.unit(279, "feet"),
  4978. default: true
  4979. }
  4980. ]
  4981. ))
  4982. characterMakers.push(() => makeCharacter(
  4983. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4984. {
  4985. femSfw: {
  4986. height: math.unit(8, "feet"),
  4987. weight: math.unit(350, "lb"),
  4988. name: "Fem",
  4989. image: {
  4990. source: "./media/characters/sigvald/fem-sfw.svg",
  4991. extra: 182 / 164,
  4992. bottom: 8.7 / 190.5
  4993. }
  4994. },
  4995. femNsfw: {
  4996. height: math.unit(8, "feet"),
  4997. weight: math.unit(350, "lb"),
  4998. name: "Fem (NSFW)",
  4999. image: {
  5000. source: "./media/characters/sigvald/fem-nsfw.svg",
  5001. extra: 182 / 164,
  5002. bottom: 8.7 / 190.5
  5003. }
  5004. },
  5005. maleNsfw: {
  5006. height: math.unit(8, "feet"),
  5007. weight: math.unit(350, "lb"),
  5008. name: "Male (NSFW)",
  5009. image: {
  5010. source: "./media/characters/sigvald/male-nsfw.svg",
  5011. extra: 182 / 164,
  5012. bottom: 8.7 / 190.5
  5013. }
  5014. },
  5015. hermNsfw: {
  5016. height: math.unit(8, "feet"),
  5017. weight: math.unit(350, "lb"),
  5018. name: "Herm (NSFW)",
  5019. image: {
  5020. source: "./media/characters/sigvald/herm-nsfw.svg",
  5021. extra: 182 / 164,
  5022. bottom: 8.7 / 190.5
  5023. }
  5024. },
  5025. dick: {
  5026. height: math.unit(2.36, "feet"),
  5027. name: "Dick",
  5028. image: {
  5029. source: "./media/characters/sigvald/dick.svg"
  5030. }
  5031. },
  5032. eye: {
  5033. height: math.unit(0.31, "feet"),
  5034. name: "Eye",
  5035. image: {
  5036. source: "./media/characters/sigvald/eye.svg"
  5037. }
  5038. },
  5039. mouth: {
  5040. height: math.unit(0.92, "feet"),
  5041. name: "Mouth",
  5042. image: {
  5043. source: "./media/characters/sigvald/mouth.svg"
  5044. }
  5045. },
  5046. paws: {
  5047. height: math.unit(2.2, "feet"),
  5048. name: "Paws",
  5049. image: {
  5050. source: "./media/characters/sigvald/paws.svg"
  5051. }
  5052. }
  5053. },
  5054. [
  5055. {
  5056. name: "Normal",
  5057. height: math.unit(8, "feet")
  5058. },
  5059. {
  5060. name: "Large",
  5061. height: math.unit(12, "feet")
  5062. },
  5063. {
  5064. name: "Larger",
  5065. height: math.unit(20, "feet")
  5066. },
  5067. {
  5068. name: "Macro",
  5069. height: math.unit(150, "feet")
  5070. },
  5071. {
  5072. name: "Macro+",
  5073. height: math.unit(200, "feet"),
  5074. default: true
  5075. },
  5076. ]
  5077. ))
  5078. characterMakers.push(() => makeCharacter(
  5079. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5080. {
  5081. side: {
  5082. height: math.unit(12, "feet"),
  5083. weight: math.unit(2000, "kg"),
  5084. name: "Side",
  5085. image: {
  5086. source: "./media/characters/scott/side.svg",
  5087. extra: 754 / 724,
  5088. bottom: 0.069
  5089. }
  5090. },
  5091. upright: {
  5092. height: math.unit(12, "feet"),
  5093. weight: math.unit(2000, "kg"),
  5094. name: "Upright",
  5095. image: {
  5096. source: "./media/characters/scott/upright.svg",
  5097. extra: 3881 / 3722,
  5098. bottom: 0.05
  5099. }
  5100. },
  5101. },
  5102. [
  5103. {
  5104. name: "Normal",
  5105. height: math.unit(12, "feet"),
  5106. default: true
  5107. },
  5108. ]
  5109. ))
  5110. characterMakers.push(() => makeCharacter(
  5111. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5112. {
  5113. side: {
  5114. height: math.unit(8, "meters"),
  5115. weight: math.unit(84755, "lbs"),
  5116. name: "Side",
  5117. image: {
  5118. source: "./media/characters/tobias/side.svg",
  5119. extra: 1474 / 1096,
  5120. bottom: 38.9 / 1513.1235
  5121. }
  5122. },
  5123. },
  5124. [
  5125. {
  5126. name: "Normal",
  5127. height: math.unit(8, "meters"),
  5128. default: true
  5129. },
  5130. ]
  5131. ))
  5132. characterMakers.push(() => makeCharacter(
  5133. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5134. {
  5135. front: {
  5136. height: math.unit(5.5, "feet"),
  5137. weight: math.unit(400, "lbs"),
  5138. name: "Front",
  5139. image: {
  5140. source: "./media/characters/kieran/front.svg",
  5141. extra: 2694 / 2364,
  5142. bottom: 217 / 2908
  5143. }
  5144. },
  5145. side: {
  5146. height: math.unit(5.5, "feet"),
  5147. weight: math.unit(400, "lbs"),
  5148. name: "Side",
  5149. image: {
  5150. source: "./media/characters/kieran/side.svg",
  5151. extra: 875 / 777,
  5152. bottom: 84.6 / 959
  5153. }
  5154. },
  5155. },
  5156. [
  5157. {
  5158. name: "Normal",
  5159. height: math.unit(5.5, "feet"),
  5160. default: true
  5161. },
  5162. ]
  5163. ))
  5164. characterMakers.push(() => makeCharacter(
  5165. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5166. {
  5167. side: {
  5168. height: math.unit(2, "meters"),
  5169. weight: math.unit(70, "kg"),
  5170. name: "Side",
  5171. image: {
  5172. source: "./media/characters/sanya/side.svg",
  5173. bottom: 0.02,
  5174. extra: 1.02
  5175. }
  5176. },
  5177. },
  5178. [
  5179. {
  5180. name: "Small",
  5181. height: math.unit(2, "meters")
  5182. },
  5183. {
  5184. name: "Normal",
  5185. height: math.unit(3, "meters")
  5186. },
  5187. {
  5188. name: "Macro",
  5189. height: math.unit(16, "meters"),
  5190. default: true
  5191. },
  5192. ]
  5193. ))
  5194. characterMakers.push(() => makeCharacter(
  5195. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5196. {
  5197. front: {
  5198. height: math.unit(2, "meters"),
  5199. weight: math.unit(120, "kg"),
  5200. name: "Front",
  5201. image: {
  5202. source: "./media/characters/miranda/front.svg",
  5203. extra: 195 / 185,
  5204. bottom: 10.9 / 206.5
  5205. }
  5206. },
  5207. back: {
  5208. height: math.unit(2, "meters"),
  5209. weight: math.unit(120, "kg"),
  5210. name: "Back",
  5211. image: {
  5212. source: "./media/characters/miranda/back.svg",
  5213. extra: 201 / 193,
  5214. bottom: 2.3 / 203.7
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Normal",
  5221. height: math.unit(10, "feet"),
  5222. default: true
  5223. }
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "James", species: ["deer"], tags: ["anthro"] },
  5228. {
  5229. side: {
  5230. height: math.unit(2, "meters"),
  5231. weight: math.unit(100, "kg"),
  5232. name: "Front",
  5233. image: {
  5234. source: "./media/characters/james/front.svg",
  5235. extra: 10 / 8.5
  5236. }
  5237. },
  5238. },
  5239. [
  5240. {
  5241. name: "Normal",
  5242. height: math.unit(8.5, "feet"),
  5243. default: true
  5244. }
  5245. ]
  5246. ))
  5247. characterMakers.push(() => makeCharacter(
  5248. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5249. {
  5250. side: {
  5251. height: math.unit(9.5, "feet"),
  5252. weight: math.unit(2500, "lbs"),
  5253. name: "Side",
  5254. image: {
  5255. source: "./media/characters/heather/side.svg"
  5256. }
  5257. },
  5258. },
  5259. [
  5260. {
  5261. name: "Normal",
  5262. height: math.unit(9.5, "feet"),
  5263. default: true
  5264. }
  5265. ]
  5266. ))
  5267. characterMakers.push(() => makeCharacter(
  5268. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5269. {
  5270. side: {
  5271. height: math.unit(6.5, "feet"),
  5272. weight: math.unit(400, "lbs"),
  5273. name: "Side",
  5274. image: {
  5275. source: "./media/characters/lukas/side.svg",
  5276. extra: 7.25 / 6.5
  5277. }
  5278. },
  5279. },
  5280. [
  5281. {
  5282. name: "Normal",
  5283. height: math.unit(6.5, "feet"),
  5284. default: true
  5285. }
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5290. {
  5291. side: {
  5292. height: math.unit(5, "feet"),
  5293. weight: math.unit(3000, "lbs"),
  5294. name: "Side",
  5295. image: {
  5296. source: "./media/characters/louise/side.svg"
  5297. }
  5298. },
  5299. },
  5300. [
  5301. {
  5302. name: "Normal",
  5303. height: math.unit(5, "feet"),
  5304. default: true
  5305. }
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5310. {
  5311. side: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(150, "lbs"),
  5314. name: "Side",
  5315. image: {
  5316. source: "./media/characters/ramona/side.svg",
  5317. extra: 871/854,
  5318. bottom: 41/912
  5319. }
  5320. },
  5321. },
  5322. [
  5323. {
  5324. name: "Normal",
  5325. height: math.unit(5.3, "meters"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Macro",
  5330. height: math.unit(20, "stories")
  5331. },
  5332. {
  5333. name: "Macro+",
  5334. height: math.unit(50, "stories")
  5335. },
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5340. {
  5341. standing: {
  5342. height: math.unit(5.75, "feet"),
  5343. weight: math.unit(160, "lbs"),
  5344. name: "Standing",
  5345. image: {
  5346. source: "./media/characters/deerpuff/standing.svg",
  5347. extra: 682 / 624
  5348. }
  5349. },
  5350. sitting: {
  5351. height: math.unit(5.75 / 1.79, "feet"),
  5352. weight: math.unit(160, "lbs"),
  5353. name: "Sitting",
  5354. image: {
  5355. source: "./media/characters/deerpuff/sitting.svg",
  5356. bottom: 44 / 400,
  5357. extra: 1
  5358. }
  5359. },
  5360. taurLaying: {
  5361. height: math.unit(6, "feet"),
  5362. weight: math.unit(400, "lbs"),
  5363. name: "Taur (Laying)",
  5364. image: {
  5365. source: "./media/characters/deerpuff/taur-laying.svg"
  5366. }
  5367. },
  5368. },
  5369. [
  5370. {
  5371. name: "Puffball",
  5372. height: math.unit(6, "inches")
  5373. },
  5374. {
  5375. name: "Normalpuff",
  5376. height: math.unit(5.75, "feet")
  5377. },
  5378. {
  5379. name: "Macropuff",
  5380. height: math.unit(1500, "feet"),
  5381. default: true
  5382. },
  5383. {
  5384. name: "Megapuff",
  5385. height: math.unit(500, "miles")
  5386. },
  5387. {
  5388. name: "Gigapuff",
  5389. height: math.unit(250000, "miles")
  5390. },
  5391. {
  5392. name: "Omegapuff",
  5393. height: math.unit(1000, "lightyears")
  5394. },
  5395. ]
  5396. ))
  5397. characterMakers.push(() => makeCharacter(
  5398. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5399. {
  5400. stomping: {
  5401. height: math.unit(6, "feet"),
  5402. weight: math.unit(170, "lbs"),
  5403. name: "Stomping",
  5404. image: {
  5405. source: "./media/characters/vivian/stomping.svg"
  5406. }
  5407. },
  5408. sitting: {
  5409. height: math.unit(6 / 1.75, "feet"),
  5410. weight: math.unit(170, "lbs"),
  5411. name: "Sitting",
  5412. image: {
  5413. source: "./media/characters/vivian/sitting.svg",
  5414. bottom: 1 / 6.4,
  5415. extra: 1,
  5416. }
  5417. },
  5418. },
  5419. [
  5420. {
  5421. name: "Normal",
  5422. height: math.unit(7, "feet"),
  5423. default: true
  5424. },
  5425. {
  5426. name: "Macro",
  5427. height: math.unit(10, "stories")
  5428. },
  5429. {
  5430. name: "Macro+",
  5431. height: math.unit(30, "stories")
  5432. },
  5433. {
  5434. name: "Megamacro",
  5435. height: math.unit(10, "miles")
  5436. },
  5437. {
  5438. name: "Megamacro+",
  5439. height: math.unit(2750000, "meters")
  5440. },
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5445. {
  5446. front: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(160, "lbs"),
  5449. name: "Front",
  5450. image: {
  5451. source: "./media/characters/prince/front.svg",
  5452. extra: 3400 / 3000
  5453. }
  5454. },
  5455. jumping: {
  5456. height: math.unit(6, "feet"),
  5457. weight: math.unit(160, "lbs"),
  5458. name: "Jumping",
  5459. image: {
  5460. source: "./media/characters/prince/jump.svg",
  5461. extra: 2555 / 2134
  5462. }
  5463. },
  5464. },
  5465. [
  5466. {
  5467. name: "Normal",
  5468. height: math.unit(7.75, "feet"),
  5469. default: true
  5470. },
  5471. {
  5472. name: "Not cute",
  5473. height: math.unit(17, "feet")
  5474. },
  5475. {
  5476. name: "I said NOT",
  5477. height: math.unit(91, "feet")
  5478. },
  5479. {
  5480. name: "Please stop",
  5481. height: math.unit(560, "feet")
  5482. },
  5483. {
  5484. name: "What have you done",
  5485. height: math.unit(2200, "feet")
  5486. },
  5487. {
  5488. name: "Deer God",
  5489. height: math.unit(3.6, "miles")
  5490. },
  5491. ]
  5492. ))
  5493. characterMakers.push(() => makeCharacter(
  5494. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5495. {
  5496. standing: {
  5497. height: math.unit(6, "feet"),
  5498. weight: math.unit(300, "lbs"),
  5499. name: "Standing",
  5500. image: {
  5501. source: "./media/characters/psymon/standing.svg",
  5502. extra: 1888 / 1810,
  5503. bottom: 0.05
  5504. }
  5505. },
  5506. slithering: {
  5507. height: math.unit(6, "feet"),
  5508. weight: math.unit(300, "lbs"),
  5509. name: "Slithering",
  5510. image: {
  5511. source: "./media/characters/psymon/slithering.svg",
  5512. extra: 1330 / 1224
  5513. }
  5514. },
  5515. slitheringAlt: {
  5516. height: math.unit(6, "feet"),
  5517. weight: math.unit(300, "lbs"),
  5518. name: "Slithering (Alt)",
  5519. image: {
  5520. source: "./media/characters/psymon/slithering-alt.svg",
  5521. extra: 1330 / 1224
  5522. }
  5523. },
  5524. },
  5525. [
  5526. {
  5527. name: "Normal",
  5528. height: math.unit(11.25, "feet"),
  5529. default: true
  5530. },
  5531. {
  5532. name: "Large",
  5533. height: math.unit(27, "feet")
  5534. },
  5535. {
  5536. name: "Giant",
  5537. height: math.unit(87, "feet")
  5538. },
  5539. {
  5540. name: "Macro",
  5541. height: math.unit(365, "feet")
  5542. },
  5543. {
  5544. name: "Megamacro",
  5545. height: math.unit(3, "miles")
  5546. },
  5547. {
  5548. name: "World Serpent",
  5549. height: math.unit(8000, "miles")
  5550. },
  5551. ]
  5552. ))
  5553. characterMakers.push(() => makeCharacter(
  5554. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5555. {
  5556. front: {
  5557. height: math.unit(6, "feet"),
  5558. weight: math.unit(180, "lbs"),
  5559. name: "Front",
  5560. image: {
  5561. source: "./media/characters/daimos/front.svg",
  5562. extra: 4160 / 3897,
  5563. bottom: 0.021
  5564. }
  5565. }
  5566. },
  5567. [
  5568. {
  5569. name: "Normal",
  5570. height: math.unit(8, "feet"),
  5571. default: true
  5572. },
  5573. {
  5574. name: "Big Dog",
  5575. height: math.unit(22, "feet")
  5576. },
  5577. {
  5578. name: "Macro",
  5579. height: math.unit(127, "feet")
  5580. },
  5581. {
  5582. name: "Megamacro",
  5583. height: math.unit(3600, "feet")
  5584. },
  5585. ]
  5586. ))
  5587. characterMakers.push(() => makeCharacter(
  5588. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5589. {
  5590. side: {
  5591. height: math.unit(6, "feet"),
  5592. weight: math.unit(180, "lbs"),
  5593. name: "Side",
  5594. image: {
  5595. source: "./media/characters/blake/side.svg",
  5596. extra: 1212 / 1120,
  5597. bottom: 0.05
  5598. }
  5599. },
  5600. crouched: {
  5601. height: math.unit(6 * 0.57, "feet"),
  5602. weight: math.unit(180, "lbs"),
  5603. name: "Crouched",
  5604. image: {
  5605. source: "./media/characters/blake/crouched.svg",
  5606. extra: 840 / 587,
  5607. bottom: 0.04
  5608. }
  5609. },
  5610. bent: {
  5611. height: math.unit(6 * 0.75, "feet"),
  5612. weight: math.unit(180, "lbs"),
  5613. name: "Bent",
  5614. image: {
  5615. source: "./media/characters/blake/bent.svg",
  5616. extra: 592 / 544,
  5617. bottom: 0.035
  5618. }
  5619. },
  5620. },
  5621. [
  5622. {
  5623. name: "Normal",
  5624. height: math.unit(8 + 1 / 6, "feet"),
  5625. default: true
  5626. },
  5627. {
  5628. name: "Big Backside",
  5629. height: math.unit(37, "feet")
  5630. },
  5631. {
  5632. name: "Subway Shredder",
  5633. height: math.unit(72, "feet")
  5634. },
  5635. {
  5636. name: "City Carver",
  5637. height: math.unit(1675, "feet")
  5638. },
  5639. {
  5640. name: "Tectonic Tweaker",
  5641. height: math.unit(2300, "miles")
  5642. },
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5647. {
  5648. front: {
  5649. height: math.unit(6, "feet"),
  5650. weight: math.unit(180, "lbs"),
  5651. name: "Front",
  5652. image: {
  5653. source: "./media/characters/guisetto/front.svg",
  5654. extra: 856 / 817,
  5655. bottom: 0.06
  5656. }
  5657. },
  5658. airborne: {
  5659. height: math.unit(6, "feet"),
  5660. weight: math.unit(180, "lbs"),
  5661. name: "Airborne",
  5662. image: {
  5663. source: "./media/characters/guisetto/airborne.svg",
  5664. extra: 584 / 525
  5665. }
  5666. },
  5667. },
  5668. [
  5669. {
  5670. name: "Normal",
  5671. height: math.unit(10 + 11 / 12, "feet"),
  5672. default: true
  5673. },
  5674. {
  5675. name: "Large",
  5676. height: math.unit(35, "feet")
  5677. },
  5678. {
  5679. name: "Macro",
  5680. height: math.unit(475, "feet")
  5681. },
  5682. ]
  5683. ))
  5684. characterMakers.push(() => makeCharacter(
  5685. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5686. {
  5687. front: {
  5688. height: math.unit(6, "feet"),
  5689. weight: math.unit(180, "lbs"),
  5690. name: "Front",
  5691. image: {
  5692. source: "./media/characters/luxor/front.svg",
  5693. extra: 2940 / 2152
  5694. }
  5695. },
  5696. back: {
  5697. height: math.unit(6, "feet"),
  5698. weight: math.unit(180, "lbs"),
  5699. name: "Back",
  5700. image: {
  5701. source: "./media/characters/luxor/back.svg",
  5702. extra: 1083 / 960
  5703. }
  5704. },
  5705. },
  5706. [
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(5 + 5 / 6, "feet"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Lamp",
  5714. height: math.unit(50, "feet")
  5715. },
  5716. {
  5717. name: "Lämp",
  5718. height: math.unit(300, "feet")
  5719. },
  5720. {
  5721. name: "The sun is a lamp",
  5722. height: math.unit(250000, "miles")
  5723. },
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5728. {
  5729. front: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(50, "lbs"),
  5732. name: "Front",
  5733. image: {
  5734. source: "./media/characters/huoyan/front.svg"
  5735. }
  5736. },
  5737. side: {
  5738. height: math.unit(6, "feet"),
  5739. weight: math.unit(180, "lbs"),
  5740. name: "Side",
  5741. image: {
  5742. source: "./media/characters/huoyan/side.svg"
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Chef",
  5749. height: math.unit(9, "feet")
  5750. },
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(65, "feet"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Macro",
  5758. height: math.unit(780, "feet")
  5759. },
  5760. {
  5761. name: "Flaming Mountain",
  5762. height: math.unit(4.8, "miles")
  5763. },
  5764. {
  5765. name: "Celestial",
  5766. height: math.unit(765000, "miles")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5772. {
  5773. front: {
  5774. height: math.unit(5 + 3 / 4, "feet"),
  5775. weight: math.unit(120, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/tails/front.svg"
  5779. }
  5780. }
  5781. },
  5782. [
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(5 + 3 / 4, "feet"),
  5786. default: true
  5787. }
  5788. ]
  5789. ))
  5790. characterMakers.push(() => makeCharacter(
  5791. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5792. {
  5793. front: {
  5794. height: math.unit(4, "feet"),
  5795. weight: math.unit(50, "lbs"),
  5796. name: "Front",
  5797. image: {
  5798. source: "./media/characters/rainy/front.svg"
  5799. }
  5800. }
  5801. },
  5802. [
  5803. {
  5804. name: "Macro",
  5805. height: math.unit(800, "feet"),
  5806. default: true
  5807. }
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5812. {
  5813. front: {
  5814. height: math.unit(6, "feet"),
  5815. weight: math.unit(150, "lbs"),
  5816. name: "Front",
  5817. image: {
  5818. source: "./media/characters/rainier/front.svg"
  5819. }
  5820. }
  5821. },
  5822. [
  5823. {
  5824. name: "Micro",
  5825. height: math.unit(2, "mm"),
  5826. default: true
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(8 + 4/12, "feet"),
  5835. name: "Front",
  5836. image: {
  5837. source: "./media/characters/andy-renard/front.svg",
  5838. extra: 1839/1726,
  5839. bottom: 134/1973
  5840. }
  5841. },
  5842. back: {
  5843. height: math.unit(8 + 4/12, "feet"),
  5844. name: "Back",
  5845. image: {
  5846. source: "./media/characters/andy-renard/back.svg",
  5847. extra: 1838/1710,
  5848. bottom: 105/1943
  5849. }
  5850. },
  5851. },
  5852. [
  5853. {
  5854. name: "Tall",
  5855. height: math.unit(8 + 4/12, "feet")
  5856. },
  5857. {
  5858. name: "Mini Macro",
  5859. height: math.unit(15, "feet"),
  5860. default: true
  5861. },
  5862. {
  5863. name: "Macro",
  5864. height: math.unit(100, "feet")
  5865. },
  5866. {
  5867. name: "Mega Macro",
  5868. height: math.unit(1000, "feet")
  5869. },
  5870. {
  5871. name: "Giga Macro",
  5872. height: math.unit(10, "miles")
  5873. },
  5874. {
  5875. name: "God Macro",
  5876. height: math.unit(1, "multiverse")
  5877. },
  5878. ]
  5879. ))
  5880. characterMakers.push(() => makeCharacter(
  5881. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5882. {
  5883. front: {
  5884. height: math.unit(6, "feet"),
  5885. weight: math.unit(210, "lbs"),
  5886. name: "Front",
  5887. image: {
  5888. source: "./media/characters/cimmaron/front-sfw.svg",
  5889. extra: 701 / 676,
  5890. bottom: 0.046
  5891. }
  5892. },
  5893. back: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(210, "lbs"),
  5896. name: "Back",
  5897. image: {
  5898. source: "./media/characters/cimmaron/back-sfw.svg",
  5899. extra: 701 / 676,
  5900. bottom: 0.046
  5901. }
  5902. },
  5903. frontNsfw: {
  5904. height: math.unit(6, "feet"),
  5905. weight: math.unit(210, "lbs"),
  5906. name: "Front (NSFW)",
  5907. image: {
  5908. source: "./media/characters/cimmaron/front-nsfw.svg",
  5909. extra: 701 / 676,
  5910. bottom: 0.046
  5911. }
  5912. },
  5913. backNsfw: {
  5914. height: math.unit(6, "feet"),
  5915. weight: math.unit(210, "lbs"),
  5916. name: "Back (NSFW)",
  5917. image: {
  5918. source: "./media/characters/cimmaron/back-nsfw.svg",
  5919. extra: 701 / 676,
  5920. bottom: 0.046
  5921. }
  5922. },
  5923. dick: {
  5924. height: math.unit(1.714, "feet"),
  5925. name: "Dick",
  5926. image: {
  5927. source: "./media/characters/cimmaron/dick.svg"
  5928. }
  5929. },
  5930. },
  5931. [
  5932. {
  5933. name: "Normal",
  5934. height: math.unit(6, "feet"),
  5935. default: true
  5936. },
  5937. {
  5938. name: "Macro Mayor",
  5939. height: math.unit(350, "meters")
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5945. {
  5946. front: {
  5947. height: math.unit(6, "feet"),
  5948. weight: math.unit(200, "lbs"),
  5949. name: "Front",
  5950. image: {
  5951. source: "./media/characters/akari/front.svg",
  5952. extra: 962 / 901,
  5953. bottom: 0.04
  5954. }
  5955. }
  5956. },
  5957. [
  5958. {
  5959. name: "Micro",
  5960. height: math.unit(5, "inches"),
  5961. default: true
  5962. },
  5963. {
  5964. name: "Normal",
  5965. height: math.unit(7, "feet")
  5966. },
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5971. {
  5972. front: {
  5973. height: math.unit(6, "feet"),
  5974. weight: math.unit(140, "lbs"),
  5975. name: "Front",
  5976. image: {
  5977. source: "./media/characters/cynosura/front.svg",
  5978. extra: 896 / 847
  5979. }
  5980. },
  5981. back: {
  5982. height: math.unit(6, "feet"),
  5983. weight: math.unit(140, "lbs"),
  5984. name: "Back",
  5985. image: {
  5986. source: "./media/characters/cynosura/back.svg",
  5987. extra: 1365 / 1250
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Micro",
  5994. height: math.unit(4, "inches")
  5995. },
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(5.75, "feet"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Tall",
  6003. height: math.unit(10, "feet")
  6004. },
  6005. {
  6006. name: "Big",
  6007. height: math.unit(20, "feet")
  6008. },
  6009. {
  6010. name: "Macro",
  6011. height: math.unit(50, "feet")
  6012. },
  6013. ]
  6014. ))
  6015. characterMakers.push(() => makeCharacter(
  6016. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6017. {
  6018. front: {
  6019. height: math.unit(13 + 2/12, "feet"),
  6020. weight: math.unit(800, "kg"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/gin/front.svg",
  6024. extra: 1312/1191,
  6025. bottom: 45/1357
  6026. }
  6027. },
  6028. mouth: {
  6029. height: math.unit(2.39 * 1.8, "feet"),
  6030. name: "Mouth",
  6031. image: {
  6032. source: "./media/characters/gin/mouth.svg"
  6033. }
  6034. },
  6035. hand: {
  6036. height: math.unit(1.57 * 2.19, "feet"),
  6037. name: "Hand",
  6038. image: {
  6039. source: "./media/characters/gin/hand.svg"
  6040. }
  6041. },
  6042. foot: {
  6043. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6044. name: "Foot",
  6045. image: {
  6046. source: "./media/characters/gin/foot.svg"
  6047. }
  6048. },
  6049. sole: {
  6050. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6051. name: "Sole",
  6052. image: {
  6053. source: "./media/characters/gin/sole.svg"
  6054. }
  6055. },
  6056. },
  6057. [
  6058. {
  6059. name: "Very Small",
  6060. height: math.unit(13 + 2 / 12, "feet")
  6061. },
  6062. {
  6063. name: "Micro",
  6064. height: math.unit(600, "miles")
  6065. },
  6066. {
  6067. name: "Regular",
  6068. height: math.unit(20, "earths"),
  6069. default: true
  6070. },
  6071. {
  6072. name: "Macro",
  6073. height: math.unit(2.2, "solarradii")
  6074. },
  6075. {
  6076. name: "Teramacro",
  6077. height: math.unit(1.2, "galaxies")
  6078. },
  6079. {
  6080. name: "Omegamacro",
  6081. height: math.unit(200, "universes")
  6082. },
  6083. ]
  6084. ))
  6085. characterMakers.push(() => makeCharacter(
  6086. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6087. {
  6088. front: {
  6089. height: math.unit(6 + 1 / 6, "feet"),
  6090. weight: math.unit(178, "lbs"),
  6091. name: "Front",
  6092. image: {
  6093. source: "./media/characters/guy/front.svg"
  6094. }
  6095. }
  6096. },
  6097. [
  6098. {
  6099. name: "Normal",
  6100. height: math.unit(6 + 1 / 6, "feet"),
  6101. default: true
  6102. },
  6103. {
  6104. name: "Large",
  6105. height: math.unit(25 + 7 / 12, "feet")
  6106. },
  6107. {
  6108. name: "Macro",
  6109. height: math.unit(60 + 9 / 12, "feet")
  6110. },
  6111. {
  6112. name: "Macro+",
  6113. height: math.unit(246, "feet")
  6114. },
  6115. {
  6116. name: "Macro++",
  6117. height: math.unit(878, "feet")
  6118. }
  6119. ]
  6120. ))
  6121. characterMakers.push(() => makeCharacter(
  6122. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6123. {
  6124. front: {
  6125. height: math.unit(9, "feet"),
  6126. weight: math.unit(800, "lbs"),
  6127. name: "Front",
  6128. image: {
  6129. source: "./media/characters/tiberius/front.svg",
  6130. extra: 2295 / 2071
  6131. }
  6132. },
  6133. back: {
  6134. height: math.unit(9, "feet"),
  6135. weight: math.unit(800, "lbs"),
  6136. name: "Back",
  6137. image: {
  6138. source: "./media/characters/tiberius/back.svg",
  6139. extra: 2373 / 2160
  6140. }
  6141. },
  6142. },
  6143. [
  6144. {
  6145. name: "Normal",
  6146. height: math.unit(9, "feet"),
  6147. default: true
  6148. }
  6149. ]
  6150. ))
  6151. characterMakers.push(() => makeCharacter(
  6152. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6153. {
  6154. front: {
  6155. height: math.unit(6, "feet"),
  6156. weight: math.unit(600, "lbs"),
  6157. name: "Front",
  6158. image: {
  6159. source: "./media/characters/surgo/front.svg",
  6160. extra: 3591 / 2227
  6161. }
  6162. },
  6163. back: {
  6164. height: math.unit(6, "feet"),
  6165. weight: math.unit(600, "lbs"),
  6166. name: "Back",
  6167. image: {
  6168. source: "./media/characters/surgo/back.svg",
  6169. extra: 3557 / 2228
  6170. }
  6171. },
  6172. laying: {
  6173. height: math.unit(6 * 0.85, "feet"),
  6174. weight: math.unit(600, "lbs"),
  6175. name: "Laying",
  6176. image: {
  6177. source: "./media/characters/surgo/laying.svg"
  6178. }
  6179. },
  6180. },
  6181. [
  6182. {
  6183. name: "Normal",
  6184. height: math.unit(6, "feet"),
  6185. default: true
  6186. }
  6187. ]
  6188. ))
  6189. characterMakers.push(() => makeCharacter(
  6190. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6191. {
  6192. side: {
  6193. height: math.unit(6, "feet"),
  6194. weight: math.unit(150, "lbs"),
  6195. name: "Side",
  6196. image: {
  6197. source: "./media/characters/cibus/side.svg",
  6198. extra: 800 / 400
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(6, "feet"),
  6206. default: true
  6207. }
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6212. {
  6213. front: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(240, "lbs"),
  6216. name: "Front",
  6217. image: {
  6218. source: "./media/characters/nibbles/front.svg"
  6219. }
  6220. },
  6221. side: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(240, "lbs"),
  6224. name: "Side",
  6225. image: {
  6226. source: "./media/characters/nibbles/side.svg"
  6227. }
  6228. },
  6229. },
  6230. [
  6231. {
  6232. name: "Normal",
  6233. height: math.unit(9, "feet"),
  6234. default: true
  6235. }
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6240. {
  6241. side: {
  6242. height: math.unit(5 + 1 / 6, "feet"),
  6243. weight: math.unit(130, "lbs"),
  6244. name: "Side",
  6245. image: {
  6246. source: "./media/characters/rikky/side.svg",
  6247. extra: 851 / 801
  6248. }
  6249. },
  6250. },
  6251. [
  6252. {
  6253. name: "Normal",
  6254. height: math.unit(5 + 1 / 6, "feet")
  6255. },
  6256. {
  6257. name: "Macro",
  6258. height: math.unit(152, "feet"),
  6259. default: true
  6260. },
  6261. {
  6262. name: "Megamacro",
  6263. height: math.unit(7, "miles")
  6264. }
  6265. ]
  6266. ))
  6267. characterMakers.push(() => makeCharacter(
  6268. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6269. {
  6270. side: {
  6271. height: math.unit(370, "cm"),
  6272. weight: math.unit(350, "lbs"),
  6273. name: "Side",
  6274. image: {
  6275. source: "./media/characters/malfressa/side.svg"
  6276. }
  6277. },
  6278. walking: {
  6279. height: math.unit(370, "cm"),
  6280. weight: math.unit(350, "lbs"),
  6281. name: "Walking",
  6282. image: {
  6283. source: "./media/characters/malfressa/walking.svg"
  6284. }
  6285. },
  6286. feral: {
  6287. height: math.unit(2500, "cm"),
  6288. weight: math.unit(100000, "lbs"),
  6289. name: "Feral",
  6290. image: {
  6291. source: "./media/characters/malfressa/feral.svg",
  6292. extra: 2108 / 837,
  6293. bottom: 0.02
  6294. }
  6295. },
  6296. },
  6297. [
  6298. {
  6299. name: "Normal",
  6300. height: math.unit(370, "cm")
  6301. },
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(300, "meters"),
  6305. default: true
  6306. }
  6307. ]
  6308. ))
  6309. characterMakers.push(() => makeCharacter(
  6310. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6311. {
  6312. front: {
  6313. height: math.unit(6, "feet"),
  6314. weight: math.unit(60, "kg"),
  6315. name: "Front",
  6316. image: {
  6317. source: "./media/characters/jaro/front.svg"
  6318. }
  6319. },
  6320. back: {
  6321. height: math.unit(6, "feet"),
  6322. weight: math.unit(60, "kg"),
  6323. name: "Back",
  6324. image: {
  6325. source: "./media/characters/jaro/back.svg"
  6326. }
  6327. },
  6328. },
  6329. [
  6330. {
  6331. name: "Micro",
  6332. height: math.unit(7, "inches")
  6333. },
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(5.5, "feet"),
  6337. default: true
  6338. },
  6339. {
  6340. name: "Minimacro",
  6341. height: math.unit(20, "feet")
  6342. },
  6343. {
  6344. name: "Macro",
  6345. height: math.unit(200, "meters")
  6346. }
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6351. {
  6352. front: {
  6353. height: math.unit(6, "feet"),
  6354. weight: math.unit(195, "lb"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/rogue/front.svg"
  6358. }
  6359. },
  6360. },
  6361. [
  6362. {
  6363. name: "Macro",
  6364. height: math.unit(90, "feet"),
  6365. default: true
  6366. },
  6367. ]
  6368. ))
  6369. characterMakers.push(() => makeCharacter(
  6370. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6371. {
  6372. front: {
  6373. height: math.unit(5 + 8 / 12, "feet"),
  6374. weight: math.unit(140, "lb"),
  6375. name: "Front",
  6376. image: {
  6377. source: "./media/characters/piper/front.svg",
  6378. extra: 3948/3655,
  6379. bottom: 0/3948
  6380. }
  6381. },
  6382. },
  6383. [
  6384. {
  6385. name: "Micro",
  6386. height: math.unit(2, "inches")
  6387. },
  6388. {
  6389. name: "Normal",
  6390. height: math.unit(5 + 8 / 12, "feet")
  6391. },
  6392. {
  6393. name: "Macro",
  6394. height: math.unit(250, "feet"),
  6395. default: true
  6396. },
  6397. {
  6398. name: "Megamacro",
  6399. height: math.unit(7, "miles")
  6400. },
  6401. ]
  6402. ))
  6403. characterMakers.push(() => makeCharacter(
  6404. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6405. {
  6406. front: {
  6407. height: math.unit(6, "feet"),
  6408. weight: math.unit(220, "lb"),
  6409. name: "Front",
  6410. image: {
  6411. source: "./media/characters/gemini/front.svg"
  6412. }
  6413. },
  6414. back: {
  6415. height: math.unit(6, "feet"),
  6416. weight: math.unit(220, "lb"),
  6417. name: "Back",
  6418. image: {
  6419. source: "./media/characters/gemini/back.svg"
  6420. }
  6421. },
  6422. kneeling: {
  6423. height: math.unit(6 / 1.5, "feet"),
  6424. weight: math.unit(220, "lb"),
  6425. name: "Kneeling",
  6426. image: {
  6427. source: "./media/characters/gemini/kneeling.svg",
  6428. bottom: 0.02
  6429. }
  6430. },
  6431. },
  6432. [
  6433. {
  6434. name: "Macro",
  6435. height: math.unit(300, "meters"),
  6436. default: true
  6437. },
  6438. {
  6439. name: "Megamacro",
  6440. height: math.unit(6900, "meters")
  6441. },
  6442. ]
  6443. ))
  6444. characterMakers.push(() => makeCharacter(
  6445. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6446. {
  6447. anthro: {
  6448. height: math.unit(2.35, "meters"),
  6449. weight: math.unit(73, "kg"),
  6450. name: "Anthro",
  6451. image: {
  6452. source: "./media/characters/alicia/anthro.svg",
  6453. extra: 2571 / 2385,
  6454. bottom: 75 / 2648
  6455. }
  6456. },
  6457. paw: {
  6458. height: math.unit(1.32, "feet"),
  6459. name: "Paw",
  6460. image: {
  6461. source: "./media/characters/alicia/paw.svg"
  6462. }
  6463. },
  6464. feral: {
  6465. height: math.unit(1.69, "meters"),
  6466. weight: math.unit(73, "kg"),
  6467. name: "Feral",
  6468. image: {
  6469. source: "./media/characters/alicia/feral.svg",
  6470. extra: 2123 / 1715,
  6471. bottom: 222 / 2349
  6472. }
  6473. },
  6474. },
  6475. [
  6476. {
  6477. name: "Normal",
  6478. height: math.unit(2.35, "meters")
  6479. },
  6480. {
  6481. name: "Macro",
  6482. height: math.unit(60, "meters"),
  6483. default: true
  6484. },
  6485. {
  6486. name: "Megamacro",
  6487. height: math.unit(10000, "kilometers")
  6488. },
  6489. ]
  6490. ))
  6491. characterMakers.push(() => makeCharacter(
  6492. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6493. {
  6494. front: {
  6495. height: math.unit(7, "feet"),
  6496. weight: math.unit(250, "lbs"),
  6497. name: "Front",
  6498. image: {
  6499. source: "./media/characters/archy/front.svg"
  6500. }
  6501. }
  6502. },
  6503. [
  6504. {
  6505. name: "Micro",
  6506. height: math.unit(1, "inch")
  6507. },
  6508. {
  6509. name: "Shorty",
  6510. height: math.unit(5, "feet")
  6511. },
  6512. {
  6513. name: "Normal",
  6514. height: math.unit(7, "feet")
  6515. },
  6516. {
  6517. name: "Macro",
  6518. height: math.unit(600, "meters"),
  6519. default: true
  6520. },
  6521. {
  6522. name: "Megamacro",
  6523. height: math.unit(1, "mile")
  6524. },
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6529. {
  6530. front: {
  6531. height: math.unit(1.65, "meters"),
  6532. weight: math.unit(74, "kg"),
  6533. name: "Front",
  6534. image: {
  6535. source: "./media/characters/berri/front.svg",
  6536. extra: 857 / 837,
  6537. bottom: 18 / 877
  6538. }
  6539. },
  6540. bum: {
  6541. height: math.unit(1.46, "feet"),
  6542. name: "Bum",
  6543. image: {
  6544. source: "./media/characters/berri/bum.svg"
  6545. }
  6546. },
  6547. mouth: {
  6548. height: math.unit(0.44, "feet"),
  6549. name: "Mouth",
  6550. image: {
  6551. source: "./media/characters/berri/mouth.svg"
  6552. }
  6553. },
  6554. paw: {
  6555. height: math.unit(0.826, "feet"),
  6556. name: "Paw",
  6557. image: {
  6558. source: "./media/characters/berri/paw.svg"
  6559. }
  6560. },
  6561. },
  6562. [
  6563. {
  6564. name: "Normal",
  6565. height: math.unit(1.65, "meters")
  6566. },
  6567. {
  6568. name: "Macro",
  6569. height: math.unit(60, "m"),
  6570. default: true
  6571. },
  6572. {
  6573. name: "Megamacro",
  6574. height: math.unit(9.213, "km")
  6575. },
  6576. {
  6577. name: "Planet Eater",
  6578. height: math.unit(489, "megameters")
  6579. },
  6580. {
  6581. name: "Teramacro",
  6582. height: math.unit(2471635000000, "meters")
  6583. },
  6584. {
  6585. name: "Examacro",
  6586. height: math.unit(8.0624e+26, "meters")
  6587. }
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(1.72, "meters"),
  6595. weight: math.unit(68, "kg"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/lexi/front.svg"
  6599. }
  6600. }
  6601. },
  6602. [
  6603. {
  6604. name: "Very Smol",
  6605. height: math.unit(10, "mm")
  6606. },
  6607. {
  6608. name: "Micro",
  6609. height: math.unit(6.8, "cm"),
  6610. default: true
  6611. },
  6612. {
  6613. name: "Normal",
  6614. height: math.unit(1.72, "m")
  6615. }
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6620. {
  6621. front: {
  6622. height: math.unit(1.69, "meters"),
  6623. weight: math.unit(68, "kg"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/martin/front.svg",
  6627. extra: 596 / 581
  6628. }
  6629. }
  6630. },
  6631. [
  6632. {
  6633. name: "Micro",
  6634. height: math.unit(6.85, "cm"),
  6635. default: true
  6636. },
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(1.69, "m")
  6640. }
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6645. {
  6646. front: {
  6647. height: math.unit(1.69, "meters"),
  6648. weight: math.unit(68, "kg"),
  6649. name: "Front",
  6650. image: {
  6651. source: "./media/characters/juno/front.svg"
  6652. }
  6653. }
  6654. },
  6655. [
  6656. {
  6657. name: "Micro",
  6658. height: math.unit(7, "cm")
  6659. },
  6660. {
  6661. name: "Normal",
  6662. height: math.unit(1.89, "m")
  6663. },
  6664. {
  6665. name: "Macro",
  6666. height: math.unit(353, "meters"),
  6667. default: true
  6668. }
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(1.93, "meters"),
  6676. weight: math.unit(83, "kg"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/samantha/front.svg"
  6680. }
  6681. },
  6682. frontClothed: {
  6683. height: math.unit(1.93, "meters"),
  6684. weight: math.unit(83, "kg"),
  6685. name: "Front (Clothed)",
  6686. image: {
  6687. source: "./media/characters/samantha/front-clothed.svg"
  6688. }
  6689. },
  6690. back: {
  6691. height: math.unit(1.93, "meters"),
  6692. weight: math.unit(83, "kg"),
  6693. name: "Back",
  6694. image: {
  6695. source: "./media/characters/samantha/back.svg"
  6696. }
  6697. },
  6698. },
  6699. [
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(1.93, "m")
  6703. },
  6704. {
  6705. name: "Macro",
  6706. height: math.unit(74, "meters"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Macro+",
  6711. height: math.unit(223, "meters"),
  6712. },
  6713. {
  6714. name: "Megamacro",
  6715. height: math.unit(8381, "meters"),
  6716. },
  6717. {
  6718. name: "Megamacro+",
  6719. height: math.unit(12000, "kilometers")
  6720. },
  6721. ]
  6722. ))
  6723. characterMakers.push(() => makeCharacter(
  6724. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6725. {
  6726. front: {
  6727. height: math.unit(1.92, "meters"),
  6728. weight: math.unit(80, "kg"),
  6729. name: "Front",
  6730. image: {
  6731. source: "./media/characters/dr-clay/front.svg"
  6732. }
  6733. },
  6734. frontClothed: {
  6735. height: math.unit(1.92, "meters"),
  6736. weight: math.unit(80, "kg"),
  6737. name: "Front (Clothed)",
  6738. image: {
  6739. source: "./media/characters/dr-clay/front-clothed.svg"
  6740. }
  6741. }
  6742. },
  6743. [
  6744. {
  6745. name: "Normal",
  6746. height: math.unit(1.92, "m")
  6747. },
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(214, "meters"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Macro+",
  6755. height: math.unit(12.237, "meters"),
  6756. },
  6757. {
  6758. name: "Megamacro",
  6759. height: math.unit(557, "megameters"),
  6760. },
  6761. {
  6762. name: "Unimaginable",
  6763. height: math.unit(120e9, "lightyears")
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(2, "meters"),
  6772. weight: math.unit(80, "kg"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6776. }
  6777. }
  6778. },
  6779. [
  6780. {
  6781. name: "Teramacro",
  6782. height: math.unit(500000, "lightyears"),
  6783. default: true
  6784. },
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6789. {
  6790. crux: {
  6791. height: math.unit(2, "meters"),
  6792. weight: math.unit(150, "kg"),
  6793. name: "Crux",
  6794. image: {
  6795. source: "./media/characters/vemus/crux.svg",
  6796. extra: 1074/936,
  6797. bottom: 23/1097
  6798. }
  6799. },
  6800. skunkTanuki: {
  6801. height: math.unit(2, "meters"),
  6802. weight: math.unit(150, "kg"),
  6803. name: "Skunk-Tanuki",
  6804. image: {
  6805. source: "./media/characters/vemus/skunk-tanuki.svg",
  6806. extra: 926/893,
  6807. bottom: 20/946
  6808. }
  6809. },
  6810. },
  6811. [
  6812. {
  6813. name: "Normal",
  6814. height: math.unit(3.75, "meters"),
  6815. default: true
  6816. },
  6817. {
  6818. name: "Big",
  6819. height: math.unit(8, "meters")
  6820. },
  6821. {
  6822. name: "Macro",
  6823. height: math.unit(100, "meters")
  6824. },
  6825. {
  6826. name: "Macro+",
  6827. height: math.unit(1500, "meters")
  6828. },
  6829. {
  6830. name: "Stellar",
  6831. height: math.unit(14e8, "meters")
  6832. },
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6837. {
  6838. front: {
  6839. height: math.unit(2, "meters"),
  6840. weight: math.unit(70, "kg"),
  6841. name: "Front",
  6842. image: {
  6843. source: "./media/characters/beherit/front.svg",
  6844. extra: 1408 / 1242
  6845. }
  6846. }
  6847. },
  6848. [
  6849. {
  6850. name: "Normal",
  6851. height: math.unit(6, "feet")
  6852. },
  6853. {
  6854. name: "Lorg",
  6855. height: math.unit(25, "feet"),
  6856. default: true
  6857. },
  6858. {
  6859. name: "Lorger",
  6860. height: math.unit(75, "feet")
  6861. },
  6862. {
  6863. name: "Macro",
  6864. height: math.unit(200, "meters")
  6865. },
  6866. ]
  6867. ))
  6868. characterMakers.push(() => makeCharacter(
  6869. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6870. {
  6871. front: {
  6872. height: math.unit(2, "meters"),
  6873. weight: math.unit(150, "kg"),
  6874. name: "Front",
  6875. image: {
  6876. source: "./media/characters/everett/front.svg",
  6877. extra: 2038 / 1737,
  6878. bottom: 0.03
  6879. }
  6880. },
  6881. paw: {
  6882. height: math.unit(2 / 3.6, "meters"),
  6883. name: "Paw",
  6884. image: {
  6885. source: "./media/characters/everett/paw.svg"
  6886. }
  6887. },
  6888. },
  6889. [
  6890. {
  6891. name: "Normal",
  6892. height: math.unit(15, "feet"),
  6893. default: true
  6894. },
  6895. {
  6896. name: "Lorg",
  6897. height: math.unit(70, "feet"),
  6898. default: true
  6899. },
  6900. {
  6901. name: "Lorger",
  6902. height: math.unit(250, "feet")
  6903. },
  6904. {
  6905. name: "Macro",
  6906. height: math.unit(500, "meters")
  6907. },
  6908. ]
  6909. ))
  6910. characterMakers.push(() => makeCharacter(
  6911. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6912. {
  6913. front: {
  6914. height: math.unit(2, "meters"),
  6915. weight: math.unit(86, "kg"),
  6916. name: "Front",
  6917. image: {
  6918. source: "./media/characters/rose/front.svg",
  6919. extra: 1785/1636,
  6920. bottom: 30/1815
  6921. }
  6922. },
  6923. frontSporty: {
  6924. height: math.unit(2, "meters"),
  6925. weight: math.unit(86, "kg"),
  6926. name: "Front (Sporty)",
  6927. image: {
  6928. source: "./media/characters/rose/front-sporty.svg",
  6929. extra: 350/335,
  6930. bottom: 10/360
  6931. }
  6932. },
  6933. frontAlt: {
  6934. height: math.unit(1.6, "meters"),
  6935. weight: math.unit(86, "kg"),
  6936. name: "Front (Alt)",
  6937. image: {
  6938. source: "./media/characters/rose/front-alt.svg",
  6939. extra: 299/283,
  6940. bottom: 3/302
  6941. }
  6942. },
  6943. plush: {
  6944. height: math.unit(2, "meters"),
  6945. weight: math.unit(86/3, "kg"),
  6946. name: "Plush",
  6947. image: {
  6948. source: "./media/characters/rose/plush.svg",
  6949. extra: 361/337,
  6950. bottom: 11/372
  6951. }
  6952. },
  6953. },
  6954. [
  6955. {
  6956. name: "True Micro",
  6957. height: math.unit(9, "cm")
  6958. },
  6959. {
  6960. name: "Micro",
  6961. height: math.unit(16, "cm")
  6962. },
  6963. {
  6964. name: "Normal",
  6965. height: math.unit(1.85, "meters"),
  6966. default: true
  6967. },
  6968. {
  6969. name: "Mini-Macro",
  6970. height: math.unit(5, "meters")
  6971. },
  6972. {
  6973. name: "Macro",
  6974. height: math.unit(15, "meters")
  6975. },
  6976. {
  6977. name: "True Macro",
  6978. height: math.unit(40, "meters")
  6979. },
  6980. {
  6981. name: "City Scale",
  6982. height: math.unit(1, "km")
  6983. },
  6984. ]
  6985. ))
  6986. characterMakers.push(() => makeCharacter(
  6987. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6988. {
  6989. front: {
  6990. height: math.unit(2, "meters"),
  6991. weight: math.unit(350, "lbs"),
  6992. name: "Front",
  6993. image: {
  6994. source: "./media/characters/regal/front.svg"
  6995. }
  6996. },
  6997. back: {
  6998. height: math.unit(2, "meters"),
  6999. weight: math.unit(350, "lbs"),
  7000. name: "Back",
  7001. image: {
  7002. source: "./media/characters/regal/back.svg"
  7003. }
  7004. },
  7005. },
  7006. [
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(350, "feet"),
  7010. default: true
  7011. }
  7012. ]
  7013. ))
  7014. characterMakers.push(() => makeCharacter(
  7015. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7016. {
  7017. front: {
  7018. height: math.unit(4 + 11 / 12, "feet"),
  7019. weight: math.unit(100, "lbs"),
  7020. name: "Front",
  7021. image: {
  7022. source: "./media/characters/opal/front.svg"
  7023. }
  7024. },
  7025. frontAlt: {
  7026. height: math.unit(4 + 11 / 12, "feet"),
  7027. weight: math.unit(100, "lbs"),
  7028. name: "Front (Alt)",
  7029. image: {
  7030. source: "./media/characters/opal/front-alt.svg"
  7031. }
  7032. },
  7033. },
  7034. [
  7035. {
  7036. name: "Small",
  7037. height: math.unit(4 + 11 / 12, "feet")
  7038. },
  7039. {
  7040. name: "Normal",
  7041. height: math.unit(20, "feet"),
  7042. default: true
  7043. },
  7044. {
  7045. name: "Macro",
  7046. height: math.unit(120, "feet")
  7047. },
  7048. {
  7049. name: "Megamacro",
  7050. height: math.unit(80, "miles")
  7051. },
  7052. {
  7053. name: "True Size",
  7054. height: math.unit(100000, "lightyears")
  7055. },
  7056. ]
  7057. ))
  7058. characterMakers.push(() => makeCharacter(
  7059. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7060. {
  7061. front: {
  7062. height: math.unit(6, "feet"),
  7063. weight: math.unit(200, "lbs"),
  7064. name: "Front",
  7065. image: {
  7066. source: "./media/characters/vector-wuff/front.svg"
  7067. }
  7068. }
  7069. },
  7070. [
  7071. {
  7072. name: "Normal",
  7073. height: math.unit(2.8, "meters")
  7074. },
  7075. {
  7076. name: "Macro",
  7077. height: math.unit(450, "meters"),
  7078. default: true
  7079. },
  7080. {
  7081. name: "Megamacro",
  7082. height: math.unit(15, "kilometers")
  7083. }
  7084. ]
  7085. ))
  7086. characterMakers.push(() => makeCharacter(
  7087. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7088. {
  7089. front: {
  7090. height: math.unit(6, "feet"),
  7091. weight: math.unit(256, "lbs"),
  7092. name: "Front",
  7093. image: {
  7094. source: "./media/characters/dannik/front.svg"
  7095. }
  7096. }
  7097. },
  7098. [
  7099. {
  7100. name: "Macro",
  7101. height: math.unit(69.57, "meters"),
  7102. default: true
  7103. },
  7104. ]
  7105. ))
  7106. characterMakers.push(() => makeCharacter(
  7107. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7108. {
  7109. front: {
  7110. height: math.unit(6, "feet"),
  7111. weight: math.unit(120, "lbs"),
  7112. name: "Front",
  7113. image: {
  7114. source: "./media/characters/azura-saharah/front.svg"
  7115. }
  7116. },
  7117. back: {
  7118. height: math.unit(6, "feet"),
  7119. weight: math.unit(120, "lbs"),
  7120. name: "Back",
  7121. image: {
  7122. source: "./media/characters/azura-saharah/back.svg"
  7123. }
  7124. },
  7125. },
  7126. [
  7127. {
  7128. name: "Macro",
  7129. height: math.unit(100, "feet"),
  7130. default: true
  7131. },
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7136. {
  7137. side: {
  7138. height: math.unit(5 + 4 / 12, "feet"),
  7139. weight: math.unit(163, "lbs"),
  7140. name: "Side",
  7141. image: {
  7142. source: "./media/characters/kennedy/side.svg"
  7143. }
  7144. }
  7145. },
  7146. [
  7147. {
  7148. name: "Standard Doggo",
  7149. height: math.unit(5 + 4 / 12, "feet")
  7150. },
  7151. {
  7152. name: "Big Doggo",
  7153. height: math.unit(25 + 3 / 12, "feet"),
  7154. default: true
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7160. {
  7161. front: {
  7162. height: math.unit(5 + 5/12, "feet"),
  7163. weight: math.unit(100, "lbs"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/odios-de-lunar/front.svg",
  7167. extra: 1468/1323,
  7168. bottom: 22/1490
  7169. }
  7170. }
  7171. },
  7172. [
  7173. {
  7174. name: "Micro",
  7175. height: math.unit(3, "inches")
  7176. },
  7177. {
  7178. name: "Normal",
  7179. height: math.unit(5.5, "feet"),
  7180. default: true
  7181. },
  7182. {
  7183. name: "Macro",
  7184. height: math.unit(100, "feet")
  7185. },
  7186. ]
  7187. ))
  7188. characterMakers.push(() => makeCharacter(
  7189. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7190. {
  7191. back: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(220, "lbs"),
  7194. name: "Back",
  7195. image: {
  7196. source: "./media/characters/mandake/back.svg"
  7197. }
  7198. }
  7199. },
  7200. [
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(7, "feet"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Macro",
  7208. height: math.unit(78, "feet")
  7209. },
  7210. {
  7211. name: "Macro+",
  7212. height: math.unit(300, "meters")
  7213. },
  7214. {
  7215. name: "Macro++",
  7216. height: math.unit(2400, "feet")
  7217. },
  7218. {
  7219. name: "Megamacro",
  7220. height: math.unit(5167, "meters")
  7221. },
  7222. {
  7223. name: "Gigamacro",
  7224. height: math.unit(41769, "miles")
  7225. },
  7226. ]
  7227. ))
  7228. characterMakers.push(() => makeCharacter(
  7229. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7230. {
  7231. front: {
  7232. height: math.unit(6, "feet"),
  7233. weight: math.unit(120, "lbs"),
  7234. name: "Front",
  7235. image: {
  7236. source: "./media/characters/yozey/front.svg"
  7237. }
  7238. },
  7239. frontAlt: {
  7240. height: math.unit(6, "feet"),
  7241. weight: math.unit(120, "lbs"),
  7242. name: "Front (Alt)",
  7243. image: {
  7244. source: "./media/characters/yozey/front-alt.svg"
  7245. }
  7246. },
  7247. side: {
  7248. height: math.unit(6, "feet"),
  7249. weight: math.unit(120, "lbs"),
  7250. name: "Side",
  7251. image: {
  7252. source: "./media/characters/yozey/side.svg"
  7253. }
  7254. },
  7255. },
  7256. [
  7257. {
  7258. name: "Micro",
  7259. height: math.unit(3, "inches"),
  7260. default: true
  7261. },
  7262. {
  7263. name: "Normal",
  7264. height: math.unit(6, "feet")
  7265. }
  7266. ]
  7267. ))
  7268. characterMakers.push(() => makeCharacter(
  7269. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7270. {
  7271. front: {
  7272. height: math.unit(6, "feet"),
  7273. weight: math.unit(103, "lbs"),
  7274. name: "Front",
  7275. image: {
  7276. source: "./media/characters/valeska-voss/front.svg"
  7277. }
  7278. }
  7279. },
  7280. [
  7281. {
  7282. name: "Mini-Sized Sub",
  7283. height: math.unit(3.1, "inches")
  7284. },
  7285. {
  7286. name: "Mid-Sized Sub",
  7287. height: math.unit(6.2, "inches")
  7288. },
  7289. {
  7290. name: "Full-Sized Sub",
  7291. height: math.unit(9.3, "inches")
  7292. },
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(5 + 2 / 12, "foot"),
  7296. default: true
  7297. },
  7298. ]
  7299. ))
  7300. characterMakers.push(() => makeCharacter(
  7301. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7302. {
  7303. front: {
  7304. height: math.unit(6, "feet"),
  7305. weight: math.unit(160, "lbs"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/gene-zeta/front.svg",
  7309. extra: 3006 / 2826,
  7310. bottom: 182 / 3188
  7311. }
  7312. }
  7313. },
  7314. [
  7315. {
  7316. name: "Micro",
  7317. height: math.unit(6, "inches")
  7318. },
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(5 + 11 / 12, "foot"),
  7322. default: true
  7323. },
  7324. {
  7325. name: "Macro",
  7326. height: math.unit(140, "feet")
  7327. },
  7328. {
  7329. name: "Supercharged",
  7330. height: math.unit(2500, "feet")
  7331. },
  7332. ]
  7333. ))
  7334. characterMakers.push(() => makeCharacter(
  7335. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7336. {
  7337. front: {
  7338. height: math.unit(6, "feet"),
  7339. weight: math.unit(350, "lbs"),
  7340. name: "Front",
  7341. image: {
  7342. source: "./media/characters/razinox/front.svg",
  7343. extra: 1686 / 1548,
  7344. bottom: 28.2 / 1868
  7345. }
  7346. },
  7347. back: {
  7348. height: math.unit(6, "feet"),
  7349. weight: math.unit(350, "lbs"),
  7350. name: "Back",
  7351. image: {
  7352. source: "./media/characters/razinox/back.svg",
  7353. extra: 1660 / 1590,
  7354. bottom: 15 / 1665
  7355. }
  7356. },
  7357. },
  7358. [
  7359. {
  7360. name: "Normal",
  7361. height: math.unit(10 + 8 / 12, "foot")
  7362. },
  7363. {
  7364. name: "Minimacro",
  7365. height: math.unit(15, "foot")
  7366. },
  7367. {
  7368. name: "Macro",
  7369. height: math.unit(60, "foot"),
  7370. default: true
  7371. },
  7372. {
  7373. name: "Megamacro",
  7374. height: math.unit(5, "miles")
  7375. },
  7376. {
  7377. name: "Gigamacro",
  7378. height: math.unit(6000, "miles")
  7379. },
  7380. ]
  7381. ))
  7382. characterMakers.push(() => makeCharacter(
  7383. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7384. {
  7385. front: {
  7386. height: math.unit(6, "feet"),
  7387. weight: math.unit(150, "lbs"),
  7388. name: "Front",
  7389. image: {
  7390. source: "./media/characters/cobalt/front.svg"
  7391. }
  7392. }
  7393. },
  7394. [
  7395. {
  7396. name: "Normal",
  7397. height: math.unit(8 + 1 / 12, "foot")
  7398. },
  7399. {
  7400. name: "Macro",
  7401. height: math.unit(111, "foot"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Supracosmic",
  7406. height: math.unit(1e42, "feet")
  7407. },
  7408. ]
  7409. ))
  7410. characterMakers.push(() => makeCharacter(
  7411. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7412. {
  7413. front: {
  7414. height: math.unit(6, "feet"),
  7415. weight: math.unit(140, "lbs"),
  7416. name: "Front",
  7417. image: {
  7418. source: "./media/characters/amanda/front.svg"
  7419. }
  7420. }
  7421. },
  7422. [
  7423. {
  7424. name: "Micro",
  7425. height: math.unit(5, "inches"),
  7426. default: true
  7427. },
  7428. ]
  7429. ))
  7430. characterMakers.push(() => makeCharacter(
  7431. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7432. {
  7433. front: {
  7434. height: math.unit(2.75, "meters"),
  7435. weight: math.unit(1200, "lb"),
  7436. name: "Front",
  7437. image: {
  7438. source: "./media/characters/teal/front.svg",
  7439. extra: 2463 / 2320,
  7440. bottom: 166 / 2629
  7441. }
  7442. },
  7443. back: {
  7444. height: math.unit(2.75, "meters"),
  7445. weight: math.unit(1200, "lb"),
  7446. name: "Back",
  7447. image: {
  7448. source: "./media/characters/teal/back.svg",
  7449. extra: 2580 / 2489,
  7450. bottom: 151 / 2731
  7451. }
  7452. },
  7453. sitting: {
  7454. height: math.unit(1.9, "meters"),
  7455. weight: math.unit(1200, "lb"),
  7456. name: "Sitting",
  7457. image: {
  7458. source: "./media/characters/teal/sitting.svg",
  7459. extra: 623 / 590,
  7460. bottom: 121 / 744
  7461. }
  7462. },
  7463. standing: {
  7464. height: math.unit(2.75, "meters"),
  7465. weight: math.unit(1200, "lb"),
  7466. name: "Standing",
  7467. image: {
  7468. source: "./media/characters/teal/standing.svg",
  7469. extra: 923 / 893,
  7470. bottom: 60 / 983
  7471. }
  7472. },
  7473. stretching: {
  7474. height: math.unit(3.65, "meters"),
  7475. weight: math.unit(1200, "lb"),
  7476. name: "Stretching",
  7477. image: {
  7478. source: "./media/characters/teal/stretching.svg",
  7479. extra: 1276 / 1244,
  7480. bottom: 0 / 1276
  7481. }
  7482. },
  7483. legged: {
  7484. height: math.unit(1.3, "meters"),
  7485. weight: math.unit(100, "lb"),
  7486. name: "Legged",
  7487. image: {
  7488. source: "./media/characters/teal/legged.svg",
  7489. extra: 462 / 437,
  7490. bottom: 24 / 486
  7491. }
  7492. },
  7493. naga: {
  7494. height: math.unit(5.4, "meters"),
  7495. weight: math.unit(4000, "lb"),
  7496. name: "Naga",
  7497. image: {
  7498. source: "./media/characters/teal/naga.svg",
  7499. extra: 1902 / 1858,
  7500. bottom: 0 / 1902
  7501. }
  7502. },
  7503. hand: {
  7504. height: math.unit(0.52, "meters"),
  7505. name: "Hand",
  7506. image: {
  7507. source: "./media/characters/teal/hand.svg"
  7508. }
  7509. },
  7510. maw: {
  7511. height: math.unit(0.43, "meters"),
  7512. name: "Maw",
  7513. image: {
  7514. source: "./media/characters/teal/maw.svg"
  7515. }
  7516. },
  7517. slit: {
  7518. height: math.unit(0.25, "meters"),
  7519. name: "Slit",
  7520. image: {
  7521. source: "./media/characters/teal/slit.svg"
  7522. }
  7523. },
  7524. },
  7525. [
  7526. {
  7527. name: "Normal",
  7528. height: math.unit(2.75, "meters"),
  7529. default: true
  7530. },
  7531. {
  7532. name: "Macro",
  7533. height: math.unit(300, "feet")
  7534. },
  7535. {
  7536. name: "Macro+",
  7537. height: math.unit(2000, "feet")
  7538. },
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7543. {
  7544. frontCat: {
  7545. height: math.unit(6, "feet"),
  7546. weight: math.unit(180, "lbs"),
  7547. name: "Front (Cat)",
  7548. image: {
  7549. source: "./media/characters/ravin-amulet/front-cat.svg"
  7550. }
  7551. },
  7552. frontCatAlt: {
  7553. height: math.unit(6, "feet"),
  7554. weight: math.unit(180, "lbs"),
  7555. name: "Front (Alt, Cat)",
  7556. image: {
  7557. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7558. }
  7559. },
  7560. frontWerewolf: {
  7561. height: math.unit(6 * 1.2, "feet"),
  7562. weight: math.unit(225, "lbs"),
  7563. name: "Front (Werewolf)",
  7564. image: {
  7565. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7566. }
  7567. },
  7568. backWerewolf: {
  7569. height: math.unit(6 * 1.2, "feet"),
  7570. weight: math.unit(225, "lbs"),
  7571. name: "Back (Werewolf)",
  7572. image: {
  7573. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7574. }
  7575. },
  7576. },
  7577. [
  7578. {
  7579. name: "Nano",
  7580. height: math.unit(1, "micrometer")
  7581. },
  7582. {
  7583. name: "Micro",
  7584. height: math.unit(1, "inch")
  7585. },
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(6, "feet"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(60, "feet")
  7594. }
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7599. {
  7600. front: {
  7601. height: math.unit(6, "feet"),
  7602. weight: math.unit(165, "lbs"),
  7603. name: "Front",
  7604. image: {
  7605. source: "./media/characters/fluoresce/front.svg"
  7606. }
  7607. }
  7608. },
  7609. [
  7610. {
  7611. name: "Micro",
  7612. height: math.unit(6, "cm")
  7613. },
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(5 + 7 / 12, "feet"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(56, "feet")
  7622. },
  7623. {
  7624. name: "Megamacro",
  7625. height: math.unit(1.9, "miles")
  7626. },
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7631. {
  7632. front: {
  7633. height: math.unit(9 + 6 / 12, "feet"),
  7634. weight: math.unit(523, "lbs"),
  7635. name: "Side",
  7636. image: {
  7637. source: "./media/characters/aurora/side.svg"
  7638. }
  7639. }
  7640. },
  7641. [
  7642. {
  7643. name: "Normal",
  7644. height: math.unit(9 + 6 / 12, "feet")
  7645. },
  7646. {
  7647. name: "Macro",
  7648. height: math.unit(96, "feet"),
  7649. default: true
  7650. },
  7651. {
  7652. name: "Macro+",
  7653. height: math.unit(243, "feet")
  7654. },
  7655. ]
  7656. ))
  7657. characterMakers.push(() => makeCharacter(
  7658. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7659. {
  7660. front: {
  7661. height: math.unit(194, "cm"),
  7662. weight: math.unit(90, "kg"),
  7663. name: "Front",
  7664. image: {
  7665. source: "./media/characters/ranek/front.svg"
  7666. }
  7667. },
  7668. side: {
  7669. height: math.unit(194, "cm"),
  7670. weight: math.unit(90, "kg"),
  7671. name: "Side",
  7672. image: {
  7673. source: "./media/characters/ranek/side.svg"
  7674. }
  7675. },
  7676. back: {
  7677. height: math.unit(194, "cm"),
  7678. weight: math.unit(90, "kg"),
  7679. name: "Back",
  7680. image: {
  7681. source: "./media/characters/ranek/back.svg"
  7682. }
  7683. },
  7684. feral: {
  7685. height: math.unit(30, "cm"),
  7686. weight: math.unit(1.6, "lbs"),
  7687. name: "Feral",
  7688. image: {
  7689. source: "./media/characters/ranek/feral.svg"
  7690. }
  7691. },
  7692. },
  7693. [
  7694. {
  7695. name: "Normal",
  7696. height: math.unit(194, "cm"),
  7697. default: true
  7698. },
  7699. {
  7700. name: "Macro",
  7701. height: math.unit(100, "meters")
  7702. },
  7703. ]
  7704. ))
  7705. characterMakers.push(() => makeCharacter(
  7706. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7707. {
  7708. front: {
  7709. height: math.unit(5 + 6 / 12, "feet"),
  7710. weight: math.unit(153, "lbs"),
  7711. name: "Front",
  7712. image: {
  7713. source: "./media/characters/andrew-cooper/front.svg"
  7714. }
  7715. },
  7716. },
  7717. [
  7718. {
  7719. name: "Nano",
  7720. height: math.unit(1, "mm")
  7721. },
  7722. {
  7723. name: "Micro",
  7724. height: math.unit(2, "inches")
  7725. },
  7726. {
  7727. name: "Normal",
  7728. height: math.unit(5 + 6 / 12, "feet"),
  7729. default: true
  7730. }
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7735. {
  7736. front: {
  7737. height: math.unit(6, "feet"),
  7738. weight: math.unit(180, "lbs"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/akane-sato/front.svg",
  7742. extra: 1219 / 1140
  7743. }
  7744. },
  7745. back: {
  7746. height: math.unit(6, "feet"),
  7747. weight: math.unit(180, "lbs"),
  7748. name: "Back",
  7749. image: {
  7750. source: "./media/characters/akane-sato/back.svg",
  7751. extra: 1219 / 1170
  7752. }
  7753. },
  7754. },
  7755. [
  7756. {
  7757. name: "Normal",
  7758. height: math.unit(2.5, "meters")
  7759. },
  7760. {
  7761. name: "Macro",
  7762. height: math.unit(250, "meters"),
  7763. default: true
  7764. },
  7765. {
  7766. name: "Megamacro",
  7767. height: math.unit(25, "km")
  7768. },
  7769. ]
  7770. ))
  7771. characterMakers.push(() => makeCharacter(
  7772. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7773. {
  7774. front: {
  7775. height: math.unit(6, "feet"),
  7776. weight: math.unit(65, "kg"),
  7777. name: "Front",
  7778. image: {
  7779. source: "./media/characters/rook/front.svg",
  7780. extra: 960 / 950
  7781. }
  7782. }
  7783. },
  7784. [
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(8.8, "feet")
  7788. },
  7789. {
  7790. name: "Macro",
  7791. height: math.unit(88, "feet"),
  7792. default: true
  7793. },
  7794. {
  7795. name: "Megamacro",
  7796. height: math.unit(8, "miles")
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(12 + 2 / 12, "feet"),
  7805. weight: math.unit(808, "lbs"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/prodigy/front.svg"
  7809. }
  7810. }
  7811. },
  7812. [
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(12 + 2 / 12, "feet"),
  7816. default: true
  7817. },
  7818. {
  7819. name: "Macro",
  7820. height: math.unit(143, "feet")
  7821. },
  7822. {
  7823. name: "Macro+",
  7824. height: math.unit(400, "feet")
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(225, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/daniel/front.svg"
  7837. }
  7838. },
  7839. leaning: {
  7840. height: math.unit(6, "feet"),
  7841. weight: math.unit(225, "lbs"),
  7842. name: "Leaning",
  7843. image: {
  7844. source: "./media/characters/daniel/leaning.svg"
  7845. }
  7846. },
  7847. },
  7848. [
  7849. {
  7850. name: "Macro",
  7851. height: math.unit(1000, "feet"),
  7852. default: true
  7853. },
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7858. {
  7859. front: {
  7860. height: math.unit(6, "feet"),
  7861. weight: math.unit(88, "lbs"),
  7862. name: "Front",
  7863. image: {
  7864. source: "./media/characters/chiros/front.svg",
  7865. extra: 306 / 226
  7866. }
  7867. },
  7868. side: {
  7869. height: math.unit(6, "feet"),
  7870. weight: math.unit(88, "lbs"),
  7871. name: "Side",
  7872. image: {
  7873. source: "./media/characters/chiros/side.svg",
  7874. extra: 306 / 226
  7875. }
  7876. },
  7877. },
  7878. [
  7879. {
  7880. name: "Normal",
  7881. height: math.unit(6, "cm"),
  7882. default: true
  7883. },
  7884. ]
  7885. ))
  7886. characterMakers.push(() => makeCharacter(
  7887. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7888. {
  7889. front: {
  7890. height: math.unit(6, "feet"),
  7891. weight: math.unit(100, "lbs"),
  7892. name: "Front",
  7893. image: {
  7894. source: "./media/characters/selka/front.svg",
  7895. extra: 947 / 887
  7896. }
  7897. }
  7898. },
  7899. [
  7900. {
  7901. name: "Normal",
  7902. height: math.unit(5, "cm"),
  7903. default: true
  7904. },
  7905. ]
  7906. ))
  7907. characterMakers.push(() => makeCharacter(
  7908. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7909. {
  7910. front: {
  7911. height: math.unit(8 + 3 / 12, "feet"),
  7912. weight: math.unit(424, "lbs"),
  7913. name: "Front",
  7914. image: {
  7915. source: "./media/characters/verin/front.svg",
  7916. extra: 1845 / 1550
  7917. }
  7918. },
  7919. frontArmored: {
  7920. height: math.unit(8 + 3 / 12, "feet"),
  7921. weight: math.unit(424, "lbs"),
  7922. name: "Front (Armored)",
  7923. image: {
  7924. source: "./media/characters/verin/front-armor.svg",
  7925. extra: 1845 / 1550,
  7926. bottom: 0.01
  7927. }
  7928. },
  7929. back: {
  7930. height: math.unit(8 + 3 / 12, "feet"),
  7931. weight: math.unit(424, "lbs"),
  7932. name: "Back",
  7933. image: {
  7934. source: "./media/characters/verin/back.svg",
  7935. bottom: 0.1,
  7936. extra: 1
  7937. }
  7938. },
  7939. foot: {
  7940. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7941. name: "Foot",
  7942. image: {
  7943. source: "./media/characters/verin/foot.svg"
  7944. }
  7945. },
  7946. },
  7947. [
  7948. {
  7949. name: "Normal",
  7950. height: math.unit(8 + 3 / 12, "feet")
  7951. },
  7952. {
  7953. name: "Minimacro",
  7954. height: math.unit(21, "feet"),
  7955. default: true
  7956. },
  7957. {
  7958. name: "Macro",
  7959. height: math.unit(626, "feet")
  7960. },
  7961. ]
  7962. ))
  7963. characterMakers.push(() => makeCharacter(
  7964. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7965. {
  7966. front: {
  7967. height: math.unit(2.718, "meters"),
  7968. weight: math.unit(150, "lbs"),
  7969. name: "Front",
  7970. image: {
  7971. source: "./media/characters/sovrim-terraquian/front.svg"
  7972. }
  7973. },
  7974. back: {
  7975. height: math.unit(2.718, "meters"),
  7976. weight: math.unit(150, "lbs"),
  7977. name: "Back",
  7978. image: {
  7979. source: "./media/characters/sovrim-terraquian/back.svg"
  7980. }
  7981. }
  7982. },
  7983. [
  7984. {
  7985. name: "Micro",
  7986. height: math.unit(2, "inches")
  7987. },
  7988. {
  7989. name: "Small",
  7990. height: math.unit(1, "meter")
  7991. },
  7992. {
  7993. name: "Normal",
  7994. height: math.unit(Math.E, "meters"),
  7995. default: true
  7996. },
  7997. {
  7998. name: "Macro",
  7999. height: math.unit(20, "meters")
  8000. },
  8001. {
  8002. name: "Macro+",
  8003. height: math.unit(400, "meters")
  8004. },
  8005. ]
  8006. ))
  8007. characterMakers.push(() => makeCharacter(
  8008. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8009. {
  8010. front: {
  8011. height: math.unit(7, "feet"),
  8012. weight: math.unit(489, "lbs"),
  8013. name: "Front",
  8014. image: {
  8015. source: "./media/characters/reece-silvermane/front.svg",
  8016. bottom: 0.02,
  8017. extra: 1
  8018. }
  8019. },
  8020. },
  8021. [
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(1.5, "miles"),
  8025. default: true
  8026. },
  8027. ]
  8028. ))
  8029. characterMakers.push(() => makeCharacter(
  8030. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8031. {
  8032. front: {
  8033. height: math.unit(6, "feet"),
  8034. weight: math.unit(78, "kg"),
  8035. name: "Front",
  8036. image: {
  8037. source: "./media/characters/kane/front.svg",
  8038. extra: 978 / 899
  8039. }
  8040. },
  8041. },
  8042. [
  8043. {
  8044. name: "Normal",
  8045. height: math.unit(2.1, "m"),
  8046. },
  8047. {
  8048. name: "Macro",
  8049. height: math.unit(1, "km"),
  8050. default: true
  8051. },
  8052. ]
  8053. ))
  8054. characterMakers.push(() => makeCharacter(
  8055. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8056. {
  8057. front: {
  8058. height: math.unit(6, "feet"),
  8059. weight: math.unit(200, "kg"),
  8060. name: "Front",
  8061. image: {
  8062. source: "./media/characters/tegon/front.svg",
  8063. bottom: 0.01,
  8064. extra: 1
  8065. }
  8066. },
  8067. },
  8068. [
  8069. {
  8070. name: "Micro",
  8071. height: math.unit(1, "inch")
  8072. },
  8073. {
  8074. name: "Normal",
  8075. height: math.unit(6 + 3 / 12, "feet"),
  8076. default: true
  8077. },
  8078. {
  8079. name: "Macro",
  8080. height: math.unit(300, "feet")
  8081. },
  8082. {
  8083. name: "Megamacro",
  8084. height: math.unit(69, "miles")
  8085. },
  8086. ]
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8090. {
  8091. side: {
  8092. height: math.unit(6, "feet"),
  8093. weight: math.unit(2304, "lbs"),
  8094. name: "Side",
  8095. image: {
  8096. source: "./media/characters/arcturax/side.svg",
  8097. extra: 790 / 376,
  8098. bottom: 0.01
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Micro",
  8105. height: math.unit(2, "inch")
  8106. },
  8107. {
  8108. name: "Normal",
  8109. height: math.unit(6, "feet")
  8110. },
  8111. {
  8112. name: "Macro",
  8113. height: math.unit(39, "feet"),
  8114. default: true
  8115. },
  8116. {
  8117. name: "Megamacro",
  8118. height: math.unit(7, "miles")
  8119. },
  8120. ]
  8121. ))
  8122. characterMakers.push(() => makeCharacter(
  8123. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8124. {
  8125. front: {
  8126. height: math.unit(6, "feet"),
  8127. weight: math.unit(50, "lbs"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/sentri/front.svg",
  8131. extra: 1750 / 1570,
  8132. bottom: 0.025
  8133. }
  8134. },
  8135. frontAlt: {
  8136. height: math.unit(6, "feet"),
  8137. weight: math.unit(50, "lbs"),
  8138. name: "Front (Alt)",
  8139. image: {
  8140. source: "./media/characters/sentri/front-alt.svg",
  8141. extra: 1750 / 1570,
  8142. bottom: 0.025
  8143. }
  8144. },
  8145. },
  8146. [
  8147. {
  8148. name: "Normal",
  8149. height: math.unit(15, "feet"),
  8150. default: true
  8151. },
  8152. {
  8153. name: "Macro",
  8154. height: math.unit(2500, "feet")
  8155. }
  8156. ]
  8157. ))
  8158. characterMakers.push(() => makeCharacter(
  8159. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8160. {
  8161. front: {
  8162. height: math.unit(5 + 8 / 12, "feet"),
  8163. weight: math.unit(130, "lbs"),
  8164. name: "Front",
  8165. image: {
  8166. source: "./media/characters/corvin/front.svg",
  8167. extra: 1803 / 1629
  8168. }
  8169. },
  8170. frontShirt: {
  8171. height: math.unit(5 + 8 / 12, "feet"),
  8172. weight: math.unit(130, "lbs"),
  8173. name: "Front (Shirt)",
  8174. image: {
  8175. source: "./media/characters/corvin/front-shirt.svg",
  8176. extra: 1803 / 1629
  8177. }
  8178. },
  8179. frontPoncho: {
  8180. height: math.unit(5 + 8 / 12, "feet"),
  8181. weight: math.unit(130, "lbs"),
  8182. name: "Front (Poncho)",
  8183. image: {
  8184. source: "./media/characters/corvin/front-poncho.svg",
  8185. extra: 1803 / 1629
  8186. }
  8187. },
  8188. side: {
  8189. height: math.unit(5 + 8 / 12, "feet"),
  8190. weight: math.unit(130, "lbs"),
  8191. name: "Side",
  8192. image: {
  8193. source: "./media/characters/corvin/side.svg",
  8194. extra: 1012 / 945
  8195. }
  8196. },
  8197. back: {
  8198. height: math.unit(5 + 8 / 12, "feet"),
  8199. weight: math.unit(130, "lbs"),
  8200. name: "Back",
  8201. image: {
  8202. source: "./media/characters/corvin/back.svg",
  8203. extra: 1803 / 1629
  8204. }
  8205. },
  8206. },
  8207. [
  8208. {
  8209. name: "Micro",
  8210. height: math.unit(3, "inches")
  8211. },
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(5 + 8 / 12, "feet")
  8215. },
  8216. {
  8217. name: "Macro",
  8218. height: math.unit(300, "feet"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "Megamacro",
  8223. height: math.unit(500, "miles")
  8224. }
  8225. ]
  8226. ))
  8227. characterMakers.push(() => makeCharacter(
  8228. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8229. {
  8230. front: {
  8231. height: math.unit(6, "feet"),
  8232. weight: math.unit(135, "lbs"),
  8233. name: "Front",
  8234. image: {
  8235. source: "./media/characters/q/front.svg",
  8236. extra: 854 / 752,
  8237. bottom: 0.005
  8238. }
  8239. },
  8240. back: {
  8241. height: math.unit(6, "feet"),
  8242. weight: math.unit(130, "lbs"),
  8243. name: "Back",
  8244. image: {
  8245. source: "./media/characters/q/back.svg",
  8246. extra: 854 / 752
  8247. }
  8248. },
  8249. },
  8250. [
  8251. {
  8252. name: "Macro",
  8253. height: math.unit(90, "feet"),
  8254. default: true
  8255. },
  8256. {
  8257. name: "Extra Macro",
  8258. height: math.unit(300, "feet"),
  8259. },
  8260. {
  8261. name: "BIG WALF",
  8262. height: math.unit(750, "feet"),
  8263. },
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8268. {
  8269. front: {
  8270. height: math.unit(6, "feet"),
  8271. weight: math.unit(150, "lbs"),
  8272. name: "Front",
  8273. image: {
  8274. source: "./media/characters/carley/front.svg",
  8275. extra: 3927 / 3540,
  8276. bottom: 29.2 / 735
  8277. }
  8278. }
  8279. },
  8280. [
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(6 + 3 / 12, "feet")
  8284. },
  8285. {
  8286. name: "Macro",
  8287. height: math.unit(185, "feet"),
  8288. default: true
  8289. },
  8290. {
  8291. name: "Megamacro",
  8292. height: math.unit(8, "miles"),
  8293. },
  8294. ]
  8295. ))
  8296. characterMakers.push(() => makeCharacter(
  8297. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8298. {
  8299. front: {
  8300. height: math.unit(3, "feet"),
  8301. weight: math.unit(28, "lbs"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/citrine/front.svg"
  8305. }
  8306. }
  8307. },
  8308. [
  8309. {
  8310. name: "Normal",
  8311. height: math.unit(3, "feet"),
  8312. default: true
  8313. }
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8318. {
  8319. front: {
  8320. height: math.unit(14, "feet"),
  8321. weight: math.unit(1450, "kg"),
  8322. capacity: math.unit(15, "people"),
  8323. name: "Front",
  8324. image: {
  8325. source: "./media/characters/aura-starwind/front.svg",
  8326. extra: 1440/1327,
  8327. bottom: 11/1451
  8328. }
  8329. },
  8330. side: {
  8331. height: math.unit(14, "feet"),
  8332. weight: math.unit(1450, "kg"),
  8333. capacity: math.unit(15, "people"),
  8334. name: "Side",
  8335. image: {
  8336. source: "./media/characters/aura-starwind/side.svg",
  8337. extra: 1654 / 1497
  8338. }
  8339. },
  8340. taur: {
  8341. height: math.unit(18, "feet"),
  8342. weight: math.unit(5500, "kg"),
  8343. capacity: math.unit(50, "people"),
  8344. name: "Taur",
  8345. image: {
  8346. source: "./media/characters/aura-starwind/taur.svg",
  8347. extra: 1760 / 1650
  8348. }
  8349. },
  8350. feral: {
  8351. height: math.unit(46, "feet"),
  8352. weight: math.unit(25000, "kg"),
  8353. capacity: math.unit(120, "people"),
  8354. name: "Feral",
  8355. image: {
  8356. source: "./media/characters/aura-starwind/feral.svg"
  8357. }
  8358. },
  8359. },
  8360. [
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(14, "feet"),
  8364. default: true
  8365. },
  8366. {
  8367. name: "Macro",
  8368. height: math.unit(50, "meters")
  8369. },
  8370. {
  8371. name: "Megamacro",
  8372. height: math.unit(5000, "meters")
  8373. },
  8374. {
  8375. name: "Gigamacro",
  8376. height: math.unit(100000, "kilometers")
  8377. },
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8382. {
  8383. front: {
  8384. height: math.unit(2 + 7 / 12, "feet"),
  8385. weight: math.unit(32, "lbs"),
  8386. name: "Front",
  8387. image: {
  8388. source: "./media/characters/rivet/front.svg",
  8389. extra: 1716 / 1658,
  8390. bottom: 0.03
  8391. }
  8392. },
  8393. foot: {
  8394. height: math.unit(0.551, "feet"),
  8395. name: "Rivet's Foot",
  8396. image: {
  8397. source: "./media/characters/rivet/foot.svg"
  8398. },
  8399. rename: true
  8400. }
  8401. },
  8402. [
  8403. {
  8404. name: "Micro",
  8405. height: math.unit(1.5, "inches"),
  8406. },
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(2 + 7 / 12, "feet"),
  8410. default: true
  8411. },
  8412. {
  8413. name: "Macro",
  8414. height: math.unit(85, "feet")
  8415. },
  8416. {
  8417. name: "Megamacro",
  8418. height: math.unit(2.2, "km")
  8419. }
  8420. ]
  8421. ))
  8422. characterMakers.push(() => makeCharacter(
  8423. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8424. {
  8425. front: {
  8426. height: math.unit(5 + 9 / 12, "feet"),
  8427. weight: math.unit(150, "lbs"),
  8428. name: "Front",
  8429. image: {
  8430. source: "./media/characters/coffee/front.svg",
  8431. extra: 3666 / 3032,
  8432. bottom: 0.04
  8433. }
  8434. },
  8435. foot: {
  8436. height: math.unit(1.29, "feet"),
  8437. name: "Foot",
  8438. image: {
  8439. source: "./media/characters/coffee/foot.svg"
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Micro",
  8446. height: math.unit(2, "inches"),
  8447. },
  8448. {
  8449. name: "Normal",
  8450. height: math.unit(5 + 9 / 12, "feet"),
  8451. default: true
  8452. },
  8453. {
  8454. name: "Macro",
  8455. height: math.unit(800, "feet")
  8456. },
  8457. {
  8458. name: "Megamacro",
  8459. height: math.unit(25, "miles")
  8460. }
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8465. {
  8466. front: {
  8467. height: math.unit(6, "feet"),
  8468. weight: math.unit(200, "lbs"),
  8469. name: "Front",
  8470. image: {
  8471. source: "./media/characters/chari-gal/front.svg",
  8472. extra: 1568 / 1385,
  8473. bottom: 0.047
  8474. }
  8475. },
  8476. gigantamax: {
  8477. height: math.unit(6 * 16, "feet"),
  8478. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8479. name: "Gigantamax",
  8480. image: {
  8481. source: "./media/characters/chari-gal/gigantamax.svg",
  8482. extra: 1124 / 888,
  8483. bottom: 0.03
  8484. }
  8485. },
  8486. },
  8487. [
  8488. {
  8489. name: "Normal",
  8490. height: math.unit(5 + 7 / 12, "feet")
  8491. },
  8492. {
  8493. name: "Macro",
  8494. height: math.unit(200, "feet"),
  8495. default: true
  8496. }
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8501. {
  8502. front: {
  8503. height: math.unit(6, "feet"),
  8504. weight: math.unit(150, "lbs"),
  8505. name: "Front",
  8506. image: {
  8507. source: "./media/characters/nova/front.svg",
  8508. extra: 5000 / 4722,
  8509. bottom: 0.02
  8510. }
  8511. }
  8512. },
  8513. [
  8514. {
  8515. name: "Micro-",
  8516. height: math.unit(0.8, "inches")
  8517. },
  8518. {
  8519. name: "Micro",
  8520. height: math.unit(2, "inches"),
  8521. default: true
  8522. },
  8523. ]
  8524. ))
  8525. characterMakers.push(() => makeCharacter(
  8526. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8527. {
  8528. front: {
  8529. height: math.unit(3 + 1 / 12, "feet"),
  8530. weight: math.unit(21.7, "lbs"),
  8531. name: "Front",
  8532. image: {
  8533. source: "./media/characters/argent/front.svg",
  8534. extra: 1471 / 1331,
  8535. bottom: 100.8 / 1575.5
  8536. }
  8537. }
  8538. },
  8539. [
  8540. {
  8541. name: "Micro",
  8542. height: math.unit(2, "inches")
  8543. },
  8544. {
  8545. name: "Normal",
  8546. height: math.unit(3 + 1 / 12, "feet"),
  8547. default: true
  8548. },
  8549. {
  8550. name: "Macro",
  8551. height: math.unit(120, "feet")
  8552. },
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8557. {
  8558. lamp: {
  8559. height: math.unit(7 * 1559 / 989, "feet"),
  8560. name: "Magic Lamp",
  8561. image: {
  8562. source: "./media/characters/mira-al-cul/lamp.svg",
  8563. extra: 1617 / 1559
  8564. }
  8565. },
  8566. front: {
  8567. height: math.unit(7, "feet"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/mira-al-cul/front.svg",
  8571. extra: 1044 / 990
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Heavily Restricted",
  8578. height: math.unit(7 * 1559 / 989, "feet")
  8579. },
  8580. {
  8581. name: "Freshly Freed",
  8582. height: math.unit(50 * 1559 / 989, "feet")
  8583. },
  8584. {
  8585. name: "World Encompassing",
  8586. height: math.unit(10000 * 1559 / 989, "miles")
  8587. },
  8588. {
  8589. name: "Galactic",
  8590. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8591. },
  8592. {
  8593. name: "Palmed Universe",
  8594. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Multiversal Matriarch",
  8599. height: math.unit(8.87e10, "yottameters")
  8600. },
  8601. {
  8602. name: "Void Mother",
  8603. height: math.unit(3.14e110, "yottaparsecs")
  8604. },
  8605. {
  8606. name: "Toying with Transcendence",
  8607. height: math.unit(1e307, "meters")
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8613. {
  8614. front: {
  8615. height: math.unit(17 + 1 / 12, "feet"),
  8616. weight: math.unit(476.2 * 5, "lbs"),
  8617. name: "Front",
  8618. image: {
  8619. source: "./media/characters/kuro-shi-uchū/front.svg",
  8620. extra: 2329 / 1835,
  8621. bottom: 0.02
  8622. }
  8623. },
  8624. },
  8625. [
  8626. {
  8627. name: "Micro",
  8628. height: math.unit(2, "inches")
  8629. },
  8630. {
  8631. name: "Normal",
  8632. height: math.unit(12, "meters")
  8633. },
  8634. {
  8635. name: "Planetary",
  8636. height: math.unit(0.00929, "AU"),
  8637. default: true
  8638. },
  8639. {
  8640. name: "Universal",
  8641. height: math.unit(20, "gigaparsecs")
  8642. },
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8647. {
  8648. front: {
  8649. height: math.unit(5 + 2 / 12, "feet"),
  8650. weight: math.unit(120, "lbs"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/katherine/front.svg",
  8654. extra: 2075 / 1969
  8655. }
  8656. },
  8657. dress: {
  8658. height: math.unit(5 + 2 / 12, "feet"),
  8659. weight: math.unit(120, "lbs"),
  8660. name: "Dress",
  8661. image: {
  8662. source: "./media/characters/katherine/dress.svg",
  8663. extra: 2258 / 2064
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Micro",
  8670. height: math.unit(1, "inches"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "Normal",
  8675. height: math.unit(5 + 2 / 12, "feet")
  8676. },
  8677. {
  8678. name: "Macro",
  8679. height: math.unit(100, "meters")
  8680. },
  8681. {
  8682. name: "Megamacro",
  8683. height: math.unit(80, "miles")
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(7 + 8 / 12, "feet"),
  8692. weight: math.unit(250, "lbs"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/yevis/front.svg",
  8696. extra: 1938 / 1755
  8697. }
  8698. }
  8699. },
  8700. [
  8701. {
  8702. name: "Mortal",
  8703. height: math.unit(7 + 8 / 12, "feet")
  8704. },
  8705. {
  8706. name: "Battle",
  8707. height: math.unit(25 + 11 / 12, "feet")
  8708. },
  8709. {
  8710. name: "Wrath",
  8711. height: math.unit(1654 + 11 / 12, "feet")
  8712. },
  8713. {
  8714. name: "Planet Destroyer",
  8715. height: math.unit(12000, "miles")
  8716. },
  8717. {
  8718. name: "Galaxy Conqueror",
  8719. height: math.unit(1.45, "zettameters"),
  8720. default: true
  8721. },
  8722. {
  8723. name: "Universal War",
  8724. height: math.unit(184, "gigaparsecs")
  8725. },
  8726. {
  8727. name: "Eternity War",
  8728. height: math.unit(1.98e55, "yottaparsecs")
  8729. },
  8730. ]
  8731. ))
  8732. characterMakers.push(() => makeCharacter(
  8733. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8734. {
  8735. front: {
  8736. height: math.unit(5 + 8 / 12, "feet"),
  8737. weight: math.unit(63, "kg"),
  8738. name: "Front",
  8739. image: {
  8740. source: "./media/characters/xavier/front.svg",
  8741. extra: 944 / 883
  8742. }
  8743. },
  8744. frontStretch: {
  8745. height: math.unit(5 + 8 / 12, "feet"),
  8746. weight: math.unit(63, "kg"),
  8747. name: "Stretching",
  8748. image: {
  8749. source: "./media/characters/xavier/front-stretch.svg",
  8750. extra: 962 / 820
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Normal",
  8757. height: math.unit(5 + 8 / 12, "feet")
  8758. },
  8759. {
  8760. name: "Macro",
  8761. height: math.unit(100, "meters"),
  8762. default: true
  8763. },
  8764. {
  8765. name: "McLargeHuge",
  8766. height: math.unit(10, "miles")
  8767. },
  8768. ]
  8769. ))
  8770. characterMakers.push(() => makeCharacter(
  8771. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8772. {
  8773. front: {
  8774. height: math.unit(5 + 5 / 12, "feet"),
  8775. weight: math.unit(150, "lb"),
  8776. name: "Front",
  8777. image: {
  8778. source: "./media/characters/joshii/front.svg",
  8779. extra: 765 / 653,
  8780. bottom: 51 / 816
  8781. }
  8782. },
  8783. foot: {
  8784. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8785. name: "Foot",
  8786. image: {
  8787. source: "./media/characters/joshii/foot.svg"
  8788. }
  8789. },
  8790. },
  8791. [
  8792. {
  8793. name: "Micro",
  8794. height: math.unit(2, "inches"),
  8795. default: true
  8796. },
  8797. {
  8798. name: "Normal",
  8799. height: math.unit(5 + 5 / 12, "feet")
  8800. },
  8801. {
  8802. name: "Macro",
  8803. height: math.unit(785, "feet")
  8804. },
  8805. {
  8806. name: "Megamacro",
  8807. height: math.unit(24.5, "miles")
  8808. },
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8813. {
  8814. front: {
  8815. height: math.unit(6, "feet"),
  8816. weight: math.unit(150, "lb"),
  8817. name: "Front",
  8818. image: {
  8819. source: "./media/characters/goddess-elizabeth/front.svg",
  8820. extra: 1800 / 1525,
  8821. bottom: 0.005
  8822. }
  8823. },
  8824. foot: {
  8825. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8826. name: "Foot",
  8827. image: {
  8828. source: "./media/characters/goddess-elizabeth/foot.svg"
  8829. }
  8830. },
  8831. mouth: {
  8832. height: math.unit(6, "feet"),
  8833. name: "Mouth",
  8834. image: {
  8835. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8836. }
  8837. },
  8838. },
  8839. [
  8840. {
  8841. name: "Micro",
  8842. height: math.unit(12, "feet")
  8843. },
  8844. {
  8845. name: "Normal",
  8846. height: math.unit(80, "miles"),
  8847. default: true
  8848. },
  8849. {
  8850. name: "Macro",
  8851. height: math.unit(15000, "parsecs")
  8852. },
  8853. ]
  8854. ))
  8855. characterMakers.push(() => makeCharacter(
  8856. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8857. {
  8858. front: {
  8859. height: math.unit(5 + 9 / 12, "feet"),
  8860. weight: math.unit(144, "lb"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/kara/front.svg"
  8864. }
  8865. },
  8866. feet: {
  8867. height: math.unit(6 / 6.765, "feet"),
  8868. name: "Kara's Feet",
  8869. rename: true,
  8870. image: {
  8871. source: "./media/characters/kara/feet.svg"
  8872. }
  8873. },
  8874. },
  8875. [
  8876. {
  8877. name: "Normal",
  8878. height: math.unit(5 + 9 / 12, "feet")
  8879. },
  8880. {
  8881. name: "Macro",
  8882. height: math.unit(174, "feet"),
  8883. default: true
  8884. },
  8885. ]
  8886. ))
  8887. characterMakers.push(() => makeCharacter(
  8888. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8889. {
  8890. front: {
  8891. height: math.unit(18, "feet"),
  8892. weight: math.unit(4050, "lb"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/tyrone/front.svg",
  8896. extra: 2405 / 2270,
  8897. bottom: 182 / 2587
  8898. }
  8899. },
  8900. },
  8901. [
  8902. {
  8903. name: "Normal",
  8904. height: math.unit(18, "feet"),
  8905. default: true
  8906. },
  8907. {
  8908. name: "Macro",
  8909. height: math.unit(300, "feet")
  8910. },
  8911. {
  8912. name: "Megamacro",
  8913. height: math.unit(15, "km")
  8914. },
  8915. {
  8916. name: "Gigamacro",
  8917. height: math.unit(500, "km")
  8918. },
  8919. {
  8920. name: "Teramacro",
  8921. height: math.unit(0.5, "gigameters")
  8922. },
  8923. {
  8924. name: "Omnimacro",
  8925. height: math.unit(1e252, "yottauniverse")
  8926. },
  8927. ]
  8928. ))
  8929. characterMakers.push(() => makeCharacter(
  8930. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8931. {
  8932. front: {
  8933. height: math.unit(7 + 8 / 12, "feet"),
  8934. weight: math.unit(120, "lb"),
  8935. name: "Front",
  8936. image: {
  8937. source: "./media/characters/danny/front.svg",
  8938. extra: 1490 / 1350
  8939. }
  8940. },
  8941. back: {
  8942. height: math.unit(7 + 8 / 12, "feet"),
  8943. weight: math.unit(120, "lb"),
  8944. name: "Back",
  8945. image: {
  8946. source: "./media/characters/danny/back.svg",
  8947. extra: 1490 / 1350
  8948. }
  8949. },
  8950. },
  8951. [
  8952. {
  8953. name: "Normal",
  8954. height: math.unit(7 + 8 / 12, "feet"),
  8955. default: true
  8956. },
  8957. ]
  8958. ))
  8959. characterMakers.push(() => makeCharacter(
  8960. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8961. {
  8962. front: {
  8963. height: math.unit(3.5, "inches"),
  8964. weight: math.unit(19, "grams"),
  8965. name: "Front",
  8966. image: {
  8967. source: "./media/characters/mallow/front.svg",
  8968. extra: 471 / 431
  8969. }
  8970. },
  8971. back: {
  8972. height: math.unit(3.5, "inches"),
  8973. weight: math.unit(19, "grams"),
  8974. name: "Back",
  8975. image: {
  8976. source: "./media/characters/mallow/back.svg",
  8977. extra: 471 / 431
  8978. }
  8979. },
  8980. },
  8981. [
  8982. {
  8983. name: "Normal",
  8984. height: math.unit(3.5, "inches"),
  8985. default: true
  8986. },
  8987. ]
  8988. ))
  8989. characterMakers.push(() => makeCharacter(
  8990. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8991. {
  8992. front: {
  8993. height: math.unit(9, "feet"),
  8994. weight: math.unit(230, "kg"),
  8995. name: "Front",
  8996. image: {
  8997. source: "./media/characters/starry-aqua/front.svg"
  8998. }
  8999. },
  9000. back: {
  9001. height: math.unit(9, "feet"),
  9002. weight: math.unit(230, "kg"),
  9003. name: "Back",
  9004. image: {
  9005. source: "./media/characters/starry-aqua/back.svg"
  9006. }
  9007. },
  9008. hand: {
  9009. height: math.unit(9 * 0.1168, "feet"),
  9010. name: "Hand",
  9011. image: {
  9012. source: "./media/characters/starry-aqua/hand.svg"
  9013. }
  9014. },
  9015. foot: {
  9016. height: math.unit(9 * 0.18, "feet"),
  9017. name: "Foot",
  9018. image: {
  9019. source: "./media/characters/starry-aqua/foot.svg"
  9020. }
  9021. }
  9022. },
  9023. [
  9024. {
  9025. name: "Micro",
  9026. height: math.unit(3, "inches")
  9027. },
  9028. {
  9029. name: "Normal",
  9030. height: math.unit(9, "feet")
  9031. },
  9032. {
  9033. name: "Macro",
  9034. height: math.unit(300, "feet"),
  9035. default: true
  9036. },
  9037. {
  9038. name: "Megamacro",
  9039. height: math.unit(3200, "feet")
  9040. }
  9041. ]
  9042. ))
  9043. characterMakers.push(() => makeCharacter(
  9044. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9045. {
  9046. front: {
  9047. height: math.unit(15, "feet"),
  9048. weight: math.unit(5026, "lb"),
  9049. name: "Front",
  9050. image: {
  9051. source: "./media/characters/luka-towers/front.svg",
  9052. extra: 1269/1133,
  9053. bottom: 51/1320
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(15, "feet"),
  9061. default: true
  9062. },
  9063. {
  9064. name: "Minimacro",
  9065. height: math.unit(25, "feet")
  9066. },
  9067. {
  9068. name: "Macro",
  9069. height: math.unit(320, "feet")
  9070. },
  9071. {
  9072. name: "Megamacro",
  9073. height: math.unit(35000, "feet")
  9074. },
  9075. {
  9076. name: "Gigamacro",
  9077. height: math.unit(4000, "miles")
  9078. },
  9079. {
  9080. name: "Teramacro",
  9081. height: math.unit(15000, "miles")
  9082. },
  9083. ]
  9084. ))
  9085. characterMakers.push(() => makeCharacter(
  9086. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9087. {
  9088. front: {
  9089. height: math.unit(6, "feet"),
  9090. weight: math.unit(150, "lb"),
  9091. name: "Front",
  9092. image: {
  9093. source: "./media/characters/natalie-nightring/front.svg",
  9094. extra: 1,
  9095. bottom: 0.06
  9096. }
  9097. },
  9098. },
  9099. [
  9100. {
  9101. name: "Uh Oh",
  9102. height: math.unit(0.1, "mm")
  9103. },
  9104. {
  9105. name: "Small",
  9106. height: math.unit(3, "inches")
  9107. },
  9108. {
  9109. name: "Human Scale",
  9110. height: math.unit(6, "feet")
  9111. },
  9112. {
  9113. name: "Librarian",
  9114. height: math.unit(50, "feet"),
  9115. default: true
  9116. },
  9117. {
  9118. name: "Immense",
  9119. height: math.unit(200, "miles")
  9120. },
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9125. {
  9126. front: {
  9127. height: math.unit(6, "feet"),
  9128. weight: math.unit(180, "lbs"),
  9129. name: "Front",
  9130. image: {
  9131. source: "./media/characters/danni-rosie/front.svg",
  9132. extra: 1260 / 1128,
  9133. bottom: 0.022
  9134. }
  9135. },
  9136. },
  9137. [
  9138. {
  9139. name: "Micro",
  9140. height: math.unit(2, "inches"),
  9141. default: true
  9142. },
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9147. {
  9148. front: {
  9149. height: math.unit(5 + 9 / 12, "feet"),
  9150. weight: math.unit(220, "lb"),
  9151. name: "Front",
  9152. image: {
  9153. source: "./media/characters/samantha-kruse/front.svg",
  9154. extra: (985 / 935),
  9155. bottom: 0.03
  9156. }
  9157. },
  9158. frontUndressed: {
  9159. height: math.unit(5 + 9 / 12, "feet"),
  9160. weight: math.unit(220, "lb"),
  9161. name: "Front (Undressed)",
  9162. image: {
  9163. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9164. extra: (973 / 923),
  9165. bottom: 0.025
  9166. }
  9167. },
  9168. fat: {
  9169. height: math.unit(5 + 9 / 12, "feet"),
  9170. weight: math.unit(900, "lb"),
  9171. name: "Front (Fat)",
  9172. image: {
  9173. source: "./media/characters/samantha-kruse/fat.svg",
  9174. extra: 2688 / 2561
  9175. }
  9176. },
  9177. },
  9178. [
  9179. {
  9180. name: "Normal",
  9181. height: math.unit(5 + 9 / 12, "feet"),
  9182. default: true
  9183. }
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9188. {
  9189. back: {
  9190. height: math.unit(5 + 4 / 12, "feet"),
  9191. weight: math.unit(4963, "lb"),
  9192. name: "Back",
  9193. image: {
  9194. source: "./media/characters/amelia-rosie/back.svg",
  9195. extra: 1113 / 963,
  9196. bottom: 0.01
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Level 0",
  9203. height: math.unit(5 + 4 / 12, "feet")
  9204. },
  9205. {
  9206. name: "Level 1",
  9207. height: math.unit(164597, "feet"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "Level 2",
  9212. height: math.unit(956243, "miles")
  9213. },
  9214. {
  9215. name: "Level 3",
  9216. height: math.unit(29421709423, "miles")
  9217. },
  9218. {
  9219. name: "Level 4",
  9220. height: math.unit(154, "lightyears")
  9221. },
  9222. {
  9223. name: "Level 5",
  9224. height: math.unit(4738272, "lightyears")
  9225. },
  9226. {
  9227. name: "Level 6",
  9228. height: math.unit(145787152896, "lightyears")
  9229. },
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9234. {
  9235. front: {
  9236. height: math.unit(5 + 11 / 12, "feet"),
  9237. weight: math.unit(65, "kg"),
  9238. name: "Front",
  9239. image: {
  9240. source: "./media/characters/rook-kitara/front.svg",
  9241. extra: 1347 / 1274,
  9242. bottom: 0.005
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Totally Unfair",
  9249. height: math.unit(1.8, "mm")
  9250. },
  9251. {
  9252. name: "Lap Rookie",
  9253. height: math.unit(1.4, "feet")
  9254. },
  9255. {
  9256. name: "Normal",
  9257. height: math.unit(5 + 11 / 12, "feet"),
  9258. default: true
  9259. },
  9260. {
  9261. name: "How Did This Happen",
  9262. height: math.unit(80, "miles")
  9263. }
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(7, "feet"),
  9271. weight: math.unit(300, "lb"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/pisces/front.svg",
  9275. extra: 2255 / 2115,
  9276. bottom: 0.03
  9277. }
  9278. },
  9279. back: {
  9280. height: math.unit(7, "feet"),
  9281. weight: math.unit(300, "lb"),
  9282. name: "Back",
  9283. image: {
  9284. source: "./media/characters/pisces/back.svg",
  9285. extra: 2146 / 2055,
  9286. bottom: 0.04
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(7, "feet"),
  9294. default: true
  9295. },
  9296. {
  9297. name: "Swimming Pool",
  9298. height: math.unit(12.2, "meters")
  9299. },
  9300. {
  9301. name: "Olympic Swimming Pool",
  9302. height: math.unit(56.3, "meters")
  9303. },
  9304. {
  9305. name: "Lake Superior",
  9306. height: math.unit(93900, "meters")
  9307. },
  9308. {
  9309. name: "Mediterranean Sea",
  9310. height: math.unit(644457, "meters")
  9311. },
  9312. {
  9313. name: "World's Oceans",
  9314. height: math.unit(4567491, "meters")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(2.3, "meters"),
  9323. weight: math.unit(120, "kg"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/zelas/front.svg"
  9327. }
  9328. },
  9329. side: {
  9330. height: math.unit(2.3, "meters"),
  9331. weight: math.unit(120, "kg"),
  9332. name: "Side",
  9333. image: {
  9334. source: "./media/characters/zelas/side.svg"
  9335. }
  9336. },
  9337. back: {
  9338. height: math.unit(2.3, "meters"),
  9339. weight: math.unit(120, "kg"),
  9340. name: "Back",
  9341. image: {
  9342. source: "./media/characters/zelas/back.svg"
  9343. }
  9344. },
  9345. foot: {
  9346. height: math.unit(1.116, "feet"),
  9347. name: "Foot",
  9348. image: {
  9349. source: "./media/characters/zelas/foot.svg"
  9350. }
  9351. },
  9352. },
  9353. [
  9354. {
  9355. name: "Normal",
  9356. height: math.unit(2.3, "meters")
  9357. },
  9358. {
  9359. name: "Macro",
  9360. height: math.unit(30, "meters"),
  9361. default: true
  9362. },
  9363. ]
  9364. ))
  9365. characterMakers.push(() => makeCharacter(
  9366. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9367. {
  9368. front: {
  9369. height: math.unit(1, "inch"),
  9370. weight: math.unit(0.21, "grams"),
  9371. name: "Front",
  9372. image: {
  9373. source: "./media/characters/talbot/front.svg",
  9374. extra: 594 / 544
  9375. }
  9376. },
  9377. },
  9378. [
  9379. {
  9380. name: "Micro",
  9381. height: math.unit(1, "inch"),
  9382. default: true
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9388. {
  9389. front: {
  9390. height: math.unit(3 + 3 / 12, "feet"),
  9391. weight: math.unit(51.8, "lb"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/fliss/front.svg",
  9395. extra: 840 / 640
  9396. }
  9397. },
  9398. },
  9399. [
  9400. {
  9401. name: "Teeny Tiny",
  9402. height: math.unit(1, "mm")
  9403. },
  9404. {
  9405. name: "Small",
  9406. height: math.unit(1, "inch"),
  9407. default: true
  9408. },
  9409. {
  9410. name: "Standard Sylveon",
  9411. height: math.unit(3 + 3 / 12, "feet")
  9412. },
  9413. {
  9414. name: "Large Nuisance",
  9415. height: math.unit(33, "feet")
  9416. },
  9417. {
  9418. name: "City Filler",
  9419. height: math.unit(3000, "feet")
  9420. },
  9421. {
  9422. name: "New Horizon",
  9423. height: math.unit(6000, "miles")
  9424. },
  9425. ]
  9426. ))
  9427. characterMakers.push(() => makeCharacter(
  9428. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9429. {
  9430. front: {
  9431. height: math.unit(5, "cm"),
  9432. weight: math.unit(1.94, "g"),
  9433. name: "Front",
  9434. image: {
  9435. source: "./media/characters/fleta/front.svg",
  9436. extra: 835 / 803
  9437. }
  9438. },
  9439. back: {
  9440. height: math.unit(5, "cm"),
  9441. weight: math.unit(1.94, "g"),
  9442. name: "Back",
  9443. image: {
  9444. source: "./media/characters/fleta/back.svg",
  9445. extra: 835 / 803
  9446. }
  9447. },
  9448. },
  9449. [
  9450. {
  9451. name: "Micro",
  9452. height: math.unit(5, "cm"),
  9453. default: true
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(6, "feet"),
  9462. weight: math.unit(225, "lb"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/dominic/front.svg",
  9466. extra: 1770 / 1620,
  9467. bottom: 0.025
  9468. }
  9469. },
  9470. back: {
  9471. height: math.unit(6, "feet"),
  9472. weight: math.unit(225, "lb"),
  9473. name: "Back",
  9474. image: {
  9475. source: "./media/characters/dominic/back.svg",
  9476. extra: 1745 / 1620,
  9477. bottom: 0.065
  9478. }
  9479. },
  9480. },
  9481. [
  9482. {
  9483. name: "Nano",
  9484. height: math.unit(0.1, "mm")
  9485. },
  9486. {
  9487. name: "Micro-",
  9488. height: math.unit(1, "mm")
  9489. },
  9490. {
  9491. name: "Micro",
  9492. height: math.unit(4, "inches")
  9493. },
  9494. {
  9495. name: "Normal",
  9496. height: math.unit(6 + 4 / 12, "feet"),
  9497. default: true
  9498. },
  9499. {
  9500. name: "Macro",
  9501. height: math.unit(115, "feet")
  9502. },
  9503. {
  9504. name: "Macro+",
  9505. height: math.unit(955, "feet")
  9506. },
  9507. {
  9508. name: "Megamacro",
  9509. height: math.unit(8990, "feet")
  9510. },
  9511. {
  9512. name: "Gigmacro",
  9513. height: math.unit(9310, "miles")
  9514. },
  9515. {
  9516. name: "Teramacro",
  9517. height: math.unit(1567005010, "miles")
  9518. },
  9519. {
  9520. name: "Examacro",
  9521. height: math.unit(1425, "parsecs")
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(400, "feet"),
  9530. weight: math.unit(44444444, "lb"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/major-colonel/front.svg"
  9534. }
  9535. },
  9536. back: {
  9537. height: math.unit(400, "feet"),
  9538. weight: math.unit(44444444, "lb"),
  9539. name: "Back",
  9540. image: {
  9541. source: "./media/characters/major-colonel/back.svg"
  9542. }
  9543. },
  9544. },
  9545. [
  9546. {
  9547. name: "Macro",
  9548. height: math.unit(400, "feet"),
  9549. default: true
  9550. },
  9551. ]
  9552. ))
  9553. characterMakers.push(() => makeCharacter(
  9554. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9555. {
  9556. catFront: {
  9557. height: math.unit(6, "feet"),
  9558. weight: math.unit(120, "lb"),
  9559. name: "Front (Cat Side)",
  9560. image: {
  9561. source: "./media/characters/axel-lycan/cat-front.svg",
  9562. extra: 430 / 402,
  9563. bottom: 43 / 472.35
  9564. }
  9565. },
  9566. catBack: {
  9567. height: math.unit(6, "feet"),
  9568. weight: math.unit(120, "lb"),
  9569. name: "Back (Cat Side)",
  9570. image: {
  9571. source: "./media/characters/axel-lycan/cat-back.svg",
  9572. extra: 447 / 419,
  9573. bottom: 23.3 / 469
  9574. }
  9575. },
  9576. wolfFront: {
  9577. height: math.unit(6, "feet"),
  9578. weight: math.unit(120, "lb"),
  9579. name: "Front (Wolf Side)",
  9580. image: {
  9581. source: "./media/characters/axel-lycan/wolf-front.svg",
  9582. extra: 485 / 456,
  9583. bottom: 19 / 504
  9584. }
  9585. },
  9586. wolfBack: {
  9587. height: math.unit(6, "feet"),
  9588. weight: math.unit(120, "lb"),
  9589. name: "Back (Wolf Side)",
  9590. image: {
  9591. source: "./media/characters/axel-lycan/wolf-back.svg",
  9592. extra: 475 / 438,
  9593. bottom: 39.2 / 514
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Macro",
  9600. height: math.unit(1, "km"),
  9601. default: true
  9602. },
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(5 + 9 / 12, "feet"),
  9610. weight: math.unit(175, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/vanrel-hyena/front.svg",
  9614. extra: 1086 / 1010,
  9615. bottom: 0.04
  9616. }
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(5 + 9 / 12, "feet"),
  9623. default: true
  9624. },
  9625. ]
  9626. ))
  9627. characterMakers.push(() => makeCharacter(
  9628. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9629. {
  9630. front: {
  9631. height: math.unit(6, "feet"),
  9632. weight: math.unit(103, "lb"),
  9633. name: "Front",
  9634. image: {
  9635. source: "./media/characters/abbott-absol/front.svg",
  9636. extra: 2010 / 1842
  9637. }
  9638. },
  9639. },
  9640. [
  9641. {
  9642. name: "Megamicro",
  9643. height: math.unit(0.1, "mm")
  9644. },
  9645. {
  9646. name: "Micro",
  9647. height: math.unit(1, "inch")
  9648. },
  9649. {
  9650. name: "Normal",
  9651. height: math.unit(6, "feet"),
  9652. default: true
  9653. },
  9654. ]
  9655. ))
  9656. characterMakers.push(() => makeCharacter(
  9657. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9658. {
  9659. front: {
  9660. height: math.unit(6, "feet"),
  9661. weight: math.unit(264, "lb"),
  9662. name: "Front",
  9663. image: {
  9664. source: "./media/characters/hector/front.svg",
  9665. extra: 2280 / 2130,
  9666. bottom: 0.07
  9667. }
  9668. },
  9669. },
  9670. [
  9671. {
  9672. name: "Normal",
  9673. height: math.unit(12.25, "foot"),
  9674. default: true
  9675. },
  9676. {
  9677. name: "Macro",
  9678. height: math.unit(160, "feet")
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(6, "feet"),
  9687. weight: math.unit(150, "lb"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/sal/front.svg",
  9691. extra: 1846 / 1699,
  9692. bottom: 0.04
  9693. }
  9694. },
  9695. },
  9696. [
  9697. {
  9698. name: "Megamacro",
  9699. height: math.unit(10, "miles"),
  9700. default: true
  9701. },
  9702. ]
  9703. ))
  9704. characterMakers.push(() => makeCharacter(
  9705. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9706. {
  9707. front: {
  9708. height: math.unit(3, "meters"),
  9709. weight: math.unit(450, "kg"),
  9710. name: "front",
  9711. image: {
  9712. source: "./media/characters/ranger/front.svg",
  9713. extra: 2401 / 2243,
  9714. bottom: 0.05
  9715. }
  9716. },
  9717. },
  9718. [
  9719. {
  9720. name: "Normal",
  9721. height: math.unit(3, "meters"),
  9722. default: true
  9723. },
  9724. ]
  9725. ))
  9726. characterMakers.push(() => makeCharacter(
  9727. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9728. {
  9729. front: {
  9730. height: math.unit(14, "feet"),
  9731. weight: math.unit(800, "kg"),
  9732. name: "Front",
  9733. image: {
  9734. source: "./media/characters/theresa/front.svg",
  9735. extra: 3575 / 3346,
  9736. bottom: 0.03
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Normal",
  9743. height: math.unit(14, "feet"),
  9744. default: true
  9745. },
  9746. ]
  9747. ))
  9748. characterMakers.push(() => makeCharacter(
  9749. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9750. {
  9751. front: {
  9752. height: math.unit(6, "feet"),
  9753. weight: math.unit(3, "kg"),
  9754. name: "Front",
  9755. image: {
  9756. source: "./media/characters/ine/front.svg",
  9757. extra: 678 / 539,
  9758. bottom: 0.023
  9759. }
  9760. },
  9761. },
  9762. [
  9763. {
  9764. name: "Normal",
  9765. height: math.unit(2.265, "feet"),
  9766. default: true
  9767. },
  9768. ]
  9769. ))
  9770. characterMakers.push(() => makeCharacter(
  9771. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9772. {
  9773. front: {
  9774. height: math.unit(5, "feet"),
  9775. weight: math.unit(30, "kg"),
  9776. name: "Front",
  9777. image: {
  9778. source: "./media/characters/vial/front.svg",
  9779. extra: 1365 / 1277,
  9780. bottom: 0.04
  9781. }
  9782. },
  9783. },
  9784. [
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(5, "feet"),
  9788. default: true
  9789. },
  9790. ]
  9791. ))
  9792. characterMakers.push(() => makeCharacter(
  9793. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9794. {
  9795. side: {
  9796. height: math.unit(3.4, "meters"),
  9797. weight: math.unit(1000, "lb"),
  9798. name: "Side",
  9799. image: {
  9800. source: "./media/characters/rovoska/side.svg",
  9801. extra: 4403 / 1515
  9802. }
  9803. },
  9804. },
  9805. [
  9806. {
  9807. name: "Normal",
  9808. height: math.unit(3.4, "meters"),
  9809. default: true
  9810. },
  9811. ]
  9812. ))
  9813. characterMakers.push(() => makeCharacter(
  9814. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9815. {
  9816. front: {
  9817. height: math.unit(8, "feet"),
  9818. weight: math.unit(315, "lb"),
  9819. name: "Front",
  9820. image: {
  9821. source: "./media/characters/gunner-rotthbauer/front.svg"
  9822. }
  9823. },
  9824. back: {
  9825. height: math.unit(8, "feet"),
  9826. weight: math.unit(315, "lb"),
  9827. name: "Back",
  9828. image: {
  9829. source: "./media/characters/gunner-rotthbauer/back.svg"
  9830. }
  9831. },
  9832. },
  9833. [
  9834. {
  9835. name: "Micro",
  9836. height: math.unit(3.5, "inches")
  9837. },
  9838. {
  9839. name: "Normal",
  9840. height: math.unit(8, "feet"),
  9841. default: true
  9842. },
  9843. {
  9844. name: "Macro",
  9845. height: math.unit(250, "feet")
  9846. },
  9847. {
  9848. name: "Megamacro",
  9849. height: math.unit(1, "AU")
  9850. },
  9851. ]
  9852. ))
  9853. characterMakers.push(() => makeCharacter(
  9854. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9855. {
  9856. front: {
  9857. height: math.unit(5 + 5 / 12, "feet"),
  9858. weight: math.unit(140, "lb"),
  9859. name: "Front",
  9860. image: {
  9861. source: "./media/characters/allatia/front.svg",
  9862. extra: 1227 / 1180,
  9863. bottom: 0.027
  9864. }
  9865. },
  9866. },
  9867. [
  9868. {
  9869. name: "Normal",
  9870. height: math.unit(5 + 5 / 12, "feet")
  9871. },
  9872. {
  9873. name: "Macro",
  9874. height: math.unit(250, "feet"),
  9875. default: true
  9876. },
  9877. {
  9878. name: "Megamacro",
  9879. height: math.unit(8, "miles")
  9880. }
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9885. {
  9886. front: {
  9887. height: math.unit(6, "feet"),
  9888. weight: math.unit(120, "lb"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/tene/front.svg",
  9892. extra: 1728 / 1578,
  9893. bottom: 0.022
  9894. }
  9895. },
  9896. stomping: {
  9897. height: math.unit(2.025, "meters"),
  9898. weight: math.unit(120, "lb"),
  9899. name: "Stomping",
  9900. image: {
  9901. source: "./media/characters/tene/stomping.svg",
  9902. extra: 938 / 873,
  9903. bottom: 0.01
  9904. }
  9905. },
  9906. sitting: {
  9907. height: math.unit(1, "meter"),
  9908. weight: math.unit(120, "lb"),
  9909. name: "Sitting",
  9910. image: {
  9911. source: "./media/characters/tene/sitting.svg",
  9912. extra: 437 / 415,
  9913. bottom: 0.1
  9914. }
  9915. },
  9916. feral: {
  9917. height: math.unit(3.9, "feet"),
  9918. weight: math.unit(250, "lb"),
  9919. name: "Feral",
  9920. image: {
  9921. source: "./media/characters/tene/feral.svg",
  9922. extra: 717 / 458,
  9923. bottom: 0.179
  9924. }
  9925. },
  9926. },
  9927. [
  9928. {
  9929. name: "Normal",
  9930. height: math.unit(6, "feet")
  9931. },
  9932. {
  9933. name: "Macro",
  9934. height: math.unit(300, "feet"),
  9935. default: true
  9936. },
  9937. {
  9938. name: "Megamacro",
  9939. height: math.unit(5, "miles")
  9940. },
  9941. ]
  9942. ))
  9943. characterMakers.push(() => makeCharacter(
  9944. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9945. {
  9946. side: {
  9947. height: math.unit(6, "feet"),
  9948. name: "Side",
  9949. image: {
  9950. source: "./media/characters/evander/side.svg",
  9951. extra: 877 / 477
  9952. }
  9953. },
  9954. },
  9955. [
  9956. {
  9957. name: "Normal",
  9958. height: math.unit(0.83, "meters"),
  9959. default: true
  9960. },
  9961. ]
  9962. ))
  9963. characterMakers.push(() => makeCharacter(
  9964. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9965. {
  9966. front: {
  9967. height: math.unit(12, "feet"),
  9968. weight: math.unit(1000, "lb"),
  9969. name: "Front",
  9970. image: {
  9971. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9972. extra: 1762 / 1611
  9973. }
  9974. },
  9975. back: {
  9976. height: math.unit(12, "feet"),
  9977. weight: math.unit(1000, "lb"),
  9978. name: "Back",
  9979. image: {
  9980. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9981. extra: 1762 / 1611
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Normal",
  9988. height: math.unit(12, "feet"),
  9989. default: true
  9990. },
  9991. {
  9992. name: "Kaiju",
  9993. height: math.unit(150, "feet")
  9994. },
  9995. ]
  9996. ))
  9997. characterMakers.push(() => makeCharacter(
  9998. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9999. {
  10000. front: {
  10001. height: math.unit(6, "feet"),
  10002. weight: math.unit(150, "lb"),
  10003. name: "Front",
  10004. image: {
  10005. source: "./media/characters/zero-alurus/front.svg"
  10006. }
  10007. },
  10008. back: {
  10009. height: math.unit(6, "feet"),
  10010. weight: math.unit(150, "lb"),
  10011. name: "Back",
  10012. image: {
  10013. source: "./media/characters/zero-alurus/back.svg"
  10014. }
  10015. },
  10016. },
  10017. [
  10018. {
  10019. name: "Normal",
  10020. height: math.unit(5 + 10 / 12, "feet")
  10021. },
  10022. {
  10023. name: "Macro",
  10024. height: math.unit(60, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Macro+",
  10029. height: math.unit(450, "feet")
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(200, "lb"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/mega-shi/front.svg",
  10042. extra: 1279 / 1250,
  10043. bottom: 0.02
  10044. }
  10045. },
  10046. back: {
  10047. height: math.unit(6, "feet"),
  10048. weight: math.unit(200, "lb"),
  10049. name: "Back",
  10050. image: {
  10051. source: "./media/characters/mega-shi/back.svg",
  10052. extra: 1279 / 1250,
  10053. bottom: 0.02
  10054. }
  10055. },
  10056. },
  10057. [
  10058. {
  10059. name: "Micro",
  10060. height: math.unit(16 + 6 / 12, "feet")
  10061. },
  10062. {
  10063. name: "Third Dimension",
  10064. height: math.unit(40, "meters")
  10065. },
  10066. {
  10067. name: "Normal",
  10068. height: math.unit(660, "feet"),
  10069. default: true
  10070. },
  10071. {
  10072. name: "Megamacro",
  10073. height: math.unit(10, "miles")
  10074. },
  10075. {
  10076. name: "Planetary Launch",
  10077. height: math.unit(500, "miles")
  10078. },
  10079. {
  10080. name: "Interstellar",
  10081. height: math.unit(1e9, "miles")
  10082. },
  10083. {
  10084. name: "Leaving the Universe",
  10085. height: math.unit(1, "gigaparsec")
  10086. },
  10087. {
  10088. name: "Travelling Universes",
  10089. height: math.unit(30e15, "parsecs")
  10090. },
  10091. ]
  10092. ))
  10093. characterMakers.push(() => makeCharacter(
  10094. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10095. {
  10096. front: {
  10097. height: math.unit(6, "feet"),
  10098. weight: math.unit(150, "lb"),
  10099. name: "Front",
  10100. image: {
  10101. source: "./media/characters/odyssey/front.svg",
  10102. extra: 1782 / 1582,
  10103. bottom: 0.01
  10104. }
  10105. },
  10106. side: {
  10107. height: math.unit(5.7, "feet"),
  10108. weight: math.unit(140, "lb"),
  10109. name: "Side",
  10110. image: {
  10111. source: "./media/characters/odyssey/side.svg",
  10112. extra: 6462 / 5700
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(5 + 4 / 12, "feet")
  10120. },
  10121. {
  10122. name: "Macro",
  10123. height: math.unit(1, "km")
  10124. },
  10125. {
  10126. name: "Megamacro",
  10127. height: math.unit(3000, "km")
  10128. },
  10129. {
  10130. name: "Gigamacro",
  10131. height: math.unit(1, "AU"),
  10132. default: true
  10133. },
  10134. {
  10135. name: "Omniversal",
  10136. height: math.unit(100e14, "lightyears")
  10137. },
  10138. ]
  10139. ))
  10140. characterMakers.push(() => makeCharacter(
  10141. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10142. {
  10143. front: {
  10144. height: math.unit(6, "feet"),
  10145. weight: math.unit(300, "lb"),
  10146. name: "Front",
  10147. image: {
  10148. source: "./media/characters/mekuto/front.svg",
  10149. extra: 921 / 832,
  10150. bottom: 0.03
  10151. }
  10152. },
  10153. hand: {
  10154. height: math.unit(6 / 10.24, "feet"),
  10155. name: "Hand",
  10156. image: {
  10157. source: "./media/characters/mekuto/hand.svg"
  10158. }
  10159. },
  10160. foot: {
  10161. height: math.unit(6 / 5.05, "feet"),
  10162. name: "Foot",
  10163. image: {
  10164. source: "./media/characters/mekuto/foot.svg"
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Minimicro",
  10171. height: math.unit(0.2, "inches")
  10172. },
  10173. {
  10174. name: "Micro",
  10175. height: math.unit(1.5, "inches")
  10176. },
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(5 + 11 / 12, "feet"),
  10180. default: true
  10181. },
  10182. {
  10183. name: "Minimacro",
  10184. height: math.unit(17 + 9 / 12, "feet")
  10185. },
  10186. {
  10187. name: "Macro",
  10188. height: math.unit(177.5, "feet")
  10189. },
  10190. {
  10191. name: "Megamacro",
  10192. height: math.unit(152, "miles")
  10193. },
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(6.5, "inches"),
  10201. weight: math.unit(13, "oz"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/dafydd-tomos/front.svg",
  10205. extra: 2990 / 2603,
  10206. bottom: 0.03
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Micro",
  10213. height: math.unit(6.5, "inches"),
  10214. default: true
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(6, "feet"),
  10223. weight: math.unit(150, "lb"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/splinter/front.svg",
  10227. extra: 2990 / 2882,
  10228. bottom: 0.04
  10229. }
  10230. },
  10231. back: {
  10232. height: math.unit(6, "feet"),
  10233. weight: math.unit(150, "lb"),
  10234. name: "Back",
  10235. image: {
  10236. source: "./media/characters/splinter/back.svg",
  10237. extra: 2990 / 2882,
  10238. bottom: 0.04
  10239. }
  10240. },
  10241. },
  10242. [
  10243. {
  10244. name: "Normal",
  10245. height: math.unit(6, "feet")
  10246. },
  10247. {
  10248. name: "Macro",
  10249. height: math.unit(230, "meters"),
  10250. default: true
  10251. },
  10252. ]
  10253. ))
  10254. characterMakers.push(() => makeCharacter(
  10255. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10256. {
  10257. front: {
  10258. height: math.unit(4 + 10 / 12, "feet"),
  10259. weight: math.unit(480, "lb"),
  10260. name: "Front",
  10261. image: {
  10262. source: "./media/characters/snow-gabumon/front.svg",
  10263. extra: 1140 / 963,
  10264. bottom: 0.058
  10265. }
  10266. },
  10267. back: {
  10268. height: math.unit(4 + 10 / 12, "feet"),
  10269. weight: math.unit(480, "lb"),
  10270. name: "Back",
  10271. image: {
  10272. source: "./media/characters/snow-gabumon/back.svg",
  10273. extra: 1115 / 962,
  10274. bottom: 0.041
  10275. }
  10276. },
  10277. frontUndresed: {
  10278. height: math.unit(4 + 10 / 12, "feet"),
  10279. weight: math.unit(480, "lb"),
  10280. name: "Front (Undressed)",
  10281. image: {
  10282. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10283. extra: 1061 / 960,
  10284. bottom: 0.045
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Micro",
  10291. height: math.unit(1, "inch")
  10292. },
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(4 + 10 / 12, "feet"),
  10296. default: true
  10297. },
  10298. {
  10299. name: "Macro",
  10300. height: math.unit(200, "feet")
  10301. },
  10302. {
  10303. name: "Megamacro",
  10304. height: math.unit(120, "miles")
  10305. },
  10306. {
  10307. name: "Gigamacro",
  10308. height: math.unit(9800, "miles")
  10309. },
  10310. ]
  10311. ))
  10312. characterMakers.push(() => makeCharacter(
  10313. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10314. {
  10315. front: {
  10316. height: math.unit(1.7, "meters"),
  10317. weight: math.unit(140, "lb"),
  10318. name: "Front",
  10319. image: {
  10320. source: "./media/characters/moody/front.svg",
  10321. extra: 3226 / 3007,
  10322. bottom: 0.087
  10323. }
  10324. },
  10325. },
  10326. [
  10327. {
  10328. name: "Micro",
  10329. height: math.unit(1, "mm")
  10330. },
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(1.7, "meters"),
  10334. default: true
  10335. },
  10336. {
  10337. name: "Macro",
  10338. height: math.unit(80, "meters")
  10339. },
  10340. {
  10341. name: "Macro+",
  10342. height: math.unit(500, "meters")
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10348. {
  10349. front: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(150, "lb"),
  10352. name: "Front",
  10353. image: {
  10354. source: "./media/characters/zyas/front.svg",
  10355. extra: 1180 / 1120,
  10356. bottom: 0.045
  10357. }
  10358. },
  10359. },
  10360. [
  10361. {
  10362. name: "Normal",
  10363. height: math.unit(10, "feet"),
  10364. default: true
  10365. },
  10366. {
  10367. name: "Macro",
  10368. height: math.unit(500, "feet")
  10369. },
  10370. {
  10371. name: "Megamacro",
  10372. height: math.unit(5, "miles")
  10373. },
  10374. {
  10375. name: "Teramacro",
  10376. height: math.unit(150000, "miles")
  10377. },
  10378. ]
  10379. ))
  10380. characterMakers.push(() => makeCharacter(
  10381. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10382. {
  10383. front: {
  10384. height: math.unit(6, "feet"),
  10385. weight: math.unit(150, "lb"),
  10386. name: "Front",
  10387. image: {
  10388. source: "./media/characters/cuon/front.svg",
  10389. extra: 1390 / 1320,
  10390. bottom: 0.008
  10391. }
  10392. },
  10393. },
  10394. [
  10395. {
  10396. name: "Micro",
  10397. height: math.unit(3, "inches")
  10398. },
  10399. {
  10400. name: "Normal",
  10401. height: math.unit(18 + 9 / 12, "feet"),
  10402. default: true
  10403. },
  10404. {
  10405. name: "Macro",
  10406. height: math.unit(360, "feet")
  10407. },
  10408. {
  10409. name: "Megamacro",
  10410. height: math.unit(360, "miles")
  10411. },
  10412. ]
  10413. ))
  10414. characterMakers.push(() => makeCharacter(
  10415. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10416. {
  10417. front: {
  10418. height: math.unit(2.4, "meters"),
  10419. weight: math.unit(70, "kg"),
  10420. name: "Front",
  10421. image: {
  10422. source: "./media/characters/nyanuxk/front.svg",
  10423. extra: 1172 / 1084,
  10424. bottom: 0.065
  10425. }
  10426. },
  10427. side: {
  10428. height: math.unit(2.4, "meters"),
  10429. weight: math.unit(70, "kg"),
  10430. name: "Side",
  10431. image: {
  10432. source: "./media/characters/nyanuxk/side.svg",
  10433. extra: 1190 / 1132,
  10434. bottom: 0.007
  10435. }
  10436. },
  10437. back: {
  10438. height: math.unit(2.4, "meters"),
  10439. weight: math.unit(70, "kg"),
  10440. name: "Back",
  10441. image: {
  10442. source: "./media/characters/nyanuxk/back.svg",
  10443. extra: 1200 / 1141,
  10444. bottom: 0.015
  10445. }
  10446. },
  10447. foot: {
  10448. height: math.unit(0.52, "meters"),
  10449. name: "Foot",
  10450. image: {
  10451. source: "./media/characters/nyanuxk/foot.svg"
  10452. }
  10453. },
  10454. },
  10455. [
  10456. {
  10457. name: "Micro",
  10458. height: math.unit(2, "cm")
  10459. },
  10460. {
  10461. name: "Normal",
  10462. height: math.unit(2.4, "meters"),
  10463. default: true
  10464. },
  10465. {
  10466. name: "Smaller Macro",
  10467. height: math.unit(120, "meters")
  10468. },
  10469. {
  10470. name: "Bigger Macro",
  10471. height: math.unit(1.2, "km")
  10472. },
  10473. {
  10474. name: "Megamacro",
  10475. height: math.unit(15, "kilometers")
  10476. },
  10477. {
  10478. name: "Gigamacro",
  10479. height: math.unit(2000, "km")
  10480. },
  10481. {
  10482. name: "Teramacro",
  10483. height: math.unit(500000, "km")
  10484. },
  10485. ]
  10486. ))
  10487. characterMakers.push(() => makeCharacter(
  10488. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10489. {
  10490. side: {
  10491. height: math.unit(6, "feet"),
  10492. name: "Side",
  10493. image: {
  10494. source: "./media/characters/ailbhe/side.svg",
  10495. extra: 757 / 464,
  10496. bottom: 0.041
  10497. }
  10498. },
  10499. },
  10500. [
  10501. {
  10502. name: "Normal",
  10503. height: math.unit(1.07, "meters"),
  10504. default: true
  10505. },
  10506. ]
  10507. ))
  10508. characterMakers.push(() => makeCharacter(
  10509. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10510. {
  10511. front: {
  10512. height: math.unit(6, "feet"),
  10513. weight: math.unit(120, "kg"),
  10514. name: "Front",
  10515. image: {
  10516. source: "./media/characters/zevulfius/front.svg",
  10517. extra: 965 / 903
  10518. }
  10519. },
  10520. side: {
  10521. height: math.unit(6, "feet"),
  10522. weight: math.unit(120, "kg"),
  10523. name: "Side",
  10524. image: {
  10525. source: "./media/characters/zevulfius/side.svg",
  10526. extra: 939 / 900
  10527. }
  10528. },
  10529. back: {
  10530. height: math.unit(6, "feet"),
  10531. weight: math.unit(120, "kg"),
  10532. name: "Back",
  10533. image: {
  10534. source: "./media/characters/zevulfius/back.svg",
  10535. extra: 918 / 854,
  10536. bottom: 0.005
  10537. }
  10538. },
  10539. foot: {
  10540. height: math.unit(6 / 3.72, "feet"),
  10541. name: "Foot",
  10542. image: {
  10543. source: "./media/characters/zevulfius/foot.svg"
  10544. }
  10545. },
  10546. },
  10547. [
  10548. {
  10549. name: "Macro",
  10550. height: math.unit(750, "meters")
  10551. },
  10552. {
  10553. name: "Megamacro",
  10554. height: math.unit(20, "km"),
  10555. default: true
  10556. },
  10557. {
  10558. name: "Gigamacro",
  10559. height: math.unit(2000, "km")
  10560. },
  10561. {
  10562. name: "Teramacro",
  10563. height: math.unit(250000, "km")
  10564. },
  10565. ]
  10566. ))
  10567. characterMakers.push(() => makeCharacter(
  10568. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10569. {
  10570. front: {
  10571. height: math.unit(100, "feet"),
  10572. weight: math.unit(350, "kg"),
  10573. name: "Front",
  10574. image: {
  10575. source: "./media/characters/rikes/front.svg",
  10576. extra: 1565 / 1483,
  10577. bottom: 0.017
  10578. }
  10579. },
  10580. },
  10581. [
  10582. {
  10583. name: "Macro",
  10584. height: math.unit(100, "feet"),
  10585. default: true
  10586. },
  10587. ]
  10588. ))
  10589. characterMakers.push(() => makeCharacter(
  10590. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10591. {
  10592. front: {
  10593. height: math.unit(8, "feet"),
  10594. weight: math.unit(356, "lb"),
  10595. name: "Front",
  10596. image: {
  10597. source: "./media/characters/adam-silver-mane/front.svg",
  10598. extra: 1036/937,
  10599. bottom: 63/1099
  10600. }
  10601. },
  10602. side: {
  10603. height: math.unit(8, "feet"),
  10604. weight: math.unit(356, "lb"),
  10605. name: "Side",
  10606. image: {
  10607. source: "./media/characters/adam-silver-mane/side.svg",
  10608. extra: 997/901,
  10609. bottom: 59/1056
  10610. }
  10611. },
  10612. frontNsfw: {
  10613. height: math.unit(8, "feet"),
  10614. weight: math.unit(356, "lb"),
  10615. name: "Front (NSFW)",
  10616. image: {
  10617. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10618. extra: 1036/937,
  10619. bottom: 63/1099
  10620. }
  10621. },
  10622. sideNsfw: {
  10623. height: math.unit(8, "feet"),
  10624. weight: math.unit(356, "lb"),
  10625. name: "Side (NSFW)",
  10626. image: {
  10627. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10628. extra: 997/901,
  10629. bottom: 59/1056
  10630. }
  10631. },
  10632. dick: {
  10633. height: math.unit(2.1, "feet"),
  10634. name: "Dick",
  10635. image: {
  10636. source: "./media/characters/adam-silver-mane/dick.svg"
  10637. }
  10638. },
  10639. taur: {
  10640. height: math.unit(16, "feet"),
  10641. weight: math.unit(1500, "kg"),
  10642. name: "Taur",
  10643. image: {
  10644. source: "./media/characters/adam-silver-mane/taur.svg",
  10645. extra: 1713 / 1571,
  10646. bottom: 0.01
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Normal",
  10653. height: math.unit(8, "feet")
  10654. },
  10655. {
  10656. name: "Minimacro",
  10657. height: math.unit(80, "feet")
  10658. },
  10659. {
  10660. name: "MDA",
  10661. height: math.unit(80, "meters")
  10662. },
  10663. {
  10664. name: "Macro",
  10665. height: math.unit(800, "feet"),
  10666. default: true
  10667. },
  10668. {
  10669. name: "Megamacro",
  10670. height: math.unit(8000, "feet")
  10671. },
  10672. {
  10673. name: "Gigamacro",
  10674. height: math.unit(800, "miles")
  10675. },
  10676. {
  10677. name: "Teramacro",
  10678. height: math.unit(80000, "miles")
  10679. },
  10680. {
  10681. name: "Celestial",
  10682. height: math.unit(8e6, "miles")
  10683. },
  10684. {
  10685. name: "Star Dragon",
  10686. height: math.unit(800000, "parsecs")
  10687. },
  10688. {
  10689. name: "Godly",
  10690. height: math.unit(800, "teraparsecs")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10696. {
  10697. front: {
  10698. height: math.unit(6, "feet"),
  10699. weight: math.unit(150, "lb"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/ky'owin/front.svg",
  10703. extra: 3888 / 3068,
  10704. bottom: 0.015
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Normal",
  10711. height: math.unit(6 + 8 / 12, "feet")
  10712. },
  10713. {
  10714. name: "Large",
  10715. height: math.unit(68, "feet")
  10716. },
  10717. {
  10718. name: "Macro",
  10719. height: math.unit(132, "feet")
  10720. },
  10721. {
  10722. name: "Macro+",
  10723. height: math.unit(340, "feet")
  10724. },
  10725. {
  10726. name: "Macro++",
  10727. height: math.unit(680, "feet"),
  10728. default: true
  10729. },
  10730. {
  10731. name: "Megamacro",
  10732. height: math.unit(1, "mile")
  10733. },
  10734. {
  10735. name: "Megamacro+",
  10736. height: math.unit(10, "miles")
  10737. },
  10738. ]
  10739. ))
  10740. characterMakers.push(() => makeCharacter(
  10741. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10742. {
  10743. front: {
  10744. height: math.unit(4, "feet"),
  10745. weight: math.unit(50, "lb"),
  10746. name: "Front",
  10747. image: {
  10748. source: "./media/characters/mal/front.svg",
  10749. extra: 785 / 724,
  10750. bottom: 0.07
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Micro",
  10757. height: math.unit(4, "inches")
  10758. },
  10759. {
  10760. name: "Normal",
  10761. height: math.unit(4, "feet"),
  10762. default: true
  10763. },
  10764. {
  10765. name: "Macro",
  10766. height: math.unit(200, "feet")
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10772. {
  10773. front: {
  10774. height: math.unit(6, "feet"),
  10775. weight: math.unit(150, "lb"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/jordan-deware/front.svg",
  10779. extra: 1191 / 1012
  10780. }
  10781. },
  10782. },
  10783. [
  10784. {
  10785. name: "Nano",
  10786. height: math.unit(0.01, "mm")
  10787. },
  10788. {
  10789. name: "Minimicro",
  10790. height: math.unit(1, "mm")
  10791. },
  10792. {
  10793. name: "Micro",
  10794. height: math.unit(0.5, "inches")
  10795. },
  10796. {
  10797. name: "Normal",
  10798. height: math.unit(4, "feet"),
  10799. default: true
  10800. },
  10801. {
  10802. name: "Minimacro",
  10803. height: math.unit(40, "meters")
  10804. },
  10805. {
  10806. name: "Small Macro",
  10807. height: math.unit(400, "meters")
  10808. },
  10809. {
  10810. name: "Macro",
  10811. height: math.unit(4, "miles")
  10812. },
  10813. {
  10814. name: "Megamacro",
  10815. height: math.unit(40, "miles")
  10816. },
  10817. {
  10818. name: "Megamacro+",
  10819. height: math.unit(400, "miles")
  10820. },
  10821. {
  10822. name: "Gigamacro",
  10823. height: math.unit(400000, "miles")
  10824. },
  10825. ]
  10826. ))
  10827. characterMakers.push(() => makeCharacter(
  10828. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10829. {
  10830. side: {
  10831. height: math.unit(6, "feet"),
  10832. weight: math.unit(150, "lb"),
  10833. name: "Side",
  10834. image: {
  10835. source: "./media/characters/kimiko/side.svg",
  10836. extra: 600 / 358
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Normal",
  10843. height: math.unit(15, "feet"),
  10844. default: true
  10845. },
  10846. {
  10847. name: "Macro",
  10848. height: math.unit(220, "feet")
  10849. },
  10850. {
  10851. name: "Macro+",
  10852. height: math.unit(1450, "feet")
  10853. },
  10854. {
  10855. name: "Megamacro",
  10856. height: math.unit(11500, "feet")
  10857. },
  10858. {
  10859. name: "Gigamacro",
  10860. height: math.unit(9500, "miles")
  10861. },
  10862. {
  10863. name: "Teramacro",
  10864. height: math.unit(2208005005, "miles")
  10865. },
  10866. {
  10867. name: "Examacro",
  10868. height: math.unit(2750, "parsecs")
  10869. },
  10870. {
  10871. name: "Zettamacro",
  10872. height: math.unit(101500, "parsecs")
  10873. },
  10874. ]
  10875. ))
  10876. characterMakers.push(() => makeCharacter(
  10877. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10878. {
  10879. front: {
  10880. height: math.unit(6, "feet"),
  10881. weight: math.unit(70, "kg"),
  10882. name: "Front",
  10883. image: {
  10884. source: "./media/characters/andrew-sleepy/front.svg"
  10885. }
  10886. },
  10887. side: {
  10888. height: math.unit(6, "feet"),
  10889. weight: math.unit(70, "kg"),
  10890. name: "Side",
  10891. image: {
  10892. source: "./media/characters/andrew-sleepy/side.svg"
  10893. }
  10894. },
  10895. },
  10896. [
  10897. {
  10898. name: "Micro",
  10899. height: math.unit(1, "mm"),
  10900. default: true
  10901. },
  10902. ]
  10903. ))
  10904. characterMakers.push(() => makeCharacter(
  10905. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10906. {
  10907. front: {
  10908. height: math.unit(6, "feet"),
  10909. weight: math.unit(150, "lb"),
  10910. name: "Front",
  10911. image: {
  10912. source: "./media/characters/judio/front.svg",
  10913. extra: 1258 / 1110
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Normal",
  10920. height: math.unit(5 + 6 / 12, "feet")
  10921. },
  10922. {
  10923. name: "Macro",
  10924. height: math.unit(1000, "feet"),
  10925. default: true
  10926. },
  10927. {
  10928. name: "Megamacro",
  10929. height: math.unit(10, "miles")
  10930. },
  10931. ]
  10932. ))
  10933. characterMakers.push(() => makeCharacter(
  10934. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10935. {
  10936. front: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(68, "kg"),
  10939. name: "Front",
  10940. image: {
  10941. source: "./media/characters/nomaxice/front.svg",
  10942. extra: 1498 / 1073,
  10943. bottom: 0.075
  10944. }
  10945. },
  10946. foot: {
  10947. height: math.unit(1.1, "feet"),
  10948. name: "Foot",
  10949. image: {
  10950. source: "./media/characters/nomaxice/foot.svg"
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Micro",
  10957. height: math.unit(8, "cm")
  10958. },
  10959. {
  10960. name: "Norm",
  10961. height: math.unit(1.82, "m")
  10962. },
  10963. {
  10964. name: "Norm+",
  10965. height: math.unit(8.8, "feet")
  10966. },
  10967. {
  10968. name: "Big",
  10969. height: math.unit(8, "meters"),
  10970. default: true
  10971. },
  10972. {
  10973. name: "Macro",
  10974. height: math.unit(18, "meters")
  10975. },
  10976. {
  10977. name: "Macro+",
  10978. height: math.unit(88, "meters")
  10979. },
  10980. ]
  10981. ))
  10982. characterMakers.push(() => makeCharacter(
  10983. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10984. {
  10985. front: {
  10986. height: math.unit(12, "feet"),
  10987. weight: math.unit(1.5, "tons"),
  10988. name: "Front",
  10989. image: {
  10990. source: "./media/characters/dydros/front.svg",
  10991. extra: 863 / 800,
  10992. bottom: 0.015
  10993. }
  10994. },
  10995. back: {
  10996. height: math.unit(12, "feet"),
  10997. weight: math.unit(1.5, "tons"),
  10998. name: "Back",
  10999. image: {
  11000. source: "./media/characters/dydros/back.svg",
  11001. extra: 900 / 843,
  11002. bottom: 0.005
  11003. }
  11004. },
  11005. },
  11006. [
  11007. {
  11008. name: "Normal",
  11009. height: math.unit(12, "feet"),
  11010. default: true
  11011. },
  11012. ]
  11013. ))
  11014. characterMakers.push(() => makeCharacter(
  11015. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11016. {
  11017. front: {
  11018. height: math.unit(6, "feet"),
  11019. weight: math.unit(100, "kg"),
  11020. name: "Front",
  11021. image: {
  11022. source: "./media/characters/riggi/front.svg",
  11023. extra: 5787 / 5303
  11024. }
  11025. },
  11026. hyper: {
  11027. height: math.unit(6 * 5 / 3, "feet"),
  11028. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11029. name: "Hyper",
  11030. image: {
  11031. source: "./media/characters/riggi/hyper.svg",
  11032. extra: 3595 / 3485
  11033. }
  11034. },
  11035. },
  11036. [
  11037. {
  11038. name: "Small Macro",
  11039. height: math.unit(50, "feet")
  11040. },
  11041. {
  11042. name: "Default",
  11043. height: math.unit(200, "feet"),
  11044. default: true
  11045. },
  11046. {
  11047. name: "Loom",
  11048. height: math.unit(10000, "feet")
  11049. },
  11050. {
  11051. name: "Cruising Altitude",
  11052. height: math.unit(30000, "feet")
  11053. },
  11054. {
  11055. name: "Megamacro",
  11056. height: math.unit(100, "miles")
  11057. },
  11058. {
  11059. name: "Continent Sized",
  11060. height: math.unit(2800, "miles")
  11061. },
  11062. {
  11063. name: "Earth Sized",
  11064. height: math.unit(8000, "miles")
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11070. {
  11071. front: {
  11072. height: math.unit(6, "feet"),
  11073. weight: math.unit(250, "lb"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/alexi/front.svg",
  11077. extra: 3483 / 3291,
  11078. bottom: 0.04
  11079. }
  11080. },
  11081. back: {
  11082. height: math.unit(6, "feet"),
  11083. weight: math.unit(250, "lb"),
  11084. name: "Back",
  11085. image: {
  11086. source: "./media/characters/alexi/back.svg",
  11087. extra: 3533 / 3356,
  11088. bottom: 0.021
  11089. }
  11090. },
  11091. frontTransforming: {
  11092. height: math.unit(8.58, "feet"),
  11093. weight: math.unit(1300, "lb"),
  11094. name: "Transforming",
  11095. image: {
  11096. source: "./media/characters/alexi/front-transforming.svg",
  11097. extra: 437 / 409,
  11098. bottom: 19 / 458.66
  11099. }
  11100. },
  11101. frontTransformed: {
  11102. height: math.unit(12.5, "feet"),
  11103. weight: math.unit(4000, "lb"),
  11104. name: "Transformed",
  11105. image: {
  11106. source: "./media/characters/alexi/front-transformed.svg",
  11107. extra: 639 / 614,
  11108. bottom: 30.55 / 671
  11109. }
  11110. },
  11111. },
  11112. [
  11113. {
  11114. name: "Normal",
  11115. height: math.unit(14, "feet"),
  11116. default: true
  11117. },
  11118. {
  11119. name: "Minimacro",
  11120. height: math.unit(30, "meters")
  11121. },
  11122. {
  11123. name: "Macro",
  11124. height: math.unit(500, "meters")
  11125. },
  11126. {
  11127. name: "Megamacro",
  11128. height: math.unit(9000, "km")
  11129. },
  11130. {
  11131. name: "Teramacro",
  11132. height: math.unit(384000, "km")
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11138. {
  11139. front: {
  11140. height: math.unit(6, "feet"),
  11141. weight: math.unit(150, "lb"),
  11142. name: "Front",
  11143. image: {
  11144. source: "./media/characters/kayroo/front.svg",
  11145. extra: 1153 / 1038,
  11146. bottom: 0.06
  11147. }
  11148. },
  11149. foot: {
  11150. height: math.unit(6, "feet"),
  11151. weight: math.unit(150, "lb"),
  11152. name: "Foot",
  11153. image: {
  11154. source: "./media/characters/kayroo/foot.svg"
  11155. }
  11156. },
  11157. },
  11158. [
  11159. {
  11160. name: "Normal",
  11161. height: math.unit(8, "feet"),
  11162. default: true
  11163. },
  11164. {
  11165. name: "Minimacro",
  11166. height: math.unit(250, "feet")
  11167. },
  11168. {
  11169. name: "Macro",
  11170. height: math.unit(2800, "feet")
  11171. },
  11172. {
  11173. name: "Megamacro",
  11174. height: math.unit(5200, "feet")
  11175. },
  11176. {
  11177. name: "Gigamacro",
  11178. height: math.unit(27000, "feet")
  11179. },
  11180. {
  11181. name: "Omega",
  11182. height: math.unit(45000, "feet")
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11188. {
  11189. front: {
  11190. height: math.unit(18, "feet"),
  11191. weight: math.unit(5800, "lb"),
  11192. name: "Front",
  11193. image: {
  11194. source: "./media/characters/rhys/front.svg",
  11195. extra: 3386 / 3090,
  11196. bottom: 0.07
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Normal",
  11203. height: math.unit(18, "feet"),
  11204. default: true
  11205. },
  11206. {
  11207. name: "Working Size",
  11208. height: math.unit(200, "feet")
  11209. },
  11210. {
  11211. name: "Demolition Size",
  11212. height: math.unit(2000, "feet")
  11213. },
  11214. {
  11215. name: "Maximum Licensed Size",
  11216. height: math.unit(5, "miles")
  11217. },
  11218. {
  11219. name: "Maximum Observed Size",
  11220. height: math.unit(10, "yottameters")
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11226. {
  11227. front: {
  11228. height: math.unit(6, "feet"),
  11229. weight: math.unit(250, "lb"),
  11230. name: "Front",
  11231. image: {
  11232. source: "./media/characters/toto/front.svg",
  11233. extra: 527 / 479,
  11234. bottom: 0.05
  11235. }
  11236. },
  11237. },
  11238. [
  11239. {
  11240. name: "Micro",
  11241. height: math.unit(3, "feet")
  11242. },
  11243. {
  11244. name: "Normal",
  11245. height: math.unit(10, "feet")
  11246. },
  11247. {
  11248. name: "Macro",
  11249. height: math.unit(150, "feet"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Megamacro",
  11254. height: math.unit(1200, "feet")
  11255. },
  11256. ]
  11257. ))
  11258. characterMakers.push(() => makeCharacter(
  11259. { name: "King", species: ["lion"], tags: ["anthro"] },
  11260. {
  11261. back: {
  11262. height: math.unit(6, "feet"),
  11263. weight: math.unit(150, "lb"),
  11264. name: "Back",
  11265. image: {
  11266. source: "./media/characters/king/back.svg"
  11267. }
  11268. },
  11269. },
  11270. [
  11271. {
  11272. name: "Micro",
  11273. height: math.unit(2, "inches")
  11274. },
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(8, "feet")
  11278. },
  11279. {
  11280. name: "Macro",
  11281. height: math.unit(200, "feet"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Megamacro",
  11286. height: math.unit(50, "miles")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(11, "feet"),
  11295. weight: math.unit(1400, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/cordite/front.svg",
  11299. extra: 1919/1827,
  11300. bottom: 40/1959
  11301. }
  11302. },
  11303. side: {
  11304. height: math.unit(11, "feet"),
  11305. weight: math.unit(1400, "lb"),
  11306. name: "Side",
  11307. image: {
  11308. source: "./media/characters/cordite/side.svg",
  11309. extra: 1908/1793,
  11310. bottom: 38/1946
  11311. }
  11312. },
  11313. back: {
  11314. height: math.unit(11, "feet"),
  11315. weight: math.unit(1400, "lb"),
  11316. name: "Back",
  11317. image: {
  11318. source: "./media/characters/cordite/back.svg",
  11319. extra: 1938/1837,
  11320. bottom: 10/1948
  11321. }
  11322. },
  11323. feral: {
  11324. height: math.unit(2, "feet"),
  11325. weight: math.unit(90, "lb"),
  11326. name: "Feral",
  11327. image: {
  11328. source: "./media/characters/cordite/feral.svg",
  11329. extra: 1260 / 755,
  11330. bottom: 0.05
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Normal",
  11337. height: math.unit(11, "feet"),
  11338. default: true
  11339. },
  11340. ]
  11341. ))
  11342. characterMakers.push(() => makeCharacter(
  11343. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11344. {
  11345. front: {
  11346. height: math.unit(6, "feet"),
  11347. weight: math.unit(150, "lb"),
  11348. name: "Front",
  11349. image: {
  11350. source: "./media/characters/pianostrong/front.svg",
  11351. extra: 6577 / 6254,
  11352. bottom: 0.02
  11353. }
  11354. },
  11355. side: {
  11356. height: math.unit(6, "feet"),
  11357. weight: math.unit(150, "lb"),
  11358. name: "Side",
  11359. image: {
  11360. source: "./media/characters/pianostrong/side.svg",
  11361. extra: 6106 / 5730
  11362. }
  11363. },
  11364. back: {
  11365. height: math.unit(6, "feet"),
  11366. weight: math.unit(150, "lb"),
  11367. name: "Back",
  11368. image: {
  11369. source: "./media/characters/pianostrong/back.svg",
  11370. extra: 6085 / 5733,
  11371. bottom: 0.01
  11372. }
  11373. },
  11374. },
  11375. [
  11376. {
  11377. name: "Macro",
  11378. height: math.unit(100, "feet")
  11379. },
  11380. {
  11381. name: "Macro+",
  11382. height: math.unit(300, "feet"),
  11383. default: true
  11384. },
  11385. {
  11386. name: "Macro++",
  11387. height: math.unit(1000, "feet")
  11388. },
  11389. ]
  11390. ))
  11391. characterMakers.push(() => makeCharacter(
  11392. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11393. {
  11394. front: {
  11395. height: math.unit(6, "feet"),
  11396. weight: math.unit(150, "lb"),
  11397. name: "Front",
  11398. image: {
  11399. source: "./media/characters/kona/front.svg",
  11400. extra: 2960 / 2629,
  11401. bottom: 0.005
  11402. }
  11403. },
  11404. },
  11405. [
  11406. {
  11407. name: "Normal",
  11408. height: math.unit(11 + 8 / 12, "feet")
  11409. },
  11410. {
  11411. name: "Macro",
  11412. height: math.unit(850, "feet"),
  11413. default: true
  11414. },
  11415. {
  11416. name: "Macro+",
  11417. height: math.unit(1.5, "km"),
  11418. default: true
  11419. },
  11420. {
  11421. name: "Megamacro",
  11422. height: math.unit(80, "miles")
  11423. },
  11424. {
  11425. name: "Gigamacro",
  11426. height: math.unit(3500, "miles")
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11432. {
  11433. side: {
  11434. height: math.unit(1.9, "meters"),
  11435. weight: math.unit(326, "kg"),
  11436. name: "Side",
  11437. image: {
  11438. source: "./media/characters/levi/side.svg",
  11439. extra: 1704 / 1334,
  11440. bottom: 0.02
  11441. }
  11442. },
  11443. },
  11444. [
  11445. {
  11446. name: "Normal",
  11447. height: math.unit(1.9, "meters"),
  11448. default: true
  11449. },
  11450. {
  11451. name: "Macro",
  11452. height: math.unit(20, "meters")
  11453. },
  11454. {
  11455. name: "Macro+",
  11456. height: math.unit(200, "meters")
  11457. },
  11458. {
  11459. name: "Megamacro",
  11460. height: math.unit(2, "km")
  11461. },
  11462. {
  11463. name: "Megamacro+",
  11464. height: math.unit(20, "km")
  11465. },
  11466. {
  11467. name: "Gigamacro",
  11468. height: math.unit(2500, "km")
  11469. },
  11470. {
  11471. name: "Gigamacro+",
  11472. height: math.unit(120000, "km")
  11473. },
  11474. {
  11475. name: "Teramacro",
  11476. height: math.unit(7.77e6, "km")
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11482. {
  11483. front: {
  11484. height: math.unit(6 + 4/12, "feet"),
  11485. weight: math.unit(190, "lb"),
  11486. name: "Front",
  11487. image: {
  11488. source: "./media/characters/bmc/front.svg",
  11489. extra: 1626/1472,
  11490. bottom: 79/1705
  11491. }
  11492. },
  11493. back: {
  11494. height: math.unit(6 + 4/12, "feet"),
  11495. weight: math.unit(190, "lb"),
  11496. name: "Back",
  11497. image: {
  11498. source: "./media/characters/bmc/back.svg",
  11499. extra: 1640/1479,
  11500. bottom: 45/1685
  11501. }
  11502. },
  11503. frontArmor: {
  11504. height: math.unit(6 + 4/12, "feet"),
  11505. weight: math.unit(190, "lb"),
  11506. name: "Front-armor",
  11507. image: {
  11508. source: "./media/characters/bmc/front-armor.svg",
  11509. extra: 1538/1468,
  11510. bottom: 79/1617
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Human-sized",
  11517. height: math.unit(6 + 4 / 12, "feet")
  11518. },
  11519. {
  11520. name: "Interactive Size",
  11521. height: math.unit(25, "feet")
  11522. },
  11523. {
  11524. name: "Small",
  11525. height: math.unit(250, "feet")
  11526. },
  11527. {
  11528. name: "Normal",
  11529. height: math.unit(1250, "feet"),
  11530. default: true
  11531. },
  11532. {
  11533. name: "Good Day",
  11534. height: math.unit(88, "miles")
  11535. },
  11536. {
  11537. name: "Largest Measured Size",
  11538. height: math.unit(105.960, "galaxies")
  11539. },
  11540. ]
  11541. ))
  11542. characterMakers.push(() => makeCharacter(
  11543. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11544. {
  11545. front: {
  11546. height: math.unit(20, "feet"),
  11547. weight: math.unit(2016, "kg"),
  11548. name: "Front",
  11549. image: {
  11550. source: "./media/characters/sven-the-kaiju/front.svg",
  11551. extra: 1277/1250,
  11552. bottom: 35/1312
  11553. }
  11554. },
  11555. mouth: {
  11556. height: math.unit(1.85, "feet"),
  11557. name: "Mouth",
  11558. image: {
  11559. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11560. }
  11561. },
  11562. },
  11563. [
  11564. {
  11565. name: "Fairy",
  11566. height: math.unit(6, "inches")
  11567. },
  11568. {
  11569. name: "Normal",
  11570. height: math.unit(20, "feet"),
  11571. default: true
  11572. },
  11573. {
  11574. name: "Rampage",
  11575. height: math.unit(200, "feet")
  11576. },
  11577. {
  11578. name: "Archfey Forest Guardian",
  11579. height: math.unit(1, "mile")
  11580. },
  11581. ]
  11582. ))
  11583. characterMakers.push(() => makeCharacter(
  11584. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11585. {
  11586. front: {
  11587. height: math.unit(4, "meters"),
  11588. weight: math.unit(2, "tons"),
  11589. name: "Front",
  11590. image: {
  11591. source: "./media/characters/marik/front.svg",
  11592. extra: 1057 / 1003,
  11593. bottom: 0.08
  11594. }
  11595. },
  11596. },
  11597. [
  11598. {
  11599. name: "Normal",
  11600. height: math.unit(4, "meters"),
  11601. default: true
  11602. },
  11603. {
  11604. name: "Macro",
  11605. height: math.unit(20, "meters")
  11606. },
  11607. {
  11608. name: "Megamacro",
  11609. height: math.unit(50, "km")
  11610. },
  11611. {
  11612. name: "Gigamacro",
  11613. height: math.unit(100, "km")
  11614. },
  11615. {
  11616. name: "Alpha Macro",
  11617. height: math.unit(7.88e7, "yottameters")
  11618. },
  11619. ]
  11620. ))
  11621. characterMakers.push(() => makeCharacter(
  11622. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11623. {
  11624. front: {
  11625. height: math.unit(6, "feet"),
  11626. weight: math.unit(110, "lb"),
  11627. name: "Front",
  11628. image: {
  11629. source: "./media/characters/mel/front.svg",
  11630. extra: 736 / 617,
  11631. bottom: 0.017
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Pico",
  11638. height: math.unit(3, "pm")
  11639. },
  11640. {
  11641. name: "Nano",
  11642. height: math.unit(3, "nm")
  11643. },
  11644. {
  11645. name: "Micro",
  11646. height: math.unit(0.3, "mm"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Micro+",
  11651. height: math.unit(3, "mm")
  11652. },
  11653. {
  11654. name: "Normal",
  11655. height: math.unit(5 + 10.5 / 12, "feet")
  11656. },
  11657. ]
  11658. ))
  11659. characterMakers.push(() => makeCharacter(
  11660. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11661. {
  11662. kaiju: {
  11663. height: math.unit(1.75, "meters"),
  11664. weight: math.unit(55, "kg"),
  11665. name: "Kaiju",
  11666. image: {
  11667. source: "./media/characters/lykonous/kaiju.svg",
  11668. extra: 1055 / 946,
  11669. bottom: 0.135
  11670. }
  11671. },
  11672. },
  11673. [
  11674. {
  11675. name: "Normal",
  11676. height: math.unit(2.5, "meters"),
  11677. default: true
  11678. },
  11679. {
  11680. name: "Kaiju Dragon",
  11681. height: math.unit(60, "meters")
  11682. },
  11683. {
  11684. name: "Mega Kaiju",
  11685. height: math.unit(120, "km")
  11686. },
  11687. {
  11688. name: "Giga Kaiju",
  11689. height: math.unit(200, "megameters")
  11690. },
  11691. {
  11692. name: "Terra Kaiju",
  11693. height: math.unit(400, "gigameters")
  11694. },
  11695. {
  11696. name: "Kaiju Dragon God",
  11697. height: math.unit(13000, "exaparsecs")
  11698. },
  11699. ]
  11700. ))
  11701. characterMakers.push(() => makeCharacter(
  11702. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11703. {
  11704. front: {
  11705. height: math.unit(6, "feet"),
  11706. weight: math.unit(150, "lb"),
  11707. name: "Front",
  11708. image: {
  11709. source: "./media/characters/blü/front.svg",
  11710. extra: 1883 / 1564,
  11711. bottom: 0.031
  11712. }
  11713. },
  11714. },
  11715. [
  11716. {
  11717. name: "Normal",
  11718. height: math.unit(13, "feet"),
  11719. default: true
  11720. },
  11721. {
  11722. name: "Big Boi",
  11723. height: math.unit(150, "meters")
  11724. },
  11725. {
  11726. name: "Mini Stomper",
  11727. height: math.unit(300, "meters")
  11728. },
  11729. {
  11730. name: "Macro",
  11731. height: math.unit(1000, "meters")
  11732. },
  11733. {
  11734. name: "Megamacro",
  11735. height: math.unit(11000, "meters")
  11736. },
  11737. {
  11738. name: "Gigamacro",
  11739. height: math.unit(11000, "km")
  11740. },
  11741. {
  11742. name: "Teramacro",
  11743. height: math.unit(420000, "km")
  11744. },
  11745. {
  11746. name: "Examacro",
  11747. height: math.unit(120, "parsecs")
  11748. },
  11749. {
  11750. name: "God Tho",
  11751. height: math.unit(98000000000, "parsecs")
  11752. },
  11753. ]
  11754. ))
  11755. characterMakers.push(() => makeCharacter(
  11756. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11757. {
  11758. taurFront: {
  11759. height: math.unit(6, "feet"),
  11760. weight: math.unit(200, "lb"),
  11761. name: "Taur (Front)",
  11762. image: {
  11763. source: "./media/characters/scales/taur-front.svg",
  11764. extra: 1,
  11765. bottom: 0.05
  11766. }
  11767. },
  11768. taurBack: {
  11769. height: math.unit(6, "feet"),
  11770. weight: math.unit(200, "lb"),
  11771. name: "Taur (Back)",
  11772. image: {
  11773. source: "./media/characters/scales/taur-back.svg",
  11774. extra: 1,
  11775. bottom: 0.08
  11776. }
  11777. },
  11778. anthro: {
  11779. height: math.unit(6 * 7 / 12, "feet"),
  11780. weight: math.unit(100, "lb"),
  11781. name: "Anthro",
  11782. image: {
  11783. source: "./media/characters/scales/anthro.svg",
  11784. extra: 1,
  11785. bottom: 0.06
  11786. }
  11787. },
  11788. },
  11789. [
  11790. {
  11791. name: "Normal",
  11792. height: math.unit(12, "feet"),
  11793. default: true
  11794. },
  11795. ]
  11796. ))
  11797. characterMakers.push(() => makeCharacter(
  11798. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11799. {
  11800. front: {
  11801. height: math.unit(6, "feet"),
  11802. weight: math.unit(150, "lb"),
  11803. name: "Front",
  11804. image: {
  11805. source: "./media/characters/koragos/front.svg",
  11806. extra: 841 / 794,
  11807. bottom: 0.035
  11808. }
  11809. },
  11810. back: {
  11811. height: math.unit(6, "feet"),
  11812. weight: math.unit(150, "lb"),
  11813. name: "Back",
  11814. image: {
  11815. source: "./media/characters/koragos/back.svg",
  11816. extra: 841 / 810,
  11817. bottom: 0.022
  11818. }
  11819. },
  11820. },
  11821. [
  11822. {
  11823. name: "Normal",
  11824. height: math.unit(6 + 11 / 12, "feet"),
  11825. default: true
  11826. },
  11827. {
  11828. name: "Macro",
  11829. height: math.unit(490, "feet")
  11830. },
  11831. {
  11832. name: "Megamacro",
  11833. height: math.unit(10, "miles")
  11834. },
  11835. {
  11836. name: "Gigamacro",
  11837. height: math.unit(50, "miles")
  11838. },
  11839. ]
  11840. ))
  11841. characterMakers.push(() => makeCharacter(
  11842. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11843. {
  11844. front: {
  11845. height: math.unit(6, "feet"),
  11846. weight: math.unit(250, "lb"),
  11847. name: "Front",
  11848. image: {
  11849. source: "./media/characters/xylrem/front.svg",
  11850. extra: 3323 / 3050,
  11851. bottom: 0.065
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Micro",
  11858. height: math.unit(4, "feet")
  11859. },
  11860. {
  11861. name: "Normal",
  11862. height: math.unit(16, "feet"),
  11863. default: true
  11864. },
  11865. {
  11866. name: "Macro",
  11867. height: math.unit(2720, "feet")
  11868. },
  11869. {
  11870. name: "Megamacro",
  11871. height: math.unit(25000, "miles")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(8, "feet"),
  11880. weight: math.unit(250, "kg"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/ikideru/front.svg",
  11884. extra: 930 / 870,
  11885. bottom: 0.087
  11886. }
  11887. },
  11888. back: {
  11889. height: math.unit(8, "feet"),
  11890. weight: math.unit(250, "kg"),
  11891. name: "Back",
  11892. image: {
  11893. source: "./media/characters/ikideru/back.svg",
  11894. extra: 919 / 852,
  11895. bottom: 0.055
  11896. }
  11897. },
  11898. },
  11899. [
  11900. {
  11901. name: "Rare",
  11902. height: math.unit(8, "feet"),
  11903. default: true
  11904. },
  11905. {
  11906. name: "Playful Loom",
  11907. height: math.unit(80, "feet")
  11908. },
  11909. {
  11910. name: "City Leaner",
  11911. height: math.unit(230, "feet")
  11912. },
  11913. {
  11914. name: "Megamacro",
  11915. height: math.unit(2500, "feet")
  11916. },
  11917. {
  11918. name: "Gigamacro",
  11919. height: math.unit(26400, "feet")
  11920. },
  11921. {
  11922. name: "Tectonic Shifter",
  11923. height: math.unit(1.7, "megameters")
  11924. },
  11925. {
  11926. name: "Planet Carer",
  11927. height: math.unit(21, "megameters")
  11928. },
  11929. {
  11930. name: "God",
  11931. height: math.unit(11157.22, "parsecs")
  11932. },
  11933. ]
  11934. ))
  11935. characterMakers.push(() => makeCharacter(
  11936. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11937. {
  11938. front: {
  11939. height: math.unit(6, "feet"),
  11940. weight: math.unit(120, "lb"),
  11941. name: "Front",
  11942. image: {
  11943. source: "./media/characters/neo/front.svg"
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Micro",
  11950. height: math.unit(2, "inches"),
  11951. default: true
  11952. },
  11953. {
  11954. name: "Human Size",
  11955. height: math.unit(5 + 8 / 12, "feet")
  11956. },
  11957. ]
  11958. ))
  11959. characterMakers.push(() => makeCharacter(
  11960. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11961. {
  11962. front: {
  11963. height: math.unit(13 + 10 / 12, "feet"),
  11964. weight: math.unit(5320, "lb"),
  11965. name: "Front",
  11966. image: {
  11967. source: "./media/characters/chauncey-chantz/front.svg",
  11968. extra: 1587 / 1435,
  11969. bottom: 0.02
  11970. }
  11971. },
  11972. },
  11973. [
  11974. {
  11975. name: "Normal",
  11976. height: math.unit(13 + 10 / 12, "feet"),
  11977. default: true
  11978. },
  11979. {
  11980. name: "Macro",
  11981. height: math.unit(45, "feet")
  11982. },
  11983. {
  11984. name: "Megamacro",
  11985. height: math.unit(250, "miles")
  11986. },
  11987. {
  11988. name: "Planetary",
  11989. height: math.unit(10000, "miles")
  11990. },
  11991. {
  11992. name: "Galactic",
  11993. height: math.unit(40000, "parsecs")
  11994. },
  11995. {
  11996. name: "Universal",
  11997. height: math.unit(1, "yottameter")
  11998. },
  11999. ]
  12000. ))
  12001. characterMakers.push(() => makeCharacter(
  12002. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12003. {
  12004. front: {
  12005. height: math.unit(6, "feet"),
  12006. weight: math.unit(150, "lb"),
  12007. name: "Front",
  12008. image: {
  12009. source: "./media/characters/epifox/front.svg",
  12010. extra: 1,
  12011. bottom: 0.075
  12012. }
  12013. },
  12014. },
  12015. [
  12016. {
  12017. name: "Micro",
  12018. height: math.unit(6, "inches")
  12019. },
  12020. {
  12021. name: "Normal",
  12022. height: math.unit(12, "feet"),
  12023. default: true
  12024. },
  12025. {
  12026. name: "Macro",
  12027. height: math.unit(3810, "feet")
  12028. },
  12029. {
  12030. name: "Megamacro",
  12031. height: math.unit(500, "miles")
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12037. {
  12038. front: {
  12039. height: math.unit(1.8796, "m"),
  12040. weight: math.unit(230, "lb"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/colin-t/front.svg",
  12044. extra: 1272 / 1193,
  12045. bottom: 0.07
  12046. }
  12047. },
  12048. },
  12049. [
  12050. {
  12051. name: "Micro",
  12052. height: math.unit(0.571, "meters")
  12053. },
  12054. {
  12055. name: "Normal",
  12056. height: math.unit(1.8796, "meters"),
  12057. default: true
  12058. },
  12059. {
  12060. name: "Tall",
  12061. height: math.unit(4, "meters")
  12062. },
  12063. {
  12064. name: "Macro",
  12065. height: math.unit(67.241, "meters")
  12066. },
  12067. {
  12068. name: "Megamacro",
  12069. height: math.unit(371.856, "meters")
  12070. },
  12071. {
  12072. name: "Planetary",
  12073. height: math.unit(12631.5689, "km")
  12074. },
  12075. ]
  12076. ))
  12077. characterMakers.push(() => makeCharacter(
  12078. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12079. {
  12080. front: {
  12081. height: math.unit(1.85, "meters"),
  12082. weight: math.unit(80, "kg"),
  12083. name: "Front",
  12084. image: {
  12085. source: "./media/characters/matvei/front.svg",
  12086. extra: 614 / 594,
  12087. bottom: 0.01
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Normal",
  12094. height: math.unit(1.85, "meters"),
  12095. default: true
  12096. },
  12097. ]
  12098. ))
  12099. characterMakers.push(() => makeCharacter(
  12100. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12101. {
  12102. front: {
  12103. height: math.unit(5 + 9 / 12, "feet"),
  12104. weight: math.unit(70, "lb"),
  12105. name: "Front",
  12106. image: {
  12107. source: "./media/characters/quincy/front.svg",
  12108. extra: 3041 / 2751
  12109. }
  12110. },
  12111. back: {
  12112. height: math.unit(5 + 9 / 12, "feet"),
  12113. weight: math.unit(70, "lb"),
  12114. name: "Back",
  12115. image: {
  12116. source: "./media/characters/quincy/back.svg",
  12117. extra: 3041 / 2751
  12118. }
  12119. },
  12120. flying: {
  12121. height: math.unit(5 + 4 / 12, "feet"),
  12122. weight: math.unit(70, "lb"),
  12123. name: "Flying",
  12124. image: {
  12125. source: "./media/characters/quincy/flying.svg",
  12126. extra: 1044 / 930
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Micro",
  12133. height: math.unit(3, "cm")
  12134. },
  12135. {
  12136. name: "Normal",
  12137. height: math.unit(5 + 9 / 12, "feet")
  12138. },
  12139. {
  12140. name: "Macro",
  12141. height: math.unit(200, "meters"),
  12142. default: true
  12143. },
  12144. {
  12145. name: "Megamacro",
  12146. height: math.unit(1000, "meters")
  12147. },
  12148. ]
  12149. ))
  12150. characterMakers.push(() => makeCharacter(
  12151. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12152. {
  12153. front: {
  12154. height: math.unit(3 + 11/12, "feet"),
  12155. weight: math.unit(50, "lb"),
  12156. name: "Front",
  12157. image: {
  12158. source: "./media/characters/vanrel/front.svg",
  12159. extra: 1104/949,
  12160. bottom: 52/1156
  12161. }
  12162. },
  12163. back: {
  12164. height: math.unit(3 + 11/12, "feet"),
  12165. weight: math.unit(50, "lb"),
  12166. name: "Back",
  12167. image: {
  12168. source: "./media/characters/vanrel/back.svg",
  12169. extra: 1119/976,
  12170. bottom: 37/1156
  12171. }
  12172. },
  12173. tome: {
  12174. height: math.unit(1.35, "feet"),
  12175. weight: math.unit(10, "lb"),
  12176. name: "Vanrel's Tome",
  12177. rename: true,
  12178. image: {
  12179. source: "./media/characters/vanrel/tome.svg"
  12180. }
  12181. },
  12182. beans: {
  12183. height: math.unit(0.89, "feet"),
  12184. name: "Beans",
  12185. image: {
  12186. source: "./media/characters/vanrel/beans.svg"
  12187. }
  12188. },
  12189. },
  12190. [
  12191. {
  12192. name: "Normal",
  12193. height: math.unit(3 + 11/12, "feet"),
  12194. default: true
  12195. },
  12196. ]
  12197. ))
  12198. characterMakers.push(() => makeCharacter(
  12199. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12200. {
  12201. front: {
  12202. height: math.unit(7 + 5 / 12, "feet"),
  12203. name: "Front",
  12204. image: {
  12205. source: "./media/characters/kuiper-vanrel/front.svg",
  12206. extra: 1219/1169,
  12207. bottom: 69/1288
  12208. }
  12209. },
  12210. back: {
  12211. height: math.unit(7 + 5 / 12, "feet"),
  12212. name: "Back",
  12213. image: {
  12214. source: "./media/characters/kuiper-vanrel/back.svg",
  12215. extra: 1236/1193,
  12216. bottom: 27/1263
  12217. }
  12218. },
  12219. foot: {
  12220. height: math.unit(0.55, "meters"),
  12221. name: "Foot",
  12222. image: {
  12223. source: "./media/characters/kuiper-vanrel/foot.svg",
  12224. }
  12225. },
  12226. battle: {
  12227. height: math.unit(6.824, "feet"),
  12228. name: "Battle",
  12229. image: {
  12230. source: "./media/characters/kuiper-vanrel/battle.svg",
  12231. extra: 1466 / 1327,
  12232. bottom: 29 / 1492.5
  12233. }
  12234. },
  12235. meerkui: {
  12236. height: math.unit(18, "inches"),
  12237. name: "Meerkui",
  12238. image: {
  12239. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12240. extra: 1354/1289,
  12241. bottom: 69/1423
  12242. }
  12243. },
  12244. },
  12245. [
  12246. {
  12247. name: "Normal",
  12248. height: math.unit(7 + 5 / 12, "feet"),
  12249. default: true
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(8 + 5 / 12, "feet"),
  12258. name: "Front",
  12259. image: {
  12260. source: "./media/characters/keset-vanrel/front.svg",
  12261. extra: 1231/1148,
  12262. bottom: 82/1313
  12263. }
  12264. },
  12265. back: {
  12266. height: math.unit(8 + 5 / 12, "feet"),
  12267. name: "Back",
  12268. image: {
  12269. source: "./media/characters/keset-vanrel/back.svg",
  12270. extra: 1240/1174,
  12271. bottom: 33/1273
  12272. }
  12273. },
  12274. hand: {
  12275. height: math.unit(0.6, "meters"),
  12276. name: "Hand",
  12277. image: {
  12278. source: "./media/characters/keset-vanrel/hand.svg"
  12279. }
  12280. },
  12281. foot: {
  12282. height: math.unit(0.94978, "meters"),
  12283. name: "Foot",
  12284. image: {
  12285. source: "./media/characters/keset-vanrel/foot.svg"
  12286. }
  12287. },
  12288. battle: {
  12289. height: math.unit(7.408, "feet"),
  12290. name: "Battle",
  12291. image: {
  12292. source: "./media/characters/keset-vanrel/battle.svg",
  12293. extra: 1890 / 1386,
  12294. bottom: 73.28 / 1970
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Normal",
  12301. height: math.unit(8 + 5 / 12, "feet"),
  12302. default: true
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12308. {
  12309. front: {
  12310. height: math.unit(6, "feet"),
  12311. weight: math.unit(150, "lb"),
  12312. name: "Front",
  12313. image: {
  12314. source: "./media/characters/neos/front.svg",
  12315. extra: 1696 / 992,
  12316. bottom: 0.14
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(54, "cm"),
  12324. default: true
  12325. },
  12326. {
  12327. name: "Macro",
  12328. height: math.unit(100, "m")
  12329. },
  12330. {
  12331. name: "Megamacro",
  12332. height: math.unit(10, "km")
  12333. },
  12334. {
  12335. name: "Megamacro+",
  12336. height: math.unit(100, "km")
  12337. },
  12338. {
  12339. name: "Gigamacro",
  12340. height: math.unit(100, "Mm")
  12341. },
  12342. {
  12343. name: "Teramacro",
  12344. height: math.unit(100, "Gm")
  12345. },
  12346. {
  12347. name: "Examacro",
  12348. height: math.unit(100, "Em")
  12349. },
  12350. {
  12351. name: "Godly",
  12352. height: math.unit(10000, "Ym")
  12353. },
  12354. {
  12355. name: "Beyond Godly",
  12356. height: math.unit(25, "multiverses")
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12362. {
  12363. feminine: {
  12364. height: math.unit(5, "feet"),
  12365. weight: math.unit(100, "lb"),
  12366. name: "Feminine",
  12367. image: {
  12368. source: "./media/characters/sammy-mouse/feminine.svg",
  12369. extra: 2526 / 2425,
  12370. bottom: 0.123
  12371. }
  12372. },
  12373. masculine: {
  12374. height: math.unit(5, "feet"),
  12375. weight: math.unit(100, "lb"),
  12376. name: "Masculine",
  12377. image: {
  12378. source: "./media/characters/sammy-mouse/masculine.svg",
  12379. extra: 2526 / 2425,
  12380. bottom: 0.123
  12381. }
  12382. },
  12383. },
  12384. [
  12385. {
  12386. name: "Micro",
  12387. height: math.unit(5, "inches")
  12388. },
  12389. {
  12390. name: "Normal",
  12391. height: math.unit(5, "feet"),
  12392. default: true
  12393. },
  12394. {
  12395. name: "Macro",
  12396. height: math.unit(60, "feet")
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12402. {
  12403. front: {
  12404. height: math.unit(4, "feet"),
  12405. weight: math.unit(50, "lb"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/kole/front.svg",
  12409. extra: 1423 / 1303,
  12410. bottom: 0.025
  12411. }
  12412. },
  12413. back: {
  12414. height: math.unit(4, "feet"),
  12415. weight: math.unit(50, "lb"),
  12416. name: "Back",
  12417. image: {
  12418. source: "./media/characters/kole/back.svg",
  12419. extra: 1426 / 1280,
  12420. bottom: 0.02
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(4, "feet"),
  12428. default: true
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12434. {
  12435. front: {
  12436. height: math.unit(2.5, "feet"),
  12437. weight: math.unit(32, "lb"),
  12438. name: "Front",
  12439. image: {
  12440. source: "./media/characters/rufran/front.svg",
  12441. extra: 1313/885,
  12442. bottom: 94/1407
  12443. }
  12444. },
  12445. side: {
  12446. height: math.unit(2.5, "feet"),
  12447. weight: math.unit(32, "lb"),
  12448. name: "Side",
  12449. image: {
  12450. source: "./media/characters/rufran/side.svg",
  12451. extra: 1109/852,
  12452. bottom: 118/1227
  12453. }
  12454. },
  12455. back: {
  12456. height: math.unit(2.5, "feet"),
  12457. weight: math.unit(32, "lb"),
  12458. name: "Back",
  12459. image: {
  12460. source: "./media/characters/rufran/back.svg",
  12461. extra: 1280/878,
  12462. bottom: 131/1411
  12463. }
  12464. },
  12465. mouth: {
  12466. height: math.unit(1.13, "feet"),
  12467. name: "Mouth",
  12468. image: {
  12469. source: "./media/characters/rufran/mouth.svg"
  12470. }
  12471. },
  12472. foot: {
  12473. height: math.unit(1.33, "feet"),
  12474. name: "Foot",
  12475. image: {
  12476. source: "./media/characters/rufran/foot.svg"
  12477. }
  12478. },
  12479. koboldFront: {
  12480. height: math.unit(2 + 6 / 12, "feet"),
  12481. weight: math.unit(20, "lb"),
  12482. name: "Front (Kobold)",
  12483. image: {
  12484. source: "./media/characters/rufran/kobold-front.svg",
  12485. extra: 2041 / 1839,
  12486. bottom: 0.055
  12487. }
  12488. },
  12489. koboldBack: {
  12490. height: math.unit(2 + 6 / 12, "feet"),
  12491. weight: math.unit(20, "lb"),
  12492. name: "Back (Kobold)",
  12493. image: {
  12494. source: "./media/characters/rufran/kobold-back.svg",
  12495. extra: 2054 / 1839,
  12496. bottom: 0.01
  12497. }
  12498. },
  12499. koboldHand: {
  12500. height: math.unit(0.2166, "meters"),
  12501. name: "Hand (Kobold)",
  12502. image: {
  12503. source: "./media/characters/rufran/kobold-hand.svg"
  12504. }
  12505. },
  12506. koboldFoot: {
  12507. height: math.unit(0.185, "meters"),
  12508. name: "Foot (Kobold)",
  12509. image: {
  12510. source: "./media/characters/rufran/kobold-foot.svg"
  12511. }
  12512. },
  12513. },
  12514. [
  12515. {
  12516. name: "Micro",
  12517. height: math.unit(1, "inch")
  12518. },
  12519. {
  12520. name: "Normal",
  12521. height: math.unit(2 + 6 / 12, "feet"),
  12522. default: true
  12523. },
  12524. {
  12525. name: "Big",
  12526. height: math.unit(60, "feet")
  12527. },
  12528. {
  12529. name: "Macro",
  12530. height: math.unit(325, "feet")
  12531. },
  12532. ]
  12533. ))
  12534. characterMakers.push(() => makeCharacter(
  12535. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12536. {
  12537. front: {
  12538. height: math.unit(0.3, "meters"),
  12539. weight: math.unit(3.5, "kg"),
  12540. name: "Front",
  12541. image: {
  12542. source: "./media/characters/chip/front.svg",
  12543. extra: 748 / 674
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Micro",
  12550. height: math.unit(1, "inch"),
  12551. default: true
  12552. },
  12553. ]
  12554. ))
  12555. characterMakers.push(() => makeCharacter(
  12556. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12557. {
  12558. side: {
  12559. height: math.unit(2.3, "meters"),
  12560. weight: math.unit(3500, "lb"),
  12561. name: "Side",
  12562. image: {
  12563. source: "./media/characters/torvid/side.svg",
  12564. extra: 1972 / 722,
  12565. bottom: 0.035
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Normal",
  12572. height: math.unit(2.3, "meters"),
  12573. default: true
  12574. },
  12575. ]
  12576. ))
  12577. characterMakers.push(() => makeCharacter(
  12578. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12579. {
  12580. front: {
  12581. height: math.unit(2, "meters"),
  12582. weight: math.unit(150.5, "kg"),
  12583. name: "Front",
  12584. image: {
  12585. source: "./media/characters/susan/front.svg",
  12586. extra: 693 / 635,
  12587. bottom: 0.05
  12588. }
  12589. },
  12590. },
  12591. [
  12592. {
  12593. name: "Megamacro",
  12594. height: math.unit(505, "miles"),
  12595. default: true
  12596. },
  12597. ]
  12598. ))
  12599. characterMakers.push(() => makeCharacter(
  12600. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12601. {
  12602. front: {
  12603. height: math.unit(6, "feet"),
  12604. weight: math.unit(150, "lb"),
  12605. name: "Front",
  12606. image: {
  12607. source: "./media/characters/raindrops/front.svg",
  12608. extra: 2655 / 2461,
  12609. bottom: 49 / 2705
  12610. }
  12611. },
  12612. back: {
  12613. height: math.unit(6, "feet"),
  12614. weight: math.unit(150, "lb"),
  12615. name: "Back",
  12616. image: {
  12617. source: "./media/characters/raindrops/back.svg",
  12618. extra: 2574 / 2400,
  12619. bottom: 65 / 2634
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Micro",
  12626. height: math.unit(6, "inches")
  12627. },
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(6 + 2 / 12, "feet")
  12631. },
  12632. {
  12633. name: "Macro",
  12634. height: math.unit(131, "feet"),
  12635. default: true
  12636. },
  12637. {
  12638. name: "Megamacro",
  12639. height: math.unit(15, "miles")
  12640. },
  12641. {
  12642. name: "Gigamacro",
  12643. height: math.unit(4000, "miles")
  12644. },
  12645. {
  12646. name: "Teramacro",
  12647. height: math.unit(315000, "miles")
  12648. },
  12649. ]
  12650. ))
  12651. characterMakers.push(() => makeCharacter(
  12652. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12653. {
  12654. front: {
  12655. height: math.unit(2.794, "meters"),
  12656. weight: math.unit(325, "kg"),
  12657. name: "Front",
  12658. image: {
  12659. source: "./media/characters/tezwa/front.svg",
  12660. extra: 2083 / 1906,
  12661. bottom: 0.031
  12662. }
  12663. },
  12664. foot: {
  12665. height: math.unit(0.687, "meters"),
  12666. name: "Foot",
  12667. image: {
  12668. source: "./media/characters/tezwa/foot.svg"
  12669. }
  12670. },
  12671. },
  12672. [
  12673. {
  12674. name: "Normal",
  12675. height: math.unit(9 + 2 / 12, "feet"),
  12676. default: true
  12677. },
  12678. ]
  12679. ))
  12680. characterMakers.push(() => makeCharacter(
  12681. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12682. {
  12683. front: {
  12684. height: math.unit(58, "feet"),
  12685. weight: math.unit(89000, "lb"),
  12686. name: "Front",
  12687. image: {
  12688. source: "./media/characters/typhus/front.svg",
  12689. extra: 816 / 800,
  12690. bottom: 0.065
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Macro",
  12697. height: math.unit(58, "feet"),
  12698. default: true
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12704. {
  12705. front: {
  12706. height: math.unit(12, "feet"),
  12707. weight: math.unit(6, "tonnes"),
  12708. name: "Front",
  12709. image: {
  12710. source: "./media/characters/lyra-von-wulf/front.svg",
  12711. extra: 1,
  12712. bottom: 0.10
  12713. }
  12714. },
  12715. frontMecha: {
  12716. height: math.unit(12, "feet"),
  12717. weight: math.unit(12, "tonnes"),
  12718. name: "Front (Mecha)",
  12719. image: {
  12720. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12721. extra: 1,
  12722. bottom: 0.042
  12723. }
  12724. },
  12725. maw: {
  12726. height: math.unit(2.2, "feet"),
  12727. name: "Maw",
  12728. image: {
  12729. source: "./media/characters/lyra-von-wulf/maw.svg"
  12730. }
  12731. },
  12732. },
  12733. [
  12734. {
  12735. name: "Normal",
  12736. height: math.unit(12, "feet"),
  12737. default: true
  12738. },
  12739. {
  12740. name: "Classic",
  12741. height: math.unit(50, "feet")
  12742. },
  12743. {
  12744. name: "Macro",
  12745. height: math.unit(500, "feet")
  12746. },
  12747. {
  12748. name: "Megamacro",
  12749. height: math.unit(1, "mile")
  12750. },
  12751. {
  12752. name: "Gigamacro",
  12753. height: math.unit(400, "miles")
  12754. },
  12755. {
  12756. name: "Teramacro",
  12757. height: math.unit(22000, "miles")
  12758. },
  12759. {
  12760. name: "Solarmacro",
  12761. height: math.unit(8600000, "miles")
  12762. },
  12763. {
  12764. name: "Galactic",
  12765. height: math.unit(1057000, "lightyears")
  12766. },
  12767. ]
  12768. ))
  12769. characterMakers.push(() => makeCharacter(
  12770. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12771. {
  12772. front: {
  12773. height: math.unit(6 + 10 / 12, "feet"),
  12774. weight: math.unit(150, "lb"),
  12775. name: "Front",
  12776. image: {
  12777. source: "./media/characters/dixon/front.svg",
  12778. extra: 3361 / 3209,
  12779. bottom: 0.01
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Normal",
  12786. height: math.unit(6 + 10 / 12, "feet"),
  12787. default: true
  12788. },
  12789. {
  12790. name: "Big",
  12791. height: math.unit(12, "meters")
  12792. },
  12793. {
  12794. name: "Macro",
  12795. height: math.unit(500, "meters")
  12796. },
  12797. {
  12798. name: "Megamacro",
  12799. height: math.unit(2, "km")
  12800. },
  12801. ]
  12802. ))
  12803. characterMakers.push(() => makeCharacter(
  12804. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12805. {
  12806. front: {
  12807. height: math.unit(185, "cm"),
  12808. weight: math.unit(68, "kg"),
  12809. name: "Front",
  12810. image: {
  12811. source: "./media/characters/kauko/front.svg",
  12812. extra: 1455 / 1421,
  12813. bottom: 0.03
  12814. }
  12815. },
  12816. back: {
  12817. height: math.unit(185, "cm"),
  12818. weight: math.unit(68, "kg"),
  12819. name: "Back",
  12820. image: {
  12821. source: "./media/characters/kauko/back.svg",
  12822. extra: 1455 / 1421,
  12823. bottom: 0.004
  12824. }
  12825. },
  12826. },
  12827. [
  12828. {
  12829. name: "Normal",
  12830. height: math.unit(185, "cm"),
  12831. default: true
  12832. },
  12833. ]
  12834. ))
  12835. characterMakers.push(() => makeCharacter(
  12836. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12837. {
  12838. front: {
  12839. height: math.unit(6, "feet"),
  12840. weight: math.unit(150, "kg"),
  12841. name: "Front",
  12842. image: {
  12843. source: "./media/characters/varg/front.svg",
  12844. extra: 1108 / 1018,
  12845. bottom: 0.0375
  12846. }
  12847. },
  12848. },
  12849. [
  12850. {
  12851. name: "Normal",
  12852. height: math.unit(5, "meters")
  12853. },
  12854. {
  12855. name: "Macro",
  12856. height: math.unit(200, "meters")
  12857. },
  12858. {
  12859. name: "Megamacro",
  12860. height: math.unit(20, "kilometers")
  12861. },
  12862. {
  12863. name: "True Size",
  12864. height: math.unit(211, "km"),
  12865. default: true
  12866. },
  12867. {
  12868. name: "Gigamacro",
  12869. height: math.unit(1000, "km")
  12870. },
  12871. {
  12872. name: "Gigamacro+",
  12873. height: math.unit(8000, "km")
  12874. },
  12875. {
  12876. name: "Teramacro",
  12877. height: math.unit(1000000, "km")
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12883. {
  12884. front: {
  12885. height: math.unit(7 + 7 / 12, "feet"),
  12886. weight: math.unit(267, "lb"),
  12887. name: "Front",
  12888. image: {
  12889. source: "./media/characters/dayza/front.svg",
  12890. extra: 1262 / 1200,
  12891. bottom: 0.035
  12892. }
  12893. },
  12894. side: {
  12895. height: math.unit(7 + 7 / 12, "feet"),
  12896. weight: math.unit(267, "lb"),
  12897. name: "Side",
  12898. image: {
  12899. source: "./media/characters/dayza/side.svg",
  12900. extra: 1295 / 1245,
  12901. bottom: 0.05
  12902. }
  12903. },
  12904. back: {
  12905. height: math.unit(7 + 7 / 12, "feet"),
  12906. weight: math.unit(267, "lb"),
  12907. name: "Back",
  12908. image: {
  12909. source: "./media/characters/dayza/back.svg",
  12910. extra: 1241 / 1170
  12911. }
  12912. },
  12913. },
  12914. [
  12915. {
  12916. name: "Normal",
  12917. height: math.unit(7 + 7 / 12, "feet"),
  12918. default: true
  12919. },
  12920. {
  12921. name: "Macro",
  12922. height: math.unit(155, "feet")
  12923. },
  12924. ]
  12925. ))
  12926. characterMakers.push(() => makeCharacter(
  12927. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12928. {
  12929. front: {
  12930. height: math.unit(6 + 5 / 12, "feet"),
  12931. weight: math.unit(160, "lb"),
  12932. name: "Front",
  12933. image: {
  12934. source: "./media/characters/xanthos/front.svg",
  12935. extra: 1,
  12936. bottom: 0.04
  12937. }
  12938. },
  12939. back: {
  12940. height: math.unit(6 + 5 / 12, "feet"),
  12941. weight: math.unit(160, "lb"),
  12942. name: "Back",
  12943. image: {
  12944. source: "./media/characters/xanthos/back.svg",
  12945. extra: 1,
  12946. bottom: 0.03
  12947. }
  12948. },
  12949. hand: {
  12950. height: math.unit(0.928, "feet"),
  12951. name: "Hand",
  12952. image: {
  12953. source: "./media/characters/xanthos/hand.svg"
  12954. }
  12955. },
  12956. foot: {
  12957. height: math.unit(1.286, "feet"),
  12958. name: "Foot",
  12959. image: {
  12960. source: "./media/characters/xanthos/foot.svg"
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Normal",
  12967. height: math.unit(6 + 5 / 12, "feet"),
  12968. default: true
  12969. },
  12970. {
  12971. name: "Normal+",
  12972. height: math.unit(6, "meters")
  12973. },
  12974. {
  12975. name: "Macro",
  12976. height: math.unit(40, "feet")
  12977. },
  12978. {
  12979. name: "Macro+",
  12980. height: math.unit(200, "meters")
  12981. },
  12982. {
  12983. name: "Megamacro",
  12984. height: math.unit(20, "km")
  12985. },
  12986. {
  12987. name: "Megamacro+",
  12988. height: math.unit(100, "km")
  12989. },
  12990. {
  12991. name: "Gigamacro",
  12992. height: math.unit(200, "megameters")
  12993. },
  12994. {
  12995. name: "Gigamacro+",
  12996. height: math.unit(1.5, "gigameters")
  12997. },
  12998. ]
  12999. ))
  13000. characterMakers.push(() => makeCharacter(
  13001. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13002. {
  13003. front: {
  13004. height: math.unit(6 + 3 / 12, "feet"),
  13005. weight: math.unit(215, "lb"),
  13006. name: "Front",
  13007. image: {
  13008. source: "./media/characters/grynn/front.svg",
  13009. extra: 4627 / 4209,
  13010. bottom: 0.047
  13011. }
  13012. },
  13013. },
  13014. [
  13015. {
  13016. name: "Micro",
  13017. height: math.unit(6, "inches")
  13018. },
  13019. {
  13020. name: "Normal",
  13021. height: math.unit(6 + 3 / 12, "feet"),
  13022. default: true
  13023. },
  13024. {
  13025. name: "Big",
  13026. height: math.unit(104, "feet")
  13027. },
  13028. {
  13029. name: "Macro",
  13030. height: math.unit(944, "feet")
  13031. },
  13032. {
  13033. name: "Macro+",
  13034. height: math.unit(9480, "feet")
  13035. },
  13036. {
  13037. name: "Megamacro",
  13038. height: math.unit(78752, "feet")
  13039. },
  13040. {
  13041. name: "Megamacro+",
  13042. height: math.unit(630128, "feet")
  13043. },
  13044. {
  13045. name: "Megamacro++",
  13046. height: math.unit(3150695, "feet")
  13047. },
  13048. ]
  13049. ))
  13050. characterMakers.push(() => makeCharacter(
  13051. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13052. {
  13053. front: {
  13054. height: math.unit(7 + 5 / 12, "feet"),
  13055. weight: math.unit(450, "lb"),
  13056. name: "Front",
  13057. image: {
  13058. source: "./media/characters/mocha-aura/front.svg",
  13059. extra: 1907 / 1817,
  13060. bottom: 0.04
  13061. }
  13062. },
  13063. back: {
  13064. height: math.unit(7 + 5 / 12, "feet"),
  13065. weight: math.unit(450, "lb"),
  13066. name: "Back",
  13067. image: {
  13068. source: "./media/characters/mocha-aura/back.svg",
  13069. extra: 1900 / 1825,
  13070. bottom: 0.045
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Nano",
  13077. height: math.unit(1, "nm")
  13078. },
  13079. {
  13080. name: "Megamicro",
  13081. height: math.unit(1, "mm")
  13082. },
  13083. {
  13084. name: "Micro",
  13085. height: math.unit(3, "inches")
  13086. },
  13087. {
  13088. name: "Normal",
  13089. height: math.unit(7 + 5 / 12, "feet"),
  13090. default: true
  13091. },
  13092. {
  13093. name: "Macro",
  13094. height: math.unit(30, "feet")
  13095. },
  13096. {
  13097. name: "Megamacro",
  13098. height: math.unit(3500, "feet")
  13099. },
  13100. {
  13101. name: "Teramacro",
  13102. height: math.unit(500000, "miles")
  13103. },
  13104. {
  13105. name: "Petamacro",
  13106. height: math.unit(50000000000000000, "parsecs")
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13112. {
  13113. front: {
  13114. height: math.unit(6, "feet"),
  13115. weight: math.unit(150, "lb"),
  13116. name: "Front",
  13117. image: {
  13118. source: "./media/characters/ilisha-devya/front.svg",
  13119. extra: 1053/1049,
  13120. bottom: 270/1323
  13121. }
  13122. },
  13123. back: {
  13124. height: math.unit(6, "feet"),
  13125. weight: math.unit(150, "lb"),
  13126. name: "Back",
  13127. image: {
  13128. source: "./media/characters/ilisha-devya/back.svg",
  13129. extra: 1131/1128,
  13130. bottom: 39/1170
  13131. }
  13132. },
  13133. },
  13134. [
  13135. {
  13136. name: "Macro",
  13137. height: math.unit(500, "feet"),
  13138. default: true
  13139. },
  13140. {
  13141. name: "Megamacro",
  13142. height: math.unit(10, "miles")
  13143. },
  13144. {
  13145. name: "Gigamacro",
  13146. height: math.unit(100000, "miles")
  13147. },
  13148. {
  13149. name: "Examacro",
  13150. height: math.unit(1e9, "lightyears")
  13151. },
  13152. {
  13153. name: "Omniversal",
  13154. height: math.unit(1e33, "lightyears")
  13155. },
  13156. {
  13157. name: "Beyond Infinite",
  13158. height: math.unit(1e100, "lightyears")
  13159. },
  13160. ]
  13161. ))
  13162. characterMakers.push(() => makeCharacter(
  13163. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13164. {
  13165. Side: {
  13166. height: math.unit(6, "feet"),
  13167. weight: math.unit(150, "lb"),
  13168. name: "Side",
  13169. image: {
  13170. source: "./media/characters/mira/side.svg",
  13171. extra: 900 / 799,
  13172. bottom: 0.02
  13173. }
  13174. },
  13175. },
  13176. [
  13177. {
  13178. name: "Human Size",
  13179. height: math.unit(6, "feet")
  13180. },
  13181. {
  13182. name: "Macro",
  13183. height: math.unit(100, "feet"),
  13184. default: true
  13185. },
  13186. {
  13187. name: "Megamacro",
  13188. height: math.unit(10, "miles")
  13189. },
  13190. {
  13191. name: "Gigamacro",
  13192. height: math.unit(25000, "miles")
  13193. },
  13194. {
  13195. name: "Teramacro",
  13196. height: math.unit(300, "AU")
  13197. },
  13198. {
  13199. name: "Full Size",
  13200. height: math.unit(4.5e10, "lightyears")
  13201. },
  13202. ]
  13203. ))
  13204. characterMakers.push(() => makeCharacter(
  13205. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13206. {
  13207. front: {
  13208. height: math.unit(6, "feet"),
  13209. weight: math.unit(150, "lb"),
  13210. name: "Front",
  13211. image: {
  13212. source: "./media/characters/holly/front.svg",
  13213. extra: 639 / 606
  13214. }
  13215. },
  13216. back: {
  13217. height: math.unit(6, "feet"),
  13218. weight: math.unit(150, "lb"),
  13219. name: "Back",
  13220. image: {
  13221. source: "./media/characters/holly/back.svg",
  13222. extra: 623 / 598
  13223. }
  13224. },
  13225. frontWorking: {
  13226. height: math.unit(6, "feet"),
  13227. weight: math.unit(150, "lb"),
  13228. name: "Front (Working)",
  13229. image: {
  13230. source: "./media/characters/holly/front-working.svg",
  13231. extra: 607 / 577,
  13232. bottom: 0.048
  13233. }
  13234. },
  13235. },
  13236. [
  13237. {
  13238. name: "Normal",
  13239. height: math.unit(12 + 3 / 12, "feet"),
  13240. default: true
  13241. },
  13242. ]
  13243. ))
  13244. characterMakers.push(() => makeCharacter(
  13245. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13246. {
  13247. front: {
  13248. height: math.unit(6, "feet"),
  13249. weight: math.unit(150, "lb"),
  13250. name: "Front",
  13251. image: {
  13252. source: "./media/characters/porter/front.svg",
  13253. extra: 1,
  13254. bottom: 0.01
  13255. }
  13256. },
  13257. frontRobes: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Front (Robes)",
  13261. image: {
  13262. source: "./media/characters/porter/front-robes.svg",
  13263. extra: 1.01,
  13264. bottom: 0.01
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Normal",
  13271. height: math.unit(11 + 9 / 12, "feet"),
  13272. default: true
  13273. },
  13274. ]
  13275. ))
  13276. characterMakers.push(() => makeCharacter(
  13277. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13278. {
  13279. legendary: {
  13280. height: math.unit(6, "feet"),
  13281. weight: math.unit(150, "lb"),
  13282. name: "Legendary",
  13283. image: {
  13284. source: "./media/characters/lucy/legendary.svg",
  13285. extra: 1355 / 1100,
  13286. bottom: 0.045
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Legendary",
  13293. height: math.unit(86882 * 2, "miles"),
  13294. default: true
  13295. },
  13296. ]
  13297. ))
  13298. characterMakers.push(() => makeCharacter(
  13299. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13300. {
  13301. front: {
  13302. height: math.unit(6, "feet"),
  13303. weight: math.unit(150, "lb"),
  13304. name: "Front",
  13305. image: {
  13306. source: "./media/characters/drusilla/front.svg",
  13307. extra: 678 / 635,
  13308. bottom: 0.03
  13309. }
  13310. },
  13311. back: {
  13312. height: math.unit(6, "feet"),
  13313. weight: math.unit(150, "lb"),
  13314. name: "Back",
  13315. image: {
  13316. source: "./media/characters/drusilla/back.svg",
  13317. extra: 678 / 635,
  13318. bottom: 0.005
  13319. }
  13320. },
  13321. },
  13322. [
  13323. {
  13324. name: "Macro",
  13325. height: math.unit(100, "feet")
  13326. },
  13327. {
  13328. name: "Canon Height",
  13329. height: math.unit(2000, "feet"),
  13330. default: true
  13331. },
  13332. ]
  13333. ))
  13334. characterMakers.push(() => makeCharacter(
  13335. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13336. {
  13337. front: {
  13338. height: math.unit(6, "feet"),
  13339. weight: math.unit(180, "lb"),
  13340. name: "Front",
  13341. image: {
  13342. source: "./media/characters/renard-thatch/front.svg",
  13343. extra: 2411 / 2275,
  13344. bottom: 0.01
  13345. }
  13346. },
  13347. frontPosing: {
  13348. height: math.unit(6, "feet"),
  13349. weight: math.unit(180, "lb"),
  13350. name: "Front (Posing)",
  13351. image: {
  13352. source: "./media/characters/renard-thatch/front-posing.svg",
  13353. extra: 2381 / 2261,
  13354. bottom: 0.01
  13355. }
  13356. },
  13357. back: {
  13358. height: math.unit(6, "feet"),
  13359. weight: math.unit(180, "lb"),
  13360. name: "Back",
  13361. image: {
  13362. source: "./media/characters/renard-thatch/back.svg",
  13363. extra: 2428 / 2288
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Micro",
  13370. height: math.unit(3, "inches")
  13371. },
  13372. {
  13373. name: "Default",
  13374. height: math.unit(6, "feet"),
  13375. default: true
  13376. },
  13377. {
  13378. name: "Macro",
  13379. height: math.unit(75, "feet")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(1450, "feet"),
  13388. weight: math.unit(1.21e6, "tons"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/sekvra/front.svg",
  13392. extra: 1193/1190,
  13393. bottom: 78/1271
  13394. }
  13395. },
  13396. side: {
  13397. height: math.unit(1450, "feet"),
  13398. weight: math.unit(1.21e6, "tons"),
  13399. name: "Side",
  13400. image: {
  13401. source: "./media/characters/sekvra/side.svg",
  13402. extra: 1193/1190,
  13403. bottom: 52/1245
  13404. }
  13405. },
  13406. back: {
  13407. height: math.unit(1450, "feet"),
  13408. weight: math.unit(1.21e6, "tons"),
  13409. name: "Back",
  13410. image: {
  13411. source: "./media/characters/sekvra/back.svg",
  13412. extra: 1219/1216,
  13413. bottom: 21/1240
  13414. }
  13415. },
  13416. frontClothed: {
  13417. height: math.unit(1450, "feet"),
  13418. weight: math.unit(1.21e6, "tons"),
  13419. name: "Front (Clothed)",
  13420. image: {
  13421. source: "./media/characters/sekvra/front-clothed.svg",
  13422. extra: 1192/1189,
  13423. bottom: 79/1271
  13424. }
  13425. },
  13426. },
  13427. [
  13428. {
  13429. name: "Macro",
  13430. height: math.unit(1450, "feet"),
  13431. default: true
  13432. },
  13433. {
  13434. name: "Megamacro",
  13435. height: math.unit(15000, "feet")
  13436. },
  13437. ]
  13438. ))
  13439. characterMakers.push(() => makeCharacter(
  13440. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13441. {
  13442. front: {
  13443. height: math.unit(6, "feet"),
  13444. weight: math.unit(150, "lb"),
  13445. name: "Front",
  13446. image: {
  13447. source: "./media/characters/carmine/front.svg",
  13448. extra: 1,
  13449. bottom: 0.035
  13450. }
  13451. },
  13452. frontArmor: {
  13453. height: math.unit(6, "feet"),
  13454. weight: math.unit(150, "lb"),
  13455. name: "Front (Armor)",
  13456. image: {
  13457. source: "./media/characters/carmine/front-armor.svg",
  13458. extra: 1,
  13459. bottom: 0.035
  13460. }
  13461. },
  13462. },
  13463. [
  13464. {
  13465. name: "Large",
  13466. height: math.unit(1, "mile")
  13467. },
  13468. {
  13469. name: "Huge",
  13470. height: math.unit(40, "miles"),
  13471. default: true
  13472. },
  13473. {
  13474. name: "Colossal",
  13475. height: math.unit(2500, "miles")
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13481. {
  13482. front: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(150, "lb"),
  13485. name: "Front",
  13486. image: {
  13487. source: "./media/characters/elyssia/front.svg",
  13488. extra: 2201 / 2035,
  13489. bottom: 0.05
  13490. }
  13491. },
  13492. frontClothed: {
  13493. height: math.unit(6, "feet"),
  13494. weight: math.unit(150, "lb"),
  13495. name: "Front (Clothed)",
  13496. image: {
  13497. source: "./media/characters/elyssia/front-clothed.svg",
  13498. extra: 2201 / 2035,
  13499. bottom: 0.05
  13500. }
  13501. },
  13502. back: {
  13503. height: math.unit(6, "feet"),
  13504. weight: math.unit(150, "lb"),
  13505. name: "Back",
  13506. image: {
  13507. source: "./media/characters/elyssia/back.svg",
  13508. extra: 2201 / 2035,
  13509. bottom: 0.013
  13510. }
  13511. },
  13512. },
  13513. [
  13514. {
  13515. name: "Smaller",
  13516. height: math.unit(150, "feet")
  13517. },
  13518. {
  13519. name: "Standard",
  13520. height: math.unit(1400, "feet"),
  13521. default: true
  13522. },
  13523. {
  13524. name: "Distracted",
  13525. height: math.unit(15000, "feet")
  13526. },
  13527. ]
  13528. ))
  13529. characterMakers.push(() => makeCharacter(
  13530. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13531. {
  13532. front: {
  13533. height: math.unit(7 + 4/12, "feet"),
  13534. weight: math.unit(690, "lb"),
  13535. name: "Front",
  13536. image: {
  13537. source: "./media/characters/geno-maxwell/front.svg",
  13538. extra: 984/856,
  13539. bottom: 87/1071
  13540. }
  13541. },
  13542. back: {
  13543. height: math.unit(7 + 4/12, "feet"),
  13544. weight: math.unit(690, "lb"),
  13545. name: "Back",
  13546. image: {
  13547. source: "./media/characters/geno-maxwell/back.svg",
  13548. extra: 981/854,
  13549. bottom: 57/1038
  13550. }
  13551. },
  13552. frontCostume: {
  13553. height: math.unit(7 + 4/12, "feet"),
  13554. weight: math.unit(690, "lb"),
  13555. name: "Front (Costume)",
  13556. image: {
  13557. source: "./media/characters/geno-maxwell/front-costume.svg",
  13558. extra: 984/856,
  13559. bottom: 87/1071
  13560. }
  13561. },
  13562. backcostume: {
  13563. height: math.unit(7 + 4/12, "feet"),
  13564. weight: math.unit(690, "lb"),
  13565. name: "Back (Costume)",
  13566. image: {
  13567. source: "./media/characters/geno-maxwell/back-costume.svg",
  13568. extra: 981/854,
  13569. bottom: 57/1038
  13570. }
  13571. },
  13572. },
  13573. [
  13574. {
  13575. name: "Micro",
  13576. height: math.unit(3, "inches")
  13577. },
  13578. {
  13579. name: "Normal",
  13580. height: math.unit(7 + 4 / 12, "feet"),
  13581. default: true
  13582. },
  13583. {
  13584. name: "Macro",
  13585. height: math.unit(220, "feet")
  13586. },
  13587. {
  13588. name: "Megamacro",
  13589. height: math.unit(11, "miles")
  13590. },
  13591. ]
  13592. ))
  13593. characterMakers.push(() => makeCharacter(
  13594. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13595. {
  13596. front: {
  13597. height: math.unit(7 + 4/12, "feet"),
  13598. weight: math.unit(750, "lb"),
  13599. name: "Front",
  13600. image: {
  13601. source: "./media/characters/regena-maxwell/front.svg",
  13602. extra: 984/856,
  13603. bottom: 87/1071
  13604. }
  13605. },
  13606. back: {
  13607. height: math.unit(7 + 4/12, "feet"),
  13608. weight: math.unit(750, "lb"),
  13609. name: "Back",
  13610. image: {
  13611. source: "./media/characters/regena-maxwell/back.svg",
  13612. extra: 981/854,
  13613. bottom: 57/1038
  13614. }
  13615. },
  13616. frontCostume: {
  13617. height: math.unit(7 + 4/12, "feet"),
  13618. weight: math.unit(750, "lb"),
  13619. name: "Front (Costume)",
  13620. image: {
  13621. source: "./media/characters/regena-maxwell/front-costume.svg",
  13622. extra: 984/856,
  13623. bottom: 87/1071
  13624. }
  13625. },
  13626. backcostume: {
  13627. height: math.unit(7 + 4/12, "feet"),
  13628. weight: math.unit(750, "lb"),
  13629. name: "Back (Costume)",
  13630. image: {
  13631. source: "./media/characters/regena-maxwell/back-costume.svg",
  13632. extra: 981/854,
  13633. bottom: 57/1038
  13634. }
  13635. },
  13636. },
  13637. [
  13638. {
  13639. name: "Normal",
  13640. height: math.unit(7 + 4 / 12, "feet"),
  13641. default: true
  13642. },
  13643. {
  13644. name: "Macro",
  13645. height: math.unit(220, "feet")
  13646. },
  13647. {
  13648. name: "Megamacro",
  13649. height: math.unit(11, "miles")
  13650. },
  13651. ]
  13652. ))
  13653. characterMakers.push(() => makeCharacter(
  13654. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13655. {
  13656. front: {
  13657. height: math.unit(6, "feet"),
  13658. weight: math.unit(150, "lb"),
  13659. name: "Front",
  13660. image: {
  13661. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13662. extra: 860 / 690,
  13663. bottom: 0.03
  13664. }
  13665. },
  13666. },
  13667. [
  13668. {
  13669. name: "Normal",
  13670. height: math.unit(1.7, "meters"),
  13671. default: true
  13672. },
  13673. ]
  13674. ))
  13675. characterMakers.push(() => makeCharacter(
  13676. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13677. {
  13678. front: {
  13679. height: math.unit(6, "feet"),
  13680. weight: math.unit(150, "lb"),
  13681. name: "Front",
  13682. image: {
  13683. source: "./media/characters/quilly/front.svg",
  13684. extra: 890 / 776
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Gigamacro",
  13691. height: math.unit(404090, "miles"),
  13692. default: true
  13693. },
  13694. ]
  13695. ))
  13696. characterMakers.push(() => makeCharacter(
  13697. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13698. {
  13699. front: {
  13700. height: math.unit(7 + 8 / 12, "feet"),
  13701. weight: math.unit(350, "lb"),
  13702. name: "Front",
  13703. image: {
  13704. source: "./media/characters/tempest/front.svg",
  13705. extra: 1175 / 1086,
  13706. bottom: 0.02
  13707. }
  13708. },
  13709. },
  13710. [
  13711. {
  13712. name: "Normal",
  13713. height: math.unit(7 + 8 / 12, "feet"),
  13714. default: true
  13715. },
  13716. ]
  13717. ))
  13718. characterMakers.push(() => makeCharacter(
  13719. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13720. {
  13721. side: {
  13722. height: math.unit(4 + 5 / 12, "feet"),
  13723. weight: math.unit(80, "lb"),
  13724. name: "Side",
  13725. image: {
  13726. source: "./media/characters/rodger/side.svg",
  13727. extra: 1235 / 1118
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Micro",
  13734. height: math.unit(1, "inch")
  13735. },
  13736. {
  13737. name: "Normal",
  13738. height: math.unit(4 + 5 / 12, "feet"),
  13739. default: true
  13740. },
  13741. {
  13742. name: "Macro",
  13743. height: math.unit(120, "feet")
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(6, "feet"),
  13752. weight: math.unit(150, "lb"),
  13753. name: "Front",
  13754. image: {
  13755. source: "./media/characters/danyel/front.svg",
  13756. extra: 1185 / 1123,
  13757. bottom: 0.05
  13758. }
  13759. },
  13760. },
  13761. [
  13762. {
  13763. name: "Shrunken",
  13764. height: math.unit(0.5, "mm")
  13765. },
  13766. {
  13767. name: "Micro",
  13768. height: math.unit(1, "mm"),
  13769. default: true
  13770. },
  13771. {
  13772. name: "Upsized",
  13773. height: math.unit(5 + 5 / 12, "feet")
  13774. },
  13775. ]
  13776. ))
  13777. characterMakers.push(() => makeCharacter(
  13778. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13779. {
  13780. front: {
  13781. height: math.unit(5 + 6 / 12, "feet"),
  13782. weight: math.unit(200, "lb"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/vivian-bijoux/front.svg",
  13786. extra: 1217/1209,
  13787. bottom: 76/1293
  13788. }
  13789. },
  13790. back: {
  13791. height: math.unit(5 + 6 / 12, "feet"),
  13792. weight: math.unit(200, "lb"),
  13793. name: "Back",
  13794. image: {
  13795. source: "./media/characters/vivian-bijoux/back.svg",
  13796. extra: 1214/1208,
  13797. bottom: 51/1265
  13798. }
  13799. },
  13800. dressed: {
  13801. height: math.unit(5 + 6 / 12, "feet"),
  13802. weight: math.unit(200, "lb"),
  13803. name: "Dressed",
  13804. image: {
  13805. source: "./media/characters/vivian-bijoux/dressed.svg",
  13806. extra: 1217/1209,
  13807. bottom: 76/1293
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "Normal",
  13814. height: math.unit(5 + 6 / 12, "feet"),
  13815. default: true
  13816. },
  13817. {
  13818. name: "Bad Dream",
  13819. height: math.unit(500, "feet")
  13820. },
  13821. {
  13822. name: "Nightmare",
  13823. height: math.unit(500, "miles")
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13829. {
  13830. front: {
  13831. height: math.unit(6 + 1 / 12, "feet"),
  13832. weight: math.unit(260, "lb"),
  13833. name: "Front",
  13834. image: {
  13835. source: "./media/characters/zeta/front.svg",
  13836. extra: 1968 / 1889,
  13837. bottom: 0.06
  13838. }
  13839. },
  13840. back: {
  13841. height: math.unit(6 + 1 / 12, "feet"),
  13842. weight: math.unit(260, "lb"),
  13843. name: "Back",
  13844. image: {
  13845. source: "./media/characters/zeta/back.svg",
  13846. extra: 1944 / 1858,
  13847. bottom: 0.03
  13848. }
  13849. },
  13850. hand: {
  13851. height: math.unit(1.112, "feet"),
  13852. name: "Hand",
  13853. image: {
  13854. source: "./media/characters/zeta/hand.svg"
  13855. }
  13856. },
  13857. foot: {
  13858. height: math.unit(1.48, "feet"),
  13859. name: "Foot",
  13860. image: {
  13861. source: "./media/characters/zeta/foot.svg"
  13862. }
  13863. },
  13864. },
  13865. [
  13866. {
  13867. name: "Micro",
  13868. height: math.unit(6, "inches")
  13869. },
  13870. {
  13871. name: "Normal",
  13872. height: math.unit(6 + 1 / 12, "feet"),
  13873. default: true
  13874. },
  13875. {
  13876. name: "Macro",
  13877. height: math.unit(20, "feet")
  13878. },
  13879. ]
  13880. ))
  13881. characterMakers.push(() => makeCharacter(
  13882. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13883. {
  13884. front: {
  13885. height: math.unit(6, "feet"),
  13886. weight: math.unit(150, "lb"),
  13887. name: "Front",
  13888. image: {
  13889. source: "./media/characters/jamie-larsen/front.svg",
  13890. extra: 962 / 933,
  13891. bottom: 0.02
  13892. }
  13893. },
  13894. back: {
  13895. height: math.unit(6, "feet"),
  13896. weight: math.unit(150, "lb"),
  13897. name: "Back",
  13898. image: {
  13899. source: "./media/characters/jamie-larsen/back.svg",
  13900. extra: 997 / 946
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Macro",
  13907. height: math.unit(28 + 7 / 12, "feet"),
  13908. default: true
  13909. },
  13910. {
  13911. name: "Macro+",
  13912. height: math.unit(180, "feet")
  13913. },
  13914. {
  13915. name: "Megamacro",
  13916. height: math.unit(10, "miles")
  13917. },
  13918. {
  13919. name: "Gigamacro",
  13920. height: math.unit(200000, "miles")
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(120, "lb"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/vance/front.svg",
  13933. extra: 1980 / 1890,
  13934. bottom: 0.09
  13935. }
  13936. },
  13937. back: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(120, "lb"),
  13940. name: "Back",
  13941. image: {
  13942. source: "./media/characters/vance/back.svg",
  13943. extra: 2081 / 1994,
  13944. bottom: 0.014
  13945. }
  13946. },
  13947. hand: {
  13948. height: math.unit(0.88, "feet"),
  13949. name: "Hand",
  13950. image: {
  13951. source: "./media/characters/vance/hand.svg"
  13952. }
  13953. },
  13954. foot: {
  13955. height: math.unit(0.64, "feet"),
  13956. name: "Foot",
  13957. image: {
  13958. source: "./media/characters/vance/foot.svg"
  13959. }
  13960. },
  13961. },
  13962. [
  13963. {
  13964. name: "Small",
  13965. height: math.unit(90, "feet"),
  13966. default: true
  13967. },
  13968. {
  13969. name: "Macro",
  13970. height: math.unit(100, "meters")
  13971. },
  13972. {
  13973. name: "Megamacro",
  13974. height: math.unit(15, "miles")
  13975. },
  13976. ]
  13977. ))
  13978. characterMakers.push(() => makeCharacter(
  13979. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13980. {
  13981. front: {
  13982. height: math.unit(6, "feet"),
  13983. weight: math.unit(180, "lb"),
  13984. name: "Front",
  13985. image: {
  13986. source: "./media/characters/xochitl/front.svg",
  13987. extra: 2297 / 2261,
  13988. bottom: 0.065
  13989. }
  13990. },
  13991. back: {
  13992. height: math.unit(6, "feet"),
  13993. weight: math.unit(180, "lb"),
  13994. name: "Back",
  13995. image: {
  13996. source: "./media/characters/xochitl/back.svg",
  13997. extra: 2386 / 2354,
  13998. bottom: 0.01
  13999. }
  14000. },
  14001. foot: {
  14002. height: math.unit(6 / 5 * 1.15, "feet"),
  14003. weight: math.unit(150, "lb"),
  14004. name: "Foot",
  14005. image: {
  14006. source: "./media/characters/xochitl/foot.svg"
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Macro",
  14013. height: math.unit(80, "feet")
  14014. },
  14015. {
  14016. name: "Macro+",
  14017. height: math.unit(400, "feet"),
  14018. default: true
  14019. },
  14020. {
  14021. name: "Gigamacro",
  14022. height: math.unit(80000, "miles")
  14023. },
  14024. {
  14025. name: "Gigamacro+",
  14026. height: math.unit(400000, "miles")
  14027. },
  14028. {
  14029. name: "Teramacro",
  14030. height: math.unit(300, "AU")
  14031. },
  14032. ]
  14033. ))
  14034. characterMakers.push(() => makeCharacter(
  14035. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14036. {
  14037. front: {
  14038. height: math.unit(6, "feet"),
  14039. weight: math.unit(150, "lb"),
  14040. name: "Front",
  14041. image: {
  14042. source: "./media/characters/vincent/front.svg",
  14043. extra: 1130 / 1080,
  14044. bottom: 0.055
  14045. }
  14046. },
  14047. beak: {
  14048. height: math.unit(6 * 0.1, "feet"),
  14049. name: "Beak",
  14050. image: {
  14051. source: "./media/characters/vincent/beak.svg"
  14052. }
  14053. },
  14054. hand: {
  14055. height: math.unit(6 * 0.85, "feet"),
  14056. weight: math.unit(150, "lb"),
  14057. name: "Hand",
  14058. image: {
  14059. source: "./media/characters/vincent/hand.svg"
  14060. }
  14061. },
  14062. foot: {
  14063. height: math.unit(6 * 0.19, "feet"),
  14064. weight: math.unit(150, "lb"),
  14065. name: "Foot",
  14066. image: {
  14067. source: "./media/characters/vincent/foot.svg"
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Base",
  14074. height: math.unit(6 + 5 / 12, "feet"),
  14075. default: true
  14076. },
  14077. {
  14078. name: "Macro",
  14079. height: math.unit(300, "feet")
  14080. },
  14081. {
  14082. name: "Megamacro",
  14083. height: math.unit(2, "miles")
  14084. },
  14085. {
  14086. name: "Gigamacro",
  14087. height: math.unit(1000, "miles")
  14088. },
  14089. ]
  14090. ))
  14091. characterMakers.push(() => makeCharacter(
  14092. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14093. {
  14094. front: {
  14095. height: math.unit(2, "meters"),
  14096. weight: math.unit(500, "kg"),
  14097. name: "Front",
  14098. image: {
  14099. source: "./media/characters/coatl/front.svg",
  14100. extra: 3948 / 3500,
  14101. bottom: 0.082
  14102. }
  14103. },
  14104. },
  14105. [
  14106. {
  14107. name: "Normal",
  14108. height: math.unit(4, "meters")
  14109. },
  14110. {
  14111. name: "Macro",
  14112. height: math.unit(100, "meters"),
  14113. default: true
  14114. },
  14115. {
  14116. name: "Macro+",
  14117. height: math.unit(300, "meters")
  14118. },
  14119. {
  14120. name: "Megamacro",
  14121. height: math.unit(3, "gigameters")
  14122. },
  14123. {
  14124. name: "Megamacro+",
  14125. height: math.unit(300, "terameters")
  14126. },
  14127. {
  14128. name: "Megamacro++",
  14129. height: math.unit(3, "lightyears")
  14130. },
  14131. ]
  14132. ))
  14133. characterMakers.push(() => makeCharacter(
  14134. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14135. {
  14136. front: {
  14137. height: math.unit(6, "feet"),
  14138. weight: math.unit(50, "kg"),
  14139. name: "front",
  14140. image: {
  14141. source: "./media/characters/shiroryu/front.svg",
  14142. extra: 1990 / 1935
  14143. }
  14144. },
  14145. },
  14146. [
  14147. {
  14148. name: "Mortal Mingling",
  14149. height: math.unit(3, "meters")
  14150. },
  14151. {
  14152. name: "Kaiju-ish",
  14153. height: math.unit(250, "meters")
  14154. },
  14155. {
  14156. name: "Somewhat Godly",
  14157. height: math.unit(400, "km"),
  14158. default: true
  14159. },
  14160. {
  14161. name: "Planetary",
  14162. height: math.unit(300, "megameters")
  14163. },
  14164. {
  14165. name: "Galaxy-dwarfing",
  14166. height: math.unit(450, "kiloparsecs")
  14167. },
  14168. {
  14169. name: "Universe Eater",
  14170. height: math.unit(150, "gigaparsecs")
  14171. },
  14172. {
  14173. name: "Almost Immeasurable",
  14174. height: math.unit(1.3e266, "yottaparsecs")
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(6, "feet"),
  14183. weight: math.unit(150, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/umeko/front.svg",
  14187. extra: 1,
  14188. bottom: 0.019
  14189. }
  14190. },
  14191. frontArmored: {
  14192. height: math.unit(6, "feet"),
  14193. weight: math.unit(150, "lb"),
  14194. name: "Front (Armored)",
  14195. image: {
  14196. source: "./media/characters/umeko/front-armored.svg",
  14197. extra: 1,
  14198. bottom: 0.021
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Macro",
  14205. height: math.unit(220, "feet"),
  14206. default: true
  14207. },
  14208. {
  14209. name: "Guardian Dragon",
  14210. height: math.unit(50, "miles")
  14211. },
  14212. {
  14213. name: "Cosmic",
  14214. height: math.unit(800000, "miles")
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14220. {
  14221. front: {
  14222. height: math.unit(6, "feet"),
  14223. weight: math.unit(150, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/cassidy/front.svg",
  14227. extra: 810/808,
  14228. bottom: 41/851
  14229. }
  14230. },
  14231. },
  14232. [
  14233. {
  14234. name: "Canon Height",
  14235. height: math.unit(120, "feet"),
  14236. default: true
  14237. },
  14238. {
  14239. name: "Macro+",
  14240. height: math.unit(400, "feet")
  14241. },
  14242. {
  14243. name: "Macro++",
  14244. height: math.unit(4000, "feet")
  14245. },
  14246. {
  14247. name: "Megamacro",
  14248. height: math.unit(3, "miles")
  14249. },
  14250. ]
  14251. ))
  14252. characterMakers.push(() => makeCharacter(
  14253. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14254. {
  14255. front: {
  14256. height: math.unit(6, "feet"),
  14257. weight: math.unit(150, "lb"),
  14258. name: "Front",
  14259. image: {
  14260. source: "./media/characters/isaac/front.svg",
  14261. extra: 896 / 815,
  14262. bottom: 0.11
  14263. }
  14264. },
  14265. },
  14266. [
  14267. {
  14268. name: "Human Size",
  14269. height: math.unit(8, "feet"),
  14270. default: true
  14271. },
  14272. {
  14273. name: "Macro",
  14274. height: math.unit(400, "feet")
  14275. },
  14276. {
  14277. name: "Megamacro",
  14278. height: math.unit(50, "miles")
  14279. },
  14280. {
  14281. name: "Canon Height",
  14282. height: math.unit(200, "AU")
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14288. {
  14289. front: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(72, "kg"),
  14292. name: "Front",
  14293. image: {
  14294. source: "./media/characters/sleekit/front.svg",
  14295. extra: 4693 / 4487,
  14296. bottom: 0.012
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Minimum Height",
  14303. height: math.unit(10, "meters")
  14304. },
  14305. {
  14306. name: "Smaller",
  14307. height: math.unit(25, "meters")
  14308. },
  14309. {
  14310. name: "Larger",
  14311. height: math.unit(38, "meters"),
  14312. default: true
  14313. },
  14314. {
  14315. name: "Maximum height",
  14316. height: math.unit(100, "meters")
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14322. {
  14323. front: {
  14324. height: math.unit(6, "feet"),
  14325. weight: math.unit(150, "lb"),
  14326. name: "Front",
  14327. image: {
  14328. source: "./media/characters/nillia/front.svg",
  14329. extra: 2195 / 2037,
  14330. bottom: 0.005
  14331. }
  14332. },
  14333. back: {
  14334. height: math.unit(6, "feet"),
  14335. weight: math.unit(150, "lb"),
  14336. name: "Back",
  14337. image: {
  14338. source: "./media/characters/nillia/back.svg",
  14339. extra: 2195 / 2037,
  14340. bottom: 0.005
  14341. }
  14342. },
  14343. },
  14344. [
  14345. {
  14346. name: "Canon Height",
  14347. height: math.unit(489, "feet"),
  14348. default: true
  14349. }
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14354. {
  14355. front: {
  14356. height: math.unit(6, "feet"),
  14357. weight: math.unit(150, "lb"),
  14358. name: "Front",
  14359. image: {
  14360. source: "./media/characters/mesmyriza/front.svg",
  14361. extra: 2067 / 1784,
  14362. bottom: 0.035
  14363. }
  14364. },
  14365. foot: {
  14366. height: math.unit(6 / (250 / 35), "feet"),
  14367. name: "Foot",
  14368. image: {
  14369. source: "./media/characters/mesmyriza/foot.svg"
  14370. }
  14371. },
  14372. },
  14373. [
  14374. {
  14375. name: "Macro",
  14376. height: math.unit(457, "meters"),
  14377. default: true
  14378. },
  14379. {
  14380. name: "Megamacro",
  14381. height: math.unit(8, "megameters")
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14387. {
  14388. front: {
  14389. height: math.unit(6, "feet"),
  14390. weight: math.unit(250, "lb"),
  14391. name: "Front",
  14392. image: {
  14393. source: "./media/characters/saudade/front.svg",
  14394. extra: 1172 / 1139,
  14395. bottom: 0.035
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Micro",
  14402. height: math.unit(3, "inches")
  14403. },
  14404. {
  14405. name: "Normal",
  14406. height: math.unit(6, "feet"),
  14407. default: true
  14408. },
  14409. {
  14410. name: "Macro",
  14411. height: math.unit(50, "feet")
  14412. },
  14413. {
  14414. name: "Megamacro",
  14415. height: math.unit(2800, "feet")
  14416. },
  14417. ]
  14418. ))
  14419. characterMakers.push(() => makeCharacter(
  14420. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14421. {
  14422. front: {
  14423. height: math.unit(5 + 4 / 12, "feet"),
  14424. weight: math.unit(100, "lb"),
  14425. name: "Front",
  14426. image: {
  14427. source: "./media/characters/keireer/front.svg",
  14428. extra: 716 / 666,
  14429. bottom: 0.05
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(5 + 4 / 12, "feet"),
  14437. default: true
  14438. },
  14439. ]
  14440. ))
  14441. characterMakers.push(() => makeCharacter(
  14442. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14443. {
  14444. front: {
  14445. height: math.unit(6, "feet"),
  14446. weight: math.unit(90, "kg"),
  14447. name: "Front",
  14448. image: {
  14449. source: "./media/characters/mirja/front.svg",
  14450. extra: 1789 / 1683,
  14451. bottom: 0.05
  14452. }
  14453. },
  14454. frontDressed: {
  14455. height: math.unit(6, "feet"),
  14456. weight: math.unit(90, "lb"),
  14457. name: "Front (Dressed)",
  14458. image: {
  14459. source: "./media/characters/mirja/front-dressed.svg",
  14460. extra: 1789 / 1683,
  14461. bottom: 0.05
  14462. }
  14463. },
  14464. back: {
  14465. height: math.unit(6, "feet"),
  14466. weight: math.unit(90, "lb"),
  14467. name: "Back",
  14468. image: {
  14469. source: "./media/characters/mirja/back.svg",
  14470. extra: 953 / 917,
  14471. bottom: 0.017
  14472. }
  14473. },
  14474. },
  14475. [
  14476. {
  14477. name: "\"Incognito\"",
  14478. height: math.unit(3, "meters")
  14479. },
  14480. {
  14481. name: "Strolling Size",
  14482. height: math.unit(15, "km")
  14483. },
  14484. {
  14485. name: "Larger Strolling Size",
  14486. height: math.unit(400, "km")
  14487. },
  14488. {
  14489. name: "Preferred Size",
  14490. height: math.unit(5000, "km")
  14491. },
  14492. {
  14493. name: "True Size",
  14494. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14495. default: true
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(15, "feet"),
  14504. weight: math.unit(880, "kg"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/nightraver/front.svg",
  14508. extra: 2444 / 2160,
  14509. bottom: 0.027
  14510. }
  14511. },
  14512. back: {
  14513. height: math.unit(15, "feet"),
  14514. weight: math.unit(880, "kg"),
  14515. name: "Back",
  14516. image: {
  14517. source: "./media/characters/nightraver/back.svg",
  14518. extra: 2309 / 2180,
  14519. bottom: 0.005
  14520. }
  14521. },
  14522. sole: {
  14523. height: math.unit(2.878, "feet"),
  14524. name: "Sole",
  14525. image: {
  14526. source: "./media/characters/nightraver/sole.svg"
  14527. }
  14528. },
  14529. foot: {
  14530. height: math.unit(2.285, "feet"),
  14531. name: "Foot",
  14532. image: {
  14533. source: "./media/characters/nightraver/foot.svg"
  14534. }
  14535. },
  14536. maw: {
  14537. height: math.unit(2.67, "feet"),
  14538. name: "Maw",
  14539. image: {
  14540. source: "./media/characters/nightraver/maw.svg"
  14541. }
  14542. },
  14543. },
  14544. [
  14545. {
  14546. name: "Micro",
  14547. height: math.unit(1, "cm")
  14548. },
  14549. {
  14550. name: "Normal",
  14551. height: math.unit(15, "feet"),
  14552. default: true
  14553. },
  14554. {
  14555. name: "Macro",
  14556. height: math.unit(300, "feet")
  14557. },
  14558. {
  14559. name: "Megamacro",
  14560. height: math.unit(300, "miles")
  14561. },
  14562. {
  14563. name: "Gigamacro",
  14564. height: math.unit(10000, "miles")
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14570. {
  14571. side: {
  14572. height: math.unit(2, "inches"),
  14573. weight: math.unit(5, "grams"),
  14574. name: "Side",
  14575. image: {
  14576. source: "./media/characters/arc/side.svg"
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Micro",
  14583. height: math.unit(2, "inches"),
  14584. default: true
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(1.1938, "meters"),
  14593. weight: math.unit(54, "kg"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/nebula-shahar/front.svg",
  14597. extra: 1642 / 1436,
  14598. bottom: 0.06
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Megamicro",
  14605. height: math.unit(0.3, "mm")
  14606. },
  14607. {
  14608. name: "Micro",
  14609. height: math.unit(3, "cm")
  14610. },
  14611. {
  14612. name: "Normal",
  14613. height: math.unit(138, "cm"),
  14614. default: true
  14615. },
  14616. {
  14617. name: "Macro",
  14618. height: math.unit(30, "m")
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(5.24, "feet"),
  14627. weight: math.unit(150, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/shayla/front.svg",
  14631. extra: 1512 / 1414,
  14632. bottom: 0.01
  14633. }
  14634. },
  14635. back: {
  14636. height: math.unit(5.24, "feet"),
  14637. weight: math.unit(150, "lb"),
  14638. name: "Back",
  14639. image: {
  14640. source: "./media/characters/shayla/back.svg",
  14641. extra: 1512 / 1414
  14642. }
  14643. },
  14644. hand: {
  14645. height: math.unit(0.7781496062992126, "feet"),
  14646. name: "Hand",
  14647. image: {
  14648. source: "./media/characters/shayla/hand.svg"
  14649. }
  14650. },
  14651. foot: {
  14652. height: math.unit(1.4206036745406823, "feet"),
  14653. name: "Foot",
  14654. image: {
  14655. source: "./media/characters/shayla/foot.svg"
  14656. }
  14657. },
  14658. },
  14659. [
  14660. {
  14661. name: "Micro",
  14662. height: math.unit(0.32, "feet")
  14663. },
  14664. {
  14665. name: "Normal",
  14666. height: math.unit(5.24, "feet"),
  14667. default: true
  14668. },
  14669. {
  14670. name: "Macro",
  14671. height: math.unit(492.12, "feet")
  14672. },
  14673. {
  14674. name: "Megamacro",
  14675. height: math.unit(186.41, "miles")
  14676. },
  14677. ]
  14678. ))
  14679. characterMakers.push(() => makeCharacter(
  14680. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14681. {
  14682. front: {
  14683. height: math.unit(2.2, "m"),
  14684. weight: math.unit(120, "kg"),
  14685. name: "Front",
  14686. image: {
  14687. source: "./media/characters/pia-jr/front.svg",
  14688. extra: 1000 / 970,
  14689. bottom: 0.035
  14690. }
  14691. },
  14692. hand: {
  14693. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14694. name: "Hand",
  14695. image: {
  14696. source: "./media/characters/pia-jr/hand.svg"
  14697. }
  14698. },
  14699. paw: {
  14700. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14701. name: "Paw",
  14702. image: {
  14703. source: "./media/characters/pia-jr/paw.svg"
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Micro",
  14710. height: math.unit(1.2, "cm")
  14711. },
  14712. {
  14713. name: "Normal",
  14714. height: math.unit(2.2, "m"),
  14715. default: true
  14716. },
  14717. {
  14718. name: "Macro",
  14719. height: math.unit(180, "m")
  14720. },
  14721. {
  14722. name: "Megamacro",
  14723. height: math.unit(420, "km")
  14724. },
  14725. ]
  14726. ))
  14727. characterMakers.push(() => makeCharacter(
  14728. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14729. {
  14730. front: {
  14731. height: math.unit(2, "m"),
  14732. weight: math.unit(115, "kg"),
  14733. name: "Front",
  14734. image: {
  14735. source: "./media/characters/pia-sr/front.svg",
  14736. extra: 760 / 730,
  14737. bottom: 0.015
  14738. }
  14739. },
  14740. back: {
  14741. height: math.unit(2, "m"),
  14742. weight: math.unit(115, "kg"),
  14743. name: "Back",
  14744. image: {
  14745. source: "./media/characters/pia-sr/back.svg",
  14746. extra: 760 / 730,
  14747. bottom: 0.01
  14748. }
  14749. },
  14750. hand: {
  14751. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14752. name: "Hand",
  14753. image: {
  14754. source: "./media/characters/pia-sr/hand.svg"
  14755. }
  14756. },
  14757. foot: {
  14758. height: math.unit(1.83, "feet"),
  14759. name: "Foot",
  14760. image: {
  14761. source: "./media/characters/pia-sr/foot.svg"
  14762. }
  14763. },
  14764. },
  14765. [
  14766. {
  14767. name: "Micro",
  14768. height: math.unit(88, "mm")
  14769. },
  14770. {
  14771. name: "Normal",
  14772. height: math.unit(2, "m"),
  14773. default: true
  14774. },
  14775. {
  14776. name: "Macro",
  14777. height: math.unit(200, "m")
  14778. },
  14779. {
  14780. name: "Megamacro",
  14781. height: math.unit(420, "km")
  14782. },
  14783. ]
  14784. ))
  14785. characterMakers.push(() => makeCharacter(
  14786. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14787. {
  14788. front: {
  14789. height: math.unit(8 + 2 / 12, "feet"),
  14790. weight: math.unit(300, "lb"),
  14791. name: "Front",
  14792. image: {
  14793. source: "./media/characters/kibibyte/front.svg",
  14794. extra: 2221 / 2098,
  14795. bottom: 0.04
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Normal",
  14802. height: math.unit(8 + 2 / 12, "feet"),
  14803. default: true
  14804. },
  14805. {
  14806. name: "Socialable Macro",
  14807. height: math.unit(50, "feet")
  14808. },
  14809. {
  14810. name: "Macro",
  14811. height: math.unit(300, "feet")
  14812. },
  14813. {
  14814. name: "Megamacro",
  14815. height: math.unit(500, "miles")
  14816. },
  14817. ]
  14818. ))
  14819. characterMakers.push(() => makeCharacter(
  14820. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14821. {
  14822. front: {
  14823. height: math.unit(6, "feet"),
  14824. weight: math.unit(150, "lb"),
  14825. name: "Front",
  14826. image: {
  14827. source: "./media/characters/felix/front.svg",
  14828. extra: 762 / 722,
  14829. bottom: 0.02
  14830. }
  14831. },
  14832. frontClothed: {
  14833. height: math.unit(6, "feet"),
  14834. weight: math.unit(150, "lb"),
  14835. name: "Front (Clothed)",
  14836. image: {
  14837. source: "./media/characters/felix/front-clothed.svg",
  14838. extra: 762 / 722,
  14839. bottom: 0.02
  14840. }
  14841. },
  14842. },
  14843. [
  14844. {
  14845. name: "Normal",
  14846. height: math.unit(6 + 8 / 12, "feet"),
  14847. default: true
  14848. },
  14849. {
  14850. name: "Macro",
  14851. height: math.unit(2600, "feet")
  14852. },
  14853. {
  14854. name: "Megamacro",
  14855. height: math.unit(450, "miles")
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14861. {
  14862. front: {
  14863. height: math.unit(6 + 1 / 12, "feet"),
  14864. weight: math.unit(250, "lb"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/tobo/front.svg",
  14868. extra: 608 / 586,
  14869. bottom: 0.023
  14870. }
  14871. },
  14872. back: {
  14873. height: math.unit(6 + 1 / 12, "feet"),
  14874. weight: math.unit(250, "lb"),
  14875. name: "Back",
  14876. image: {
  14877. source: "./media/characters/tobo/back.svg",
  14878. extra: 608 / 586
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Nano",
  14885. height: math.unit(2, "nm")
  14886. },
  14887. {
  14888. name: "Megamicro",
  14889. height: math.unit(0.1, "mm")
  14890. },
  14891. {
  14892. name: "Micro",
  14893. height: math.unit(1, "inch"),
  14894. default: true
  14895. },
  14896. {
  14897. name: "Human-sized",
  14898. height: math.unit(6 + 1 / 12, "feet")
  14899. },
  14900. {
  14901. name: "Macro",
  14902. height: math.unit(250, "feet")
  14903. },
  14904. {
  14905. name: "Megamacro",
  14906. height: math.unit(75, "miles")
  14907. },
  14908. {
  14909. name: "Texas-sized",
  14910. height: math.unit(750, "miles")
  14911. },
  14912. {
  14913. name: "Teramacro",
  14914. height: math.unit(50000, "miles")
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14920. {
  14921. front: {
  14922. height: math.unit(6, "feet"),
  14923. weight: math.unit(269, "lb"),
  14924. name: "Front",
  14925. image: {
  14926. source: "./media/characters/danny-kapowsky/front.svg",
  14927. extra: 766 / 736,
  14928. bottom: 0.044
  14929. }
  14930. },
  14931. back: {
  14932. height: math.unit(6, "feet"),
  14933. weight: math.unit(269, "lb"),
  14934. name: "Back",
  14935. image: {
  14936. source: "./media/characters/danny-kapowsky/back.svg",
  14937. extra: 797 / 760,
  14938. bottom: 0.025
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Macro",
  14945. height: math.unit(150, "feet"),
  14946. default: true
  14947. },
  14948. {
  14949. name: "Macro+",
  14950. height: math.unit(200, "feet")
  14951. },
  14952. {
  14953. name: "Macro++",
  14954. height: math.unit(300, "feet")
  14955. },
  14956. {
  14957. name: "Macro+++",
  14958. height: math.unit(400, "feet")
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14964. {
  14965. side: {
  14966. height: math.unit(6, "feet"),
  14967. weight: math.unit(170, "lb"),
  14968. name: "Side",
  14969. image: {
  14970. source: "./media/characters/finn/side.svg",
  14971. extra: 1953 / 1807,
  14972. bottom: 0.057
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Megamacro",
  14979. height: math.unit(14445, "feet"),
  14980. default: true
  14981. },
  14982. ]
  14983. ))
  14984. characterMakers.push(() => makeCharacter(
  14985. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14986. {
  14987. front: {
  14988. height: math.unit(5 + 6 / 12, "feet"),
  14989. weight: math.unit(125, "lb"),
  14990. name: "Front",
  14991. image: {
  14992. source: "./media/characters/roy/front.svg",
  14993. extra: 1,
  14994. bottom: 0.11
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Micro",
  15001. height: math.unit(3, "inches"),
  15002. default: true
  15003. },
  15004. {
  15005. name: "Normal",
  15006. height: math.unit(5 + 6 / 12, "feet")
  15007. },
  15008. {
  15009. name: "Lesser Macro",
  15010. height: math.unit(60, "feet")
  15011. },
  15012. {
  15013. name: "Greater Macro",
  15014. height: math.unit(120, "feet")
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15020. {
  15021. front: {
  15022. height: math.unit(6, "feet"),
  15023. weight: math.unit(100, "lb"),
  15024. name: "Front",
  15025. image: {
  15026. source: "./media/characters/aevsivs/front.svg",
  15027. extra: 1,
  15028. bottom: 0.03
  15029. }
  15030. },
  15031. back: {
  15032. height: math.unit(6, "feet"),
  15033. weight: math.unit(100, "lb"),
  15034. name: "Back",
  15035. image: {
  15036. source: "./media/characters/aevsivs/back.svg"
  15037. }
  15038. },
  15039. },
  15040. [
  15041. {
  15042. name: "Micro",
  15043. height: math.unit(2, "inches"),
  15044. default: true
  15045. },
  15046. {
  15047. name: "Normal",
  15048. height: math.unit(5, "feet")
  15049. },
  15050. ]
  15051. ))
  15052. characterMakers.push(() => makeCharacter(
  15053. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15054. {
  15055. front: {
  15056. height: math.unit(5 + 7 / 12, "feet"),
  15057. weight: math.unit(159, "lb"),
  15058. name: "Front",
  15059. image: {
  15060. source: "./media/characters/hildegard/front.svg",
  15061. extra: 289 / 269,
  15062. bottom: 7.63 / 297.8
  15063. }
  15064. },
  15065. back: {
  15066. height: math.unit(5 + 7 / 12, "feet"),
  15067. weight: math.unit(159, "lb"),
  15068. name: "Back",
  15069. image: {
  15070. source: "./media/characters/hildegard/back.svg",
  15071. extra: 280 / 260,
  15072. bottom: 2.3 / 282
  15073. }
  15074. },
  15075. },
  15076. [
  15077. {
  15078. name: "Normal",
  15079. height: math.unit(5 + 7 / 12, "feet"),
  15080. default: true
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15086. {
  15087. bernard: {
  15088. height: math.unit(2 + 7 / 12, "feet"),
  15089. weight: math.unit(66, "lb"),
  15090. name: "Bernard",
  15091. rename: true,
  15092. image: {
  15093. source: "./media/characters/bernard-wilder/bernard.svg",
  15094. extra: 192 / 128,
  15095. bottom: 0.05
  15096. }
  15097. },
  15098. wilder: {
  15099. height: math.unit(5 + 8 / 12, "feet"),
  15100. weight: math.unit(143, "lb"),
  15101. name: "Wilder",
  15102. rename: true,
  15103. image: {
  15104. source: "./media/characters/bernard-wilder/wilder.svg",
  15105. extra: 361 / 312,
  15106. bottom: 0.02
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Normal",
  15113. height: math.unit(2 + 7 / 12, "feet"),
  15114. default: true
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15120. {
  15121. anthro: {
  15122. height: math.unit(6 + 1 / 12, "feet"),
  15123. weight: math.unit(155, "lb"),
  15124. name: "Anthro",
  15125. image: {
  15126. source: "./media/characters/hearth/anthro.svg",
  15127. extra: 1178/1136,
  15128. bottom: 28/1206
  15129. }
  15130. },
  15131. feral: {
  15132. height: math.unit(3.78, "feet"),
  15133. weight: math.unit(35, "kg"),
  15134. name: "Feral",
  15135. image: {
  15136. source: "./media/characters/hearth/feral.svg",
  15137. extra: 153 / 135,
  15138. bottom: 0.03
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Normal",
  15145. height: math.unit(6 + 1 / 12, "feet"),
  15146. default: true
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(6, "feet"),
  15155. weight: math.unit(182, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/ingrid/front.svg",
  15159. extra: 294 / 268,
  15160. bottom: 0.027
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(6, "feet"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15174. {
  15175. eevee: {
  15176. height: math.unit(2 + 10 / 12, "feet"),
  15177. weight: math.unit(86, "lb"),
  15178. name: "Malgam",
  15179. image: {
  15180. source: "./media/characters/malgam/eevee.svg",
  15181. extra: 952/784,
  15182. bottom: 38/990
  15183. }
  15184. },
  15185. sylveon: {
  15186. height: math.unit(4, "feet"),
  15187. weight: math.unit(101, "lb"),
  15188. name: "Future Malgam",
  15189. rename: true,
  15190. image: {
  15191. source: "./media/characters/malgam/sylveon.svg",
  15192. extra: 371 / 325,
  15193. bottom: 0.015
  15194. }
  15195. },
  15196. gigantamax: {
  15197. height: math.unit(50, "feet"),
  15198. name: "Gigantamax Malgam",
  15199. rename: true,
  15200. image: {
  15201. source: "./media/characters/malgam/gigantamax.svg"
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(2 + 10 / 12, "feet"),
  15209. default: true
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15215. {
  15216. front: {
  15217. height: math.unit(5 + 11 / 12, "feet"),
  15218. weight: math.unit(188, "lb"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/fleur/front.svg",
  15222. extra: 309 / 283,
  15223. bottom: 0.007
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Normal",
  15230. height: math.unit(5 + 11 / 12, "feet"),
  15231. default: true
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15237. {
  15238. front: {
  15239. height: math.unit(5 + 4 / 12, "feet"),
  15240. weight: math.unit(122, "lb"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/jude/front.svg",
  15244. extra: 288 / 273,
  15245. bottom: 0.03
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(5 + 4 / 12, "feet"),
  15253. default: true
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15259. {
  15260. front: {
  15261. height: math.unit(5 + 11 / 12, "feet"),
  15262. weight: math.unit(190, "lb"),
  15263. name: "Front",
  15264. image: {
  15265. source: "./media/characters/seara/front.svg",
  15266. extra: 1,
  15267. bottom: 0.05
  15268. }
  15269. },
  15270. },
  15271. [
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(5 + 11 / 12, "feet"),
  15275. default: true
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15281. {
  15282. front: {
  15283. height: math.unit(16 + 5 / 12, "feet"),
  15284. weight: math.unit(524, "lb"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/caspian/front.svg",
  15288. extra: 1,
  15289. bottom: 0.04
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(16 + 5 / 12, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(5 + 7 / 12, "feet"),
  15306. weight: math.unit(170, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/mika/front.svg",
  15310. extra: 1,
  15311. bottom: 0.016
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(5 + 7 / 12, "feet"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(6 + 2 / 12, "feet"),
  15328. weight: math.unit(268, "lb"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/sol/front.svg",
  15332. extra: 247 / 231,
  15333. bottom: 0.05
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(6 + 2 / 12, "feet"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15347. {
  15348. buizel: {
  15349. height: math.unit(2 + 5 / 12, "feet"),
  15350. weight: math.unit(87, "lb"),
  15351. name: "Buizel",
  15352. image: {
  15353. source: "./media/characters/umiko/buizel.svg",
  15354. extra: 172 / 157,
  15355. bottom: 0.01
  15356. }
  15357. },
  15358. floatzel: {
  15359. height: math.unit(5 + 9 / 12, "feet"),
  15360. weight: math.unit(250, "lb"),
  15361. name: "Floatzel",
  15362. image: {
  15363. source: "./media/characters/umiko/floatzel.svg",
  15364. extra: 262 / 248
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Normal",
  15371. height: math.unit(2 + 5 / 12, "feet"),
  15372. default: true
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(6 + 2 / 12, "feet"),
  15381. weight: math.unit(146, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/iliac/front.svg",
  15385. extra: 389 / 365,
  15386. bottom: 0.035
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(6 + 2 / 12, "feet"),
  15394. default: true
  15395. },
  15396. ]
  15397. ))
  15398. characterMakers.push(() => makeCharacter(
  15399. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15400. {
  15401. front: {
  15402. height: math.unit(6, "feet"),
  15403. weight: math.unit(170, "lb"),
  15404. name: "Front",
  15405. image: {
  15406. source: "./media/characters/topaz/front.svg",
  15407. extra: 317 / 303,
  15408. bottom: 0.055
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Normal",
  15415. height: math.unit(6, "feet"),
  15416. default: true
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(5 + 11 / 12, "feet"),
  15425. weight: math.unit(144, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/gabriel/front.svg",
  15429. extra: 285 / 262,
  15430. bottom: 0.004
  15431. }
  15432. },
  15433. },
  15434. [
  15435. {
  15436. name: "Normal",
  15437. height: math.unit(5 + 11 / 12, "feet"),
  15438. default: true
  15439. },
  15440. ]
  15441. ))
  15442. characterMakers.push(() => makeCharacter(
  15443. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15444. {
  15445. side: {
  15446. height: math.unit(6 + 5 / 12, "feet"),
  15447. weight: math.unit(300, "lb"),
  15448. name: "Side",
  15449. image: {
  15450. source: "./media/characters/tempest-suicune/side.svg",
  15451. extra: 195 / 154,
  15452. bottom: 0.04
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Normal",
  15459. height: math.unit(6 + 5 / 12, "feet"),
  15460. default: true
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15466. {
  15467. front: {
  15468. height: math.unit(7 + 2 / 12, "feet"),
  15469. weight: math.unit(322, "lb"),
  15470. name: "Front",
  15471. image: {
  15472. source: "./media/characters/vulcan/front.svg",
  15473. extra: 154 / 147,
  15474. bottom: 0.04
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Normal",
  15481. height: math.unit(7 + 2 / 12, "feet"),
  15482. default: true
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(5 + 10 / 12, "feet"),
  15491. weight: math.unit(264, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/gault/front.svg",
  15495. extra: 161 / 140,
  15496. bottom: 0.028
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(5 + 10 / 12, "feet"),
  15504. default: true
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(6, "feet"),
  15513. weight: math.unit(150, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/shard/front.svg",
  15517. extra: 273 / 238,
  15518. bottom: 0.02
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(3 + 6 / 12, "feet"),
  15526. default: true
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(5 + 11 / 12, "feet"),
  15535. weight: math.unit(146, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/ashe/front.svg",
  15539. extra: 400 / 373,
  15540. bottom: 0.01
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Normal",
  15547. height: math.unit(5 + 11 / 12, "feet"),
  15548. default: true
  15549. },
  15550. ]
  15551. ))
  15552. characterMakers.push(() => makeCharacter(
  15553. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15554. {
  15555. front: {
  15556. height: math.unit(5 + 5 / 12, "feet"),
  15557. weight: math.unit(135, "lb"),
  15558. name: "Front",
  15559. image: {
  15560. source: "./media/characters/beatrix/front.svg",
  15561. extra: 392 / 379,
  15562. bottom: 0.01
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(6, "feet"),
  15570. default: true
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(6 + 2/12, "feet"),
  15579. weight: math.unit(135, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/ignatius/front.svg",
  15583. extra: 1380/1259,
  15584. bottom: 27/1407
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(6 + 2/12, "feet"),
  15592. default: true
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15598. {
  15599. front: {
  15600. height: math.unit(6 + 2 / 12, "feet"),
  15601. weight: math.unit(138, "lb"),
  15602. name: "Front",
  15603. image: {
  15604. source: "./media/characters/mei-li/front.svg",
  15605. extra: 237 / 229,
  15606. bottom: 0.03
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(6 + 2 / 12, "feet"),
  15614. default: true
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15620. {
  15621. front: {
  15622. height: math.unit(2 + 4 / 12, "feet"),
  15623. weight: math.unit(62, "lb"),
  15624. name: "Front",
  15625. image: {
  15626. source: "./media/characters/puru/front.svg",
  15627. extra: 206 / 149,
  15628. bottom: 0.06
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(2 + 4 / 12, "feet"),
  15636. default: true
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15642. {
  15643. anthro: {
  15644. height: math.unit(5 + 8/12, "feet"),
  15645. weight: math.unit(200, "lb"),
  15646. energyNeed: math.unit(2000, "kcal"),
  15647. name: "Anthro",
  15648. image: {
  15649. source: "./media/characters/kee/anthro.svg",
  15650. extra: 3251/3184,
  15651. bottom: 250/3501
  15652. }
  15653. },
  15654. taur: {
  15655. height: math.unit(11, "feet"),
  15656. weight: math.unit(500, "lb"),
  15657. energyNeed: math.unit(5000, "kcal"),
  15658. name: "Taur",
  15659. image: {
  15660. source: "./media/characters/kee/taur.svg",
  15661. extra: 1362/1320,
  15662. bottom: 83/1445
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Normal",
  15669. height: math.unit(5 + 8/12, "feet"),
  15670. default: true
  15671. },
  15672. {
  15673. name: "Macro",
  15674. height: math.unit(35, "feet")
  15675. },
  15676. ]
  15677. ))
  15678. characterMakers.push(() => makeCharacter(
  15679. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15680. {
  15681. anthro: {
  15682. height: math.unit(7, "feet"),
  15683. weight: math.unit(190, "lb"),
  15684. name: "Anthro",
  15685. image: {
  15686. source: "./media/characters/cobalt-dracha/anthro.svg",
  15687. extra: 231 / 225,
  15688. bottom: 0.04
  15689. }
  15690. },
  15691. feral: {
  15692. height: math.unit(9 + 7 / 12, "feet"),
  15693. weight: math.unit(294, "lb"),
  15694. name: "Feral",
  15695. image: {
  15696. source: "./media/characters/cobalt-dracha/feral.svg",
  15697. extra: 692 / 633,
  15698. bottom: 0.05
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(7, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15712. {
  15713. fallen: {
  15714. height: math.unit(11 + 8 / 12, "feet"),
  15715. weight: math.unit(485, "lb"),
  15716. name: "Java (Fallen)",
  15717. rename: true,
  15718. image: {
  15719. source: "./media/characters/java/fallen.svg",
  15720. extra: 226 / 208,
  15721. bottom: 0.005
  15722. }
  15723. },
  15724. godkin: {
  15725. height: math.unit(10 + 6 / 12, "feet"),
  15726. weight: math.unit(328, "lb"),
  15727. name: "Java (Godkin)",
  15728. rename: true,
  15729. image: {
  15730. source: "./media/characters/java/godkin.svg",
  15731. extra: 1104/1068,
  15732. bottom: 36/1140
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(11 + 8 / 12, "feet"),
  15740. default: true
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15746. {
  15747. front: {
  15748. height: math.unit(5 + 9 / 12, "feet"),
  15749. weight: math.unit(170, "lb"),
  15750. name: "Front",
  15751. image: {
  15752. source: "./media/characters/purna/front.svg",
  15753. extra: 239 / 229,
  15754. bottom: 0.01
  15755. }
  15756. },
  15757. },
  15758. [
  15759. {
  15760. name: "Normal",
  15761. height: math.unit(5 + 9 / 12, "feet"),
  15762. default: true
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(5 + 9 / 12, "feet"),
  15771. weight: math.unit(142, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/kuva/front.svg",
  15775. extra: 281 / 271,
  15776. bottom: 0.006
  15777. }
  15778. },
  15779. },
  15780. [
  15781. {
  15782. name: "Normal",
  15783. height: math.unit(5 + 9 / 12, "feet"),
  15784. default: true
  15785. },
  15786. ]
  15787. ))
  15788. characterMakers.push(() => makeCharacter(
  15789. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15790. {
  15791. anthro: {
  15792. height: math.unit(9 + 2 / 12, "feet"),
  15793. weight: math.unit(270, "lb"),
  15794. name: "Anthro",
  15795. image: {
  15796. source: "./media/characters/embra/anthro.svg",
  15797. extra: 200 / 187,
  15798. bottom: 0.02
  15799. }
  15800. },
  15801. feral: {
  15802. height: math.unit(18 + 8 / 12, "feet"),
  15803. weight: math.unit(576, "lb"),
  15804. name: "Feral",
  15805. image: {
  15806. source: "./media/characters/embra/feral.svg",
  15807. extra: 152 / 137,
  15808. bottom: 0.037
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(9 + 2 / 12, "feet"),
  15816. default: true
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15822. {
  15823. anthro: {
  15824. height: math.unit(10 + 9 / 12, "feet"),
  15825. weight: math.unit(224, "lb"),
  15826. name: "Anthro",
  15827. image: {
  15828. source: "./media/characters/grottos/anthro.svg",
  15829. extra: 350 / 332,
  15830. bottom: 0.045
  15831. }
  15832. },
  15833. feral: {
  15834. height: math.unit(20 + 7 / 12, "feet"),
  15835. weight: math.unit(629, "lb"),
  15836. name: "Feral",
  15837. image: {
  15838. source: "./media/characters/grottos/feral.svg",
  15839. extra: 207 / 190,
  15840. bottom: 0.05
  15841. }
  15842. },
  15843. },
  15844. [
  15845. {
  15846. name: "Normal",
  15847. height: math.unit(10 + 9 / 12, "feet"),
  15848. default: true
  15849. },
  15850. ]
  15851. ))
  15852. characterMakers.push(() => makeCharacter(
  15853. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15854. {
  15855. anthro: {
  15856. height: math.unit(9 + 6 / 12, "feet"),
  15857. weight: math.unit(298, "lb"),
  15858. name: "Anthro",
  15859. image: {
  15860. source: "./media/characters/frifna/anthro.svg",
  15861. extra: 282 / 269,
  15862. bottom: 0.015
  15863. }
  15864. },
  15865. feral: {
  15866. height: math.unit(16 + 2 / 12, "feet"),
  15867. weight: math.unit(624, "lb"),
  15868. name: "Feral",
  15869. image: {
  15870. source: "./media/characters/frifna/feral.svg"
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Normal",
  15877. height: math.unit(9 + 6 / 12, "feet"),
  15878. default: true
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(6 + 2 / 12, "feet"),
  15887. weight: math.unit(168, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/elise/front.svg",
  15891. extra: 276 / 271
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(6 + 2 / 12, "feet"),
  15899. default: true
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(5 + 10 / 12, "feet"),
  15908. weight: math.unit(210, "lb"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/glade/front.svg",
  15912. extra: 258 / 247,
  15913. bottom: 0.008
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Normal",
  15920. height: math.unit(5 + 10 / 12, "feet"),
  15921. default: true
  15922. },
  15923. ]
  15924. ))
  15925. characterMakers.push(() => makeCharacter(
  15926. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15927. {
  15928. front: {
  15929. height: math.unit(5 + 10 / 12, "feet"),
  15930. weight: math.unit(129, "lb"),
  15931. name: "Front",
  15932. image: {
  15933. source: "./media/characters/rina/front.svg",
  15934. extra: 266 / 255,
  15935. bottom: 0.005
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Normal",
  15942. height: math.unit(5 + 10 / 12, "feet"),
  15943. default: true
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(6 + 1 / 12, "feet"),
  15952. weight: math.unit(192, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/veronica/front.svg",
  15956. extra: 319 / 309,
  15957. bottom: 0.005
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Normal",
  15964. height: math.unit(6 + 1 / 12, "feet"),
  15965. default: true
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(9 + 3 / 12, "feet"),
  15974. weight: math.unit(1100, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/braxton/front.svg",
  15978. extra: 1057 / 984,
  15979. bottom: 0.05
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(9 + 3 / 12, "feet")
  15987. },
  15988. {
  15989. name: "Giant",
  15990. height: math.unit(300, "feet"),
  15991. default: true
  15992. },
  15993. {
  15994. name: "Macro",
  15995. height: math.unit(700, "feet")
  15996. },
  15997. {
  15998. name: "Megamacro",
  15999. height: math.unit(6000, "feet")
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(6 + 7 / 12, "feet"),
  16008. weight: math.unit(150, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/blue-feyonics/front.svg",
  16012. extra: 1403 / 1306,
  16013. bottom: 0.047
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(6 + 7 / 12, "feet"),
  16021. default: true
  16022. },
  16023. ]
  16024. ))
  16025. characterMakers.push(() => makeCharacter(
  16026. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16027. {
  16028. front: {
  16029. height: math.unit(1.8, "meters"),
  16030. weight: math.unit(60, "kg"),
  16031. name: "Front",
  16032. image: {
  16033. source: "./media/characters/maxwell/front.svg",
  16034. extra: 2060 / 1873
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Micro",
  16041. height: math.unit(1, "mm")
  16042. },
  16043. {
  16044. name: "Normal",
  16045. height: math.unit(1.8, "meter"),
  16046. default: true
  16047. },
  16048. {
  16049. name: "Macro",
  16050. height: math.unit(30, "meters")
  16051. },
  16052. {
  16053. name: "Megamacro",
  16054. height: math.unit(10, "km")
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16060. {
  16061. front: {
  16062. height: math.unit(6, "feet"),
  16063. weight: math.unit(150, "lb"),
  16064. name: "Front",
  16065. image: {
  16066. source: "./media/characters/jack/front.svg",
  16067. extra: 1754 / 1640,
  16068. bottom: 0.01
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Normal",
  16075. height: math.unit(80000, "feet"),
  16076. default: true
  16077. },
  16078. {
  16079. name: "Max size",
  16080. height: math.unit(10, "lightyears")
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16086. {
  16087. urban: {
  16088. height: math.unit(5, "feet"),
  16089. weight: math.unit(240, "lb"),
  16090. name: "Urban",
  16091. image: {
  16092. source: "./media/characters/cafat/urban.svg",
  16093. extra: 1223/1126,
  16094. bottom: 205/1428
  16095. }
  16096. },
  16097. summer: {
  16098. height: math.unit(5, "feet"),
  16099. weight: math.unit(240, "lb"),
  16100. name: "Summer",
  16101. image: {
  16102. source: "./media/characters/cafat/summer.svg",
  16103. extra: 1223/1126,
  16104. bottom: 205/1428
  16105. }
  16106. },
  16107. winter: {
  16108. height: math.unit(5, "feet"),
  16109. weight: math.unit(240, "lb"),
  16110. name: "Winter",
  16111. image: {
  16112. source: "./media/characters/cafat/winter.svg",
  16113. extra: 1223/1126,
  16114. bottom: 205/1428
  16115. }
  16116. },
  16117. lingerie: {
  16118. height: math.unit(5, "feet"),
  16119. weight: math.unit(240, "lb"),
  16120. name: "Lingerie",
  16121. image: {
  16122. source: "./media/characters/cafat/lingerie.svg",
  16123. extra: 1223/1126,
  16124. bottom: 205/1428
  16125. }
  16126. },
  16127. upright: {
  16128. height: math.unit(6.3, "feet"),
  16129. weight: math.unit(240, "lb"),
  16130. name: "Upright",
  16131. image: {
  16132. source: "./media/characters/cafat/upright.svg",
  16133. bottom: 0.01
  16134. }
  16135. },
  16136. uprightFull: {
  16137. height: math.unit(6.3, "feet"),
  16138. weight: math.unit(240, "lb"),
  16139. name: "Upright (Full)",
  16140. image: {
  16141. source: "./media/characters/cafat/upright-full.svg",
  16142. bottom: 0.01
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Small",
  16149. height: math.unit(5, "feet"),
  16150. default: true
  16151. },
  16152. {
  16153. name: "Large",
  16154. height: math.unit(13, "feet")
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16160. {
  16161. front: {
  16162. height: math.unit(6, "feet"),
  16163. weight: math.unit(150, "lb"),
  16164. name: "Front",
  16165. image: {
  16166. source: "./media/characters/verin-raharra/front.svg",
  16167. extra: 5019 / 4835,
  16168. bottom: 0.023
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(7 + 5 / 12, "feet"),
  16176. default: true
  16177. },
  16178. {
  16179. name: "Upsized",
  16180. height: math.unit(20, "feet")
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(7, "feet"),
  16189. weight: math.unit(230, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/nakata/front.svg",
  16193. extra: 1.005,
  16194. bottom: 0.01
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(7, "feet"),
  16202. default: true
  16203. },
  16204. {
  16205. name: "Big",
  16206. height: math.unit(14, "feet")
  16207. },
  16208. {
  16209. name: "Macro",
  16210. height: math.unit(400, "feet")
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(4.91, "feet"),
  16219. weight: math.unit(100, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/lily/front.svg",
  16223. extra: 1585 / 1415,
  16224. bottom: 0.02
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Normal",
  16231. height: math.unit(4.91, "feet"),
  16232. default: true
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16238. {
  16239. laying: {
  16240. height: math.unit(4 + 4 / 12, "feet"),
  16241. weight: math.unit(600, "lb"),
  16242. name: "Laying",
  16243. image: {
  16244. source: "./media/characters/sheila/laying.svg",
  16245. extra: 1333 / 1265,
  16246. bottom: 0.16
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Normal",
  16253. height: math.unit(4 + 4 / 12, "feet"),
  16254. default: true
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(6, "feet"),
  16263. weight: math.unit(190, "lb"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/sax/front.svg",
  16267. extra: 1187 / 973,
  16268. bottom: 0.042
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Micro",
  16275. height: math.unit(4, "inches"),
  16276. default: true
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16282. {
  16283. front: {
  16284. height: math.unit(6, "feet"),
  16285. weight: math.unit(150, "lb"),
  16286. name: "Front",
  16287. image: {
  16288. source: "./media/characters/pandora/front.svg",
  16289. extra: 2720 / 2556,
  16290. bottom: 0.015
  16291. }
  16292. },
  16293. back: {
  16294. height: math.unit(6, "feet"),
  16295. weight: math.unit(150, "lb"),
  16296. name: "Back",
  16297. image: {
  16298. source: "./media/characters/pandora/back.svg",
  16299. extra: 2720 / 2556,
  16300. bottom: 0.01
  16301. }
  16302. },
  16303. beans: {
  16304. height: math.unit(6 / 8, "feet"),
  16305. name: "Beans",
  16306. image: {
  16307. source: "./media/characters/pandora/beans.svg"
  16308. }
  16309. },
  16310. collar: {
  16311. height: math.unit(0.31, "feet"),
  16312. name: "Collar",
  16313. image: {
  16314. source: "./media/characters/pandora/collar.svg"
  16315. }
  16316. },
  16317. skirt: {
  16318. height: math.unit(6, "feet"),
  16319. weight: math.unit(150, "lb"),
  16320. name: "Skirt",
  16321. image: {
  16322. source: "./media/characters/pandora/skirt.svg",
  16323. extra: 1622 / 1525,
  16324. bottom: 0.015
  16325. }
  16326. },
  16327. hoodie: {
  16328. height: math.unit(6, "feet"),
  16329. weight: math.unit(150, "lb"),
  16330. name: "Hoodie",
  16331. image: {
  16332. source: "./media/characters/pandora/hoodie.svg",
  16333. extra: 1622 / 1525,
  16334. bottom: 0.015
  16335. }
  16336. },
  16337. casual: {
  16338. height: math.unit(6, "feet"),
  16339. weight: math.unit(150, "lb"),
  16340. name: "Casual",
  16341. image: {
  16342. source: "./media/characters/pandora/casual.svg",
  16343. extra: 1622 / 1525,
  16344. bottom: 0.015
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Normal",
  16351. height: math.unit(6, "feet")
  16352. },
  16353. {
  16354. name: "Big Steppy",
  16355. height: math.unit(1, "km"),
  16356. default: true
  16357. },
  16358. {
  16359. name: "Galactic Steppy",
  16360. height: math.unit(2, "gigameters")
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16366. {
  16367. side: {
  16368. height: math.unit(10, "feet"),
  16369. weight: math.unit(800, "kg"),
  16370. name: "Side",
  16371. image: {
  16372. source: "./media/characters/venio-darcony/side.svg",
  16373. extra: 1373 / 1003,
  16374. bottom: 0.037
  16375. }
  16376. },
  16377. front: {
  16378. height: math.unit(19, "feet"),
  16379. weight: math.unit(800, "kg"),
  16380. name: "Front",
  16381. image: {
  16382. source: "./media/characters/venio-darcony/front.svg"
  16383. }
  16384. },
  16385. back: {
  16386. height: math.unit(19, "feet"),
  16387. weight: math.unit(800, "kg"),
  16388. name: "Back",
  16389. image: {
  16390. source: "./media/characters/venio-darcony/back.svg"
  16391. }
  16392. },
  16393. sideNsfw: {
  16394. height: math.unit(10, "feet"),
  16395. weight: math.unit(800, "kg"),
  16396. name: "Side (NSFW)",
  16397. image: {
  16398. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16399. extra: 1373 / 1003,
  16400. bottom: 0.037
  16401. }
  16402. },
  16403. frontNsfw: {
  16404. height: math.unit(19, "feet"),
  16405. weight: math.unit(800, "kg"),
  16406. name: "Front (NSFW)",
  16407. image: {
  16408. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16409. }
  16410. },
  16411. backNsfw: {
  16412. height: math.unit(19, "feet"),
  16413. weight: math.unit(800, "kg"),
  16414. name: "Back (NSFW)",
  16415. image: {
  16416. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16417. }
  16418. },
  16419. sideArmored: {
  16420. height: math.unit(10, "feet"),
  16421. weight: math.unit(800, "kg"),
  16422. name: "Side (Armored)",
  16423. image: {
  16424. source: "./media/characters/venio-darcony/side-armored.svg",
  16425. extra: 1373 / 1003,
  16426. bottom: 0.037
  16427. }
  16428. },
  16429. frontArmored: {
  16430. height: math.unit(19, "feet"),
  16431. weight: math.unit(900, "kg"),
  16432. name: "Front (Armored)",
  16433. image: {
  16434. source: "./media/characters/venio-darcony/front-armored.svg"
  16435. }
  16436. },
  16437. backArmored: {
  16438. height: math.unit(19, "feet"),
  16439. weight: math.unit(900, "kg"),
  16440. name: "Back (Armored)",
  16441. image: {
  16442. source: "./media/characters/venio-darcony/back-armored.svg"
  16443. }
  16444. },
  16445. sword: {
  16446. height: math.unit(10, "feet"),
  16447. weight: math.unit(50, "lb"),
  16448. name: "Sword",
  16449. image: {
  16450. source: "./media/characters/venio-darcony/sword.svg"
  16451. }
  16452. },
  16453. },
  16454. [
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(10, "feet")
  16458. },
  16459. {
  16460. name: "Macro",
  16461. height: math.unit(130, "feet"),
  16462. default: true
  16463. },
  16464. {
  16465. name: "Macro+",
  16466. height: math.unit(240, "feet")
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16472. {
  16473. front: {
  16474. height: math.unit(6, "feet"),
  16475. weight: math.unit(150, "lb"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/veski/front.svg",
  16479. extra: 1299 / 1225,
  16480. bottom: 0.04
  16481. }
  16482. },
  16483. back: {
  16484. height: math.unit(6, "feet"),
  16485. weight: math.unit(150, "lb"),
  16486. name: "Back",
  16487. image: {
  16488. source: "./media/characters/veski/back.svg",
  16489. extra: 1299 / 1225,
  16490. bottom: 0.008
  16491. }
  16492. },
  16493. maw: {
  16494. height: math.unit(1.5 * 1.21, "feet"),
  16495. name: "Maw",
  16496. image: {
  16497. source: "./media/characters/veski/maw.svg"
  16498. }
  16499. },
  16500. },
  16501. [
  16502. {
  16503. name: "Macro",
  16504. height: math.unit(2, "km"),
  16505. default: true
  16506. },
  16507. ]
  16508. ))
  16509. characterMakers.push(() => makeCharacter(
  16510. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16511. {
  16512. front: {
  16513. height: math.unit(5 + 7 / 12, "feet"),
  16514. name: "Front",
  16515. image: {
  16516. source: "./media/characters/isabelle/front.svg",
  16517. extra: 2130 / 1976,
  16518. bottom: 0.05
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Supermicro",
  16525. height: math.unit(10, "micrometers")
  16526. },
  16527. {
  16528. name: "Micro",
  16529. height: math.unit(1, "inch")
  16530. },
  16531. {
  16532. name: "Tiny",
  16533. height: math.unit(5, "inches")
  16534. },
  16535. {
  16536. name: "Standard",
  16537. height: math.unit(5 + 7 / 12, "inches")
  16538. },
  16539. {
  16540. name: "Macro",
  16541. height: math.unit(80, "meters"),
  16542. default: true
  16543. },
  16544. {
  16545. name: "Megamacro",
  16546. height: math.unit(250, "meters")
  16547. },
  16548. {
  16549. name: "Gigamacro",
  16550. height: math.unit(5, "km")
  16551. },
  16552. {
  16553. name: "Cosmic",
  16554. height: math.unit(2.5e6, "miles")
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16560. {
  16561. front: {
  16562. height: math.unit(6, "feet"),
  16563. weight: math.unit(150, "lb"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/hanzo/front.svg",
  16567. extra: 374 / 344,
  16568. bottom: 0.02
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(8, "feet"),
  16576. default: true
  16577. },
  16578. ]
  16579. ))
  16580. characterMakers.push(() => makeCharacter(
  16581. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16582. {
  16583. front: {
  16584. height: math.unit(7, "feet"),
  16585. weight: math.unit(130, "lb"),
  16586. name: "Front",
  16587. image: {
  16588. source: "./media/characters/anna/front.svg",
  16589. extra: 169 / 145,
  16590. bottom: 0.06
  16591. }
  16592. },
  16593. full: {
  16594. height: math.unit(4.96, "feet"),
  16595. weight: math.unit(220, "lb"),
  16596. name: "Full",
  16597. image: {
  16598. source: "./media/characters/anna/full.svg",
  16599. extra: 138 / 114,
  16600. bottom: 0.15
  16601. }
  16602. },
  16603. tongue: {
  16604. height: math.unit(2.53, "feet"),
  16605. name: "Tongue",
  16606. image: {
  16607. source: "./media/characters/anna/tongue.svg"
  16608. }
  16609. },
  16610. },
  16611. [
  16612. {
  16613. name: "Normal",
  16614. height: math.unit(7, "feet"),
  16615. default: true
  16616. },
  16617. ]
  16618. ))
  16619. characterMakers.push(() => makeCharacter(
  16620. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16621. {
  16622. front: {
  16623. height: math.unit(7, "feet"),
  16624. weight: math.unit(150, "lb"),
  16625. name: "Front",
  16626. image: {
  16627. source: "./media/characters/ian-corvid/front.svg",
  16628. extra: 150 / 142,
  16629. bottom: 0.02
  16630. }
  16631. },
  16632. back: {
  16633. height: math.unit(7, "feet"),
  16634. weight: math.unit(150, "lb"),
  16635. name: "Back",
  16636. image: {
  16637. source: "./media/characters/ian-corvid/back.svg",
  16638. extra: 150 / 143,
  16639. bottom: 0.01
  16640. }
  16641. },
  16642. stomping: {
  16643. height: math.unit(7, "feet"),
  16644. weight: math.unit(150, "lb"),
  16645. name: "Stomping",
  16646. image: {
  16647. source: "./media/characters/ian-corvid/stomping.svg",
  16648. extra: 76 / 72
  16649. }
  16650. },
  16651. sitting: {
  16652. height: math.unit(7 / 1.8, "feet"),
  16653. weight: math.unit(150, "lb"),
  16654. name: "Sitting",
  16655. image: {
  16656. source: "./media/characters/ian-corvid/sitting.svg",
  16657. extra: 1400 / 1269,
  16658. bottom: 0.15
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Tiny Microw",
  16665. height: math.unit(1, "inch")
  16666. },
  16667. {
  16668. name: "Microw",
  16669. height: math.unit(6, "inches")
  16670. },
  16671. {
  16672. name: "Crow",
  16673. height: math.unit(7 + 1 / 12, "feet"),
  16674. default: true
  16675. },
  16676. {
  16677. name: "Macrow",
  16678. height: math.unit(176, "feet")
  16679. },
  16680. ]
  16681. ))
  16682. characterMakers.push(() => makeCharacter(
  16683. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16684. {
  16685. front: {
  16686. height: math.unit(5 + 7 / 12, "feet"),
  16687. weight: math.unit(147, "lb"),
  16688. name: "Front",
  16689. image: {
  16690. source: "./media/characters/natalie-kellon/front.svg",
  16691. extra: 1214 / 1141,
  16692. bottom: 0.02
  16693. }
  16694. },
  16695. },
  16696. [
  16697. {
  16698. name: "Micro",
  16699. height: math.unit(1 / 16, "inch")
  16700. },
  16701. {
  16702. name: "Tiny",
  16703. height: math.unit(4, "inches")
  16704. },
  16705. {
  16706. name: "Normal",
  16707. height: math.unit(5 + 7 / 12, "feet"),
  16708. default: true
  16709. },
  16710. {
  16711. name: "Amazon",
  16712. height: math.unit(12, "feet")
  16713. },
  16714. {
  16715. name: "Giantess",
  16716. height: math.unit(160, "meters")
  16717. },
  16718. {
  16719. name: "Titaness",
  16720. height: math.unit(800, "meters")
  16721. },
  16722. ]
  16723. ))
  16724. characterMakers.push(() => makeCharacter(
  16725. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16726. {
  16727. front: {
  16728. height: math.unit(6, "feet"),
  16729. weight: math.unit(150, "lb"),
  16730. name: "Front",
  16731. image: {
  16732. source: "./media/characters/alluria/front.svg",
  16733. extra: 806 / 738,
  16734. bottom: 0.01
  16735. }
  16736. },
  16737. side: {
  16738. height: math.unit(6, "feet"),
  16739. weight: math.unit(150, "lb"),
  16740. name: "Side",
  16741. image: {
  16742. source: "./media/characters/alluria/side.svg",
  16743. extra: 800 / 750,
  16744. }
  16745. },
  16746. back: {
  16747. height: math.unit(6, "feet"),
  16748. weight: math.unit(150, "lb"),
  16749. name: "Back",
  16750. image: {
  16751. source: "./media/characters/alluria/back.svg",
  16752. extra: 806 / 738,
  16753. }
  16754. },
  16755. frontMaid: {
  16756. height: math.unit(6, "feet"),
  16757. weight: math.unit(150, "lb"),
  16758. name: "Front (Maid)",
  16759. image: {
  16760. source: "./media/characters/alluria/front-maid.svg",
  16761. extra: 806 / 738,
  16762. bottom: 0.01
  16763. }
  16764. },
  16765. sideMaid: {
  16766. height: math.unit(6, "feet"),
  16767. weight: math.unit(150, "lb"),
  16768. name: "Side (Maid)",
  16769. image: {
  16770. source: "./media/characters/alluria/side-maid.svg",
  16771. extra: 800 / 750,
  16772. bottom: 0.005
  16773. }
  16774. },
  16775. backMaid: {
  16776. height: math.unit(6, "feet"),
  16777. weight: math.unit(150, "lb"),
  16778. name: "Back (Maid)",
  16779. image: {
  16780. source: "./media/characters/alluria/back-maid.svg",
  16781. extra: 806 / 738,
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Micro",
  16788. height: math.unit(6, "inches"),
  16789. default: true
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(6, "feet"),
  16798. weight: math.unit(150, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/kyle/front.svg",
  16802. extra: 1069 / 962,
  16803. bottom: 77.228 / 1727.45
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Macro",
  16810. height: math.unit(150, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(6, "feet"),
  16820. weight: math.unit(300, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/duncan/front.svg",
  16824. extra: 1650 / 1482,
  16825. bottom: 0.05
  16826. }
  16827. },
  16828. },
  16829. [
  16830. {
  16831. name: "Macro",
  16832. height: math.unit(100, "feet"),
  16833. default: true
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16839. {
  16840. front: {
  16841. height: math.unit(5 + 4 / 12, "feet"),
  16842. weight: math.unit(220, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/memory/front.svg",
  16846. extra: 3641 / 3545,
  16847. bottom: 0.03
  16848. }
  16849. },
  16850. back: {
  16851. height: math.unit(5 + 4 / 12, "feet"),
  16852. weight: math.unit(220, "lb"),
  16853. name: "Back",
  16854. image: {
  16855. source: "./media/characters/memory/back.svg",
  16856. extra: 3641 / 3545,
  16857. bottom: 0.025
  16858. }
  16859. },
  16860. frontSkirt: {
  16861. height: math.unit(5 + 4 / 12, "feet"),
  16862. weight: math.unit(220, "lb"),
  16863. name: "Front (Skirt)",
  16864. image: {
  16865. source: "./media/characters/memory/front-skirt.svg",
  16866. extra: 3641 / 3545,
  16867. bottom: 0.03
  16868. }
  16869. },
  16870. frontDress: {
  16871. height: math.unit(5 + 4 / 12, "feet"),
  16872. weight: math.unit(220, "lb"),
  16873. name: "Front (Dress)",
  16874. image: {
  16875. source: "./media/characters/memory/front-dress.svg",
  16876. extra: 3641 / 3545,
  16877. bottom: 0.03
  16878. }
  16879. },
  16880. },
  16881. [
  16882. {
  16883. name: "Micro",
  16884. height: math.unit(6, "inches"),
  16885. default: true
  16886. },
  16887. {
  16888. name: "Normal",
  16889. height: math.unit(5 + 4 / 12, "feet")
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(4 + 11 / 12, "feet"),
  16898. weight: math.unit(100, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/luno/front.svg",
  16902. extra: 1535 / 1487,
  16903. bottom: 0.03
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Micro",
  16910. height: math.unit(3, "inches")
  16911. },
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(4 + 11 / 12, "feet"),
  16915. default: true
  16916. },
  16917. {
  16918. name: "Macro",
  16919. height: math.unit(300, "feet")
  16920. },
  16921. {
  16922. name: "Megamacro",
  16923. height: math.unit(700, "miles")
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16929. {
  16930. front: {
  16931. height: math.unit(6 + 2 / 12, "feet"),
  16932. weight: math.unit(170, "lb"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/jamesy/front.svg",
  16936. extra: 440 / 382,
  16937. bottom: 0.005
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Micro",
  16944. height: math.unit(3, "inches")
  16945. },
  16946. {
  16947. name: "Normal",
  16948. height: math.unit(6 + 2 / 12, "feet"),
  16949. default: true
  16950. },
  16951. {
  16952. name: "Macro",
  16953. height: math.unit(300, "feet")
  16954. },
  16955. {
  16956. name: "Megamacro",
  16957. height: math.unit(700, "miles")
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16963. {
  16964. front: {
  16965. height: math.unit(6, "feet"),
  16966. weight: math.unit(160, "lb"),
  16967. name: "Front",
  16968. image: {
  16969. source: "./media/characters/mark/front.svg",
  16970. extra: 3300 / 3100,
  16971. bottom: 136.42 / 3440.47
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Macro",
  16978. height: math.unit(120, "meters")
  16979. },
  16980. {
  16981. name: "Bigger Macro",
  16982. height: math.unit(350, "meters")
  16983. },
  16984. {
  16985. name: "Megamacro",
  16986. height: math.unit(8, "km"),
  16987. default: true
  16988. },
  16989. {
  16990. name: "Continental",
  16991. height: math.unit(4550, "km")
  16992. },
  16993. {
  16994. name: "Planetary",
  16995. height: math.unit(65000, "km")
  16996. },
  16997. ]
  16998. ))
  16999. characterMakers.push(() => makeCharacter(
  17000. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17001. {
  17002. front: {
  17003. height: math.unit(6, "feet"),
  17004. weight: math.unit(400, "lb"),
  17005. name: "Front",
  17006. image: {
  17007. source: "./media/characters/mac/front.svg",
  17008. extra: 1048 / 987.7,
  17009. bottom: 60 / 1107.6,
  17010. }
  17011. },
  17012. },
  17013. [
  17014. {
  17015. name: "Macro",
  17016. height: math.unit(500, "feet"),
  17017. default: true
  17018. },
  17019. ]
  17020. ))
  17021. characterMakers.push(() => makeCharacter(
  17022. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17023. {
  17024. front: {
  17025. height: math.unit(5 + 2 / 12, "feet"),
  17026. weight: math.unit(190, "lb"),
  17027. name: "Front",
  17028. image: {
  17029. source: "./media/characters/bari/front.svg",
  17030. extra: 3156 / 2880,
  17031. bottom: 0.03
  17032. }
  17033. },
  17034. back: {
  17035. height: math.unit(5 + 2 / 12, "feet"),
  17036. weight: math.unit(190, "lb"),
  17037. name: "Back",
  17038. image: {
  17039. source: "./media/characters/bari/back.svg",
  17040. extra: 3260 / 2834,
  17041. bottom: 0.025
  17042. }
  17043. },
  17044. frontPlush: {
  17045. height: math.unit(5 + 2 / 12, "feet"),
  17046. weight: math.unit(190, "lb"),
  17047. name: "Front (Plush)",
  17048. image: {
  17049. source: "./media/characters/bari/front-plush.svg",
  17050. extra: 1112 / 1061,
  17051. bottom: 0.002
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Micro",
  17058. height: math.unit(3, "inches")
  17059. },
  17060. {
  17061. name: "Normal",
  17062. height: math.unit(5 + 2 / 12, "feet"),
  17063. default: true
  17064. },
  17065. {
  17066. name: "Macro",
  17067. height: math.unit(20, "feet")
  17068. },
  17069. ]
  17070. ))
  17071. characterMakers.push(() => makeCharacter(
  17072. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17073. {
  17074. front: {
  17075. height: math.unit(6 + 1 / 12, "feet"),
  17076. weight: math.unit(275, "lb"),
  17077. name: "Front",
  17078. image: {
  17079. source: "./media/characters/hunter-misha-raven/front.svg"
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Mortal",
  17086. height: math.unit(6 + 1 / 12, "feet")
  17087. },
  17088. {
  17089. name: "Divine",
  17090. height: math.unit(1.12134e34, "parsecs"),
  17091. default: true
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(6 + 3 / 12, "feet"),
  17100. weight: math.unit(220, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/max-calore/front.svg",
  17104. extra: 1700 / 1648,
  17105. bottom: 0.01
  17106. }
  17107. },
  17108. back: {
  17109. height: math.unit(6 + 3 / 12, "feet"),
  17110. weight: math.unit(220, "lb"),
  17111. name: "Back",
  17112. image: {
  17113. source: "./media/characters/max-calore/back.svg",
  17114. extra: 1700 / 1648,
  17115. bottom: 0.01
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(6 + 3 / 12, "feet"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17129. {
  17130. side: {
  17131. height: math.unit(2 + 8 / 12, "feet"),
  17132. weight: math.unit(99, "lb"),
  17133. name: "Side",
  17134. image: {
  17135. source: "./media/characters/aspen/side.svg",
  17136. extra: 152 / 138,
  17137. bottom: 0.032
  17138. }
  17139. },
  17140. },
  17141. [
  17142. {
  17143. name: "Normal",
  17144. height: math.unit(2 + 8 / 12, "feet"),
  17145. default: true
  17146. },
  17147. ]
  17148. ))
  17149. characterMakers.push(() => makeCharacter(
  17150. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17151. {
  17152. side: {
  17153. height: math.unit(3 + 2 / 12, "feet"),
  17154. weight: math.unit(224, "lb"),
  17155. name: "Side",
  17156. image: {
  17157. source: "./media/characters/sheila-feral-wolf/side.svg",
  17158. extra: 179 / 166,
  17159. bottom: 0.03
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Normal",
  17166. height: math.unit(3 + 2 / 12, "feet"),
  17167. default: true
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17173. {
  17174. side: {
  17175. height: math.unit(1 + 9 / 12, "feet"),
  17176. weight: math.unit(38, "lb"),
  17177. name: "Side",
  17178. image: {
  17179. source: "./media/characters/michelle/side.svg",
  17180. extra: 147 / 136.7,
  17181. bottom: 0.03
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(1 + 9 / 12, "feet"),
  17189. default: true
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17195. {
  17196. front: {
  17197. height: math.unit(1.54, "feet"),
  17198. weight: math.unit(50, "lb"),
  17199. name: "Front",
  17200. image: {
  17201. source: "./media/characters/nino/front.svg"
  17202. }
  17203. },
  17204. },
  17205. [
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(1.54, "feet"),
  17209. default: true
  17210. },
  17211. ]
  17212. ))
  17213. characterMakers.push(() => makeCharacter(
  17214. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17215. {
  17216. front: {
  17217. height: math.unit(1, "feet"),
  17218. weight: math.unit(16, "lb"),
  17219. name: "Front",
  17220. image: {
  17221. source: "./media/characters/viola/front.svg"
  17222. }
  17223. },
  17224. },
  17225. [
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(1, "feet"),
  17229. default: true
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17235. {
  17236. front: {
  17237. height: math.unit(6 + 5 / 12, "feet"),
  17238. weight: math.unit(580, "lb"),
  17239. name: "Front",
  17240. image: {
  17241. source: "./media/characters/atlas/front.svg",
  17242. extra: 298.5 / 290,
  17243. bottom: 0.015
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(6 + 5 / 12, "feet"),
  17251. default: true
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17257. {
  17258. side: {
  17259. height: math.unit(1 + 10 / 12, "feet"),
  17260. weight: math.unit(25, "lb"),
  17261. name: "Side",
  17262. image: {
  17263. source: "./media/characters/davy/side.svg",
  17264. extra: 200 / 170,
  17265. bottom: 0.01
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Normal",
  17272. height: math.unit(1 + 10 / 12, "feet"),
  17273. default: true
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17279. {
  17280. side: {
  17281. height: math.unit(4 + 8 / 12, "feet"),
  17282. weight: math.unit(166, "lb"),
  17283. name: "Side",
  17284. image: {
  17285. source: "./media/characters/fiona/side.svg",
  17286. extra: 232 / 220,
  17287. bottom: 0.03
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Normal",
  17294. height: math.unit(4 + 8 / 12, "feet"),
  17295. default: true
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17301. {
  17302. front: {
  17303. height: math.unit(3, "feet"),
  17304. weight: math.unit(100, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/lyla/front.svg",
  17308. bottom: 0.1
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Normal",
  17315. height: math.unit(3, "feet"),
  17316. default: true
  17317. },
  17318. ]
  17319. ))
  17320. characterMakers.push(() => makeCharacter(
  17321. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17322. {
  17323. side: {
  17324. height: math.unit(1.8, "feet"),
  17325. weight: math.unit(44, "lb"),
  17326. name: "Side",
  17327. image: {
  17328. source: "./media/characters/perseus/side.svg",
  17329. bottom: 0.21
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(1.8, "feet"),
  17337. default: true
  17338. },
  17339. ]
  17340. ))
  17341. characterMakers.push(() => makeCharacter(
  17342. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17343. {
  17344. side: {
  17345. height: math.unit(4 + 2 / 12, "feet"),
  17346. weight: math.unit(20, "lb"),
  17347. name: "Side",
  17348. image: {
  17349. source: "./media/characters/remus/side.svg"
  17350. }
  17351. },
  17352. },
  17353. [
  17354. {
  17355. name: "Normal",
  17356. height: math.unit(4 + 2 / 12, "feet"),
  17357. default: true
  17358. },
  17359. ]
  17360. ))
  17361. characterMakers.push(() => makeCharacter(
  17362. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17363. {
  17364. front: {
  17365. height: math.unit(4 + 11 / 12, "feet"),
  17366. weight: math.unit(114, "lb"),
  17367. name: "Front",
  17368. image: {
  17369. source: "./media/characters/raf/front.svg",
  17370. extra: 1504/1339,
  17371. bottom: 26/1530
  17372. }
  17373. },
  17374. side: {
  17375. height: math.unit(4 + 11 / 12, "feet"),
  17376. weight: math.unit(114, "lb"),
  17377. name: "Side",
  17378. image: {
  17379. source: "./media/characters/raf/side.svg",
  17380. extra: 1466/1316,
  17381. bottom: 29/1495
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Micro",
  17388. height: math.unit(2, "inches")
  17389. },
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(4 + 11 / 12, "feet"),
  17393. default: true
  17394. },
  17395. {
  17396. name: "Macro",
  17397. height: math.unit(70, "feet")
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17403. {
  17404. front: {
  17405. height: math.unit(1.5, "meters"),
  17406. weight: math.unit(68, "kg"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/liam-einarr/front.svg",
  17410. extra: 2822 / 2666
  17411. }
  17412. },
  17413. back: {
  17414. height: math.unit(1.5, "meters"),
  17415. weight: math.unit(68, "kg"),
  17416. name: "Back",
  17417. image: {
  17418. source: "./media/characters/liam-einarr/back.svg",
  17419. extra: 2822 / 2666,
  17420. bottom: 0.015
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(1.5, "meters"),
  17428. default: true
  17429. },
  17430. {
  17431. name: "Macro",
  17432. height: math.unit(150, "meters")
  17433. },
  17434. {
  17435. name: "Megamacro",
  17436. height: math.unit(35, "km")
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17442. {
  17443. front: {
  17444. height: math.unit(6, "feet"),
  17445. weight: math.unit(75, "kg"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/linda/front.svg",
  17449. extra: 930 / 874,
  17450. bottom: 0.004
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(6, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(6 + 8 / 12, "feet"),
  17467. weight: math.unit(220, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/caylex/front.svg",
  17471. extra: 821 / 772,
  17472. bottom: 0.07
  17473. }
  17474. },
  17475. back: {
  17476. height: math.unit(6 + 8 / 12, "feet"),
  17477. weight: math.unit(220, "lb"),
  17478. name: "Back",
  17479. image: {
  17480. source: "./media/characters/caylex/back.svg",
  17481. extra: 821 / 772,
  17482. bottom: 0.022
  17483. }
  17484. },
  17485. hand: {
  17486. height: math.unit(1.25, "feet"),
  17487. name: "Hand",
  17488. image: {
  17489. source: "./media/characters/caylex/hand.svg"
  17490. }
  17491. },
  17492. foot: {
  17493. height: math.unit(1.6, "feet"),
  17494. name: "Foot",
  17495. image: {
  17496. source: "./media/characters/caylex/foot.svg"
  17497. }
  17498. },
  17499. armored: {
  17500. height: math.unit(6 + 8 / 12, "feet"),
  17501. weight: math.unit(250, "lb"),
  17502. name: "Armored",
  17503. image: {
  17504. source: "./media/characters/caylex/armored.svg",
  17505. extra: 1420 / 1310,
  17506. bottom: 0.045
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(6 + 8 / 12, "feet"),
  17514. default: true
  17515. },
  17516. {
  17517. name: "Normal+",
  17518. height: math.unit(12, "feet")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(7 + 6 / 12, "feet"),
  17527. weight: math.unit(288, "lb"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/alana/front.svg",
  17531. extra: 679 / 653,
  17532. bottom: 22.5 / 701
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(7 + 6 / 12, "feet")
  17540. },
  17541. {
  17542. name: "Large",
  17543. height: math.unit(50, "feet")
  17544. },
  17545. {
  17546. name: "Macro",
  17547. height: math.unit(100, "feet"),
  17548. default: true
  17549. },
  17550. {
  17551. name: "Macro+",
  17552. height: math.unit(200, "feet")
  17553. },
  17554. ]
  17555. ))
  17556. characterMakers.push(() => makeCharacter(
  17557. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17558. {
  17559. front: {
  17560. height: math.unit(6 + 1 / 12, "feet"),
  17561. weight: math.unit(210, "lb"),
  17562. name: "Front",
  17563. image: {
  17564. source: "./media/characters/hasani/front.svg",
  17565. extra: 244 / 232,
  17566. bottom: 0.01
  17567. }
  17568. },
  17569. back: {
  17570. height: math.unit(6 + 1 / 12, "feet"),
  17571. weight: math.unit(210, "lb"),
  17572. name: "Back",
  17573. image: {
  17574. source: "./media/characters/hasani/back.svg",
  17575. extra: 244 / 232,
  17576. bottom: 0.01
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Normal",
  17583. height: math.unit(6 + 1 / 12, "feet")
  17584. },
  17585. {
  17586. name: "Macro",
  17587. height: math.unit(175, "feet"),
  17588. default: true
  17589. },
  17590. ]
  17591. ))
  17592. characterMakers.push(() => makeCharacter(
  17593. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17594. {
  17595. front: {
  17596. height: math.unit(1.82, "meters"),
  17597. weight: math.unit(140, "lb"),
  17598. name: "Front",
  17599. image: {
  17600. source: "./media/characters/nita/front.svg",
  17601. extra: 2473 / 2363,
  17602. bottom: 0.01
  17603. }
  17604. },
  17605. },
  17606. [
  17607. {
  17608. name: "Normal",
  17609. height: math.unit(1.82, "m")
  17610. },
  17611. {
  17612. name: "Macro",
  17613. height: math.unit(300, "m")
  17614. },
  17615. {
  17616. name: "Mistake Canon",
  17617. height: math.unit(0.5, "miles"),
  17618. default: true
  17619. },
  17620. {
  17621. name: "Big Mistake",
  17622. height: math.unit(13, "miles")
  17623. },
  17624. {
  17625. name: "Playing God",
  17626. height: math.unit(2450, "miles")
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17632. {
  17633. front: {
  17634. height: math.unit(4, "feet"),
  17635. weight: math.unit(120, "lb"),
  17636. name: "Front",
  17637. image: {
  17638. source: "./media/characters/shiriko/front.svg",
  17639. extra: 970/934,
  17640. bottom: 5/975
  17641. }
  17642. },
  17643. },
  17644. [
  17645. {
  17646. name: "Normal",
  17647. height: math.unit(4, "feet"),
  17648. default: true
  17649. },
  17650. ]
  17651. ))
  17652. characterMakers.push(() => makeCharacter(
  17653. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17654. {
  17655. front: {
  17656. height: math.unit(6, "feet"),
  17657. name: "front",
  17658. image: {
  17659. source: "./media/characters/deja/front.svg",
  17660. extra: 926 / 840,
  17661. bottom: 0.07
  17662. }
  17663. },
  17664. },
  17665. [
  17666. {
  17667. name: "Planck Length",
  17668. height: math.unit(1.6e-35, "meters")
  17669. },
  17670. {
  17671. name: "Normal",
  17672. height: math.unit(30.48, "meters"),
  17673. default: true
  17674. },
  17675. {
  17676. name: "Universal",
  17677. height: math.unit(8.8e26, "meters")
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17683. {
  17684. side: {
  17685. height: math.unit(8, "feet"),
  17686. weight: math.unit(6300, "lb"),
  17687. name: "Side",
  17688. image: {
  17689. source: "./media/characters/anima/side.svg",
  17690. bottom: 0.035
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(8, "feet"),
  17698. default: true
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17704. {
  17705. front: {
  17706. height: math.unit(8, "feet"),
  17707. weight: math.unit(350, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/bianca/front.svg",
  17711. extra: 234 / 225,
  17712. bottom: 0.03
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Normal",
  17719. height: math.unit(8, "feet"),
  17720. default: true
  17721. },
  17722. ]
  17723. ))
  17724. characterMakers.push(() => makeCharacter(
  17725. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17726. {
  17727. front: {
  17728. height: math.unit(6, "feet"),
  17729. weight: math.unit(150, "lb"),
  17730. name: "Front",
  17731. image: {
  17732. source: "./media/characters/adinia/front.svg",
  17733. extra: 1845 / 1672,
  17734. bottom: 0.02
  17735. }
  17736. },
  17737. back: {
  17738. height: math.unit(6, "feet"),
  17739. weight: math.unit(150, "lb"),
  17740. name: "Back",
  17741. image: {
  17742. source: "./media/characters/adinia/back.svg",
  17743. extra: 1845 / 1672,
  17744. bottom: 0.002
  17745. }
  17746. },
  17747. },
  17748. [
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(11 + 5 / 12, "feet"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(3, "meters"),
  17761. weight: math.unit(200, "kg"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/lykasa/front.svg",
  17765. extra: 1076 / 976,
  17766. bottom: 0.06
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(3, "meters")
  17774. },
  17775. {
  17776. name: "Kaiju",
  17777. height: math.unit(120, "meters"),
  17778. default: true
  17779. },
  17780. {
  17781. name: "Mega Kaiju",
  17782. height: math.unit(240, "km")
  17783. },
  17784. {
  17785. name: "Giga Kaiju",
  17786. height: math.unit(400, "megameters")
  17787. },
  17788. {
  17789. name: "Tera Kaiju",
  17790. height: math.unit(800, "gigameters")
  17791. },
  17792. {
  17793. name: "Kaiju Dragon Goddess",
  17794. height: math.unit(26, "zettaparsecs")
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17800. {
  17801. side: {
  17802. height: math.unit(283 / 124 * 6, "feet"),
  17803. weight: math.unit(35000, "lb"),
  17804. name: "Side",
  17805. image: {
  17806. source: "./media/characters/malfaren/side.svg",
  17807. extra: 2500 / 1010,
  17808. bottom: 0.01
  17809. }
  17810. },
  17811. front: {
  17812. height: math.unit(22.36, "feet"),
  17813. weight: math.unit(35000, "lb"),
  17814. name: "Front",
  17815. image: {
  17816. source: "./media/characters/malfaren/front.svg",
  17817. extra: 1631 / 1476,
  17818. bottom: 0.01
  17819. }
  17820. },
  17821. maw: {
  17822. height: math.unit(6.9, "feet"),
  17823. name: "Maw",
  17824. image: {
  17825. source: "./media/characters/malfaren/maw.svg"
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Big",
  17832. height: math.unit(283 / 162 * 6, "feet"),
  17833. },
  17834. {
  17835. name: "Bigger",
  17836. height: math.unit(283 / 124 * 6, "feet")
  17837. },
  17838. {
  17839. name: "Massive",
  17840. height: math.unit(283 / 92 * 6, "feet"),
  17841. default: true
  17842. },
  17843. {
  17844. name: "👀💦",
  17845. height: math.unit(283 / 73 * 6, "feet"),
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17851. {
  17852. front: {
  17853. height: math.unit(1.7, "m"),
  17854. weight: math.unit(70, "kg"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/kernel/front.svg",
  17858. extra: 222 / 210,
  17859. bottom: 0.007
  17860. }
  17861. },
  17862. },
  17863. [
  17864. {
  17865. name: "Nano",
  17866. height: math.unit(17, "micrometers")
  17867. },
  17868. {
  17869. name: "Micro",
  17870. height: math.unit(1.7, "mm")
  17871. },
  17872. {
  17873. name: "Small",
  17874. height: math.unit(1.7, "cm")
  17875. },
  17876. {
  17877. name: "Normal",
  17878. height: math.unit(1.7, "m"),
  17879. default: true
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17885. {
  17886. front: {
  17887. height: math.unit(1.75, "meters"),
  17888. weight: math.unit(65, "kg"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/jayne-folest/front.svg",
  17892. extra: 2115 / 2007,
  17893. bottom: 0.02
  17894. }
  17895. },
  17896. back: {
  17897. height: math.unit(1.75, "meters"),
  17898. weight: math.unit(65, "kg"),
  17899. name: "Back",
  17900. image: {
  17901. source: "./media/characters/jayne-folest/back.svg",
  17902. extra: 2115 / 2007,
  17903. bottom: 0.005
  17904. }
  17905. },
  17906. frontClothed: {
  17907. height: math.unit(1.75, "meters"),
  17908. weight: math.unit(65, "kg"),
  17909. name: "Front (Clothed)",
  17910. image: {
  17911. source: "./media/characters/jayne-folest/front-clothed.svg",
  17912. extra: 2115 / 2007,
  17913. bottom: 0.035
  17914. }
  17915. },
  17916. hand: {
  17917. height: math.unit(1 / 1.260, "feet"),
  17918. name: "Hand",
  17919. image: {
  17920. source: "./media/characters/jayne-folest/hand.svg"
  17921. }
  17922. },
  17923. foot: {
  17924. height: math.unit(1 / 0.918, "feet"),
  17925. name: "Foot",
  17926. image: {
  17927. source: "./media/characters/jayne-folest/foot.svg"
  17928. }
  17929. },
  17930. },
  17931. [
  17932. {
  17933. name: "Micro",
  17934. height: math.unit(4, "cm")
  17935. },
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(1.75, "meters")
  17939. },
  17940. {
  17941. name: "Macro",
  17942. height: math.unit(47.5, "meters"),
  17943. default: true
  17944. },
  17945. ]
  17946. ))
  17947. characterMakers.push(() => makeCharacter(
  17948. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17949. {
  17950. front: {
  17951. height: math.unit(180, "cm"),
  17952. weight: math.unit(70, "kg"),
  17953. name: "Front",
  17954. image: {
  17955. source: "./media/characters/algier/front.svg",
  17956. extra: 596 / 572,
  17957. bottom: 0.04
  17958. }
  17959. },
  17960. back: {
  17961. height: math.unit(180, "cm"),
  17962. weight: math.unit(70, "kg"),
  17963. name: "Back",
  17964. image: {
  17965. source: "./media/characters/algier/back.svg",
  17966. extra: 596 / 572,
  17967. bottom: 0.025
  17968. }
  17969. },
  17970. frontdressed: {
  17971. height: math.unit(180, "cm"),
  17972. weight: math.unit(150, "kg"),
  17973. name: "Front-dressed",
  17974. image: {
  17975. source: "./media/characters/algier/front-dressed.svg",
  17976. extra: 596 / 572,
  17977. bottom: 0.038
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Micro",
  17984. height: math.unit(5, "cm")
  17985. },
  17986. {
  17987. name: "Normal",
  17988. height: math.unit(180, "cm"),
  17989. default: true
  17990. },
  17991. {
  17992. name: "Macro",
  17993. height: math.unit(64, "m")
  17994. },
  17995. ]
  17996. ))
  17997. characterMakers.push(() => makeCharacter(
  17998. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17999. {
  18000. upright: {
  18001. height: math.unit(7, "feet"),
  18002. weight: math.unit(300, "lb"),
  18003. name: "Upright",
  18004. image: {
  18005. source: "./media/characters/pretzel/upright.svg",
  18006. extra: 534 / 522,
  18007. bottom: 0.065
  18008. }
  18009. },
  18010. sprawling: {
  18011. height: math.unit(3.75, "feet"),
  18012. weight: math.unit(300, "lb"),
  18013. name: "Sprawling",
  18014. image: {
  18015. source: "./media/characters/pretzel/sprawling.svg",
  18016. extra: 314 / 281,
  18017. bottom: 0.1
  18018. }
  18019. },
  18020. tongue: {
  18021. height: math.unit(2, "feet"),
  18022. name: "Tongue",
  18023. image: {
  18024. source: "./media/characters/pretzel/tongue.svg"
  18025. }
  18026. },
  18027. },
  18028. [
  18029. {
  18030. name: "Normal",
  18031. height: math.unit(7, "feet"),
  18032. default: true
  18033. },
  18034. {
  18035. name: "Oversized",
  18036. height: math.unit(15, "feet")
  18037. },
  18038. {
  18039. name: "Huge",
  18040. height: math.unit(30, "feet")
  18041. },
  18042. {
  18043. name: "Macro",
  18044. height: math.unit(250, "feet")
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18050. {
  18051. sideFront: {
  18052. height: math.unit(5 + 2 / 12, "feet"),
  18053. weight: math.unit(120, "lb"),
  18054. name: "Front Side",
  18055. image: {
  18056. source: "./media/characters/roxi/side-front.svg",
  18057. extra: 2924 / 2717,
  18058. bottom: 0.08
  18059. }
  18060. },
  18061. sideBack: {
  18062. height: math.unit(5 + 2 / 12, "feet"),
  18063. weight: math.unit(120, "lb"),
  18064. name: "Back Side",
  18065. image: {
  18066. source: "./media/characters/roxi/side-back.svg",
  18067. extra: 2904 / 2693,
  18068. bottom: 0.06
  18069. }
  18070. },
  18071. front: {
  18072. height: math.unit(5 + 2 / 12, "feet"),
  18073. weight: math.unit(120, "lb"),
  18074. name: "Front",
  18075. image: {
  18076. source: "./media/characters/roxi/front.svg",
  18077. extra: 2028 / 1907,
  18078. bottom: 0.01
  18079. }
  18080. },
  18081. frontAlt: {
  18082. height: math.unit(5 + 2 / 12, "feet"),
  18083. weight: math.unit(120, "lb"),
  18084. name: "Front (Alt)",
  18085. image: {
  18086. source: "./media/characters/roxi/front-alt.svg",
  18087. extra: 1828 / 1798,
  18088. bottom: 0.01
  18089. }
  18090. },
  18091. sitting: {
  18092. height: math.unit(2.8, "feet"),
  18093. weight: math.unit(120, "lb"),
  18094. name: "Sitting",
  18095. image: {
  18096. source: "./media/characters/roxi/sitting.svg",
  18097. extra: 2660 / 2462,
  18098. bottom: 0.1
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Normal",
  18105. height: math.unit(5 + 2 / 12, "feet"),
  18106. default: true
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18112. {
  18113. side: {
  18114. height: math.unit(55, "feet"),
  18115. weight: math.unit(153, "tons"),
  18116. name: "Side",
  18117. image: {
  18118. source: "./media/characters/shadow/side.svg",
  18119. extra: 701 / 628,
  18120. bottom: 0.02
  18121. }
  18122. },
  18123. flying: {
  18124. height: math.unit(145, "feet"),
  18125. weight: math.unit(153, "tons"),
  18126. name: "Flying",
  18127. image: {
  18128. source: "./media/characters/shadow/flying.svg"
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Normal",
  18135. height: math.unit(55, "feet"),
  18136. default: true
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(6, "feet"),
  18145. weight: math.unit(200, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/marcie/front.svg",
  18149. extra: 960 / 876,
  18150. bottom: 58 / 1017.87
  18151. }
  18152. },
  18153. },
  18154. [
  18155. {
  18156. name: "Macro",
  18157. height: math.unit(1, "mile"),
  18158. default: true
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18164. {
  18165. front: {
  18166. height: math.unit(7, "feet"),
  18167. weight: math.unit(200, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/kachina/front.svg",
  18171. extra: 1290.68 / 1119,
  18172. bottom: 36.5 / 1327.18
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(7, "feet"),
  18180. default: true
  18181. },
  18182. ]
  18183. ))
  18184. characterMakers.push(() => makeCharacter(
  18185. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18186. {
  18187. looking: {
  18188. height: math.unit(2, "meters"),
  18189. weight: math.unit(300, "kg"),
  18190. name: "Looking",
  18191. image: {
  18192. source: "./media/characters/kash/looking.svg",
  18193. extra: 474 / 344,
  18194. bottom: 0.03
  18195. }
  18196. },
  18197. side: {
  18198. height: math.unit(2, "meters"),
  18199. weight: math.unit(300, "kg"),
  18200. name: "Side",
  18201. image: {
  18202. source: "./media/characters/kash/side.svg",
  18203. extra: 302 / 251,
  18204. bottom: 0.03
  18205. }
  18206. },
  18207. front: {
  18208. height: math.unit(2, "meters"),
  18209. weight: math.unit(300, "kg"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/kash/front.svg",
  18213. extra: 495 / 360,
  18214. bottom: 0.015
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(2, "meters"),
  18222. default: true
  18223. },
  18224. {
  18225. name: "Big",
  18226. height: math.unit(3, "meters")
  18227. },
  18228. {
  18229. name: "Large",
  18230. height: math.unit(5, "meters")
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18236. {
  18237. feeding: {
  18238. height: math.unit(6.7, "feet"),
  18239. weight: math.unit(350, "lb"),
  18240. name: "Feeding",
  18241. image: {
  18242. source: "./media/characters/lalim/feeding.svg",
  18243. }
  18244. },
  18245. },
  18246. [
  18247. {
  18248. name: "Normal",
  18249. height: math.unit(6.7, "feet"),
  18250. default: true
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18256. {
  18257. front: {
  18258. height: math.unit(9.5, "feet"),
  18259. weight: math.unit(600, "lb"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/de'vout/front.svg",
  18263. extra: 1443 / 1328,
  18264. bottom: 0.025
  18265. }
  18266. },
  18267. back: {
  18268. height: math.unit(9.5, "feet"),
  18269. weight: math.unit(600, "lb"),
  18270. name: "Back",
  18271. image: {
  18272. source: "./media/characters/de'vout/back.svg",
  18273. extra: 1443 / 1328
  18274. }
  18275. },
  18276. frontDressed: {
  18277. height: math.unit(9.5, "feet"),
  18278. weight: math.unit(600, "lb"),
  18279. name: "Front (Dressed",
  18280. image: {
  18281. source: "./media/characters/de'vout/front-dressed.svg",
  18282. extra: 1443 / 1328,
  18283. bottom: 0.025
  18284. }
  18285. },
  18286. backDressed: {
  18287. height: math.unit(9.5, "feet"),
  18288. weight: math.unit(600, "lb"),
  18289. name: "Back (Dressed",
  18290. image: {
  18291. source: "./media/characters/de'vout/back-dressed.svg",
  18292. extra: 1443 / 1328
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Normal",
  18299. height: math.unit(9.5, "feet"),
  18300. default: true
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(8, "feet"),
  18309. weight: math.unit(225, "lb"),
  18310. name: "Front",
  18311. image: {
  18312. source: "./media/characters/talana/front.svg",
  18313. extra: 1410 / 1300,
  18314. bottom: 0.015
  18315. }
  18316. },
  18317. frontDressed: {
  18318. height: math.unit(8, "feet"),
  18319. weight: math.unit(225, "lb"),
  18320. name: "Front (Dressed",
  18321. image: {
  18322. source: "./media/characters/talana/front-dressed.svg",
  18323. extra: 1410 / 1300,
  18324. bottom: 0.015
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(8, "feet"),
  18332. default: true
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18338. {
  18339. side: {
  18340. height: math.unit(7.2, "feet"),
  18341. weight: math.unit(150, "lb"),
  18342. name: "Side",
  18343. image: {
  18344. source: "./media/characters/xeauvok/side.svg",
  18345. extra: 1975 / 1523,
  18346. bottom: 0.07
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Normal",
  18353. height: math.unit(7.2, "feet"),
  18354. default: true
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18360. {
  18361. side: {
  18362. height: math.unit(10, "feet"),
  18363. weight: math.unit(900, "kg"),
  18364. name: "Side",
  18365. image: {
  18366. source: "./media/characters/zara/side.svg",
  18367. extra: 504 / 498
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(10, "feet"),
  18375. default: true
  18376. },
  18377. ]
  18378. ))
  18379. characterMakers.push(() => makeCharacter(
  18380. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18381. {
  18382. side: {
  18383. height: math.unit(6, "feet"),
  18384. weight: math.unit(150, "lb"),
  18385. name: "Side",
  18386. image: {
  18387. source: "./media/characters/richard-dragon/side.svg",
  18388. extra: 845 / 340,
  18389. bottom: 0.017
  18390. }
  18391. },
  18392. maw: {
  18393. height: math.unit(2.97, "feet"),
  18394. name: "Maw",
  18395. image: {
  18396. source: "./media/characters/richard-dragon/maw.svg"
  18397. }
  18398. },
  18399. },
  18400. [
  18401. ]
  18402. ))
  18403. characterMakers.push(() => makeCharacter(
  18404. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18405. {
  18406. front: {
  18407. height: math.unit(4, "feet"),
  18408. weight: math.unit(100, "lb"),
  18409. name: "Front",
  18410. image: {
  18411. source: "./media/characters/richard-smeargle/front.svg",
  18412. extra: 2952 / 2820,
  18413. bottom: 0.028
  18414. }
  18415. },
  18416. },
  18417. [
  18418. {
  18419. name: "Normal",
  18420. height: math.unit(4, "feet"),
  18421. default: true
  18422. },
  18423. {
  18424. name: "Dynamax",
  18425. height: math.unit(20, "meters")
  18426. },
  18427. ]
  18428. ))
  18429. characterMakers.push(() => makeCharacter(
  18430. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18431. {
  18432. front: {
  18433. height: math.unit(6, "feet"),
  18434. weight: math.unit(110, "lb"),
  18435. name: "Front",
  18436. image: {
  18437. source: "./media/characters/klay/front.svg",
  18438. extra: 962 / 883,
  18439. bottom: 0.04
  18440. }
  18441. },
  18442. back: {
  18443. height: math.unit(6, "feet"),
  18444. weight: math.unit(110, "lb"),
  18445. name: "Back",
  18446. image: {
  18447. source: "./media/characters/klay/back.svg",
  18448. extra: 962 / 883
  18449. }
  18450. },
  18451. beans: {
  18452. height: math.unit(1.15, "feet"),
  18453. name: "Beans",
  18454. image: {
  18455. source: "./media/characters/klay/beans.svg"
  18456. }
  18457. },
  18458. },
  18459. [
  18460. {
  18461. name: "Micro",
  18462. height: math.unit(6, "inches")
  18463. },
  18464. {
  18465. name: "Mini",
  18466. height: math.unit(3, "feet")
  18467. },
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(6, "feet"),
  18471. default: true
  18472. },
  18473. {
  18474. name: "Big",
  18475. height: math.unit(25, "feet")
  18476. },
  18477. {
  18478. name: "Macro",
  18479. height: math.unit(100, "feet")
  18480. },
  18481. {
  18482. name: "Megamacro",
  18483. height: math.unit(400, "feet")
  18484. },
  18485. ]
  18486. ))
  18487. characterMakers.push(() => makeCharacter(
  18488. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18489. {
  18490. front: {
  18491. height: math.unit(6, "feet"),
  18492. weight: math.unit(160, "lb"),
  18493. name: "Front",
  18494. image: {
  18495. source: "./media/characters/marcus/front.svg",
  18496. extra: 734 / 676,
  18497. bottom: 0.03
  18498. }
  18499. },
  18500. },
  18501. [
  18502. {
  18503. name: "Little",
  18504. height: math.unit(6, "feet")
  18505. },
  18506. {
  18507. name: "Normal",
  18508. height: math.unit(110, "feet"),
  18509. default: true
  18510. },
  18511. {
  18512. name: "Macro",
  18513. height: math.unit(250, "feet")
  18514. },
  18515. {
  18516. name: "Megamacro",
  18517. height: math.unit(1000, "feet")
  18518. },
  18519. ]
  18520. ))
  18521. characterMakers.push(() => makeCharacter(
  18522. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18523. {
  18524. front: {
  18525. height: math.unit(7, "feet"),
  18526. weight: math.unit(275, "lb"),
  18527. name: "Front",
  18528. image: {
  18529. source: "./media/characters/claude-delroute/front.svg",
  18530. extra: 902/827,
  18531. bottom: 26/928
  18532. }
  18533. },
  18534. side: {
  18535. height: math.unit(7, "feet"),
  18536. weight: math.unit(275, "lb"),
  18537. name: "Side",
  18538. image: {
  18539. source: "./media/characters/claude-delroute/side.svg",
  18540. extra: 908/853,
  18541. bottom: 16/924
  18542. }
  18543. },
  18544. back: {
  18545. height: math.unit(7, "feet"),
  18546. weight: math.unit(275, "lb"),
  18547. name: "Back",
  18548. image: {
  18549. source: "./media/characters/claude-delroute/back.svg",
  18550. extra: 911/829,
  18551. bottom: 18/929
  18552. }
  18553. },
  18554. maw: {
  18555. height: math.unit(0.6407, "meters"),
  18556. name: "Maw",
  18557. image: {
  18558. source: "./media/characters/claude-delroute/maw.svg"
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Normal",
  18565. height: math.unit(7, "feet"),
  18566. default: true
  18567. },
  18568. {
  18569. name: "Lorge",
  18570. height: math.unit(20, "feet")
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18576. {
  18577. front: {
  18578. height: math.unit(8 + 4 / 12, "feet"),
  18579. weight: math.unit(600, "lb"),
  18580. name: "Front",
  18581. image: {
  18582. source: "./media/characters/dragonien/front.svg",
  18583. extra: 100 / 94,
  18584. bottom: 3.3 / 103.3445
  18585. }
  18586. },
  18587. back: {
  18588. height: math.unit(8 + 4 / 12, "feet"),
  18589. weight: math.unit(600, "lb"),
  18590. name: "Back",
  18591. image: {
  18592. source: "./media/characters/dragonien/back.svg",
  18593. extra: 776 / 746,
  18594. bottom: 6.4 / 782.0616
  18595. }
  18596. },
  18597. foot: {
  18598. height: math.unit(1.54, "feet"),
  18599. name: "Foot",
  18600. image: {
  18601. source: "./media/characters/dragonien/foot.svg",
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Normal",
  18608. height: math.unit(8 + 4 / 12, "feet"),
  18609. default: true
  18610. },
  18611. {
  18612. name: "Macro",
  18613. height: math.unit(200, "feet")
  18614. },
  18615. {
  18616. name: "Megamacro",
  18617. height: math.unit(1, "mile")
  18618. },
  18619. {
  18620. name: "Gigamacro",
  18621. height: math.unit(1000, "miles")
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18627. {
  18628. front: {
  18629. height: math.unit(5 + 2 / 12, "feet"),
  18630. weight: math.unit(110, "lb"),
  18631. name: "Front",
  18632. image: {
  18633. source: "./media/characters/desta/front.svg",
  18634. extra: 767 / 726,
  18635. bottom: 11.7 / 779
  18636. }
  18637. },
  18638. back: {
  18639. height: math.unit(5 + 2 / 12, "feet"),
  18640. weight: math.unit(110, "lb"),
  18641. name: "Back",
  18642. image: {
  18643. source: "./media/characters/desta/back.svg",
  18644. extra: 777 / 728,
  18645. bottom: 6 / 784
  18646. }
  18647. },
  18648. frontAlt: {
  18649. height: math.unit(5 + 2 / 12, "feet"),
  18650. weight: math.unit(110, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/desta/front-alt.svg",
  18654. extra: 1482 / 1417
  18655. }
  18656. },
  18657. side: {
  18658. height: math.unit(5 + 2 / 12, "feet"),
  18659. weight: math.unit(110, "lb"),
  18660. name: "Side",
  18661. image: {
  18662. source: "./media/characters/desta/side.svg",
  18663. extra: 2579 / 2491,
  18664. bottom: 0.053
  18665. }
  18666. },
  18667. },
  18668. [
  18669. {
  18670. name: "Micro",
  18671. height: math.unit(6, "inches")
  18672. },
  18673. {
  18674. name: "Normal",
  18675. height: math.unit(5 + 2 / 12, "feet"),
  18676. default: true
  18677. },
  18678. {
  18679. name: "Macro",
  18680. height: math.unit(62, "feet")
  18681. },
  18682. {
  18683. name: "Megamacro",
  18684. height: math.unit(1800, "feet")
  18685. },
  18686. ]
  18687. ))
  18688. characterMakers.push(() => makeCharacter(
  18689. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18690. {
  18691. front: {
  18692. height: math.unit(10, "feet"),
  18693. weight: math.unit(700, "lb"),
  18694. name: "Front",
  18695. image: {
  18696. source: "./media/characters/storm-alystar/front.svg",
  18697. extra: 2112 / 1898,
  18698. bottom: 0.034
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Micro",
  18705. height: math.unit(3.5, "inches")
  18706. },
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(10, "feet"),
  18710. default: true
  18711. },
  18712. {
  18713. name: "Macro",
  18714. height: math.unit(400, "feet")
  18715. },
  18716. {
  18717. name: "Deific",
  18718. height: math.unit(60, "miles")
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18724. {
  18725. front: {
  18726. height: math.unit(2.35, "meters"),
  18727. weight: math.unit(119, "kg"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/ilia/front.svg",
  18731. extra: 1285 / 1255,
  18732. bottom: 0.06
  18733. }
  18734. },
  18735. },
  18736. [
  18737. {
  18738. name: "Normal",
  18739. height: math.unit(2.35, "meters")
  18740. },
  18741. {
  18742. name: "Macro",
  18743. height: math.unit(140, "meters"),
  18744. default: true
  18745. },
  18746. {
  18747. name: "Megamacro",
  18748. height: math.unit(100, "miles")
  18749. },
  18750. ]
  18751. ))
  18752. characterMakers.push(() => makeCharacter(
  18753. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18754. {
  18755. front: {
  18756. height: math.unit(6 + 5 / 12, "feet"),
  18757. weight: math.unit(190, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/kingdead/front.svg",
  18761. extra: 1228 / 1177
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Micro",
  18768. height: math.unit(7, "inches")
  18769. },
  18770. {
  18771. name: "Normal",
  18772. height: math.unit(6 + 5 / 12, "feet")
  18773. },
  18774. {
  18775. name: "Macro",
  18776. height: math.unit(150, "feet"),
  18777. default: true
  18778. },
  18779. {
  18780. name: "Megamacro",
  18781. height: math.unit(200, "miles")
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18787. {
  18788. front: {
  18789. height: math.unit(8, "feet"),
  18790. weight: math.unit(600, "lb"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/kyrehx/front.svg",
  18794. extra: 1195 / 1095,
  18795. bottom: 0.034
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Micro",
  18802. height: math.unit(2, "inches")
  18803. },
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(8, "feet"),
  18807. default: true
  18808. },
  18809. {
  18810. name: "Macro",
  18811. height: math.unit(255, "feet")
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18817. {
  18818. front: {
  18819. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18820. weight: math.unit(184, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/xang/front.svg",
  18824. extra: 845 / 755
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Normal",
  18831. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18832. default: true
  18833. },
  18834. {
  18835. name: "Macro",
  18836. height: math.unit(0.935 * 146, "feet")
  18837. },
  18838. {
  18839. name: "Megamacro",
  18840. height: math.unit(0.935 * 3, "miles")
  18841. },
  18842. ]
  18843. ))
  18844. characterMakers.push(() => makeCharacter(
  18845. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18846. {
  18847. frontDressed: {
  18848. height: math.unit(5 + 7 / 12, "feet"),
  18849. weight: math.unit(140, "lb"),
  18850. name: "Front (Dressed)",
  18851. image: {
  18852. source: "./media/characters/doc-weardno/front-dressed.svg",
  18853. extra: 263 / 234
  18854. }
  18855. },
  18856. backDressed: {
  18857. height: math.unit(5 + 7 / 12, "feet"),
  18858. weight: math.unit(140, "lb"),
  18859. name: "Back (Dressed)",
  18860. image: {
  18861. source: "./media/characters/doc-weardno/back-dressed.svg",
  18862. extra: 266 / 238
  18863. }
  18864. },
  18865. front: {
  18866. height: math.unit(5 + 7 / 12, "feet"),
  18867. weight: math.unit(140, "lb"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/doc-weardno/front.svg",
  18871. extra: 254 / 233
  18872. }
  18873. },
  18874. },
  18875. [
  18876. {
  18877. name: "Micro",
  18878. height: math.unit(3, "inches")
  18879. },
  18880. {
  18881. name: "Normal",
  18882. height: math.unit(5 + 7 / 12, "feet"),
  18883. default: true
  18884. },
  18885. {
  18886. name: "Macro",
  18887. height: math.unit(25, "feet")
  18888. },
  18889. {
  18890. name: "Megamacro",
  18891. height: math.unit(2, "miles")
  18892. },
  18893. ]
  18894. ))
  18895. characterMakers.push(() => makeCharacter(
  18896. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18897. {
  18898. front: {
  18899. height: math.unit(6 + 2 / 12, "feet"),
  18900. weight: math.unit(153, "lb"),
  18901. name: "Front",
  18902. image: {
  18903. source: "./media/characters/seth-whilst/front.svg",
  18904. bottom: 0.07
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Micro",
  18911. height: math.unit(5, "inches")
  18912. },
  18913. {
  18914. name: "Normal",
  18915. height: math.unit(6 + 2 / 12, "feet"),
  18916. default: true
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18922. {
  18923. front: {
  18924. height: math.unit(3, "inches"),
  18925. weight: math.unit(8, "grams"),
  18926. name: "Front",
  18927. image: {
  18928. source: "./media/characters/pocket-jabari/front.svg",
  18929. extra: 1024 / 974,
  18930. bottom: 0.039
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Minimicro",
  18937. height: math.unit(8, "mm")
  18938. },
  18939. {
  18940. name: "Micro",
  18941. height: math.unit(3, "inches"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Normal",
  18946. height: math.unit(3, "feet")
  18947. },
  18948. ]
  18949. ))
  18950. characterMakers.push(() => makeCharacter(
  18951. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18952. {
  18953. front: {
  18954. height: math.unit(15, "feet"),
  18955. weight: math.unit(3280, "lb"),
  18956. name: "Front",
  18957. image: {
  18958. source: "./media/characters/sapphy/front.svg",
  18959. extra: 671 / 577,
  18960. bottom: 0.085
  18961. }
  18962. },
  18963. back: {
  18964. height: math.unit(15, "feet"),
  18965. weight: math.unit(3280, "lb"),
  18966. name: "Back",
  18967. image: {
  18968. source: "./media/characters/sapphy/back.svg",
  18969. extra: 631 / 607,
  18970. bottom: 0.045
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(15, "feet")
  18978. },
  18979. {
  18980. name: "Casual Macro",
  18981. height: math.unit(120, "feet")
  18982. },
  18983. {
  18984. name: "Macro",
  18985. height: math.unit(2150, "feet"),
  18986. default: true
  18987. },
  18988. {
  18989. name: "Megamacro",
  18990. height: math.unit(8, "miles")
  18991. },
  18992. {
  18993. name: "Galaxy Mom",
  18994. height: math.unit(6, "megalightyears")
  18995. },
  18996. ]
  18997. ))
  18998. characterMakers.push(() => makeCharacter(
  18999. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19000. {
  19001. front: {
  19002. height: math.unit(6, "feet"),
  19003. weight: math.unit(170, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/kiro/front.svg",
  19007. extra: 1064 / 1012,
  19008. bottom: 0.052
  19009. }
  19010. },
  19011. },
  19012. [
  19013. {
  19014. name: "Micro",
  19015. height: math.unit(6, "inches")
  19016. },
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(6, "feet"),
  19020. default: true
  19021. },
  19022. {
  19023. name: "Macro",
  19024. height: math.unit(72, "feet")
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19030. {
  19031. front: {
  19032. height: math.unit(5 + 9 / 12, "feet"),
  19033. weight: math.unit(175, "lb"),
  19034. name: "Front",
  19035. image: {
  19036. source: "./media/characters/irishfox/front.svg",
  19037. extra: 1912 / 1680,
  19038. bottom: 0.02
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Nano",
  19045. height: math.unit(1, "mm")
  19046. },
  19047. {
  19048. name: "Micro",
  19049. height: math.unit(2, "inches")
  19050. },
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(5 + 9 / 12, "feet"),
  19054. default: true
  19055. },
  19056. {
  19057. name: "Macro",
  19058. height: math.unit(45, "feet")
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19064. {
  19065. front: {
  19066. height: math.unit(6 + 1 / 12, "feet"),
  19067. weight: math.unit(75, "lb"),
  19068. name: "Front",
  19069. image: {
  19070. source: "./media/characters/aronai-sieyes/front.svg",
  19071. extra: 1532/1450,
  19072. bottom: 42/1574
  19073. }
  19074. },
  19075. side: {
  19076. height: math.unit(6 + 1 / 12, "feet"),
  19077. weight: math.unit(75, "lb"),
  19078. name: "Side",
  19079. image: {
  19080. source: "./media/characters/aronai-sieyes/side.svg",
  19081. extra: 1422/1365,
  19082. bottom: 148/1570
  19083. }
  19084. },
  19085. back: {
  19086. height: math.unit(6 + 1 / 12, "feet"),
  19087. weight: math.unit(75, "lb"),
  19088. name: "Back",
  19089. image: {
  19090. source: "./media/characters/aronai-sieyes/back.svg",
  19091. extra: 1526/1464,
  19092. bottom: 51/1577
  19093. }
  19094. },
  19095. dressed: {
  19096. height: math.unit(6 + 1 / 12, "feet"),
  19097. weight: math.unit(75, "lb"),
  19098. name: "Dressed",
  19099. image: {
  19100. source: "./media/characters/aronai-sieyes/dressed.svg",
  19101. extra: 1559/1483,
  19102. bottom: 39/1598
  19103. }
  19104. },
  19105. slit: {
  19106. height: math.unit(1.3, "feet"),
  19107. name: "Slit",
  19108. image: {
  19109. source: "./media/characters/aronai-sieyes/slit.svg"
  19110. }
  19111. },
  19112. slitSpread: {
  19113. height: math.unit(0.9, "feet"),
  19114. name: "Slit (Spread)",
  19115. image: {
  19116. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19117. }
  19118. },
  19119. rump: {
  19120. height: math.unit(1.3, "feet"),
  19121. name: "Rump",
  19122. image: {
  19123. source: "./media/characters/aronai-sieyes/rump.svg"
  19124. }
  19125. },
  19126. maw: {
  19127. height: math.unit(1.25, "feet"),
  19128. name: "Maw",
  19129. image: {
  19130. source: "./media/characters/aronai-sieyes/maw.svg"
  19131. }
  19132. },
  19133. feral: {
  19134. height: math.unit(18, "feet"),
  19135. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19136. name: "Feral",
  19137. image: {
  19138. source: "./media/characters/aronai-sieyes/feral.svg",
  19139. extra: 1530 / 1240,
  19140. bottom: 0.035
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Micro",
  19147. height: math.unit(2, "inches")
  19148. },
  19149. {
  19150. name: "Normal",
  19151. height: math.unit(6 + 1 / 12, "feet"),
  19152. default: true
  19153. }
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19158. {
  19159. front: {
  19160. height: math.unit(12, "feet"),
  19161. weight: math.unit(410, "kg"),
  19162. name: "Front",
  19163. image: {
  19164. source: "./media/characters/xuna/front.svg",
  19165. extra: 2184 / 1980
  19166. }
  19167. },
  19168. side: {
  19169. height: math.unit(12, "feet"),
  19170. weight: math.unit(410, "kg"),
  19171. name: "Side",
  19172. image: {
  19173. source: "./media/characters/xuna/side.svg",
  19174. extra: 2184 / 1980
  19175. }
  19176. },
  19177. back: {
  19178. height: math.unit(12, "feet"),
  19179. weight: math.unit(410, "kg"),
  19180. name: "Back",
  19181. image: {
  19182. source: "./media/characters/xuna/back.svg",
  19183. extra: 2184 / 1980
  19184. }
  19185. },
  19186. },
  19187. [
  19188. {
  19189. name: "Nano glow",
  19190. height: math.unit(10, "nm")
  19191. },
  19192. {
  19193. name: "Micro floof",
  19194. height: math.unit(0.3, "m")
  19195. },
  19196. {
  19197. name: "Huggable softy boi",
  19198. height: math.unit(3.6576, "m"),
  19199. default: true
  19200. },
  19201. {
  19202. name: "Admirable floof",
  19203. height: math.unit(80, "meters")
  19204. },
  19205. {
  19206. name: "Gentle macro",
  19207. height: math.unit(300, "meters")
  19208. },
  19209. {
  19210. name: "Very careful floof",
  19211. height: math.unit(3200, "meters")
  19212. },
  19213. {
  19214. name: "The mega floof",
  19215. height: math.unit(36000, "meters")
  19216. },
  19217. {
  19218. name: "Giga-fur-Wicker",
  19219. height: math.unit(4800000, "meters")
  19220. },
  19221. {
  19222. name: "Licky world",
  19223. height: math.unit(20000000, "meters")
  19224. },
  19225. {
  19226. name: "Floofy cyan sun",
  19227. height: math.unit(1500000000, "meters")
  19228. },
  19229. {
  19230. name: "Milky Wicker",
  19231. height: math.unit(1000000000000000000000, "meters")
  19232. },
  19233. {
  19234. name: "The observing Wicker",
  19235. height: math.unit(999999999999999999999999999, "meters")
  19236. },
  19237. ]
  19238. ))
  19239. characterMakers.push(() => makeCharacter(
  19240. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19241. {
  19242. front: {
  19243. height: math.unit(5 + 9 / 12, "feet"),
  19244. weight: math.unit(150, "lb"),
  19245. name: "Front",
  19246. image: {
  19247. source: "./media/characters/arokha-sieyes/front.svg",
  19248. extra: 1425 / 1284,
  19249. bottom: 0.05
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(5 + 9 / 12, "feet")
  19257. },
  19258. {
  19259. name: "Macro",
  19260. height: math.unit(30, "meters"),
  19261. default: true
  19262. },
  19263. ]
  19264. ))
  19265. characterMakers.push(() => makeCharacter(
  19266. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19267. {
  19268. front: {
  19269. height: math.unit(6, "feet"),
  19270. weight: math.unit(180, "lb"),
  19271. name: "Front",
  19272. image: {
  19273. source: "./media/characters/arokh-sieyes/front.svg",
  19274. extra: 1830 / 1769,
  19275. bottom: 0.01
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(6, "feet")
  19283. },
  19284. {
  19285. name: "Macro",
  19286. height: math.unit(30, "meters"),
  19287. default: true
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19293. {
  19294. side: {
  19295. height: math.unit(13 + 1 / 12, "feet"),
  19296. weight: math.unit(8.5, "tonnes"),
  19297. name: "Side",
  19298. image: {
  19299. source: "./media/characters/goldeneye/side.svg",
  19300. extra: 1182 / 778,
  19301. bottom: 0.067
  19302. }
  19303. },
  19304. paw: {
  19305. height: math.unit(3.4, "feet"),
  19306. name: "Paw",
  19307. image: {
  19308. source: "./media/characters/goldeneye/paw.svg"
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(13 + 1 / 12, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19322. {
  19323. front: {
  19324. height: math.unit(6 + 1 / 12, "feet"),
  19325. weight: math.unit(210, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/leonardo-lycheborne/front.svg",
  19329. extra: 776/723,
  19330. bottom: 34/810
  19331. }
  19332. },
  19333. side: {
  19334. height: math.unit(6 + 1 / 12, "feet"),
  19335. weight: math.unit(210, "lb"),
  19336. name: "Side",
  19337. image: {
  19338. source: "./media/characters/leonardo-lycheborne/side.svg",
  19339. extra: 780/728,
  19340. bottom: 12/792
  19341. }
  19342. },
  19343. back: {
  19344. height: math.unit(6 + 1 / 12, "feet"),
  19345. weight: math.unit(210, "lb"),
  19346. name: "Back",
  19347. image: {
  19348. source: "./media/characters/leonardo-lycheborne/back.svg",
  19349. extra: 775/721,
  19350. bottom: 17/792
  19351. }
  19352. },
  19353. hand: {
  19354. height: math.unit(1.08, "feet"),
  19355. name: "Hand",
  19356. image: {
  19357. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19358. }
  19359. },
  19360. foot: {
  19361. height: math.unit(1.32, "feet"),
  19362. name: "Foot",
  19363. image: {
  19364. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19365. }
  19366. },
  19367. maw: {
  19368. height: math.unit(1, "feet"),
  19369. name: "Maw",
  19370. image: {
  19371. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19372. }
  19373. },
  19374. were: {
  19375. height: math.unit(20, "feet"),
  19376. weight: math.unit(7800, "lb"),
  19377. name: "Were",
  19378. image: {
  19379. source: "./media/characters/leonardo-lycheborne/were.svg",
  19380. extra: 1224/1165,
  19381. bottom: 72/1296
  19382. }
  19383. },
  19384. feral: {
  19385. height: math.unit(7.5, "feet"),
  19386. weight: math.unit(600, "lb"),
  19387. name: "Feral",
  19388. image: {
  19389. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19390. extra: 797/702,
  19391. bottom: 139/936
  19392. }
  19393. },
  19394. taur: {
  19395. height: math.unit(11, "feet"),
  19396. weight: math.unit(3300, "lb"),
  19397. name: "Taur",
  19398. image: {
  19399. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19400. extra: 1271/1197,
  19401. bottom: 47/1318
  19402. }
  19403. },
  19404. barghest: {
  19405. height: math.unit(11, "feet"),
  19406. weight: math.unit(1300, "lb"),
  19407. name: "Barghest",
  19408. image: {
  19409. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19410. extra: 1291/1204,
  19411. bottom: 37/1328
  19412. }
  19413. },
  19414. dick: {
  19415. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19416. name: "Dick",
  19417. image: {
  19418. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19419. }
  19420. },
  19421. dickWere: {
  19422. height: math.unit((20) / 3.8, "feet"),
  19423. name: "Dick (Were)",
  19424. image: {
  19425. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19426. }
  19427. },
  19428. },
  19429. [
  19430. {
  19431. name: "Normal",
  19432. height: math.unit(6 + 1 / 12, "feet"),
  19433. default: true
  19434. },
  19435. ]
  19436. ))
  19437. characterMakers.push(() => makeCharacter(
  19438. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19439. {
  19440. front: {
  19441. height: math.unit(10, "feet"),
  19442. weight: math.unit(350, "lb"),
  19443. name: "Front",
  19444. image: {
  19445. source: "./media/characters/jet/front.svg",
  19446. extra: 2050 / 1980,
  19447. bottom: 0.013
  19448. }
  19449. },
  19450. back: {
  19451. height: math.unit(10, "feet"),
  19452. weight: math.unit(350, "lb"),
  19453. name: "Back",
  19454. image: {
  19455. source: "./media/characters/jet/back.svg",
  19456. extra: 2050 / 1980,
  19457. bottom: 0.013
  19458. }
  19459. },
  19460. },
  19461. [
  19462. {
  19463. name: "Micro",
  19464. height: math.unit(6, "inches")
  19465. },
  19466. {
  19467. name: "Normal",
  19468. height: math.unit(10, "feet"),
  19469. default: true
  19470. },
  19471. {
  19472. name: "Macro",
  19473. height: math.unit(100, "feet")
  19474. },
  19475. ]
  19476. ))
  19477. characterMakers.push(() => makeCharacter(
  19478. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19479. {
  19480. front: {
  19481. height: math.unit(15, "feet"),
  19482. weight: math.unit(2800, "lb"),
  19483. name: "Front",
  19484. image: {
  19485. source: "./media/characters/tanarath/front.svg",
  19486. extra: 2392 / 2220,
  19487. bottom: 0.03
  19488. }
  19489. },
  19490. back: {
  19491. height: math.unit(15, "feet"),
  19492. weight: math.unit(2800, "lb"),
  19493. name: "Back",
  19494. image: {
  19495. source: "./media/characters/tanarath/back.svg",
  19496. extra: 2392 / 2220,
  19497. bottom: 0.03
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Normal",
  19504. height: math.unit(15, "feet"),
  19505. default: true
  19506. },
  19507. ]
  19508. ))
  19509. characterMakers.push(() => makeCharacter(
  19510. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19511. {
  19512. front: {
  19513. height: math.unit(7 + 1 / 12, "feet"),
  19514. weight: math.unit(175, "lb"),
  19515. name: "Front",
  19516. image: {
  19517. source: "./media/characters/patty-cattybatty/front.svg",
  19518. extra: 908 / 874,
  19519. bottom: 0.025
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Micro",
  19526. height: math.unit(1, "inch")
  19527. },
  19528. {
  19529. name: "Normal",
  19530. height: math.unit(7 + 1 / 12, "feet")
  19531. },
  19532. {
  19533. name: "Mini Macro",
  19534. height: math.unit(155, "feet")
  19535. },
  19536. {
  19537. name: "Macro",
  19538. height: math.unit(1077, "feet")
  19539. },
  19540. {
  19541. name: "Mega Macro",
  19542. height: math.unit(47650, "feet"),
  19543. default: true
  19544. },
  19545. {
  19546. name: "Giga Macro",
  19547. height: math.unit(440, "miles")
  19548. },
  19549. {
  19550. name: "Tera Macro",
  19551. height: math.unit(8700, "miles")
  19552. },
  19553. {
  19554. name: "Planetary Macro",
  19555. height: math.unit(32700, "miles")
  19556. },
  19557. {
  19558. name: "Solar Macro",
  19559. height: math.unit(550000, "miles")
  19560. },
  19561. {
  19562. name: "Celestial Macro",
  19563. height: math.unit(2.5, "AU")
  19564. },
  19565. ]
  19566. ))
  19567. characterMakers.push(() => makeCharacter(
  19568. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19569. {
  19570. front: {
  19571. height: math.unit(4 + 5 / 12, "feet"),
  19572. weight: math.unit(90, "lb"),
  19573. name: "Front",
  19574. image: {
  19575. source: "./media/characters/cappu/front.svg",
  19576. extra: 1247 / 1152,
  19577. bottom: 0.012
  19578. }
  19579. },
  19580. },
  19581. [
  19582. {
  19583. name: "Normal",
  19584. height: math.unit(4 + 5 / 12, "feet"),
  19585. default: true
  19586. },
  19587. ]
  19588. ))
  19589. characterMakers.push(() => makeCharacter(
  19590. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19591. {
  19592. frontDressed: {
  19593. height: math.unit(70, "cm"),
  19594. weight: math.unit(6, "kg"),
  19595. name: "Front (Dressed)",
  19596. image: {
  19597. source: "./media/characters/sebi/front-dressed.svg",
  19598. extra: 713.5 / 686.5,
  19599. bottom: 0.003
  19600. }
  19601. },
  19602. front: {
  19603. height: math.unit(70, "cm"),
  19604. weight: math.unit(5, "kg"),
  19605. name: "Front",
  19606. image: {
  19607. source: "./media/characters/sebi/front.svg",
  19608. extra: 713.5 / 686.5,
  19609. bottom: 0.003
  19610. }
  19611. }
  19612. },
  19613. [
  19614. {
  19615. name: "Normal",
  19616. height: math.unit(70, "cm"),
  19617. default: true
  19618. },
  19619. {
  19620. name: "Macro",
  19621. height: math.unit(8, "meters")
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19627. {
  19628. front: {
  19629. height: math.unit(6, "feet"),
  19630. weight: math.unit(150, "lb"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/typhek/front.svg",
  19634. extra: 1948 / 1929,
  19635. bottom: 0.025
  19636. }
  19637. },
  19638. side: {
  19639. height: math.unit(6, "feet"),
  19640. weight: math.unit(150, "lb"),
  19641. name: "Side",
  19642. image: {
  19643. source: "./media/characters/typhek/side.svg",
  19644. extra: 2034 / 2010,
  19645. bottom: 0.003
  19646. }
  19647. },
  19648. back: {
  19649. height: math.unit(6, "feet"),
  19650. weight: math.unit(150, "lb"),
  19651. name: "Back",
  19652. image: {
  19653. source: "./media/characters/typhek/back.svg",
  19654. extra: 2005 / 1978,
  19655. bottom: 0.004
  19656. }
  19657. },
  19658. palm: {
  19659. height: math.unit(1.2, "feet"),
  19660. name: "Palm",
  19661. image: {
  19662. source: "./media/characters/typhek/palm.svg"
  19663. }
  19664. },
  19665. fist: {
  19666. height: math.unit(1.1, "feet"),
  19667. name: "Fist",
  19668. image: {
  19669. source: "./media/characters/typhek/fist.svg"
  19670. }
  19671. },
  19672. foot: {
  19673. height: math.unit(1.57, "feet"),
  19674. name: "Foot",
  19675. image: {
  19676. source: "./media/characters/typhek/foot.svg"
  19677. }
  19678. },
  19679. sole: {
  19680. height: math.unit(2.05, "feet"),
  19681. name: "Sole",
  19682. image: {
  19683. source: "./media/characters/typhek/sole.svg"
  19684. }
  19685. },
  19686. },
  19687. [
  19688. {
  19689. name: "Macro",
  19690. height: math.unit(40, "stories"),
  19691. default: true
  19692. },
  19693. {
  19694. name: "Megamacro",
  19695. height: math.unit(1, "mile")
  19696. },
  19697. {
  19698. name: "Gigamacro",
  19699. height: math.unit(4000, "solarradii")
  19700. },
  19701. {
  19702. name: "Universal",
  19703. height: math.unit(1.1, "universes")
  19704. }
  19705. ]
  19706. ))
  19707. characterMakers.push(() => makeCharacter(
  19708. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19709. {
  19710. side: {
  19711. height: math.unit(5 + 7 / 12, "feet"),
  19712. weight: math.unit(150, "lb"),
  19713. name: "Side",
  19714. image: {
  19715. source: "./media/characters/kassy/side.svg",
  19716. extra: 1280 / 1225,
  19717. bottom: 0.002
  19718. }
  19719. },
  19720. front: {
  19721. height: math.unit(5 + 7 / 12, "feet"),
  19722. weight: math.unit(150, "lb"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/kassy/front.svg",
  19726. extra: 1280 / 1225,
  19727. bottom: 0.025
  19728. }
  19729. },
  19730. back: {
  19731. height: math.unit(5 + 7 / 12, "feet"),
  19732. weight: math.unit(150, "lb"),
  19733. name: "Back",
  19734. image: {
  19735. source: "./media/characters/kassy/back.svg",
  19736. extra: 1280 / 1225,
  19737. bottom: 0.002
  19738. }
  19739. },
  19740. foot: {
  19741. height: math.unit(1.266, "feet"),
  19742. name: "Foot",
  19743. image: {
  19744. source: "./media/characters/kassy/foot.svg"
  19745. }
  19746. },
  19747. },
  19748. [
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(5 + 7 / 12, "feet")
  19752. },
  19753. {
  19754. name: "Macro",
  19755. height: math.unit(137, "feet"),
  19756. default: true
  19757. },
  19758. {
  19759. name: "Megamacro",
  19760. height: math.unit(1, "mile")
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19766. {
  19767. front: {
  19768. height: math.unit(6 + 1 / 12, "feet"),
  19769. weight: math.unit(200, "lb"),
  19770. name: "Front",
  19771. image: {
  19772. source: "./media/characters/neil/front.svg",
  19773. extra: 1326 / 1250,
  19774. bottom: 0.023
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(6 + 1 / 12, "feet"),
  19782. default: true
  19783. },
  19784. {
  19785. name: "Macro",
  19786. height: math.unit(200, "feet")
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19792. {
  19793. front: {
  19794. height: math.unit(5 + 9 / 12, "feet"),
  19795. weight: math.unit(190, "lb"),
  19796. name: "Front",
  19797. image: {
  19798. source: "./media/characters/atticus/front.svg",
  19799. extra: 2934 / 2785,
  19800. bottom: 0.025
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(5 + 9 / 12, "feet"),
  19808. default: true
  19809. },
  19810. {
  19811. name: "Macro",
  19812. height: math.unit(180, "feet")
  19813. },
  19814. ]
  19815. ))
  19816. characterMakers.push(() => makeCharacter(
  19817. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19818. {
  19819. side: {
  19820. height: math.unit(9, "feet"),
  19821. weight: math.unit(650, "lb"),
  19822. name: "Side",
  19823. image: {
  19824. source: "./media/characters/milo/side.svg",
  19825. extra: 2644 / 2310,
  19826. bottom: 0.032
  19827. }
  19828. },
  19829. },
  19830. [
  19831. {
  19832. name: "Normal",
  19833. height: math.unit(9, "feet"),
  19834. default: true
  19835. },
  19836. {
  19837. name: "Macro",
  19838. height: math.unit(300, "feet")
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19844. {
  19845. side: {
  19846. height: math.unit(8, "meters"),
  19847. weight: math.unit(90000, "kg"),
  19848. name: "Side",
  19849. image: {
  19850. source: "./media/characters/ijzer/side.svg",
  19851. extra: 2756 / 1600,
  19852. bottom: 0.01
  19853. }
  19854. },
  19855. },
  19856. [
  19857. {
  19858. name: "Small",
  19859. height: math.unit(3, "meters")
  19860. },
  19861. {
  19862. name: "Normal",
  19863. height: math.unit(8, "meters"),
  19864. default: true
  19865. },
  19866. {
  19867. name: "Normal+",
  19868. height: math.unit(10, "meters")
  19869. },
  19870. {
  19871. name: "Bigger",
  19872. height: math.unit(24, "meters")
  19873. },
  19874. {
  19875. name: "Huge",
  19876. height: math.unit(80, "meters")
  19877. },
  19878. ]
  19879. ))
  19880. characterMakers.push(() => makeCharacter(
  19881. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19882. {
  19883. front: {
  19884. height: math.unit(6 + 2 / 12, "feet"),
  19885. weight: math.unit(153, "lb"),
  19886. name: "Front",
  19887. image: {
  19888. source: "./media/characters/luca-cervicum/front.svg",
  19889. extra: 370 / 327,
  19890. bottom: 0.015
  19891. }
  19892. },
  19893. back: {
  19894. height: math.unit(6 + 2 / 12, "feet"),
  19895. weight: math.unit(153, "lb"),
  19896. name: "Back",
  19897. image: {
  19898. source: "./media/characters/luca-cervicum/back.svg",
  19899. extra: 367 / 333,
  19900. bottom: 0.005
  19901. }
  19902. },
  19903. frontGear: {
  19904. height: math.unit(6 + 2 / 12, "feet"),
  19905. weight: math.unit(173, "lb"),
  19906. name: "Front (Gear)",
  19907. image: {
  19908. source: "./media/characters/luca-cervicum/front-gear.svg",
  19909. extra: 377 / 333,
  19910. bottom: 0.006
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(6 + 2 / 12, "feet"),
  19918. default: true
  19919. },
  19920. ]
  19921. ))
  19922. characterMakers.push(() => makeCharacter(
  19923. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19924. {
  19925. front: {
  19926. height: math.unit(6 + 1 / 12, "feet"),
  19927. weight: math.unit(304, "lb"),
  19928. name: "Front",
  19929. image: {
  19930. source: "./media/characters/oliver/front.svg",
  19931. extra: 157 / 143,
  19932. bottom: 0.08
  19933. }
  19934. },
  19935. },
  19936. [
  19937. {
  19938. name: "Normal",
  19939. height: math.unit(6 + 1 / 12, "feet"),
  19940. default: true
  19941. },
  19942. ]
  19943. ))
  19944. characterMakers.push(() => makeCharacter(
  19945. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19946. {
  19947. front: {
  19948. height: math.unit(5 + 7 / 12, "feet"),
  19949. weight: math.unit(140, "lb"),
  19950. name: "Front",
  19951. image: {
  19952. source: "./media/characters/shane/front.svg",
  19953. extra: 304 / 289,
  19954. bottom: 0.005
  19955. }
  19956. },
  19957. },
  19958. [
  19959. {
  19960. name: "Normal",
  19961. height: math.unit(5 + 7 / 12, "feet"),
  19962. default: true
  19963. },
  19964. ]
  19965. ))
  19966. characterMakers.push(() => makeCharacter(
  19967. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19968. {
  19969. front: {
  19970. height: math.unit(5 + 9 / 12, "feet"),
  19971. weight: math.unit(178, "lb"),
  19972. name: "Front",
  19973. image: {
  19974. source: "./media/characters/shin/front.svg",
  19975. extra: 159 / 151,
  19976. bottom: 0.015
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Normal",
  19983. height: math.unit(5 + 9 / 12, "feet"),
  19984. default: true
  19985. },
  19986. ]
  19987. ))
  19988. characterMakers.push(() => makeCharacter(
  19989. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19990. {
  19991. front: {
  19992. height: math.unit(5 + 10 / 12, "feet"),
  19993. weight: math.unit(168, "lb"),
  19994. name: "Front",
  19995. image: {
  19996. source: "./media/characters/xerxes/front.svg",
  19997. extra: 282 / 260,
  19998. bottom: 0.045
  19999. }
  20000. },
  20001. },
  20002. [
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(5 + 10 / 12, "feet"),
  20006. default: true
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20012. {
  20013. front: {
  20014. height: math.unit(6 + 7 / 12, "feet"),
  20015. weight: math.unit(208, "lb"),
  20016. name: "Front",
  20017. image: {
  20018. source: "./media/characters/chaska/front.svg",
  20019. extra: 332 / 319,
  20020. bottom: 0.015
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(6 + 7 / 12, "feet"),
  20028. default: true
  20029. },
  20030. ]
  20031. ))
  20032. characterMakers.push(() => makeCharacter(
  20033. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20034. {
  20035. front: {
  20036. height: math.unit(5 + 8 / 12, "feet"),
  20037. weight: math.unit(208, "lb"),
  20038. name: "Front",
  20039. image: {
  20040. source: "./media/characters/enuk/front.svg",
  20041. extra: 437 / 406,
  20042. bottom: 0.02
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(5 + 8 / 12, "feet"),
  20050. default: true
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20056. {
  20057. front: {
  20058. height: math.unit(5 + 10 / 12, "feet"),
  20059. weight: math.unit(252, "lb"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/bruun/front.svg",
  20063. extra: 197 / 187,
  20064. bottom: 0.012
  20065. }
  20066. },
  20067. },
  20068. [
  20069. {
  20070. name: "Normal",
  20071. height: math.unit(5 + 10 / 12, "feet"),
  20072. default: true
  20073. },
  20074. ]
  20075. ))
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20078. {
  20079. front: {
  20080. height: math.unit(6 + 10 / 12, "feet"),
  20081. weight: math.unit(255, "lb"),
  20082. name: "Front",
  20083. image: {
  20084. source: "./media/characters/alexeev/front.svg",
  20085. extra: 213 / 200,
  20086. bottom: 0.05
  20087. }
  20088. },
  20089. },
  20090. [
  20091. {
  20092. name: "Normal",
  20093. height: math.unit(6 + 10 / 12, "feet"),
  20094. default: true
  20095. },
  20096. ]
  20097. ))
  20098. characterMakers.push(() => makeCharacter(
  20099. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20100. {
  20101. front: {
  20102. height: math.unit(2 + 8 / 12, "feet"),
  20103. weight: math.unit(22, "lb"),
  20104. name: "Front",
  20105. image: {
  20106. source: "./media/characters/evelyn/front.svg",
  20107. extra: 208 / 180
  20108. }
  20109. },
  20110. },
  20111. [
  20112. {
  20113. name: "Normal",
  20114. height: math.unit(2 + 8 / 12, "feet"),
  20115. default: true
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20121. {
  20122. front: {
  20123. height: math.unit(5 + 9 / 12, "feet"),
  20124. weight: math.unit(139, "lb"),
  20125. name: "Front",
  20126. image: {
  20127. source: "./media/characters/inca/front.svg",
  20128. extra: 294 / 291,
  20129. bottom: 0.03
  20130. }
  20131. },
  20132. },
  20133. [
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(5 + 9 / 12, "feet"),
  20137. default: true
  20138. },
  20139. ]
  20140. ))
  20141. characterMakers.push(() => makeCharacter(
  20142. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20143. {
  20144. front: {
  20145. height: math.unit(6 + 3 / 12, "feet"),
  20146. weight: math.unit(185, "lb"),
  20147. name: "Front",
  20148. image: {
  20149. source: "./media/characters/mera/front.svg",
  20150. extra: 291 / 277,
  20151. bottom: 0.03
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(6 + 3 / 12, "feet"),
  20159. default: true
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20165. {
  20166. front: {
  20167. height: math.unit(6 + 7 / 12, "feet"),
  20168. weight: math.unit(160, "lb"),
  20169. name: "Front",
  20170. image: {
  20171. source: "./media/characters/ceres/front.svg",
  20172. extra: 1023 / 950,
  20173. bottom: 0.027
  20174. }
  20175. },
  20176. back: {
  20177. height: math.unit(6 + 7 / 12, "feet"),
  20178. weight: math.unit(160, "lb"),
  20179. name: "Back",
  20180. image: {
  20181. source: "./media/characters/ceres/back.svg",
  20182. extra: 1023 / 950
  20183. }
  20184. },
  20185. },
  20186. [
  20187. {
  20188. name: "Normal",
  20189. height: math.unit(6 + 7 / 12, "feet"),
  20190. default: true
  20191. },
  20192. ]
  20193. ))
  20194. characterMakers.push(() => makeCharacter(
  20195. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20196. {
  20197. front: {
  20198. height: math.unit(5 + 10 / 12, "feet"),
  20199. weight: math.unit(150, "lb"),
  20200. name: "Front",
  20201. image: {
  20202. source: "./media/characters/kris/front.svg",
  20203. extra: 885 / 803,
  20204. bottom: 0.03
  20205. }
  20206. },
  20207. },
  20208. [
  20209. {
  20210. name: "Normal",
  20211. height: math.unit(5 + 10 / 12, "feet"),
  20212. default: true
  20213. },
  20214. ]
  20215. ))
  20216. characterMakers.push(() => makeCharacter(
  20217. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20218. {
  20219. front: {
  20220. height: math.unit(7, "feet"),
  20221. weight: math.unit(120, "kg"),
  20222. name: "Front",
  20223. image: {
  20224. source: "./media/characters/taluthus/front.svg",
  20225. extra: 903 / 833,
  20226. bottom: 0.015
  20227. }
  20228. },
  20229. },
  20230. [
  20231. {
  20232. name: "Normal",
  20233. height: math.unit(7, "feet"),
  20234. default: true
  20235. },
  20236. {
  20237. name: "Macro",
  20238. height: math.unit(300, "feet")
  20239. },
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20244. {
  20245. front: {
  20246. height: math.unit(5 + 9 / 12, "feet"),
  20247. weight: math.unit(145, "lb"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/dawn/front.svg",
  20251. extra: 2094 / 2016,
  20252. bottom: 0.025
  20253. }
  20254. },
  20255. back: {
  20256. height: math.unit(5 + 9 / 12, "feet"),
  20257. weight: math.unit(160, "lb"),
  20258. name: "Back",
  20259. image: {
  20260. source: "./media/characters/dawn/back.svg",
  20261. extra: 2112 / 2080,
  20262. bottom: 0.005
  20263. }
  20264. },
  20265. },
  20266. [
  20267. {
  20268. name: "Normal",
  20269. height: math.unit(6 + 7 / 12, "feet"),
  20270. default: true
  20271. },
  20272. ]
  20273. ))
  20274. characterMakers.push(() => makeCharacter(
  20275. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20276. {
  20277. anthro: {
  20278. height: math.unit(8 + 3 / 12, "feet"),
  20279. weight: math.unit(450, "lb"),
  20280. name: "Anthro",
  20281. image: {
  20282. source: "./media/characters/arador/anthro.svg",
  20283. extra: 1835 / 1718,
  20284. bottom: 0.025
  20285. }
  20286. },
  20287. feral: {
  20288. height: math.unit(4, "feet"),
  20289. weight: math.unit(200, "lb"),
  20290. name: "Feral",
  20291. image: {
  20292. source: "./media/characters/arador/feral.svg",
  20293. extra: 1683 / 1514,
  20294. bottom: 0.07
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(8 + 3 / 12, "feet")
  20302. },
  20303. {
  20304. name: "Macro",
  20305. height: math.unit(82.5, "feet"),
  20306. default: true
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20312. {
  20313. front: {
  20314. height: math.unit(5 + 10 / 12, "feet"),
  20315. weight: math.unit(125, "lb"),
  20316. name: "Front",
  20317. image: {
  20318. source: "./media/characters/dharsi/front.svg",
  20319. extra: 716 / 630,
  20320. bottom: 0.035
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Nano",
  20327. height: math.unit(100, "nm")
  20328. },
  20329. {
  20330. name: "Micro",
  20331. height: math.unit(2, "inches")
  20332. },
  20333. {
  20334. name: "Normal",
  20335. height: math.unit(5 + 10 / 12, "feet"),
  20336. default: true
  20337. },
  20338. {
  20339. name: "Macro",
  20340. height: math.unit(1000, "feet")
  20341. },
  20342. {
  20343. name: "Megamacro",
  20344. height: math.unit(10, "miles")
  20345. },
  20346. {
  20347. name: "Gigamacro",
  20348. height: math.unit(3000, "miles")
  20349. },
  20350. {
  20351. name: "Teramacro",
  20352. height: math.unit(500000, "miles")
  20353. },
  20354. {
  20355. name: "Teramacro+",
  20356. height: math.unit(30, "galaxies")
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20362. {
  20363. front: {
  20364. height: math.unit(6, "feet"),
  20365. weight: math.unit(150, "lb"),
  20366. name: "Front",
  20367. image: {
  20368. source: "./media/characters/deathy/front.svg",
  20369. extra: 1552 / 1463,
  20370. bottom: 0.025
  20371. }
  20372. },
  20373. side: {
  20374. height: math.unit(6, "feet"),
  20375. weight: math.unit(150, "lb"),
  20376. name: "Side",
  20377. image: {
  20378. source: "./media/characters/deathy/side.svg",
  20379. extra: 1604 / 1455,
  20380. bottom: 0.025
  20381. }
  20382. },
  20383. back: {
  20384. height: math.unit(6, "feet"),
  20385. weight: math.unit(150, "lb"),
  20386. name: "Back",
  20387. image: {
  20388. source: "./media/characters/deathy/back.svg",
  20389. extra: 1580 / 1463,
  20390. bottom: 0.005
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Micro",
  20397. height: math.unit(5, "millimeters")
  20398. },
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(6 + 5 / 12, "feet"),
  20402. default: true
  20403. },
  20404. ]
  20405. ))
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20408. {
  20409. front: {
  20410. height: math.unit(16, "feet"),
  20411. weight: math.unit(4000, "lb"),
  20412. name: "Front",
  20413. image: {
  20414. source: "./media/characters/juniper/front.svg",
  20415. bottom: 0.04
  20416. }
  20417. },
  20418. },
  20419. [
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(16, "feet"),
  20423. default: true
  20424. },
  20425. ]
  20426. ))
  20427. characterMakers.push(() => makeCharacter(
  20428. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20429. {
  20430. front: {
  20431. height: math.unit(6, "feet"),
  20432. weight: math.unit(150, "lb"),
  20433. name: "Front",
  20434. image: {
  20435. source: "./media/characters/hipster/front.svg",
  20436. extra: 1312 / 1209,
  20437. bottom: 0.025
  20438. }
  20439. },
  20440. back: {
  20441. height: math.unit(6, "feet"),
  20442. weight: math.unit(150, "lb"),
  20443. name: "Back",
  20444. image: {
  20445. source: "./media/characters/hipster/back.svg",
  20446. extra: 1281 / 1196,
  20447. bottom: 0.01
  20448. }
  20449. },
  20450. },
  20451. [
  20452. {
  20453. name: "Micro",
  20454. height: math.unit(1, "mm")
  20455. },
  20456. {
  20457. name: "Normal",
  20458. height: math.unit(4, "inches"),
  20459. default: true
  20460. },
  20461. {
  20462. name: "Macro",
  20463. height: math.unit(500, "feet")
  20464. },
  20465. {
  20466. name: "Megamacro",
  20467. height: math.unit(1000, "miles")
  20468. },
  20469. ]
  20470. ))
  20471. characterMakers.push(() => makeCharacter(
  20472. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20473. {
  20474. front: {
  20475. height: math.unit(6, "feet"),
  20476. weight: math.unit(150, "lb"),
  20477. name: "Front",
  20478. image: {
  20479. source: "./media/characters/tendirmuldr/front.svg",
  20480. extra: 1878 / 1772,
  20481. bottom: 0.015
  20482. }
  20483. },
  20484. },
  20485. [
  20486. {
  20487. name: "Megamacro",
  20488. height: math.unit(1500, "miles"),
  20489. default: true
  20490. },
  20491. ]
  20492. ))
  20493. characterMakers.push(() => makeCharacter(
  20494. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20495. {
  20496. front: {
  20497. height: math.unit(14, "feet"),
  20498. weight: math.unit(12000, "lb"),
  20499. name: "Front",
  20500. image: {
  20501. source: "./media/characters/mort/front.svg",
  20502. extra: 365 / 318,
  20503. bottom: 0.01
  20504. }
  20505. },
  20506. side: {
  20507. height: math.unit(14, "feet"),
  20508. weight: math.unit(12000, "lb"),
  20509. name: "Side",
  20510. image: {
  20511. source: "./media/characters/mort/side.svg",
  20512. extra: 365 / 318,
  20513. bottom: 0.052
  20514. },
  20515. default: true
  20516. },
  20517. back: {
  20518. height: math.unit(14, "feet"),
  20519. weight: math.unit(12000, "lb"),
  20520. name: "Back",
  20521. image: {
  20522. source: "./media/characters/mort/back.svg",
  20523. extra: 371 / 332,
  20524. bottom: 0.18
  20525. }
  20526. },
  20527. },
  20528. [
  20529. {
  20530. name: "Normal",
  20531. height: math.unit(14, "feet"),
  20532. default: true
  20533. },
  20534. ]
  20535. ))
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20538. {
  20539. front: {
  20540. height: math.unit(8, "feet"),
  20541. weight: math.unit(1, "ton"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/lycoa/front.svg",
  20545. extra: 1875 / 1789,
  20546. bottom: 0.022
  20547. }
  20548. },
  20549. back: {
  20550. height: math.unit(8, "feet"),
  20551. weight: math.unit(1, "ton"),
  20552. name: "Back",
  20553. image: {
  20554. source: "./media/characters/lycoa/back.svg",
  20555. extra: 1835 / 1781,
  20556. bottom: 0.03
  20557. }
  20558. },
  20559. head: {
  20560. height: math.unit(2.1, "feet"),
  20561. name: "Head",
  20562. image: {
  20563. source: "./media/characters/lycoa/head.svg"
  20564. }
  20565. },
  20566. tailmaw: {
  20567. height: math.unit(1.9, "feet"),
  20568. name: "Tailmaw",
  20569. image: {
  20570. source: "./media/characters/lycoa/tailmaw.svg"
  20571. }
  20572. },
  20573. tentacles: {
  20574. height: math.unit(2.1, "feet"),
  20575. name: "Tentacles",
  20576. image: {
  20577. source: "./media/characters/lycoa/tentacles.svg"
  20578. }
  20579. },
  20580. dick: {
  20581. height: math.unit(1.73, "feet"),
  20582. name: "Dick",
  20583. image: {
  20584. source: "./media/characters/lycoa/dick.svg"
  20585. }
  20586. },
  20587. },
  20588. [
  20589. {
  20590. name: "Normal",
  20591. height: math.unit(8, "feet"),
  20592. default: true
  20593. },
  20594. {
  20595. name: "Macro",
  20596. height: math.unit(30, "feet")
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20602. {
  20603. front: {
  20604. height: math.unit(4 + 2 / 12, "feet"),
  20605. weight: math.unit(70, "lb"),
  20606. name: "Front",
  20607. image: {
  20608. source: "./media/characters/naldara/front.svg",
  20609. extra: 841 / 720,
  20610. bottom: 0.04
  20611. }
  20612. },
  20613. naga: {
  20614. height: math.unit(23, "feet"),
  20615. weight: math.unit(15000, "kg"),
  20616. name: "Naga",
  20617. image: {
  20618. source: "./media/characters/naldara/naga.svg",
  20619. extra: 3290 / 2959,
  20620. bottom: 124 / 3432
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(4 + 2 / 12, "feet"),
  20628. default: true
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20634. {
  20635. front: {
  20636. height: math.unit(13 + 7 / 12, "feet"),
  20637. weight: math.unit(1500, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/briar/front.svg",
  20641. extra: 626 / 596,
  20642. bottom: 0.08
  20643. }
  20644. },
  20645. },
  20646. [
  20647. {
  20648. name: "Normal",
  20649. height: math.unit(13 + 7 / 12, "feet"),
  20650. default: true
  20651. },
  20652. ]
  20653. ))
  20654. characterMakers.push(() => makeCharacter(
  20655. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20656. {
  20657. side: {
  20658. height: math.unit(10, "feet"),
  20659. weight: math.unit(500, "lb"),
  20660. name: "Side",
  20661. image: {
  20662. source: "./media/characters/vanguard/side.svg",
  20663. extra: 502 / 425,
  20664. bottom: 0.087
  20665. }
  20666. },
  20667. },
  20668. [
  20669. {
  20670. name: "Normal",
  20671. height: math.unit(10, "feet"),
  20672. default: true
  20673. },
  20674. ]
  20675. ))
  20676. characterMakers.push(() => makeCharacter(
  20677. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20678. {
  20679. front: {
  20680. height: math.unit(7.5, "feet"),
  20681. weight: math.unit(2, "lb"),
  20682. name: "Front",
  20683. image: {
  20684. source: "./media/characters/artemis/front.svg",
  20685. extra: 1192 / 1075,
  20686. bottom: 0.07
  20687. }
  20688. },
  20689. frontNsfw: {
  20690. height: math.unit(7.5, "feet"),
  20691. weight: math.unit(2, "lb"),
  20692. name: "Front (NSFW)",
  20693. image: {
  20694. source: "./media/characters/artemis/front-nsfw.svg",
  20695. extra: 1192 / 1075,
  20696. bottom: 0.07
  20697. }
  20698. },
  20699. frontNsfwer: {
  20700. height: math.unit(7.5, "feet"),
  20701. weight: math.unit(2, "lb"),
  20702. name: "Front (NSFW-er)",
  20703. image: {
  20704. source: "./media/characters/artemis/front-nsfwer.svg",
  20705. extra: 1192 / 1075,
  20706. bottom: 0.07
  20707. }
  20708. },
  20709. side: {
  20710. height: math.unit(7.5, "feet"),
  20711. weight: math.unit(2, "lb"),
  20712. name: "Side",
  20713. image: {
  20714. source: "./media/characters/artemis/side.svg",
  20715. extra: 1192 / 1075,
  20716. bottom: 0.07
  20717. }
  20718. },
  20719. sideNsfw: {
  20720. height: math.unit(7.5, "feet"),
  20721. weight: math.unit(2, "lb"),
  20722. name: "Side (NSFW)",
  20723. image: {
  20724. source: "./media/characters/artemis/side-nsfw.svg",
  20725. extra: 1192 / 1075,
  20726. bottom: 0.07
  20727. }
  20728. },
  20729. sideNsfwer: {
  20730. height: math.unit(7.5, "feet"),
  20731. weight: math.unit(2, "lb"),
  20732. name: "Side (NSFW-er)",
  20733. image: {
  20734. source: "./media/characters/artemis/side-nsfwer.svg",
  20735. extra: 1192 / 1075,
  20736. bottom: 0.07
  20737. }
  20738. },
  20739. maw: {
  20740. height: math.unit(1.1, "feet"),
  20741. name: "Maw",
  20742. image: {
  20743. source: "./media/characters/artemis/maw.svg"
  20744. }
  20745. },
  20746. stomach: {
  20747. height: math.unit(0.95, "feet"),
  20748. name: "Stomach",
  20749. image: {
  20750. source: "./media/characters/artemis/stomach.svg"
  20751. }
  20752. },
  20753. dickCanine: {
  20754. height: math.unit(1, "feet"),
  20755. name: "Dick (Canine)",
  20756. image: {
  20757. source: "./media/characters/artemis/dick-canine.svg"
  20758. }
  20759. },
  20760. dickEquine: {
  20761. height: math.unit(0.85, "feet"),
  20762. name: "Dick (Equine)",
  20763. image: {
  20764. source: "./media/characters/artemis/dick-equine.svg"
  20765. }
  20766. },
  20767. dickExotic: {
  20768. height: math.unit(0.85, "feet"),
  20769. name: "Dick (Exotic)",
  20770. image: {
  20771. source: "./media/characters/artemis/dick-exotic.svg"
  20772. }
  20773. },
  20774. },
  20775. [
  20776. {
  20777. name: "Normal",
  20778. height: math.unit(7.5, "feet"),
  20779. default: true
  20780. },
  20781. {
  20782. name: "Enlarged",
  20783. height: math.unit(12, "feet")
  20784. },
  20785. ]
  20786. ))
  20787. characterMakers.push(() => makeCharacter(
  20788. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20789. {
  20790. front: {
  20791. height: math.unit(5 + 3 / 12, "feet"),
  20792. weight: math.unit(160, "lb"),
  20793. name: "Front",
  20794. image: {
  20795. source: "./media/characters/kira/front.svg",
  20796. extra: 906 / 786,
  20797. bottom: 0.01
  20798. }
  20799. },
  20800. back: {
  20801. height: math.unit(5 + 3 / 12, "feet"),
  20802. weight: math.unit(160, "lb"),
  20803. name: "Back",
  20804. image: {
  20805. source: "./media/characters/kira/back.svg",
  20806. extra: 882 / 757,
  20807. bottom: 0.005
  20808. }
  20809. },
  20810. frontDressed: {
  20811. height: math.unit(5 + 3 / 12, "feet"),
  20812. weight: math.unit(160, "lb"),
  20813. name: "Front (Dressed)",
  20814. image: {
  20815. source: "./media/characters/kira/front-dressed.svg",
  20816. extra: 906 / 786,
  20817. bottom: 0.01
  20818. }
  20819. },
  20820. beans: {
  20821. height: math.unit(0.92, "feet"),
  20822. name: "Beans",
  20823. image: {
  20824. source: "./media/characters/kira/beans.svg"
  20825. }
  20826. },
  20827. },
  20828. [
  20829. {
  20830. name: "Normal",
  20831. height: math.unit(5 + 3 / 12, "feet"),
  20832. default: true
  20833. },
  20834. ]
  20835. ))
  20836. characterMakers.push(() => makeCharacter(
  20837. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20838. {
  20839. front: {
  20840. height: math.unit(5 + 4 / 12, "feet"),
  20841. weight: math.unit(145, "lb"),
  20842. name: "Front",
  20843. image: {
  20844. source: "./media/characters/scramble/front.svg",
  20845. extra: 763 / 727,
  20846. bottom: 0.05
  20847. }
  20848. },
  20849. back: {
  20850. height: math.unit(5 + 4 / 12, "feet"),
  20851. weight: math.unit(145, "lb"),
  20852. name: "Back",
  20853. image: {
  20854. source: "./media/characters/scramble/back.svg",
  20855. extra: 826 / 737,
  20856. bottom: 0.002
  20857. }
  20858. },
  20859. },
  20860. [
  20861. {
  20862. name: "Normal",
  20863. height: math.unit(5 + 4 / 12, "feet"),
  20864. default: true
  20865. },
  20866. ]
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20870. {
  20871. side: {
  20872. height: math.unit(6 + 2 / 12, "feet"),
  20873. weight: math.unit(190, "lb"),
  20874. name: "Side",
  20875. image: {
  20876. source: "./media/characters/biscuit/side.svg",
  20877. extra: 858 / 791,
  20878. bottom: 0.044
  20879. }
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(6 + 2 / 12, "feet"),
  20886. default: true
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20892. {
  20893. front: {
  20894. height: math.unit(5 + 2 / 12, "feet"),
  20895. weight: math.unit(120, "lb"),
  20896. name: "Front",
  20897. image: {
  20898. source: "./media/characters/poffin/front.svg",
  20899. extra: 786 / 680,
  20900. bottom: 0.005
  20901. }
  20902. },
  20903. },
  20904. [
  20905. {
  20906. name: "Normal",
  20907. height: math.unit(5 + 2 / 12, "feet"),
  20908. default: true
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20914. {
  20915. front: {
  20916. height: math.unit(6 + 3 / 12, "feet"),
  20917. weight: math.unit(519, "lb"),
  20918. name: "Front",
  20919. image: {
  20920. source: "./media/characters/dhari/front.svg",
  20921. extra: 1048 / 946,
  20922. bottom: 0.015
  20923. }
  20924. },
  20925. back: {
  20926. height: math.unit(6 + 3 / 12, "feet"),
  20927. weight: math.unit(519, "lb"),
  20928. name: "Back",
  20929. image: {
  20930. source: "./media/characters/dhari/back.svg",
  20931. extra: 1048 / 931,
  20932. bottom: 0.005
  20933. }
  20934. },
  20935. frontDressed: {
  20936. height: math.unit(6 + 3 / 12, "feet"),
  20937. weight: math.unit(519, "lb"),
  20938. name: "Front (Dressed)",
  20939. image: {
  20940. source: "./media/characters/dhari/front-dressed.svg",
  20941. extra: 1713 / 1546,
  20942. bottom: 0.02
  20943. }
  20944. },
  20945. backDressed: {
  20946. height: math.unit(6 + 3 / 12, "feet"),
  20947. weight: math.unit(519, "lb"),
  20948. name: "Back (Dressed)",
  20949. image: {
  20950. source: "./media/characters/dhari/back-dressed.svg",
  20951. extra: 1699 / 1537,
  20952. bottom: 0.01
  20953. }
  20954. },
  20955. maw: {
  20956. height: math.unit(0.95, "feet"),
  20957. name: "Maw",
  20958. image: {
  20959. source: "./media/characters/dhari/maw.svg"
  20960. }
  20961. },
  20962. wereFront: {
  20963. height: math.unit(12 + 8 / 12, "feet"),
  20964. weight: math.unit(4000, "lb"),
  20965. name: "Front (Were)",
  20966. image: {
  20967. source: "./media/characters/dhari/were-front.svg",
  20968. extra: 1065 / 969,
  20969. bottom: 0.015
  20970. }
  20971. },
  20972. wereBack: {
  20973. height: math.unit(12 + 8 / 12, "feet"),
  20974. weight: math.unit(4000, "lb"),
  20975. name: "Back (Were)",
  20976. image: {
  20977. source: "./media/characters/dhari/were-back.svg",
  20978. extra: 1065 / 969,
  20979. bottom: 0.012
  20980. }
  20981. },
  20982. wereMaw: {
  20983. height: math.unit(0.625, "meters"),
  20984. name: "Maw (Were)",
  20985. image: {
  20986. source: "./media/characters/dhari/were-maw.svg"
  20987. }
  20988. },
  20989. },
  20990. [
  20991. {
  20992. name: "Normal",
  20993. height: math.unit(6 + 3 / 12, "feet"),
  20994. default: true
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21000. {
  21001. anthro: {
  21002. height: math.unit(5 + 7 / 12, "feet"),
  21003. weight: math.unit(175, "lb"),
  21004. name: "Anthro",
  21005. image: {
  21006. source: "./media/characters/rena-dyne/anthro.svg",
  21007. extra: 1849 / 1785,
  21008. bottom: 0.005
  21009. }
  21010. },
  21011. taur: {
  21012. height: math.unit(15 + 6 / 12, "feet"),
  21013. weight: math.unit(8000, "lb"),
  21014. name: "Taur",
  21015. image: {
  21016. source: "./media/characters/rena-dyne/taur.svg",
  21017. extra: 2315 / 2234,
  21018. bottom: 0.033
  21019. }
  21020. },
  21021. },
  21022. [
  21023. {
  21024. name: "Normal",
  21025. height: math.unit(5 + 7 / 12, "feet"),
  21026. default: true
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21032. {
  21033. front: {
  21034. height: math.unit(8, "feet"),
  21035. weight: math.unit(600, "lb"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/weremeep/front.svg",
  21039. extra: 967 / 862,
  21040. bottom: 0.01
  21041. }
  21042. },
  21043. },
  21044. [
  21045. {
  21046. name: "Normal",
  21047. height: math.unit(8, "feet"),
  21048. default: true
  21049. },
  21050. {
  21051. name: "Lorg",
  21052. height: math.unit(12, "feet")
  21053. },
  21054. {
  21055. name: "Oh Lawd She Comin'",
  21056. height: math.unit(20, "feet")
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21062. {
  21063. front: {
  21064. height: math.unit(4, "feet"),
  21065. weight: math.unit(90, "lb"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/reza/front.svg",
  21069. extra: 1183 / 1111,
  21070. bottom: 0.017
  21071. }
  21072. },
  21073. back: {
  21074. height: math.unit(4, "feet"),
  21075. weight: math.unit(90, "lb"),
  21076. name: "Back",
  21077. image: {
  21078. source: "./media/characters/reza/back.svg",
  21079. extra: 1183 / 1111,
  21080. bottom: 0.01
  21081. }
  21082. },
  21083. drake: {
  21084. height: math.unit(30, "feet"),
  21085. weight: math.unit(246960, "lb"),
  21086. name: "Drake",
  21087. image: {
  21088. source: "./media/characters/reza/drake.svg",
  21089. extra: 2350 / 2024,
  21090. bottom: 60.7 / 2403
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(4, "feet"),
  21098. default: true
  21099. },
  21100. ]
  21101. ))
  21102. characterMakers.push(() => makeCharacter(
  21103. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21104. {
  21105. side: {
  21106. height: math.unit(15, "feet"),
  21107. weight: math.unit(14, "tons"),
  21108. name: "Side",
  21109. image: {
  21110. source: "./media/characters/athea/side.svg",
  21111. extra: 960 / 540,
  21112. bottom: 0.003
  21113. }
  21114. },
  21115. sitting: {
  21116. height: math.unit(6 * 2.85, "feet"),
  21117. weight: math.unit(14, "tons"),
  21118. name: "Sitting",
  21119. image: {
  21120. source: "./media/characters/athea/sitting.svg",
  21121. extra: 621 / 581,
  21122. bottom: 0.075
  21123. }
  21124. },
  21125. maw: {
  21126. height: math.unit(7.59498031496063, "feet"),
  21127. name: "Maw",
  21128. image: {
  21129. source: "./media/characters/athea/maw.svg"
  21130. }
  21131. },
  21132. },
  21133. [
  21134. {
  21135. name: "Lap Cat",
  21136. height: math.unit(2.5, "feet")
  21137. },
  21138. {
  21139. name: "Minimacro",
  21140. height: math.unit(15, "feet"),
  21141. default: true
  21142. },
  21143. {
  21144. name: "Macro",
  21145. height: math.unit(120, "feet")
  21146. },
  21147. {
  21148. name: "Macro+",
  21149. height: math.unit(640, "feet")
  21150. },
  21151. {
  21152. name: "Colossus",
  21153. height: math.unit(2.2, "miles")
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21159. {
  21160. front: {
  21161. height: math.unit(8 + 8 / 12, "feet"),
  21162. weight: math.unit(130, "kg"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/seroko/front.svg",
  21166. extra: 1385 / 1280,
  21167. bottom: 0.025
  21168. }
  21169. },
  21170. back: {
  21171. height: math.unit(8 + 8 / 12, "feet"),
  21172. weight: math.unit(130, "kg"),
  21173. name: "Back",
  21174. image: {
  21175. source: "./media/characters/seroko/back.svg",
  21176. extra: 1369 / 1238,
  21177. bottom: 0.018
  21178. }
  21179. },
  21180. frontDressed: {
  21181. height: math.unit(8 + 8 / 12, "feet"),
  21182. weight: math.unit(130, "kg"),
  21183. name: "Front (Dressed)",
  21184. image: {
  21185. source: "./media/characters/seroko/front-dressed.svg",
  21186. extra: 1366 / 1275,
  21187. bottom: 0.03
  21188. }
  21189. },
  21190. },
  21191. [
  21192. {
  21193. name: "Normal",
  21194. height: math.unit(8 + 8 / 12, "feet"),
  21195. default: true
  21196. },
  21197. ]
  21198. ))
  21199. characterMakers.push(() => makeCharacter(
  21200. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21201. {
  21202. front: {
  21203. height: math.unit(5.5, "feet"),
  21204. weight: math.unit(160, "lb"),
  21205. name: "Front",
  21206. image: {
  21207. source: "./media/characters/quatzi/front.svg",
  21208. extra: 2346 / 2242,
  21209. bottom: 0.015
  21210. }
  21211. },
  21212. },
  21213. [
  21214. {
  21215. name: "Normal",
  21216. height: math.unit(5.5, "feet"),
  21217. default: true
  21218. },
  21219. {
  21220. name: "Big",
  21221. height: math.unit(7.7, "feet")
  21222. },
  21223. ]
  21224. ))
  21225. characterMakers.push(() => makeCharacter(
  21226. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21227. {
  21228. front: {
  21229. height: math.unit(5 + 11 / 12, "feet"),
  21230. weight: math.unit(180, "lb"),
  21231. name: "Front",
  21232. image: {
  21233. source: "./media/characters/sen/front.svg",
  21234. extra: 1321 / 1254,
  21235. bottom: 0.015
  21236. }
  21237. },
  21238. side: {
  21239. height: math.unit(5 + 11 / 12, "feet"),
  21240. weight: math.unit(180, "lb"),
  21241. name: "Side",
  21242. image: {
  21243. source: "./media/characters/sen/side.svg",
  21244. extra: 1321 / 1254,
  21245. bottom: 0.007
  21246. }
  21247. },
  21248. back: {
  21249. height: math.unit(5 + 11 / 12, "feet"),
  21250. weight: math.unit(180, "lb"),
  21251. name: "Back",
  21252. image: {
  21253. source: "./media/characters/sen/back.svg",
  21254. extra: 1321 / 1254
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(5 + 11 / 12, "feet"),
  21262. default: true
  21263. },
  21264. ]
  21265. ))
  21266. characterMakers.push(() => makeCharacter(
  21267. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21268. {
  21269. front: {
  21270. height: math.unit(166.6, "cm"),
  21271. weight: math.unit(66.6, "kg"),
  21272. name: "Front",
  21273. image: {
  21274. source: "./media/characters/fruity/front.svg",
  21275. extra: 1510 / 1386,
  21276. bottom: 0.04
  21277. }
  21278. },
  21279. back: {
  21280. height: math.unit(166.6, "cm"),
  21281. weight: math.unit(66.6, "lb"),
  21282. name: "Back",
  21283. image: {
  21284. source: "./media/characters/fruity/back.svg",
  21285. extra: 1563 / 1435,
  21286. bottom: 0.005
  21287. }
  21288. },
  21289. },
  21290. [
  21291. {
  21292. name: "Normal",
  21293. height: math.unit(166.6, "cm"),
  21294. default: true
  21295. },
  21296. {
  21297. name: "Demonic",
  21298. height: math.unit(166.6, "feet")
  21299. },
  21300. ]
  21301. ))
  21302. characterMakers.push(() => makeCharacter(
  21303. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21304. {
  21305. side: {
  21306. height: math.unit(10, "feet"),
  21307. weight: math.unit(500, "lb"),
  21308. name: "Side",
  21309. image: {
  21310. source: "./media/characters/zost/side.svg",
  21311. extra: 966 / 880,
  21312. bottom: 0.075
  21313. }
  21314. },
  21315. mawFront: {
  21316. height: math.unit(1.08, "meters"),
  21317. name: "Maw (Front)",
  21318. image: {
  21319. source: "./media/characters/zost/maw-front.svg"
  21320. }
  21321. },
  21322. mawSide: {
  21323. height: math.unit(2.66, "feet"),
  21324. name: "Maw (Side)",
  21325. image: {
  21326. source: "./media/characters/zost/maw-side.svg"
  21327. }
  21328. },
  21329. },
  21330. [
  21331. {
  21332. name: "Normal",
  21333. height: math.unit(10, "feet"),
  21334. default: true
  21335. },
  21336. ]
  21337. ))
  21338. characterMakers.push(() => makeCharacter(
  21339. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21340. {
  21341. front: {
  21342. height: math.unit(5 + 4 / 12, "feet"),
  21343. weight: math.unit(120, "lb"),
  21344. name: "Front",
  21345. image: {
  21346. source: "./media/characters/luci/front.svg",
  21347. extra: 1985 / 1884,
  21348. bottom: 0.04
  21349. }
  21350. },
  21351. back: {
  21352. height: math.unit(5 + 4 / 12, "feet"),
  21353. weight: math.unit(120, "lb"),
  21354. name: "Back",
  21355. image: {
  21356. source: "./media/characters/luci/back.svg",
  21357. extra: 1892 / 1791,
  21358. bottom: 0.002
  21359. }
  21360. },
  21361. },
  21362. [
  21363. {
  21364. name: "Normal",
  21365. height: math.unit(5 + 4 / 12, "feet"),
  21366. default: true
  21367. },
  21368. ]
  21369. ))
  21370. characterMakers.push(() => makeCharacter(
  21371. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21372. {
  21373. front: {
  21374. height: math.unit(1500, "feet"),
  21375. weight: math.unit(3.8e6, "tons"),
  21376. name: "Front",
  21377. image: {
  21378. source: "./media/characters/2th/front.svg",
  21379. extra: 3489 / 3350,
  21380. bottom: 0.1
  21381. }
  21382. },
  21383. foot: {
  21384. height: math.unit(461, "feet"),
  21385. name: "Foot",
  21386. image: {
  21387. source: "./media/characters/2th/foot.svg"
  21388. }
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "\"Micro\"",
  21394. height: math.unit(15 + 7 / 12, "feet")
  21395. },
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(1500, "feet"),
  21399. default: true
  21400. },
  21401. {
  21402. name: "Macro",
  21403. height: math.unit(5000, "feet")
  21404. },
  21405. {
  21406. name: "Megamacro",
  21407. height: math.unit(15, "miles")
  21408. },
  21409. {
  21410. name: "Gigamacro",
  21411. height: math.unit(4000, "miles")
  21412. },
  21413. {
  21414. name: "Galactic",
  21415. height: math.unit(50, "AU")
  21416. },
  21417. ]
  21418. ))
  21419. characterMakers.push(() => makeCharacter(
  21420. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21421. {
  21422. front: {
  21423. height: math.unit(5 + 6 / 12, "feet"),
  21424. weight: math.unit(220, "lb"),
  21425. name: "Front",
  21426. image: {
  21427. source: "./media/characters/amethyst/front.svg",
  21428. extra: 2078 / 2040,
  21429. bottom: 0.045
  21430. }
  21431. },
  21432. back: {
  21433. height: math.unit(5 + 6 / 12, "feet"),
  21434. weight: math.unit(220, "lb"),
  21435. name: "Back",
  21436. image: {
  21437. source: "./media/characters/amethyst/back.svg",
  21438. extra: 2021 / 1989,
  21439. bottom: 0.02
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(5 + 6 / 12, "feet"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21453. {
  21454. front: {
  21455. height: math.unit(4 + 11 / 12, "feet"),
  21456. weight: math.unit(120, "lb"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/yumi-akiyama/front.svg",
  21460. extra: 1327 / 1235,
  21461. bottom: 0.02
  21462. }
  21463. },
  21464. back: {
  21465. height: math.unit(4 + 11 / 12, "feet"),
  21466. weight: math.unit(120, "lb"),
  21467. name: "Back",
  21468. image: {
  21469. source: "./media/characters/yumi-akiyama/back.svg",
  21470. extra: 1287 / 1245,
  21471. bottom: 0.002
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Galactic",
  21478. height: math.unit(50, "galaxies"),
  21479. default: true
  21480. },
  21481. {
  21482. name: "Universal",
  21483. height: math.unit(100, "universes")
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21489. {
  21490. front: {
  21491. height: math.unit(8, "feet"),
  21492. weight: math.unit(500, "lb"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/rifter-yrmori/front.svg",
  21496. extra: 1180 / 1125,
  21497. bottom: 0.02
  21498. }
  21499. },
  21500. back: {
  21501. height: math.unit(8, "feet"),
  21502. weight: math.unit(500, "lb"),
  21503. name: "Back",
  21504. image: {
  21505. source: "./media/characters/rifter-yrmori/back.svg",
  21506. extra: 1190 / 1145,
  21507. bottom: 0.001
  21508. }
  21509. },
  21510. wings: {
  21511. height: math.unit(7.75, "feet"),
  21512. weight: math.unit(500, "lb"),
  21513. name: "Wings",
  21514. image: {
  21515. source: "./media/characters/rifter-yrmori/wings.svg",
  21516. extra: 1357 / 1285
  21517. }
  21518. },
  21519. maw: {
  21520. height: math.unit(0.8, "feet"),
  21521. name: "Maw",
  21522. image: {
  21523. source: "./media/characters/rifter-yrmori/maw.svg"
  21524. }
  21525. },
  21526. mawfront: {
  21527. height: math.unit(1.45, "feet"),
  21528. name: "Maw (Front)",
  21529. image: {
  21530. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Normal",
  21537. height: math.unit(8, "feet"),
  21538. default: true
  21539. },
  21540. {
  21541. name: "Macro",
  21542. height: math.unit(42, "meters")
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21548. {
  21549. were: {
  21550. height: math.unit(25 + 6 / 12, "feet"),
  21551. weight: math.unit(10000, "lb"),
  21552. name: "Were",
  21553. image: {
  21554. source: "./media/characters/tahajin/were.svg",
  21555. extra: 801 / 770,
  21556. bottom: 0.042
  21557. }
  21558. },
  21559. aquatic: {
  21560. height: math.unit(6 + 4 / 12, "feet"),
  21561. weight: math.unit(160, "lb"),
  21562. name: "Aquatic",
  21563. image: {
  21564. source: "./media/characters/tahajin/aquatic.svg",
  21565. extra: 572 / 542,
  21566. bottom: 0.04
  21567. }
  21568. },
  21569. chow: {
  21570. height: math.unit(8 + 11 / 12, "feet"),
  21571. weight: math.unit(450, "lb"),
  21572. name: "Chow",
  21573. image: {
  21574. source: "./media/characters/tahajin/chow.svg",
  21575. extra: 660 / 640,
  21576. bottom: 0.015
  21577. }
  21578. },
  21579. demiNaga: {
  21580. height: math.unit(6 + 8 / 12, "feet"),
  21581. weight: math.unit(300, "lb"),
  21582. name: "Demi Naga",
  21583. image: {
  21584. source: "./media/characters/tahajin/demi-naga.svg",
  21585. extra: 643 / 615,
  21586. bottom: 0.1
  21587. }
  21588. },
  21589. data: {
  21590. height: math.unit(5, "inches"),
  21591. weight: math.unit(0.1, "lb"),
  21592. name: "Data",
  21593. image: {
  21594. source: "./media/characters/tahajin/data.svg"
  21595. }
  21596. },
  21597. fluu: {
  21598. height: math.unit(5 + 7 / 12, "feet"),
  21599. weight: math.unit(140, "lb"),
  21600. name: "Fluu",
  21601. image: {
  21602. source: "./media/characters/tahajin/fluu.svg",
  21603. extra: 628 / 592,
  21604. bottom: 0.02
  21605. }
  21606. },
  21607. starWarrior: {
  21608. height: math.unit(4 + 5 / 12, "feet"),
  21609. weight: math.unit(50, "lb"),
  21610. name: "Star Warrior",
  21611. image: {
  21612. source: "./media/characters/tahajin/star-warrior.svg"
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(25 + 6 / 12, "feet"),
  21620. default: true
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21626. {
  21627. front: {
  21628. height: math.unit(8, "feet"),
  21629. weight: math.unit(350, "lb"),
  21630. name: "Front",
  21631. image: {
  21632. source: "./media/characters/gabira/front.svg",
  21633. extra: 608 / 580,
  21634. bottom: 0.03
  21635. }
  21636. },
  21637. back: {
  21638. height: math.unit(8, "feet"),
  21639. weight: math.unit(350, "lb"),
  21640. name: "Back",
  21641. image: {
  21642. source: "./media/characters/gabira/back.svg",
  21643. extra: 608 / 580,
  21644. bottom: 0.03
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Normal",
  21651. height: math.unit(8, "feet"),
  21652. default: true
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21658. {
  21659. front: {
  21660. height: math.unit(5 + 3 / 12, "feet"),
  21661. weight: math.unit(137, "lb"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/sasha-katraine/front.svg",
  21665. bottom: 0.045
  21666. }
  21667. },
  21668. },
  21669. [
  21670. {
  21671. name: "Micro",
  21672. height: math.unit(5, "inches")
  21673. },
  21674. {
  21675. name: "Normal",
  21676. height: math.unit(5 + 3 / 12, "feet"),
  21677. default: true
  21678. },
  21679. ]
  21680. ))
  21681. characterMakers.push(() => makeCharacter(
  21682. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21683. {
  21684. side: {
  21685. height: math.unit(4, "inches"),
  21686. weight: math.unit(200, "grams"),
  21687. name: "Side",
  21688. image: {
  21689. source: "./media/characters/der/side.svg",
  21690. extra: 719 / 400,
  21691. bottom: 30.6 / 749.9187
  21692. }
  21693. },
  21694. },
  21695. [
  21696. {
  21697. name: "Micro",
  21698. height: math.unit(4, "inches"),
  21699. default: true
  21700. },
  21701. ]
  21702. ))
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21705. {
  21706. side: {
  21707. height: math.unit(30, "meters"),
  21708. weight: math.unit(700, "tonnes"),
  21709. name: "Side",
  21710. image: {
  21711. source: "./media/characters/fixerdragon/side.svg",
  21712. extra: (1293.0514 - 116.03) / 1106.86,
  21713. bottom: 116.03 / 1293.0514
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Planck",
  21720. height: math.unit(1.6e-35, "meters")
  21721. },
  21722. {
  21723. name: "Micro",
  21724. height: math.unit(0.4, "meters")
  21725. },
  21726. {
  21727. name: "Normal",
  21728. height: math.unit(30, "meters"),
  21729. default: true
  21730. },
  21731. {
  21732. name: "Megamacro",
  21733. height: math.unit(1.2, "megameters")
  21734. },
  21735. {
  21736. name: "Teramacro",
  21737. height: math.unit(130, "terameters")
  21738. },
  21739. {
  21740. name: "Yottamacro",
  21741. height: math.unit(6200, "yottameters")
  21742. },
  21743. ]
  21744. ));
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21747. {
  21748. front: {
  21749. height: math.unit(8, "feet"),
  21750. weight: math.unit(250, "lb"),
  21751. name: "Front",
  21752. image: {
  21753. source: "./media/characters/kite/front.svg",
  21754. extra: 2796 / 2659,
  21755. bottom: 0.002
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(8, "feet"),
  21763. default: true
  21764. },
  21765. {
  21766. name: "Macro",
  21767. height: math.unit(360, "feet")
  21768. },
  21769. {
  21770. name: "Megamacro",
  21771. height: math.unit(1500, "feet")
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21777. {
  21778. front: {
  21779. height: math.unit(5 + 11/12, "feet"),
  21780. weight: math.unit(170, "lb"),
  21781. name: "Front",
  21782. image: {
  21783. source: "./media/characters/poojawa-vynar/front.svg",
  21784. extra: 1735/1585,
  21785. bottom: 96/1831
  21786. }
  21787. },
  21788. back: {
  21789. height: math.unit(5 + 11/12, "feet"),
  21790. weight: math.unit(170, "lb"),
  21791. name: "Back",
  21792. image: {
  21793. source: "./media/characters/poojawa-vynar/back.svg",
  21794. extra: 1749/1607,
  21795. bottom: 28/1777
  21796. }
  21797. },
  21798. male: {
  21799. height: math.unit(5 + 11/12, "feet"),
  21800. weight: math.unit(170, "lb"),
  21801. name: "Male",
  21802. image: {
  21803. source: "./media/characters/poojawa-vynar/male.svg",
  21804. extra: 1855/1713,
  21805. bottom: 63/1918
  21806. }
  21807. },
  21808. taur: {
  21809. height: math.unit(5 + 11/12, "feet"),
  21810. weight: math.unit(170, "lb"),
  21811. name: "Taur",
  21812. image: {
  21813. source: "./media/characters/poojawa-vynar/taur.svg",
  21814. extra: 1151/1059,
  21815. bottom: 356/1507
  21816. }
  21817. },
  21818. frontDressed: {
  21819. height: math.unit(5 + 11/12, "feet"),
  21820. weight: math.unit(170, "lb"),
  21821. name: "Front (Dressed)",
  21822. image: {
  21823. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21824. extra: 1735/1585,
  21825. bottom: 96/1831
  21826. }
  21827. },
  21828. backDressed: {
  21829. height: math.unit(5 + 11/12, "feet"),
  21830. weight: math.unit(170, "lb"),
  21831. name: "Back (Dressed)",
  21832. image: {
  21833. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21834. extra: 1749/1607,
  21835. bottom: 28/1777
  21836. }
  21837. },
  21838. maleDressed: {
  21839. height: math.unit(5 + 11/12, "feet"),
  21840. weight: math.unit(170, "lb"),
  21841. name: "Male (Dressed)",
  21842. image: {
  21843. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21844. extra: 1855/1713,
  21845. bottom: 63/1918
  21846. }
  21847. },
  21848. taurDressed: {
  21849. height: math.unit(5 + 11/12, "feet"),
  21850. weight: math.unit(170, "lb"),
  21851. name: "Taur (Dressed)",
  21852. image: {
  21853. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21854. extra: 1151/1059,
  21855. bottom: 356/1507
  21856. }
  21857. },
  21858. maw: {
  21859. height: math.unit(1.46, "feet"),
  21860. name: "Maw",
  21861. image: {
  21862. source: "./media/characters/poojawa-vynar/maw.svg"
  21863. }
  21864. },
  21865. head: {
  21866. height: math.unit(2.34, "feet"),
  21867. name: "Head",
  21868. image: {
  21869. source: "./media/characters/poojawa-vynar/head.svg"
  21870. }
  21871. },
  21872. paw: {
  21873. height: math.unit(1.61, "feet"),
  21874. name: "Paw",
  21875. image: {
  21876. source: "./media/characters/poojawa-vynar/paw.svg"
  21877. }
  21878. },
  21879. pawToering: {
  21880. height: math.unit(1.72, "feet"),
  21881. name: "Paw (Toering)",
  21882. image: {
  21883. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21884. }
  21885. },
  21886. toering: {
  21887. height: math.unit(2.9, "inches"),
  21888. name: "Toering",
  21889. image: {
  21890. source: "./media/characters/poojawa-vynar/toering.svg"
  21891. }
  21892. },
  21893. shaft: {
  21894. height: math.unit(0.625, "feet"),
  21895. name: "Shaft",
  21896. image: {
  21897. source: "./media/characters/poojawa-vynar/shaft.svg"
  21898. }
  21899. },
  21900. spade: {
  21901. height: math.unit(0.42, "feet"),
  21902. name: "Spade",
  21903. image: {
  21904. source: "./media/characters/poojawa-vynar/spade.svg"
  21905. }
  21906. },
  21907. },
  21908. [
  21909. {
  21910. name: "Shortstack",
  21911. height: math.unit(4, "feet")
  21912. },
  21913. {
  21914. name: "Normal",
  21915. height: math.unit(5 + 11 / 12, "feet"),
  21916. default: true
  21917. },
  21918. {
  21919. name: "Tauric",
  21920. height: math.unit(4, "meters")
  21921. },
  21922. ]
  21923. ))
  21924. characterMakers.push(() => makeCharacter(
  21925. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21926. {
  21927. front: {
  21928. height: math.unit(293, "meters"),
  21929. weight: math.unit(70400, "tons"),
  21930. name: "Front",
  21931. image: {
  21932. source: "./media/characters/violette/front.svg",
  21933. extra: 1227 / 1180,
  21934. bottom: 0.005
  21935. }
  21936. },
  21937. back: {
  21938. height: math.unit(293, "meters"),
  21939. weight: math.unit(70400, "tons"),
  21940. name: "Back",
  21941. image: {
  21942. source: "./media/characters/violette/back.svg",
  21943. extra: 1227 / 1180,
  21944. bottom: 0.005
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Macro",
  21951. height: math.unit(293, "meters"),
  21952. default: true
  21953. },
  21954. ]
  21955. ))
  21956. characterMakers.push(() => makeCharacter(
  21957. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21958. {
  21959. front: {
  21960. height: math.unit(1050, "feet"),
  21961. weight: math.unit(200000, "tons"),
  21962. name: "Front",
  21963. image: {
  21964. source: "./media/characters/alessandra/front.svg",
  21965. extra: 960 / 912,
  21966. bottom: 0.06
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Macro",
  21973. height: math.unit(1050, "feet")
  21974. },
  21975. {
  21976. name: "Macro+",
  21977. height: math.unit(900, "meters"),
  21978. default: true
  21979. },
  21980. ]
  21981. ))
  21982. characterMakers.push(() => makeCharacter(
  21983. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21984. {
  21985. front: {
  21986. height: math.unit(5, "feet"),
  21987. weight: math.unit(187, "lb"),
  21988. name: "Front",
  21989. image: {
  21990. source: "./media/characters/person/front.svg",
  21991. extra: 3087 / 2945,
  21992. bottom: 91 / 3181
  21993. }
  21994. },
  21995. },
  21996. [
  21997. {
  21998. name: "Micro",
  21999. height: math.unit(3, "inches")
  22000. },
  22001. {
  22002. name: "Normal",
  22003. height: math.unit(5, "feet"),
  22004. default: true
  22005. },
  22006. {
  22007. name: "Macro",
  22008. height: math.unit(90, "feet")
  22009. },
  22010. {
  22011. name: "Max Size",
  22012. height: math.unit(280, "feet")
  22013. },
  22014. ]
  22015. ))
  22016. characterMakers.push(() => makeCharacter(
  22017. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22018. {
  22019. front: {
  22020. height: math.unit(4.5, "meters"),
  22021. weight: math.unit(3200, "lb"),
  22022. name: "Front",
  22023. image: {
  22024. source: "./media/characters/ty/front.svg",
  22025. extra: 1038 / 960,
  22026. bottom: 31.156 / 1068
  22027. }
  22028. },
  22029. back: {
  22030. height: math.unit(4.5, "meters"),
  22031. weight: math.unit(3200, "lb"),
  22032. name: "Back",
  22033. image: {
  22034. source: "./media/characters/ty/back.svg",
  22035. extra: 1044 / 966,
  22036. bottom: 7.48 / 1049
  22037. }
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Normal",
  22043. height: math.unit(4.5, "meters"),
  22044. default: true
  22045. },
  22046. ]
  22047. ))
  22048. characterMakers.push(() => makeCharacter(
  22049. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22050. {
  22051. front: {
  22052. height: math.unit(5 + 4 / 12, "feet"),
  22053. weight: math.unit(115, "lb"),
  22054. name: "Front",
  22055. image: {
  22056. source: "./media/characters/rocky/front.svg",
  22057. extra: 1012 / 975,
  22058. bottom: 54 / 1066
  22059. }
  22060. },
  22061. },
  22062. [
  22063. {
  22064. name: "Normal",
  22065. height: math.unit(5 + 4 / 12, "feet"),
  22066. default: true
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22072. {
  22073. upright: {
  22074. height: math.unit(6, "meters"),
  22075. weight: math.unit(4000, "kg"),
  22076. name: "Upright",
  22077. image: {
  22078. source: "./media/characters/ruin/upright.svg",
  22079. extra: 668 / 661,
  22080. bottom: 42 / 799.8396
  22081. }
  22082. },
  22083. },
  22084. [
  22085. {
  22086. name: "Normal",
  22087. height: math.unit(6, "meters"),
  22088. default: true
  22089. },
  22090. ]
  22091. ))
  22092. characterMakers.push(() => makeCharacter(
  22093. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22094. {
  22095. front: {
  22096. height: math.unit(5, "feet"),
  22097. weight: math.unit(106, "lb"),
  22098. name: "Front",
  22099. image: {
  22100. source: "./media/characters/robin/front.svg",
  22101. extra: 862 / 799,
  22102. bottom: 42.4 / 914.8856
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Normal",
  22109. height: math.unit(5, "feet"),
  22110. default: true
  22111. },
  22112. ]
  22113. ))
  22114. characterMakers.push(() => makeCharacter(
  22115. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22116. {
  22117. side: {
  22118. height: math.unit(3, "feet"),
  22119. weight: math.unit(225, "lb"),
  22120. name: "Side",
  22121. image: {
  22122. source: "./media/characters/saian/side.svg",
  22123. extra: 566 / 356,
  22124. bottom: 79.7 / 643
  22125. }
  22126. },
  22127. maw: {
  22128. height: math.unit(2.85, "feet"),
  22129. name: "Maw",
  22130. image: {
  22131. source: "./media/characters/saian/maw.svg"
  22132. }
  22133. },
  22134. },
  22135. [
  22136. {
  22137. name: "Normal",
  22138. height: math.unit(3, "feet"),
  22139. default: true
  22140. },
  22141. ]
  22142. ))
  22143. characterMakers.push(() => makeCharacter(
  22144. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22145. {
  22146. side: {
  22147. height: math.unit(8, "feet"),
  22148. weight: math.unit(300, "lb"),
  22149. name: "Side",
  22150. image: {
  22151. source: "./media/characters/equus-silvermane/side.svg",
  22152. extra: 2176 / 2050,
  22153. bottom: 65.7 / 2245
  22154. }
  22155. },
  22156. front: {
  22157. height: math.unit(8, "feet"),
  22158. weight: math.unit(300, "lb"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/equus-silvermane/front.svg",
  22162. extra: 4633 / 4400,
  22163. bottom: 71.3 / 4706.915
  22164. }
  22165. },
  22166. sideStepping: {
  22167. height: math.unit(8, "feet"),
  22168. weight: math.unit(300, "lb"),
  22169. name: "Side (Stepping)",
  22170. image: {
  22171. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22172. extra: 1968 / 1860,
  22173. bottom: 16.4 / 1989
  22174. }
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "Normal",
  22180. height: math.unit(8, "feet")
  22181. },
  22182. {
  22183. name: "Minimacro",
  22184. height: math.unit(75, "feet"),
  22185. default: true
  22186. },
  22187. {
  22188. name: "Macro",
  22189. height: math.unit(150, "feet")
  22190. },
  22191. {
  22192. name: "Macro+",
  22193. height: math.unit(1000, "feet")
  22194. },
  22195. {
  22196. name: "Megamacro",
  22197. height: math.unit(1, "mile")
  22198. },
  22199. ]
  22200. ))
  22201. characterMakers.push(() => makeCharacter(
  22202. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22203. {
  22204. side: {
  22205. height: math.unit(20, "feet"),
  22206. weight: math.unit(30000, "kg"),
  22207. name: "Side",
  22208. image: {
  22209. source: "./media/characters/windar/side.svg",
  22210. extra: 1491 / 1248,
  22211. bottom: 82.56 / 1568
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Normal",
  22218. height: math.unit(20, "feet"),
  22219. default: true
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22225. {
  22226. side: {
  22227. height: math.unit(15.66, "feet"),
  22228. weight: math.unit(150, "lb"),
  22229. name: "Side",
  22230. image: {
  22231. source: "./media/characters/melody/side.svg",
  22232. extra: 1097 / 944,
  22233. bottom: 11.8 / 1109
  22234. }
  22235. },
  22236. sideOutfit: {
  22237. height: math.unit(15.66, "feet"),
  22238. weight: math.unit(150, "lb"),
  22239. name: "Side (Outfit)",
  22240. image: {
  22241. source: "./media/characters/melody/side-outfit.svg",
  22242. extra: 1097 / 944,
  22243. bottom: 11.8 / 1109
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(15.66, "feet"),
  22251. default: true
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22257. {
  22258. front: {
  22259. height: math.unit(8, "feet"),
  22260. weight: math.unit(325, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/windera/front.svg",
  22264. extra: 3180 / 2845,
  22265. bottom: 178 / 3365
  22266. }
  22267. },
  22268. },
  22269. [
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(8, "feet"),
  22273. default: true
  22274. },
  22275. ]
  22276. ))
  22277. characterMakers.push(() => makeCharacter(
  22278. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22279. {
  22280. front: {
  22281. height: math.unit(28.75, "feet"),
  22282. weight: math.unit(2000, "kg"),
  22283. name: "Front",
  22284. image: {
  22285. source: "./media/characters/sonear/front.svg",
  22286. extra: 1041.1 / 964.9,
  22287. bottom: 53.7 / 1096.6
  22288. }
  22289. },
  22290. },
  22291. [
  22292. {
  22293. name: "Normal",
  22294. height: math.unit(28.75, "feet"),
  22295. default: true
  22296. },
  22297. ]
  22298. ))
  22299. characterMakers.push(() => makeCharacter(
  22300. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22301. {
  22302. side: {
  22303. height: math.unit(25.5, "feet"),
  22304. weight: math.unit(23000, "kg"),
  22305. name: "Side",
  22306. image: {
  22307. source: "./media/characters/kanara/side.svg"
  22308. }
  22309. },
  22310. },
  22311. [
  22312. {
  22313. name: "Normal",
  22314. height: math.unit(25.5, "feet"),
  22315. default: true
  22316. },
  22317. ]
  22318. ))
  22319. characterMakers.push(() => makeCharacter(
  22320. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22321. {
  22322. side: {
  22323. height: math.unit(10, "feet"),
  22324. weight: math.unit(1000, "kg"),
  22325. name: "Side",
  22326. image: {
  22327. source: "./media/characters/ereus/side.svg",
  22328. extra: 1157 / 959,
  22329. bottom: 153 / 1312.5
  22330. }
  22331. },
  22332. },
  22333. [
  22334. {
  22335. name: "Normal",
  22336. height: math.unit(10, "feet"),
  22337. default: true
  22338. },
  22339. ]
  22340. ))
  22341. characterMakers.push(() => makeCharacter(
  22342. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22343. {
  22344. side: {
  22345. height: math.unit(4.5, "feet"),
  22346. weight: math.unit(500, "lb"),
  22347. name: "Side",
  22348. image: {
  22349. source: "./media/characters/e-ter/side.svg",
  22350. extra: 1550 / 1248,
  22351. bottom: 146 / 1694
  22352. }
  22353. },
  22354. },
  22355. [
  22356. {
  22357. name: "Normal",
  22358. height: math.unit(4.5, "feet"),
  22359. default: true
  22360. },
  22361. ]
  22362. ))
  22363. characterMakers.push(() => makeCharacter(
  22364. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22365. {
  22366. side: {
  22367. height: math.unit(9.7, "feet"),
  22368. weight: math.unit(4000, "kg"),
  22369. name: "Side",
  22370. image: {
  22371. source: "./media/characters/yamie/side.svg"
  22372. }
  22373. },
  22374. },
  22375. [
  22376. {
  22377. name: "Normal",
  22378. height: math.unit(9.7, "feet"),
  22379. default: true
  22380. },
  22381. ]
  22382. ))
  22383. characterMakers.push(() => makeCharacter(
  22384. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22385. {
  22386. front: {
  22387. height: math.unit(50, "feet"),
  22388. weight: math.unit(50000, "kg"),
  22389. name: "Front",
  22390. image: {
  22391. source: "./media/characters/anders/front.svg",
  22392. extra: 570 / 539,
  22393. bottom: 14.7 / 586.7
  22394. }
  22395. },
  22396. },
  22397. [
  22398. {
  22399. name: "Large",
  22400. height: math.unit(50, "feet")
  22401. },
  22402. {
  22403. name: "Macro",
  22404. height: math.unit(2000, "feet"),
  22405. default: true
  22406. },
  22407. {
  22408. name: "Megamacro",
  22409. height: math.unit(12, "miles")
  22410. },
  22411. ]
  22412. ))
  22413. characterMakers.push(() => makeCharacter(
  22414. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22415. {
  22416. front: {
  22417. height: math.unit(7 + 2 / 12, "feet"),
  22418. weight: math.unit(300, "lb"),
  22419. name: "Front",
  22420. image: {
  22421. source: "./media/characters/reban/front.svg",
  22422. extra: 1287/1212,
  22423. bottom: 148/1435
  22424. }
  22425. },
  22426. head: {
  22427. height: math.unit(1.95, "feet"),
  22428. name: "Head",
  22429. image: {
  22430. source: "./media/characters/reban/head.svg"
  22431. }
  22432. },
  22433. maw: {
  22434. height: math.unit(0.95, "feet"),
  22435. name: "Maw",
  22436. image: {
  22437. source: "./media/characters/reban/maw.svg"
  22438. }
  22439. },
  22440. foot: {
  22441. height: math.unit(1.65, "feet"),
  22442. name: "Foot",
  22443. image: {
  22444. source: "./media/characters/reban/foot.svg"
  22445. }
  22446. },
  22447. dick: {
  22448. height: math.unit(7 / 5, "feet"),
  22449. name: "Dick",
  22450. image: {
  22451. source: "./media/characters/reban/dick.svg"
  22452. }
  22453. },
  22454. },
  22455. [
  22456. {
  22457. name: "Natural Height",
  22458. height: math.unit(7 + 2 / 12, "feet")
  22459. },
  22460. {
  22461. name: "Macro",
  22462. height: math.unit(500, "feet"),
  22463. default: true
  22464. },
  22465. {
  22466. name: "Canon Height",
  22467. height: math.unit(50, "AU")
  22468. },
  22469. ]
  22470. ))
  22471. characterMakers.push(() => makeCharacter(
  22472. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22473. {
  22474. front: {
  22475. height: math.unit(6, "feet"),
  22476. weight: math.unit(150, "lb"),
  22477. name: "Front",
  22478. image: {
  22479. source: "./media/characters/terrance-keayes/front.svg",
  22480. extra: 1.005,
  22481. bottom: 151 / 1615
  22482. }
  22483. },
  22484. side: {
  22485. height: math.unit(6, "feet"),
  22486. weight: math.unit(150, "lb"),
  22487. name: "Side",
  22488. image: {
  22489. source: "./media/characters/terrance-keayes/side.svg",
  22490. extra: 1.005,
  22491. bottom: 129.4 / 1544
  22492. }
  22493. },
  22494. back: {
  22495. height: math.unit(6, "feet"),
  22496. weight: math.unit(150, "lb"),
  22497. name: "Back",
  22498. image: {
  22499. source: "./media/characters/terrance-keayes/back.svg",
  22500. extra: 1.005,
  22501. bottom: 58.4 / 1557.3
  22502. }
  22503. },
  22504. dick: {
  22505. height: math.unit(6 * 0.208, "feet"),
  22506. name: "Dick",
  22507. image: {
  22508. source: "./media/characters/terrance-keayes/dick.svg"
  22509. }
  22510. },
  22511. },
  22512. [
  22513. {
  22514. name: "Canon Height",
  22515. height: math.unit(35, "miles"),
  22516. default: true
  22517. },
  22518. ]
  22519. ))
  22520. characterMakers.push(() => makeCharacter(
  22521. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22522. {
  22523. front: {
  22524. height: math.unit(6, "feet"),
  22525. weight: math.unit(150, "lb"),
  22526. name: "Front",
  22527. image: {
  22528. source: "./media/characters/ofelia/front.svg",
  22529. extra: 1130/1117,
  22530. bottom: 91/1221
  22531. }
  22532. },
  22533. back: {
  22534. height: math.unit(6, "feet"),
  22535. weight: math.unit(150, "lb"),
  22536. name: "Back",
  22537. image: {
  22538. source: "./media/characters/ofelia/back.svg",
  22539. extra: 1172/1159,
  22540. bottom: 28/1200
  22541. }
  22542. },
  22543. maw: {
  22544. height: math.unit(1, "feet"),
  22545. name: "Maw",
  22546. image: {
  22547. source: "./media/characters/ofelia/maw.svg"
  22548. }
  22549. },
  22550. foot: {
  22551. height: math.unit(1.949, "feet"),
  22552. name: "Foot",
  22553. image: {
  22554. source: "./media/characters/ofelia/foot.svg"
  22555. }
  22556. },
  22557. },
  22558. [
  22559. {
  22560. name: "Canon Height",
  22561. height: math.unit(2000, "miles"),
  22562. default: true
  22563. },
  22564. ]
  22565. ))
  22566. characterMakers.push(() => makeCharacter(
  22567. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22568. {
  22569. front: {
  22570. height: math.unit(6, "feet"),
  22571. weight: math.unit(150, "lb"),
  22572. name: "Front",
  22573. image: {
  22574. source: "./media/characters/samuel/front.svg",
  22575. extra: 265 / 258,
  22576. bottom: 2 / 266.1566
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Macro",
  22583. height: math.unit(100, "feet"),
  22584. default: true
  22585. },
  22586. {
  22587. name: "Full Size",
  22588. height: math.unit(1000, "miles")
  22589. },
  22590. ]
  22591. ))
  22592. characterMakers.push(() => makeCharacter(
  22593. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22594. {
  22595. front: {
  22596. height: math.unit(6, "feet"),
  22597. weight: math.unit(300, "lb"),
  22598. name: "Front",
  22599. image: {
  22600. source: "./media/characters/beishir-kiel/front.svg",
  22601. extra: 569 / 547,
  22602. bottom: 41.9 / 609
  22603. }
  22604. },
  22605. maw: {
  22606. height: math.unit(6 * 0.202, "feet"),
  22607. name: "Maw",
  22608. image: {
  22609. source: "./media/characters/beishir-kiel/maw.svg"
  22610. }
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Macro",
  22616. height: math.unit(300, "feet"),
  22617. default: true
  22618. },
  22619. ]
  22620. ))
  22621. characterMakers.push(() => makeCharacter(
  22622. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22623. {
  22624. front: {
  22625. height: math.unit(5 + 7/12, "feet"),
  22626. weight: math.unit(120, "lb"),
  22627. name: "Front",
  22628. image: {
  22629. source: "./media/characters/logan-grey/front.svg",
  22630. extra: 1836/1738,
  22631. bottom: 108/1944
  22632. }
  22633. },
  22634. back: {
  22635. height: math.unit(5 + 7/12, "feet"),
  22636. weight: math.unit(120, "lb"),
  22637. name: "Back",
  22638. image: {
  22639. source: "./media/characters/logan-grey/back.svg",
  22640. extra: 1880/1794,
  22641. bottom: 24/1904
  22642. }
  22643. },
  22644. frontSfw: {
  22645. height: math.unit(5 + 7/12, "feet"),
  22646. weight: math.unit(120, "lb"),
  22647. name: "Front (SFW)",
  22648. image: {
  22649. source: "./media/characters/logan-grey/front-sfw.svg",
  22650. extra: 1836/1738,
  22651. bottom: 108/1944
  22652. }
  22653. },
  22654. backSfw: {
  22655. height: math.unit(5 + 7/12, "feet"),
  22656. weight: math.unit(120, "lb"),
  22657. name: "Back (SFW)",
  22658. image: {
  22659. source: "./media/characters/logan-grey/back-sfw.svg",
  22660. extra: 1880/1794,
  22661. bottom: 24/1904
  22662. }
  22663. },
  22664. hands: {
  22665. height: math.unit(0.84, "feet"),
  22666. name: "Hands",
  22667. image: {
  22668. source: "./media/characters/logan-grey/hands.svg"
  22669. }
  22670. },
  22671. paws: {
  22672. height: math.unit(0.72, "feet"),
  22673. name: "Paws",
  22674. image: {
  22675. source: "./media/characters/logan-grey/paws.svg"
  22676. }
  22677. },
  22678. cock: {
  22679. height: math.unit(1.45, "feet"),
  22680. name: "Cock",
  22681. image: {
  22682. source: "./media/characters/logan-grey/cock.svg"
  22683. }
  22684. },
  22685. cockAlt: {
  22686. height: math.unit(1.437, "feet"),
  22687. name: "Cock (alt)",
  22688. image: {
  22689. source: "./media/characters/logan-grey/cock-alt.svg"
  22690. }
  22691. },
  22692. },
  22693. [
  22694. {
  22695. name: "Normal",
  22696. height: math.unit(5 + 8 / 12, "feet")
  22697. },
  22698. {
  22699. name: "The 500 Foot Femboy",
  22700. height: math.unit(500, "feet"),
  22701. default: true
  22702. },
  22703. {
  22704. name: "Megmacro",
  22705. height: math.unit(20, "miles")
  22706. },
  22707. ]
  22708. ))
  22709. characterMakers.push(() => makeCharacter(
  22710. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22711. {
  22712. front: {
  22713. height: math.unit(8 + 2 / 12, "feet"),
  22714. weight: math.unit(275, "lb"),
  22715. name: "Front",
  22716. image: {
  22717. source: "./media/characters/draganta/front.svg",
  22718. extra: 1177 / 1135,
  22719. bottom: 33.46 / 1212.1
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Normal",
  22726. height: math.unit(8 + 6 / 12, "feet"),
  22727. default: true
  22728. },
  22729. {
  22730. name: "Macro",
  22731. height: math.unit(150, "feet")
  22732. },
  22733. {
  22734. name: "Megamacro",
  22735. height: math.unit(1000, "miles")
  22736. },
  22737. ]
  22738. ))
  22739. characterMakers.push(() => makeCharacter(
  22740. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22741. {
  22742. front: {
  22743. height: math.unit(1.72, "m"),
  22744. weight: math.unit(80, "lb"),
  22745. name: "Front",
  22746. image: {
  22747. source: "./media/characters/voski/front.svg",
  22748. extra: 2076.22 / 2022.4,
  22749. bottom: 102.7 / 2177.3866
  22750. }
  22751. },
  22752. frontNsfw: {
  22753. height: math.unit(1.72, "m"),
  22754. weight: math.unit(80, "lb"),
  22755. name: "Front (NSFW)",
  22756. image: {
  22757. source: "./media/characters/voski/front-nsfw.svg",
  22758. extra: 2076.22 / 2022.4,
  22759. bottom: 102.7 / 2177.3866
  22760. }
  22761. },
  22762. back: {
  22763. height: math.unit(1.72, "m"),
  22764. weight: math.unit(80, "lb"),
  22765. name: "Back",
  22766. image: {
  22767. source: "./media/characters/voski/back.svg",
  22768. extra: 2104 / 2051,
  22769. bottom: 10.45 / 2113.63
  22770. }
  22771. },
  22772. },
  22773. [
  22774. {
  22775. name: "Normal",
  22776. height: math.unit(1.72, "m")
  22777. },
  22778. {
  22779. name: "Macro",
  22780. height: math.unit(55, "m"),
  22781. default: true
  22782. },
  22783. {
  22784. name: "Macro+",
  22785. height: math.unit(300, "m")
  22786. },
  22787. {
  22788. name: "Macro++",
  22789. height: math.unit(700, "m")
  22790. },
  22791. {
  22792. name: "Macro+++",
  22793. height: math.unit(4500, "m")
  22794. },
  22795. {
  22796. name: "Macro++++",
  22797. height: math.unit(45, "km")
  22798. },
  22799. {
  22800. name: "Macro+++++",
  22801. height: math.unit(1220, "km")
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22807. {
  22808. front: {
  22809. height: math.unit(2.3, "m"),
  22810. weight: math.unit(304, "kg"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/icowom-lee/front.svg",
  22814. extra: 985 / 955,
  22815. bottom: 25.4 / 1012
  22816. }
  22817. },
  22818. fronttentacles: {
  22819. height: math.unit(2.3, "m"),
  22820. weight: math.unit(304, "kg"),
  22821. name: "Front-tentacles",
  22822. image: {
  22823. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22824. extra: 985 / 955,
  22825. bottom: 25.4 / 1012
  22826. }
  22827. },
  22828. back: {
  22829. height: math.unit(2.3, "m"),
  22830. weight: math.unit(304, "kg"),
  22831. name: "Back",
  22832. image: {
  22833. source: "./media/characters/icowom-lee/back.svg",
  22834. extra: 975 / 954,
  22835. bottom: 9.5 / 985
  22836. }
  22837. },
  22838. backtentacles: {
  22839. height: math.unit(2.3, "m"),
  22840. weight: math.unit(304, "kg"),
  22841. name: "Back-tentacles",
  22842. image: {
  22843. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22844. extra: 975 / 954,
  22845. bottom: 9.5 / 985
  22846. }
  22847. },
  22848. frontDressed: {
  22849. height: math.unit(2.3, "m"),
  22850. weight: math.unit(304, "kg"),
  22851. name: "Front (Dressed)",
  22852. image: {
  22853. source: "./media/characters/icowom-lee/front-dressed.svg",
  22854. extra: 3076 / 2933,
  22855. bottom: 51.4 / 3125.1889
  22856. }
  22857. },
  22858. rump: {
  22859. height: math.unit(0.776, "meters"),
  22860. name: "Rump",
  22861. image: {
  22862. source: "./media/characters/icowom-lee/rump.svg"
  22863. }
  22864. },
  22865. genitals: {
  22866. height: math.unit(0.78, "meters"),
  22867. name: "Genitals",
  22868. image: {
  22869. source: "./media/characters/icowom-lee/genitals.svg"
  22870. }
  22871. },
  22872. },
  22873. [
  22874. {
  22875. name: "Normal",
  22876. height: math.unit(2.3, "meters"),
  22877. default: true
  22878. },
  22879. {
  22880. name: "Macro",
  22881. height: math.unit(94, "meters"),
  22882. default: true
  22883. },
  22884. ]
  22885. ))
  22886. characterMakers.push(() => makeCharacter(
  22887. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22888. {
  22889. front: {
  22890. height: math.unit(22, "meters"),
  22891. weight: math.unit(21000, "kg"),
  22892. name: "Front",
  22893. image: {
  22894. source: "./media/characters/shock-diamond/front.svg",
  22895. extra: 2204 / 2053,
  22896. bottom: 65 / 2239.47
  22897. }
  22898. },
  22899. frontNude: {
  22900. height: math.unit(22, "meters"),
  22901. weight: math.unit(21000, "kg"),
  22902. name: "Front (Nude)",
  22903. image: {
  22904. source: "./media/characters/shock-diamond/front-nude.svg",
  22905. extra: 2514 / 2285,
  22906. bottom: 13 / 2527.56
  22907. }
  22908. },
  22909. },
  22910. [
  22911. {
  22912. name: "Normal",
  22913. height: math.unit(3, "meters")
  22914. },
  22915. {
  22916. name: "Macro",
  22917. height: math.unit(22, "meters"),
  22918. default: true
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22924. {
  22925. front: {
  22926. height: math.unit(5 + 4 / 12, "feet"),
  22927. weight: math.unit(120, "lb"),
  22928. name: "Front",
  22929. image: {
  22930. source: "./media/characters/rory/front.svg",
  22931. extra: 1318/1241,
  22932. bottom: 42/1360
  22933. }
  22934. },
  22935. back: {
  22936. height: math.unit(5 + 4 / 12, "feet"),
  22937. weight: math.unit(120, "lb"),
  22938. name: "Back",
  22939. image: {
  22940. source: "./media/characters/rory/back.svg",
  22941. extra: 1318/1241,
  22942. bottom: 42/1360
  22943. }
  22944. },
  22945. butt: {
  22946. height: math.unit(1.74, "feet"),
  22947. name: "Butt",
  22948. image: {
  22949. source: "./media/characters/rory/butt.svg"
  22950. }
  22951. },
  22952. dick: {
  22953. height: math.unit(1.02, "feet"),
  22954. name: "Dick",
  22955. image: {
  22956. source: "./media/characters/rory/dick.svg"
  22957. }
  22958. },
  22959. paws: {
  22960. height: math.unit(1, "feet"),
  22961. name: "Paws",
  22962. image: {
  22963. source: "./media/characters/rory/paws.svg"
  22964. }
  22965. },
  22966. frontAlt: {
  22967. height: math.unit(5 + 4 / 12, "feet"),
  22968. weight: math.unit(120, "lb"),
  22969. name: "Front (Alt)",
  22970. image: {
  22971. source: "./media/characters/rory/front-alt.svg",
  22972. extra: 589 / 556,
  22973. bottom: 45.7 / 635.76
  22974. }
  22975. },
  22976. frontAltNude: {
  22977. height: math.unit(5 + 4 / 12, "feet"),
  22978. weight: math.unit(120, "lb"),
  22979. name: "Front (Alt, Nude)",
  22980. image: {
  22981. source: "./media/characters/rory/front-alt-nude.svg",
  22982. extra: 589 / 556,
  22983. bottom: 45.7 / 635.76
  22984. }
  22985. },
  22986. side: {
  22987. height: math.unit(5 + 4 / 12, "feet"),
  22988. weight: math.unit(120, "lb"),
  22989. name: "Side",
  22990. image: {
  22991. source: "./media/characters/rory/side.svg",
  22992. extra: 597 / 564,
  22993. bottom: 55 / 653
  22994. }
  22995. },
  22996. backAlt: {
  22997. height: math.unit(5 + 4 / 12, "feet"),
  22998. weight: math.unit(120, "lb"),
  22999. name: "Back (Alt)",
  23000. image: {
  23001. source: "./media/characters/rory/back-alt.svg",
  23002. extra: 620 / 585,
  23003. bottom: 8.86 / 630.43
  23004. }
  23005. },
  23006. dickAlt: {
  23007. height: math.unit(0.86, "feet"),
  23008. name: "Dick (Alt)",
  23009. image: {
  23010. source: "./media/characters/rory/dick-alt.svg"
  23011. }
  23012. },
  23013. },
  23014. [
  23015. {
  23016. name: "Normal",
  23017. height: math.unit(5 + 4 / 12, "feet"),
  23018. default: true
  23019. },
  23020. {
  23021. name: "Macro",
  23022. height: math.unit(100, "feet")
  23023. },
  23024. {
  23025. name: "Macro+",
  23026. height: math.unit(140, "feet")
  23027. },
  23028. {
  23029. name: "Macro++",
  23030. height: math.unit(300, "feet")
  23031. },
  23032. ]
  23033. ))
  23034. characterMakers.push(() => makeCharacter(
  23035. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23036. {
  23037. front: {
  23038. height: math.unit(5 + 9 / 12, "feet"),
  23039. weight: math.unit(190, "lb"),
  23040. name: "Front",
  23041. image: {
  23042. source: "./media/characters/sprisk/front.svg",
  23043. extra: 1225 / 1180,
  23044. bottom: 42.7 / 1266.4
  23045. }
  23046. },
  23047. frontNsfw: {
  23048. height: math.unit(5 + 9 / 12, "feet"),
  23049. weight: math.unit(190, "lb"),
  23050. name: "Front (NSFW)",
  23051. image: {
  23052. source: "./media/characters/sprisk/front-nsfw.svg",
  23053. extra: 1225 / 1180,
  23054. bottom: 42.7 / 1266.4
  23055. }
  23056. },
  23057. back: {
  23058. height: math.unit(5 + 9 / 12, "feet"),
  23059. weight: math.unit(190, "lb"),
  23060. name: "Back",
  23061. image: {
  23062. source: "./media/characters/sprisk/back.svg",
  23063. extra: 1247 / 1200,
  23064. bottom: 5.6 / 1253.04
  23065. }
  23066. },
  23067. },
  23068. [
  23069. {
  23070. name: "Tiny",
  23071. height: math.unit(2, "inches")
  23072. },
  23073. {
  23074. name: "Normal",
  23075. height: math.unit(5 + 9 / 12, "feet"),
  23076. default: true
  23077. },
  23078. {
  23079. name: "Mini Macro",
  23080. height: math.unit(18, "feet")
  23081. },
  23082. {
  23083. name: "Macro",
  23084. height: math.unit(100, "feet")
  23085. },
  23086. {
  23087. name: "MACRO",
  23088. height: math.unit(50, "miles")
  23089. },
  23090. {
  23091. name: "M A C R O",
  23092. height: math.unit(300, "miles")
  23093. },
  23094. ]
  23095. ))
  23096. characterMakers.push(() => makeCharacter(
  23097. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23098. {
  23099. side: {
  23100. height: math.unit(15.6, "meters"),
  23101. weight: math.unit(700000, "kg"),
  23102. name: "Side",
  23103. image: {
  23104. source: "./media/characters/bunsen/side.svg",
  23105. extra: 1644 / 358
  23106. }
  23107. },
  23108. foot: {
  23109. height: math.unit(1.611 * 1644 / 358, "meter"),
  23110. name: "Foot",
  23111. image: {
  23112. source: "./media/characters/bunsen/foot.svg"
  23113. }
  23114. },
  23115. },
  23116. [
  23117. {
  23118. name: "Small",
  23119. height: math.unit(10, "feet")
  23120. },
  23121. {
  23122. name: "Normal",
  23123. height: math.unit(15.6, "meters"),
  23124. default: true
  23125. },
  23126. ]
  23127. ))
  23128. characterMakers.push(() => makeCharacter(
  23129. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23130. {
  23131. front: {
  23132. height: math.unit(4 + 11 / 12, "feet"),
  23133. weight: math.unit(140, "lb"),
  23134. name: "Front",
  23135. image: {
  23136. source: "./media/characters/sesh/front.svg",
  23137. extra: 3420 / 3231,
  23138. bottom: 72 / 3949.5
  23139. }
  23140. },
  23141. },
  23142. [
  23143. {
  23144. name: "Normal",
  23145. height: math.unit(4 + 11 / 12, "feet")
  23146. },
  23147. {
  23148. name: "Grown",
  23149. height: math.unit(15, "feet"),
  23150. default: true
  23151. },
  23152. {
  23153. name: "Macro",
  23154. height: math.unit(1500, "feet")
  23155. },
  23156. {
  23157. name: "Megamacro",
  23158. height: math.unit(30, "miles")
  23159. },
  23160. {
  23161. name: "Continental",
  23162. height: math.unit(3000, "miles")
  23163. },
  23164. {
  23165. name: "Gravity Mass",
  23166. height: math.unit(300000, "miles")
  23167. },
  23168. {
  23169. name: "Planet Buster",
  23170. height: math.unit(30000000, "miles")
  23171. },
  23172. {
  23173. name: "Big",
  23174. height: math.unit(3000000000, "miles")
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23180. {
  23181. front: {
  23182. height: math.unit(9, "feet"),
  23183. weight: math.unit(350, "lb"),
  23184. name: "Front",
  23185. image: {
  23186. source: "./media/characters/pepper/front.svg",
  23187. extra: 1448 / 1312,
  23188. bottom: 9.4 / 1457.88
  23189. }
  23190. },
  23191. back: {
  23192. height: math.unit(9, "feet"),
  23193. weight: math.unit(350, "lb"),
  23194. name: "Back",
  23195. image: {
  23196. source: "./media/characters/pepper/back.svg",
  23197. extra: 1423 / 1300,
  23198. bottom: 4.6 / 1429
  23199. }
  23200. },
  23201. maw: {
  23202. height: math.unit(0.932, "feet"),
  23203. name: "Maw",
  23204. image: {
  23205. source: "./media/characters/pepper/maw.svg"
  23206. }
  23207. },
  23208. },
  23209. [
  23210. {
  23211. name: "Normal",
  23212. height: math.unit(9, "feet"),
  23213. default: true
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23219. {
  23220. front: {
  23221. height: math.unit(6, "feet"),
  23222. weight: math.unit(150, "lb"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/maelstrom/front.svg",
  23226. extra: 2100 / 1883,
  23227. bottom: 94 / 2196.7
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Less Kaiju",
  23234. height: math.unit(200, "feet")
  23235. },
  23236. {
  23237. name: "Kaiju",
  23238. height: math.unit(400, "feet"),
  23239. default: true
  23240. },
  23241. {
  23242. name: "Kaiju-er",
  23243. height: math.unit(600, "feet")
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23249. {
  23250. front: {
  23251. height: math.unit(6 + 5 / 12, "feet"),
  23252. weight: math.unit(180, "lb"),
  23253. name: "Front",
  23254. image: {
  23255. source: "./media/characters/lexir/front.svg",
  23256. extra: 180 / 172,
  23257. bottom: 12 / 192
  23258. }
  23259. },
  23260. back: {
  23261. height: math.unit(6 + 5 / 12, "feet"),
  23262. weight: math.unit(180, "lb"),
  23263. name: "Back",
  23264. image: {
  23265. source: "./media/characters/lexir/back.svg",
  23266. extra: 183.84 / 175.5,
  23267. bottom: 3.1 / 187
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Very Smal",
  23274. height: math.unit(1, "nm")
  23275. },
  23276. {
  23277. name: "Normal",
  23278. height: math.unit(6 + 5 / 12, "feet"),
  23279. default: true
  23280. },
  23281. {
  23282. name: "Macro",
  23283. height: math.unit(1, "mile")
  23284. },
  23285. {
  23286. name: "Megamacro",
  23287. height: math.unit(50, "miles")
  23288. },
  23289. ]
  23290. ))
  23291. characterMakers.push(() => makeCharacter(
  23292. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23293. {
  23294. front: {
  23295. height: math.unit(1.5, "meters"),
  23296. weight: math.unit(100, "lb"),
  23297. name: "Front",
  23298. image: {
  23299. source: "./media/characters/maksio/front.svg",
  23300. extra: 1549 / 1531,
  23301. bottom: 123.7 / 1674.5429
  23302. }
  23303. },
  23304. back: {
  23305. height: math.unit(1.5, "meters"),
  23306. weight: math.unit(100, "lb"),
  23307. name: "Back",
  23308. image: {
  23309. source: "./media/characters/maksio/back.svg",
  23310. extra: 1541 / 1509,
  23311. bottom: 97 / 1639
  23312. }
  23313. },
  23314. hand: {
  23315. height: math.unit(0.621, "feet"),
  23316. name: "Hand",
  23317. image: {
  23318. source: "./media/characters/maksio/hand.svg"
  23319. }
  23320. },
  23321. foot: {
  23322. height: math.unit(1.611, "feet"),
  23323. name: "Foot",
  23324. image: {
  23325. source: "./media/characters/maksio/foot.svg"
  23326. }
  23327. },
  23328. },
  23329. [
  23330. {
  23331. name: "Shrunken",
  23332. height: math.unit(10, "cm")
  23333. },
  23334. {
  23335. name: "Normal",
  23336. height: math.unit(150, "cm"),
  23337. default: true
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23343. {
  23344. front: {
  23345. height: math.unit(100, "feet"),
  23346. name: "Front",
  23347. image: {
  23348. source: "./media/characters/erza-bear/front.svg",
  23349. extra: 2449 / 2390,
  23350. bottom: 46 / 2494
  23351. }
  23352. },
  23353. back: {
  23354. height: math.unit(100, "feet"),
  23355. name: "Back",
  23356. image: {
  23357. source: "./media/characters/erza-bear/back.svg",
  23358. extra: 2489 / 2430,
  23359. bottom: 85.4 / 2480
  23360. }
  23361. },
  23362. tail: {
  23363. height: math.unit(42, "feet"),
  23364. name: "Tail",
  23365. image: {
  23366. source: "./media/characters/erza-bear/tail.svg"
  23367. }
  23368. },
  23369. tongue: {
  23370. height: math.unit(8, "feet"),
  23371. name: "Tongue",
  23372. image: {
  23373. source: "./media/characters/erza-bear/tongue.svg"
  23374. }
  23375. },
  23376. dick: {
  23377. height: math.unit(10.5, "feet"),
  23378. name: "Dick",
  23379. image: {
  23380. source: "./media/characters/erza-bear/dick.svg"
  23381. }
  23382. },
  23383. dickVertical: {
  23384. height: math.unit(16.9, "feet"),
  23385. name: "Dick (Vertical)",
  23386. image: {
  23387. source: "./media/characters/erza-bear/dick-vertical.svg"
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Macro",
  23394. height: math.unit(100, "feet"),
  23395. default: true
  23396. },
  23397. ]
  23398. ))
  23399. characterMakers.push(() => makeCharacter(
  23400. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23401. {
  23402. front: {
  23403. height: math.unit(172, "cm"),
  23404. weight: math.unit(73, "kg"),
  23405. name: "Front",
  23406. image: {
  23407. source: "./media/characters/violet-flor/front.svg",
  23408. extra: 1530 / 1442,
  23409. bottom: 61.9 / 1588.8
  23410. }
  23411. },
  23412. back: {
  23413. height: math.unit(180, "cm"),
  23414. weight: math.unit(73, "kg"),
  23415. name: "Back",
  23416. image: {
  23417. source: "./media/characters/violet-flor/back.svg",
  23418. extra: 1692 / 1630,
  23419. bottom: 20 / 1712
  23420. }
  23421. },
  23422. },
  23423. [
  23424. {
  23425. name: "Normal",
  23426. height: math.unit(172, "cm"),
  23427. default: true
  23428. },
  23429. ]
  23430. ))
  23431. characterMakers.push(() => makeCharacter(
  23432. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23433. {
  23434. front: {
  23435. height: math.unit(6, "feet"),
  23436. weight: math.unit(220, "lb"),
  23437. name: "Front",
  23438. image: {
  23439. source: "./media/characters/lynn-rhea/front.svg",
  23440. extra: 310 / 273
  23441. }
  23442. },
  23443. back: {
  23444. height: math.unit(6, "feet"),
  23445. weight: math.unit(220, "lb"),
  23446. name: "Back",
  23447. image: {
  23448. source: "./media/characters/lynn-rhea/back.svg",
  23449. extra: 310 / 273
  23450. }
  23451. },
  23452. dicks: {
  23453. height: math.unit(0.9, "feet"),
  23454. name: "Dicks",
  23455. image: {
  23456. source: "./media/characters/lynn-rhea/dicks.svg"
  23457. }
  23458. },
  23459. slit: {
  23460. height: math.unit(0.4, "feet"),
  23461. name: "Slit",
  23462. image: {
  23463. source: "./media/characters/lynn-rhea/slit.svg"
  23464. }
  23465. },
  23466. },
  23467. [
  23468. {
  23469. name: "Micro",
  23470. height: math.unit(1, "inch")
  23471. },
  23472. {
  23473. name: "Macro",
  23474. height: math.unit(60, "feet"),
  23475. default: true
  23476. },
  23477. {
  23478. name: "Megamacro",
  23479. height: math.unit(2, "miles")
  23480. },
  23481. {
  23482. name: "Gigamacro",
  23483. height: math.unit(3, "earths")
  23484. },
  23485. {
  23486. name: "Galactic",
  23487. height: math.unit(0.8, "galaxies")
  23488. },
  23489. ]
  23490. ))
  23491. characterMakers.push(() => makeCharacter(
  23492. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23493. {
  23494. front: {
  23495. height: math.unit(1600, "feet"),
  23496. weight: math.unit(85758785169, "kg"),
  23497. name: "Front",
  23498. image: {
  23499. source: "./media/characters/valathos/front.svg",
  23500. extra: 1451 / 1339
  23501. }
  23502. },
  23503. },
  23504. [
  23505. {
  23506. name: "Macro",
  23507. height: math.unit(1600, "feet"),
  23508. default: true
  23509. },
  23510. ]
  23511. ))
  23512. characterMakers.push(() => makeCharacter(
  23513. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23514. {
  23515. front: {
  23516. height: math.unit(7 + 5 / 12, "feet"),
  23517. weight: math.unit(300, "lb"),
  23518. name: "Front",
  23519. image: {
  23520. source: "./media/characters/azula/front.svg",
  23521. extra: 3208 / 2880,
  23522. bottom: 80.2 / 3277
  23523. }
  23524. },
  23525. back: {
  23526. height: math.unit(7 + 5 / 12, "feet"),
  23527. weight: math.unit(300, "lb"),
  23528. name: "Back",
  23529. image: {
  23530. source: "./media/characters/azula/back.svg",
  23531. extra: 3169 / 2822,
  23532. bottom: 150.6 / 3321
  23533. }
  23534. },
  23535. },
  23536. [
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(7 + 5 / 12, "feet"),
  23540. default: true
  23541. },
  23542. {
  23543. name: "Big",
  23544. height: math.unit(20, "feet")
  23545. },
  23546. ]
  23547. ))
  23548. characterMakers.push(() => makeCharacter(
  23549. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23550. {
  23551. front: {
  23552. height: math.unit(5 + 1 / 12, "feet"),
  23553. weight: math.unit(110, "lb"),
  23554. name: "Front",
  23555. image: {
  23556. source: "./media/characters/rupert/front.svg",
  23557. extra: 1549 / 1495,
  23558. bottom: 54.2 / 1604.4
  23559. }
  23560. },
  23561. },
  23562. [
  23563. {
  23564. name: "Normal",
  23565. height: math.unit(5 + 1 / 12, "feet"),
  23566. default: true
  23567. },
  23568. ]
  23569. ))
  23570. characterMakers.push(() => makeCharacter(
  23571. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23572. {
  23573. front: {
  23574. height: math.unit(8 + 4 / 12, "feet"),
  23575. weight: math.unit(350, "lb"),
  23576. name: "Front",
  23577. image: {
  23578. source: "./media/characters/sheera-castellar/front.svg",
  23579. extra: 1957 / 1894,
  23580. bottom: 26.97 / 1975.017
  23581. }
  23582. },
  23583. side: {
  23584. height: math.unit(8 + 4 / 12, "feet"),
  23585. weight: math.unit(350, "lb"),
  23586. name: "Side",
  23587. image: {
  23588. source: "./media/characters/sheera-castellar/side.svg",
  23589. extra: 1957 / 1894
  23590. }
  23591. },
  23592. back: {
  23593. height: math.unit(8 + 4 / 12, "feet"),
  23594. weight: math.unit(350, "lb"),
  23595. name: "Back",
  23596. image: {
  23597. source: "./media/characters/sheera-castellar/back.svg",
  23598. extra: 1957 / 1894
  23599. }
  23600. },
  23601. angled: {
  23602. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23603. weight: math.unit(350, "lb"),
  23604. name: "Angled",
  23605. image: {
  23606. source: "./media/characters/sheera-castellar/angled.svg",
  23607. extra: 1807 / 1707,
  23608. bottom: 68 / 1875
  23609. }
  23610. },
  23611. genitals: {
  23612. height: math.unit(2.2, "feet"),
  23613. name: "Genitals",
  23614. image: {
  23615. source: "./media/characters/sheera-castellar/genitals.svg"
  23616. }
  23617. },
  23618. taur: {
  23619. height: math.unit(10 + 6/12, "feet"),
  23620. name: "Taur",
  23621. image: {
  23622. source: "./media/characters/sheera-castellar/taur.svg",
  23623. extra: 2017/1909,
  23624. bottom: 185/2202
  23625. }
  23626. },
  23627. },
  23628. [
  23629. {
  23630. name: "Normal",
  23631. height: math.unit(8 + 4 / 12, "feet")
  23632. },
  23633. {
  23634. name: "Macro",
  23635. height: math.unit(150, "feet"),
  23636. default: true
  23637. },
  23638. {
  23639. name: "Macro+",
  23640. height: math.unit(800, "feet")
  23641. },
  23642. ]
  23643. ))
  23644. characterMakers.push(() => makeCharacter(
  23645. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23646. {
  23647. front: {
  23648. height: math.unit(6, "feet"),
  23649. weight: math.unit(150, "lb"),
  23650. name: "Front",
  23651. image: {
  23652. source: "./media/characters/jaipur/front.svg",
  23653. extra: 3860 / 3731,
  23654. bottom: 287 / 4140
  23655. }
  23656. },
  23657. back: {
  23658. height: math.unit(6, "feet"),
  23659. weight: math.unit(150, "lb"),
  23660. name: "Back",
  23661. image: {
  23662. source: "./media/characters/jaipur/back.svg",
  23663. extra: 4060 / 3930,
  23664. bottom: 151 / 4200
  23665. }
  23666. },
  23667. },
  23668. [
  23669. {
  23670. name: "Normal",
  23671. height: math.unit(1.85, "meters"),
  23672. default: true
  23673. },
  23674. {
  23675. name: "Macro",
  23676. height: math.unit(150, "meters")
  23677. },
  23678. {
  23679. name: "Macro+",
  23680. height: math.unit(0.5, "miles")
  23681. },
  23682. {
  23683. name: "Macro++",
  23684. height: math.unit(2.5, "miles")
  23685. },
  23686. {
  23687. name: "Macro+++",
  23688. height: math.unit(12, "miles")
  23689. },
  23690. {
  23691. name: "Macro++++",
  23692. height: math.unit(120, "miles")
  23693. },
  23694. {
  23695. name: "Macro+++++",
  23696. height: math.unit(1200, "miles")
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23702. {
  23703. front: {
  23704. height: math.unit(6, "feet"),
  23705. weight: math.unit(150, "lb"),
  23706. name: "Front",
  23707. image: {
  23708. source: "./media/characters/sheila-wolf/front.svg",
  23709. extra: 1931 / 1808,
  23710. bottom: 29.5 / 1960
  23711. }
  23712. },
  23713. dick: {
  23714. height: math.unit(1.464, "feet"),
  23715. name: "Dick",
  23716. image: {
  23717. source: "./media/characters/sheila-wolf/dick.svg"
  23718. }
  23719. },
  23720. muzzle: {
  23721. height: math.unit(0.513, "feet"),
  23722. name: "Muzzle",
  23723. image: {
  23724. source: "./media/characters/sheila-wolf/muzzle.svg"
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Macro",
  23731. height: math.unit(70, "feet"),
  23732. default: true
  23733. },
  23734. ]
  23735. ))
  23736. characterMakers.push(() => makeCharacter(
  23737. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23738. {
  23739. front: {
  23740. height: math.unit(32, "meters"),
  23741. weight: math.unit(300000, "kg"),
  23742. name: "Front",
  23743. image: {
  23744. source: "./media/characters/almor/front.svg",
  23745. extra: 1408 / 1322,
  23746. bottom: 94.6 / 1506.5
  23747. }
  23748. },
  23749. },
  23750. [
  23751. {
  23752. name: "Macro",
  23753. height: math.unit(32, "meters"),
  23754. default: true
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23760. {
  23761. front: {
  23762. height: math.unit(7, "feet"),
  23763. weight: math.unit(200, "lb"),
  23764. name: "Front",
  23765. image: {
  23766. source: "./media/characters/silver/front.svg",
  23767. extra: 472.1 / 450.5,
  23768. bottom: 26.5 / 499.424
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "Normal",
  23775. height: math.unit(7, "feet"),
  23776. default: true
  23777. },
  23778. {
  23779. name: "Macro",
  23780. height: math.unit(800, "feet")
  23781. },
  23782. {
  23783. name: "Megamacro",
  23784. height: math.unit(250, "miles")
  23785. },
  23786. ]
  23787. ))
  23788. characterMakers.push(() => makeCharacter(
  23789. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23790. {
  23791. front: {
  23792. height: math.unit(6, "feet"),
  23793. weight: math.unit(150, "lb"),
  23794. name: "Front",
  23795. image: {
  23796. source: "./media/characters/pliskin/front.svg",
  23797. extra: 1469 / 1359,
  23798. bottom: 70 / 1540
  23799. }
  23800. },
  23801. },
  23802. [
  23803. {
  23804. name: "Micro",
  23805. height: math.unit(3, "inches")
  23806. },
  23807. {
  23808. name: "Normal",
  23809. height: math.unit(5 + 11 / 12, "feet"),
  23810. default: true
  23811. },
  23812. {
  23813. name: "Macro",
  23814. height: math.unit(120, "feet")
  23815. },
  23816. ]
  23817. ))
  23818. characterMakers.push(() => makeCharacter(
  23819. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23820. {
  23821. front: {
  23822. height: math.unit(6, "feet"),
  23823. weight: math.unit(150, "lb"),
  23824. name: "Front",
  23825. image: {
  23826. source: "./media/characters/sammy/front.svg",
  23827. extra: 1193 / 1089,
  23828. bottom: 30.5 / 1226
  23829. }
  23830. },
  23831. },
  23832. [
  23833. {
  23834. name: "Macro",
  23835. height: math.unit(1700, "feet"),
  23836. default: true
  23837. },
  23838. {
  23839. name: "Examacro",
  23840. height: math.unit(2.5e9, "lightyears")
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23846. {
  23847. front: {
  23848. height: math.unit(21, "meters"),
  23849. weight: math.unit(12, "tonnes"),
  23850. name: "Front",
  23851. image: {
  23852. source: "./media/characters/kuru/front.svg",
  23853. extra: 4301 / 3785,
  23854. bottom: 371.3 / 4691
  23855. }
  23856. },
  23857. },
  23858. [
  23859. {
  23860. name: "Macro",
  23861. height: math.unit(21, "meters"),
  23862. default: true
  23863. },
  23864. ]
  23865. ))
  23866. characterMakers.push(() => makeCharacter(
  23867. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23868. {
  23869. front: {
  23870. height: math.unit(23, "meters"),
  23871. weight: math.unit(12.2, "tonnes"),
  23872. name: "Front",
  23873. image: {
  23874. source: "./media/characters/rakka/front.svg",
  23875. extra: 4670 / 4169,
  23876. bottom: 301 / 4968.7
  23877. }
  23878. },
  23879. },
  23880. [
  23881. {
  23882. name: "Macro",
  23883. height: math.unit(23, "meters"),
  23884. default: true
  23885. },
  23886. ]
  23887. ))
  23888. characterMakers.push(() => makeCharacter(
  23889. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23890. {
  23891. front: {
  23892. height: math.unit(6, "feet"),
  23893. weight: math.unit(150, "lb"),
  23894. name: "Front",
  23895. image: {
  23896. source: "./media/characters/rhys-feline/front.svg",
  23897. extra: 2488 / 2308,
  23898. bottom: 35.67 / 2519.19
  23899. }
  23900. },
  23901. },
  23902. [
  23903. {
  23904. name: "Really Small",
  23905. height: math.unit(1, "nm")
  23906. },
  23907. {
  23908. name: "Micro",
  23909. height: math.unit(4, "inches")
  23910. },
  23911. {
  23912. name: "Normal",
  23913. height: math.unit(4 + 10 / 12, "feet"),
  23914. default: true
  23915. },
  23916. {
  23917. name: "Macro",
  23918. height: math.unit(100, "feet")
  23919. },
  23920. {
  23921. name: "Megamacto",
  23922. height: math.unit(50, "miles")
  23923. },
  23924. ]
  23925. ))
  23926. characterMakers.push(() => makeCharacter(
  23927. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23928. {
  23929. side: {
  23930. height: math.unit(30, "feet"),
  23931. weight: math.unit(35000, "kg"),
  23932. name: "Side",
  23933. image: {
  23934. source: "./media/characters/alydar/side.svg",
  23935. extra: 234 / 222,
  23936. bottom: 6.5 / 241
  23937. }
  23938. },
  23939. front: {
  23940. height: math.unit(30, "feet"),
  23941. weight: math.unit(35000, "kg"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/alydar/front.svg",
  23945. extra: 223.37 / 210.2,
  23946. bottom: 22.3 / 246.76
  23947. }
  23948. },
  23949. top: {
  23950. height: math.unit(64.54, "feet"),
  23951. weight: math.unit(35000, "kg"),
  23952. name: "Top",
  23953. image: {
  23954. source: "./media/characters/alydar/top.svg"
  23955. }
  23956. },
  23957. anthro: {
  23958. height: math.unit(30, "feet"),
  23959. weight: math.unit(9000, "kg"),
  23960. name: "Anthro",
  23961. image: {
  23962. source: "./media/characters/alydar/anthro.svg",
  23963. extra: 432 / 421,
  23964. bottom: 7.18 / 440
  23965. }
  23966. },
  23967. maw: {
  23968. height: math.unit(11.693, "feet"),
  23969. name: "Maw",
  23970. image: {
  23971. source: "./media/characters/alydar/maw.svg"
  23972. }
  23973. },
  23974. head: {
  23975. height: math.unit(11.693, "feet"),
  23976. name: "Head",
  23977. image: {
  23978. source: "./media/characters/alydar/head.svg"
  23979. }
  23980. },
  23981. headAlt: {
  23982. height: math.unit(12.861, "feet"),
  23983. name: "Head (Alt)",
  23984. image: {
  23985. source: "./media/characters/alydar/head-alt.svg"
  23986. }
  23987. },
  23988. wing: {
  23989. height: math.unit(20.712, "feet"),
  23990. name: "Wing",
  23991. image: {
  23992. source: "./media/characters/alydar/wing.svg"
  23993. }
  23994. },
  23995. wingFeather: {
  23996. height: math.unit(9.662, "feet"),
  23997. name: "Wing Feather",
  23998. image: {
  23999. source: "./media/characters/alydar/wing-feather.svg"
  24000. }
  24001. },
  24002. countourFeather: {
  24003. height: math.unit(4.154, "feet"),
  24004. name: "Contour Feather",
  24005. image: {
  24006. source: "./media/characters/alydar/contour-feather.svg"
  24007. }
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Diplomatic",
  24013. height: math.unit(13, "feet"),
  24014. default: true
  24015. },
  24016. {
  24017. name: "Small",
  24018. height: math.unit(30, "feet")
  24019. },
  24020. {
  24021. name: "Normal",
  24022. height: math.unit(95, "feet"),
  24023. default: true
  24024. },
  24025. {
  24026. name: "Large",
  24027. height: math.unit(285, "feet")
  24028. },
  24029. {
  24030. name: "Incomprehensible",
  24031. height: math.unit(450, "megameters")
  24032. },
  24033. ]
  24034. ))
  24035. characterMakers.push(() => makeCharacter(
  24036. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24037. {
  24038. side: {
  24039. height: math.unit(11, "feet"),
  24040. weight: math.unit(1750, "kg"),
  24041. name: "Side",
  24042. image: {
  24043. source: "./media/characters/selicia/side.svg",
  24044. extra: 440 / 396,
  24045. bottom: 24.8 / 465.979
  24046. }
  24047. },
  24048. maw: {
  24049. height: math.unit(4.665, "feet"),
  24050. name: "Maw",
  24051. image: {
  24052. source: "./media/characters/selicia/maw.svg"
  24053. }
  24054. },
  24055. },
  24056. [
  24057. {
  24058. name: "Normal",
  24059. height: math.unit(11, "feet"),
  24060. default: true
  24061. },
  24062. ]
  24063. ))
  24064. characterMakers.push(() => makeCharacter(
  24065. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24066. {
  24067. side: {
  24068. height: math.unit(2 + 6 / 12, "feet"),
  24069. weight: math.unit(30, "lb"),
  24070. name: "Side",
  24071. image: {
  24072. source: "./media/characters/layla/side.svg",
  24073. extra: 244 / 188,
  24074. bottom: 18.2 / 262.1
  24075. }
  24076. },
  24077. back: {
  24078. height: math.unit(2 + 6 / 12, "feet"),
  24079. weight: math.unit(30, "lb"),
  24080. name: "Back",
  24081. image: {
  24082. source: "./media/characters/layla/back.svg",
  24083. extra: 308 / 241.5,
  24084. bottom: 8.9 / 316.8
  24085. }
  24086. },
  24087. cumming: {
  24088. height: math.unit(2 + 6 / 12, "feet"),
  24089. weight: math.unit(30, "lb"),
  24090. name: "Cumming",
  24091. image: {
  24092. source: "./media/characters/layla/cumming.svg",
  24093. extra: 342 / 279,
  24094. bottom: 595 / 938
  24095. }
  24096. },
  24097. dickFlaccid: {
  24098. height: math.unit(2.595, "feet"),
  24099. name: "Flaccid Genitals",
  24100. image: {
  24101. source: "./media/characters/layla/dick-flaccid.svg"
  24102. }
  24103. },
  24104. dickErect: {
  24105. height: math.unit(2.359, "feet"),
  24106. name: "Erect Genitals",
  24107. image: {
  24108. source: "./media/characters/layla/dick-erect.svg"
  24109. }
  24110. },
  24111. dragon: {
  24112. height: math.unit(40, "feet"),
  24113. name: "Dragon",
  24114. image: {
  24115. source: "./media/characters/layla/dragon.svg",
  24116. extra: 610/535,
  24117. bottom: 367/977
  24118. }
  24119. },
  24120. taur: {
  24121. height: math.unit(30, "feet"),
  24122. name: "Taur",
  24123. image: {
  24124. source: "./media/characters/layla/taur.svg",
  24125. extra: 1268/1199,
  24126. bottom: 112/1380
  24127. }
  24128. },
  24129. },
  24130. [
  24131. {
  24132. name: "Micro",
  24133. height: math.unit(1, "inch")
  24134. },
  24135. {
  24136. name: "Small",
  24137. height: math.unit(1, "foot")
  24138. },
  24139. {
  24140. name: "Normal",
  24141. height: math.unit(2 + 6 / 12, "feet"),
  24142. default: true
  24143. },
  24144. {
  24145. name: "Macro",
  24146. height: math.unit(200, "feet")
  24147. },
  24148. {
  24149. name: "Megamacro",
  24150. height: math.unit(1000, "miles")
  24151. },
  24152. {
  24153. name: "Planetary",
  24154. height: math.unit(8000, "miles")
  24155. },
  24156. {
  24157. name: "True Layla",
  24158. height: math.unit(200000 * 7, "multiverses")
  24159. },
  24160. ]
  24161. ))
  24162. characterMakers.push(() => makeCharacter(
  24163. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24164. {
  24165. back: {
  24166. height: math.unit(10.5, "feet"),
  24167. weight: math.unit(800, "lb"),
  24168. name: "Back",
  24169. image: {
  24170. source: "./media/characters/knox/back.svg",
  24171. extra: 1486 / 1089,
  24172. bottom: 107 / 1601.4
  24173. }
  24174. },
  24175. side: {
  24176. height: math.unit(10.5, "feet"),
  24177. weight: math.unit(800, "lb"),
  24178. name: "Side",
  24179. image: {
  24180. source: "./media/characters/knox/side.svg",
  24181. extra: 244 / 218,
  24182. bottom: 14 / 260
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Compact",
  24189. height: math.unit(10.5, "feet"),
  24190. default: true
  24191. },
  24192. {
  24193. name: "Dynamax",
  24194. height: math.unit(210, "feet")
  24195. },
  24196. {
  24197. name: "Full Macro",
  24198. height: math.unit(850, "feet")
  24199. },
  24200. ]
  24201. ))
  24202. characterMakers.push(() => makeCharacter(
  24203. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24204. {
  24205. front: {
  24206. height: math.unit(28, "feet"),
  24207. weight: math.unit(10500, "lb"),
  24208. name: "Front",
  24209. image: {
  24210. source: "./media/characters/kayda/front.svg",
  24211. extra: 1536 / 1428,
  24212. bottom: 68.7 / 1603
  24213. }
  24214. },
  24215. back: {
  24216. height: math.unit(28, "feet"),
  24217. weight: math.unit(10500, "lb"),
  24218. name: "Back",
  24219. image: {
  24220. source: "./media/characters/kayda/back.svg",
  24221. extra: 1557 / 1464,
  24222. bottom: 39.5 / 1597.49
  24223. }
  24224. },
  24225. dick: {
  24226. height: math.unit(3.858, "feet"),
  24227. name: "Dick",
  24228. image: {
  24229. source: "./media/characters/kayda/dick.svg"
  24230. }
  24231. },
  24232. },
  24233. [
  24234. {
  24235. name: "Macro",
  24236. height: math.unit(28, "feet"),
  24237. default: true
  24238. },
  24239. ]
  24240. ))
  24241. characterMakers.push(() => makeCharacter(
  24242. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24243. {
  24244. front: {
  24245. height: math.unit(10 + 11 / 12, "feet"),
  24246. weight: math.unit(1400, "lb"),
  24247. name: "Front",
  24248. image: {
  24249. source: "./media/characters/brian/front.svg",
  24250. extra: 737 / 692,
  24251. bottom: 55.4 / 785
  24252. }
  24253. },
  24254. },
  24255. [
  24256. {
  24257. name: "Normal",
  24258. height: math.unit(10 + 11 / 12, "feet"),
  24259. default: true
  24260. },
  24261. ]
  24262. ))
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24265. {
  24266. front: {
  24267. height: math.unit(5 + 8 / 12, "feet"),
  24268. weight: math.unit(140, "lb"),
  24269. name: "Front",
  24270. image: {
  24271. source: "./media/characters/khemri/front.svg",
  24272. extra: 4780 / 4059,
  24273. bottom: 80.1 / 4859.25
  24274. }
  24275. },
  24276. },
  24277. [
  24278. {
  24279. name: "Micro",
  24280. height: math.unit(6, "inches")
  24281. },
  24282. {
  24283. name: "Normal",
  24284. height: math.unit(5 + 8 / 12, "feet"),
  24285. default: true
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24291. {
  24292. front: {
  24293. height: math.unit(13, "feet"),
  24294. weight: math.unit(1700, "lb"),
  24295. name: "Front",
  24296. image: {
  24297. source: "./media/characters/felix-braveheart/front.svg",
  24298. extra: 1222 / 1157,
  24299. bottom: 53.2 / 1280
  24300. }
  24301. },
  24302. back: {
  24303. height: math.unit(13, "feet"),
  24304. weight: math.unit(1700, "lb"),
  24305. name: "Back",
  24306. image: {
  24307. source: "./media/characters/felix-braveheart/back.svg",
  24308. extra: 1277 / 1203,
  24309. bottom: 50.2 / 1327
  24310. }
  24311. },
  24312. feral: {
  24313. height: math.unit(6, "feet"),
  24314. weight: math.unit(400, "lb"),
  24315. name: "Feral",
  24316. image: {
  24317. source: "./media/characters/felix-braveheart/feral.svg",
  24318. extra: 682 / 625,
  24319. bottom: 6.9 / 688
  24320. }
  24321. },
  24322. },
  24323. [
  24324. {
  24325. name: "Normal",
  24326. height: math.unit(13, "feet"),
  24327. default: true
  24328. },
  24329. ]
  24330. ))
  24331. characterMakers.push(() => makeCharacter(
  24332. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24333. {
  24334. side: {
  24335. height: math.unit(5 + 11 / 12, "feet"),
  24336. weight: math.unit(1400, "lb"),
  24337. name: "Side",
  24338. image: {
  24339. source: "./media/characters/shadow-blade/side.svg",
  24340. extra: 1726 / 1267,
  24341. bottom: 58.4 / 1785
  24342. }
  24343. },
  24344. },
  24345. [
  24346. {
  24347. name: "Normal",
  24348. height: math.unit(5 + 11 / 12, "feet"),
  24349. default: true
  24350. },
  24351. ]
  24352. ))
  24353. characterMakers.push(() => makeCharacter(
  24354. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24355. {
  24356. front: {
  24357. height: math.unit(1 + 6 / 12, "feet"),
  24358. weight: math.unit(25, "lb"),
  24359. name: "Front",
  24360. image: {
  24361. source: "./media/characters/karla-halldor/front.svg",
  24362. extra: 1459 / 1383,
  24363. bottom: 12 / 1472
  24364. }
  24365. },
  24366. },
  24367. [
  24368. {
  24369. name: "Normal",
  24370. height: math.unit(1 + 6 / 12, "feet"),
  24371. default: true
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24377. {
  24378. front: {
  24379. height: math.unit(6 + 2 / 12, "feet"),
  24380. weight: math.unit(160, "lb"),
  24381. name: "Front",
  24382. image: {
  24383. source: "./media/characters/ariam/front.svg",
  24384. extra: 1073/976,
  24385. bottom: 52/1125
  24386. }
  24387. },
  24388. back: {
  24389. height: math.unit(6 + 2/12, "feet"),
  24390. weight: math.unit(160, "lb"),
  24391. name: "Back",
  24392. image: {
  24393. source: "./media/characters/ariam/back.svg",
  24394. extra: 1103/1023,
  24395. bottom: 9/1112
  24396. }
  24397. },
  24398. dressed: {
  24399. height: math.unit(6 + 2/12, "feet"),
  24400. weight: math.unit(160, "lb"),
  24401. name: "Dressed",
  24402. image: {
  24403. source: "./media/characters/ariam/dressed.svg",
  24404. extra: 1099/1009,
  24405. bottom: 25/1124
  24406. }
  24407. },
  24408. squatting: {
  24409. height: math.unit(4.1, "feet"),
  24410. weight: math.unit(160, "lb"),
  24411. name: "Squatting",
  24412. image: {
  24413. source: "./media/characters/ariam/squatting.svg",
  24414. extra: 2617 / 2112,
  24415. bottom: 61.2 / 2681,
  24416. }
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Normal",
  24422. height: math.unit(6 + 2 / 12, "feet"),
  24423. default: true
  24424. },
  24425. {
  24426. name: "Normal+",
  24427. height: math.unit(4, "meters")
  24428. },
  24429. {
  24430. name: "Macro",
  24431. height: math.unit(50, "meters")
  24432. },
  24433. {
  24434. name: "Macro+",
  24435. height: math.unit(100, "meters")
  24436. },
  24437. {
  24438. name: "Megamacro",
  24439. height: math.unit(20, "km")
  24440. },
  24441. {
  24442. name: "Caretaker",
  24443. height: math.unit(444, "megameters")
  24444. },
  24445. ]
  24446. ))
  24447. characterMakers.push(() => makeCharacter(
  24448. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24449. {
  24450. front: {
  24451. height: math.unit(1.67, "meters"),
  24452. weight: math.unit(140, "lb"),
  24453. name: "Front",
  24454. image: {
  24455. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24456. extra: 438 / 410,
  24457. bottom: 0.75 / 439
  24458. }
  24459. },
  24460. },
  24461. [
  24462. {
  24463. name: "Shrunken",
  24464. height: math.unit(7.6, "cm")
  24465. },
  24466. {
  24467. name: "Human Scale",
  24468. height: math.unit(1.67, "meters")
  24469. },
  24470. {
  24471. name: "Wolxi Scale",
  24472. height: math.unit(36.7, "meters"),
  24473. default: true
  24474. },
  24475. ]
  24476. ))
  24477. characterMakers.push(() => makeCharacter(
  24478. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24479. {
  24480. front: {
  24481. height: math.unit(1.73, "meters"),
  24482. weight: math.unit(240, "lb"),
  24483. name: "Front",
  24484. image: {
  24485. source: "./media/characters/izue-two-mothers/front.svg",
  24486. extra: 469 / 437,
  24487. bottom: 1.24 / 470.6
  24488. }
  24489. },
  24490. },
  24491. [
  24492. {
  24493. name: "Shrunken",
  24494. height: math.unit(7.86, "cm")
  24495. },
  24496. {
  24497. name: "Human Scale",
  24498. height: math.unit(1.73, "meters")
  24499. },
  24500. {
  24501. name: "Wolxi Scale",
  24502. height: math.unit(38, "meters"),
  24503. default: true
  24504. },
  24505. ]
  24506. ))
  24507. characterMakers.push(() => makeCharacter(
  24508. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24509. {
  24510. front: {
  24511. height: math.unit(1.55, "meters"),
  24512. weight: math.unit(120, "lb"),
  24513. name: "Front",
  24514. image: {
  24515. source: "./media/characters/teeku-love-shack/front.svg",
  24516. extra: 387 / 362,
  24517. bottom: 1.51 / 388
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Shrunken",
  24524. height: math.unit(7, "cm")
  24525. },
  24526. {
  24527. name: "Human Scale",
  24528. height: math.unit(1.55, "meters")
  24529. },
  24530. {
  24531. name: "Wolxi Scale",
  24532. height: math.unit(34.1, "meters"),
  24533. default: true
  24534. },
  24535. ]
  24536. ))
  24537. characterMakers.push(() => makeCharacter(
  24538. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24539. {
  24540. front: {
  24541. height: math.unit(1.83, "meters"),
  24542. weight: math.unit(135, "lb"),
  24543. name: "Front",
  24544. image: {
  24545. source: "./media/characters/dejma-the-red/front.svg",
  24546. extra: 480 / 458,
  24547. bottom: 1.8 / 482
  24548. }
  24549. },
  24550. },
  24551. [
  24552. {
  24553. name: "Shrunken",
  24554. height: math.unit(8.3, "cm")
  24555. },
  24556. {
  24557. name: "Human Scale",
  24558. height: math.unit(1.83, "meters")
  24559. },
  24560. {
  24561. name: "Wolxi Scale",
  24562. height: math.unit(40, "meters"),
  24563. default: true
  24564. },
  24565. ]
  24566. ))
  24567. characterMakers.push(() => makeCharacter(
  24568. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24569. {
  24570. front: {
  24571. height: math.unit(1.78, "meters"),
  24572. weight: math.unit(65, "kg"),
  24573. name: "Front",
  24574. image: {
  24575. source: "./media/characters/aki/front.svg",
  24576. extra: 452 / 415
  24577. }
  24578. },
  24579. frontNsfw: {
  24580. height: math.unit(1.78, "meters"),
  24581. weight: math.unit(65, "kg"),
  24582. name: "Front (NSFW)",
  24583. image: {
  24584. source: "./media/characters/aki/front-nsfw.svg",
  24585. extra: 452 / 415
  24586. }
  24587. },
  24588. back: {
  24589. height: math.unit(1.78, "meters"),
  24590. weight: math.unit(65, "kg"),
  24591. name: "Back",
  24592. image: {
  24593. source: "./media/characters/aki/back.svg",
  24594. extra: 452 / 415
  24595. }
  24596. },
  24597. rump: {
  24598. height: math.unit(2.05, "feet"),
  24599. name: "Rump",
  24600. image: {
  24601. source: "./media/characters/aki/rump.svg"
  24602. }
  24603. },
  24604. dick: {
  24605. height: math.unit(0.95, "feet"),
  24606. name: "Dick",
  24607. image: {
  24608. source: "./media/characters/aki/dick.svg"
  24609. }
  24610. },
  24611. },
  24612. [
  24613. {
  24614. name: "Micro",
  24615. height: math.unit(15, "cm")
  24616. },
  24617. {
  24618. name: "Normal",
  24619. height: math.unit(178, "cm"),
  24620. default: true
  24621. },
  24622. {
  24623. name: "Macro",
  24624. height: math.unit(214, "m")
  24625. },
  24626. {
  24627. name: "Macro+",
  24628. height: math.unit(534, "m")
  24629. },
  24630. ]
  24631. ))
  24632. characterMakers.push(() => makeCharacter(
  24633. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24634. {
  24635. front: {
  24636. height: math.unit(5 + 5 / 12, "feet"),
  24637. weight: math.unit(120, "lb"),
  24638. name: "Front",
  24639. image: {
  24640. source: "./media/characters/ari/front.svg",
  24641. extra: 714.5 / 682,
  24642. bottom: 8 / 722.5
  24643. }
  24644. },
  24645. },
  24646. [
  24647. {
  24648. name: "Normal",
  24649. height: math.unit(5 + 5 / 12, "feet")
  24650. },
  24651. {
  24652. name: "Macro",
  24653. height: math.unit(100, "feet"),
  24654. default: true
  24655. },
  24656. {
  24657. name: "Megamacro",
  24658. height: math.unit(100, "miles")
  24659. },
  24660. {
  24661. name: "Gigamacro",
  24662. height: math.unit(80000, "miles")
  24663. },
  24664. ]
  24665. ))
  24666. characterMakers.push(() => makeCharacter(
  24667. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24668. {
  24669. side: {
  24670. height: math.unit(9, "feet"),
  24671. weight: math.unit(400, "kg"),
  24672. name: "Side",
  24673. image: {
  24674. source: "./media/characters/bolt/side.svg",
  24675. extra: 1126 / 896,
  24676. bottom: 60 / 1187.3,
  24677. }
  24678. },
  24679. },
  24680. [
  24681. {
  24682. name: "Micro",
  24683. height: math.unit(5, "inches")
  24684. },
  24685. {
  24686. name: "Normal",
  24687. height: math.unit(9, "feet"),
  24688. default: true
  24689. },
  24690. {
  24691. name: "Macro",
  24692. height: math.unit(700, "feet")
  24693. },
  24694. {
  24695. name: "Max Size",
  24696. height: math.unit(1.52e22, "yottameters")
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24702. {
  24703. front: {
  24704. height: math.unit(4.53, "meters"),
  24705. weight: math.unit(3, "tons"),
  24706. name: "Front",
  24707. image: {
  24708. source: "./media/characters/draekon-sylviar/front.svg",
  24709. extra: 1228 / 1068,
  24710. bottom: 41 / 1270
  24711. }
  24712. },
  24713. tail: {
  24714. height: math.unit(1.772, "meter"),
  24715. name: "Tail",
  24716. image: {
  24717. source: "./media/characters/draekon-sylviar/tail.svg"
  24718. }
  24719. },
  24720. head: {
  24721. height: math.unit(1.331, "meter"),
  24722. name: "Head",
  24723. image: {
  24724. source: "./media/characters/draekon-sylviar/head.svg"
  24725. }
  24726. },
  24727. hand: {
  24728. height: math.unit(0.564, "meter"),
  24729. name: "Hand",
  24730. image: {
  24731. source: "./media/characters/draekon-sylviar/hand.svg"
  24732. }
  24733. },
  24734. foot: {
  24735. height: math.unit(0.621, "meter"),
  24736. name: "Foot",
  24737. image: {
  24738. source: "./media/characters/draekon-sylviar/foot.svg",
  24739. bottom: 32 / 324
  24740. }
  24741. },
  24742. dick: {
  24743. height: math.unit(61, "cm"),
  24744. name: "Dick",
  24745. image: {
  24746. source: "./media/characters/draekon-sylviar/dick.svg"
  24747. }
  24748. },
  24749. dickseparated: {
  24750. height: math.unit(61, "cm"),
  24751. name: "Dick-separated",
  24752. image: {
  24753. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24754. }
  24755. },
  24756. },
  24757. [
  24758. {
  24759. name: "Small",
  24760. height: math.unit(4.53 / 2, "meters"),
  24761. default: true
  24762. },
  24763. {
  24764. name: "Normal",
  24765. height: math.unit(4.53, "meters"),
  24766. default: true
  24767. },
  24768. {
  24769. name: "Large",
  24770. height: math.unit(4.53 * 2, "meters"),
  24771. },
  24772. ]
  24773. ))
  24774. characterMakers.push(() => makeCharacter(
  24775. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24776. {
  24777. front: {
  24778. height: math.unit(6 + 2 / 12, "feet"),
  24779. weight: math.unit(180, "lb"),
  24780. name: "Front",
  24781. image: {
  24782. source: "./media/characters/brawler/front.svg",
  24783. extra: 3301 / 3027,
  24784. bottom: 138 / 3439
  24785. }
  24786. },
  24787. },
  24788. [
  24789. {
  24790. name: "Normal",
  24791. height: math.unit(6 + 2 / 12, "feet"),
  24792. default: true
  24793. },
  24794. ]
  24795. ))
  24796. characterMakers.push(() => makeCharacter(
  24797. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24798. {
  24799. front: {
  24800. height: math.unit(11, "feet"),
  24801. weight: math.unit(1000, "lb"),
  24802. name: "Front",
  24803. image: {
  24804. source: "./media/characters/alex/front.svg",
  24805. bottom: 44.5 / 620
  24806. }
  24807. },
  24808. },
  24809. [
  24810. {
  24811. name: "Micro",
  24812. height: math.unit(5, "inches")
  24813. },
  24814. {
  24815. name: "Normal",
  24816. height: math.unit(11, "feet"),
  24817. default: true
  24818. },
  24819. {
  24820. name: "Macro",
  24821. height: math.unit(9.5e9, "feet")
  24822. },
  24823. {
  24824. name: "Max Size",
  24825. height: math.unit(1.4e283, "yottameters")
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24831. {
  24832. female: {
  24833. height: math.unit(29.9, "m"),
  24834. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24835. name: "Female",
  24836. image: {
  24837. source: "./media/characters/zenari/female.svg",
  24838. extra: 3281.6 / 3217,
  24839. bottom: 72.2 / 3353
  24840. }
  24841. },
  24842. male: {
  24843. height: math.unit(27.7, "m"),
  24844. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24845. name: "Male",
  24846. image: {
  24847. source: "./media/characters/zenari/male.svg",
  24848. extra: 3008 / 2991,
  24849. bottom: 54.6 / 3069
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Macro",
  24856. height: math.unit(29.7, "meters"),
  24857. default: true
  24858. },
  24859. ]
  24860. ))
  24861. characterMakers.push(() => makeCharacter(
  24862. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24863. {
  24864. female: {
  24865. height: math.unit(23.8, "m"),
  24866. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24867. name: "Female",
  24868. image: {
  24869. source: "./media/characters/mactarian/female.svg",
  24870. extra: 2662 / 2569,
  24871. bottom: 73 / 2736
  24872. }
  24873. },
  24874. male: {
  24875. height: math.unit(23.8, "m"),
  24876. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24877. name: "Male",
  24878. image: {
  24879. source: "./media/characters/mactarian/male.svg",
  24880. extra: 2673 / 2600,
  24881. bottom: 76 / 2750
  24882. }
  24883. },
  24884. },
  24885. [
  24886. {
  24887. name: "Macro",
  24888. height: math.unit(23.8, "meters"),
  24889. default: true
  24890. },
  24891. ]
  24892. ))
  24893. characterMakers.push(() => makeCharacter(
  24894. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24895. {
  24896. female: {
  24897. height: math.unit(19.3, "m"),
  24898. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24899. name: "Female",
  24900. image: {
  24901. source: "./media/characters/umok/female.svg",
  24902. extra: 2186 / 2078,
  24903. bottom: 87 / 2277
  24904. }
  24905. },
  24906. male: {
  24907. height: math.unit(19.5, "m"),
  24908. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24909. name: "Male",
  24910. image: {
  24911. source: "./media/characters/umok/male.svg",
  24912. extra: 2233 / 2140,
  24913. bottom: 24.4 / 2258
  24914. }
  24915. },
  24916. },
  24917. [
  24918. {
  24919. name: "Macro",
  24920. height: math.unit(19.3, "meters"),
  24921. default: true
  24922. },
  24923. ]
  24924. ))
  24925. characterMakers.push(() => makeCharacter(
  24926. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24927. {
  24928. female: {
  24929. height: math.unit(26.15, "m"),
  24930. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24931. name: "Female",
  24932. image: {
  24933. source: "./media/characters/joraxian/female.svg",
  24934. extra: 2912 / 2824,
  24935. bottom: 36 / 2956
  24936. }
  24937. },
  24938. male: {
  24939. height: math.unit(25.4, "m"),
  24940. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24941. name: "Male",
  24942. image: {
  24943. source: "./media/characters/joraxian/male.svg",
  24944. extra: 2877 / 2721,
  24945. bottom: 82 / 2967
  24946. }
  24947. },
  24948. },
  24949. [
  24950. {
  24951. name: "Macro",
  24952. height: math.unit(26.15, "meters"),
  24953. default: true
  24954. },
  24955. ]
  24956. ))
  24957. characterMakers.push(() => makeCharacter(
  24958. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24959. {
  24960. female: {
  24961. height: math.unit(21.6, "m"),
  24962. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24963. name: "Female",
  24964. image: {
  24965. source: "./media/characters/sthara/female.svg",
  24966. extra: 2516 / 2347,
  24967. bottom: 21.5 / 2537
  24968. }
  24969. },
  24970. male: {
  24971. height: math.unit(24, "m"),
  24972. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24973. name: "Male",
  24974. image: {
  24975. source: "./media/characters/sthara/male.svg",
  24976. extra: 2732 / 2607,
  24977. bottom: 23 / 2732
  24978. }
  24979. },
  24980. },
  24981. [
  24982. {
  24983. name: "Macro",
  24984. height: math.unit(21.6, "meters"),
  24985. default: true
  24986. },
  24987. ]
  24988. ))
  24989. characterMakers.push(() => makeCharacter(
  24990. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24991. {
  24992. front: {
  24993. height: math.unit(6 + 4 / 12, "feet"),
  24994. weight: math.unit(175, "lb"),
  24995. name: "Front",
  24996. image: {
  24997. source: "./media/characters/luka-bryzant/front.svg",
  24998. extra: 311 / 289,
  24999. bottom: 4 / 315
  25000. }
  25001. },
  25002. back: {
  25003. height: math.unit(6 + 4 / 12, "feet"),
  25004. weight: math.unit(175, "lb"),
  25005. name: "Back",
  25006. image: {
  25007. source: "./media/characters/luka-bryzant/back.svg",
  25008. extra: 311 / 289,
  25009. bottom: 3.8 / 313.7
  25010. }
  25011. },
  25012. },
  25013. [
  25014. {
  25015. name: "Micro",
  25016. height: math.unit(10, "inches")
  25017. },
  25018. {
  25019. name: "Normal",
  25020. height: math.unit(6 + 4 / 12, "feet"),
  25021. default: true
  25022. },
  25023. {
  25024. name: "Large",
  25025. height: math.unit(12, "feet")
  25026. },
  25027. ]
  25028. ))
  25029. characterMakers.push(() => makeCharacter(
  25030. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25031. {
  25032. front: {
  25033. height: math.unit(5 + 7 / 12, "feet"),
  25034. weight: math.unit(185, "lb"),
  25035. name: "Front",
  25036. image: {
  25037. source: "./media/characters/aman-aquila/front.svg",
  25038. extra: 1013 / 976,
  25039. bottom: 45.6 / 1057
  25040. }
  25041. },
  25042. side: {
  25043. height: math.unit(5 + 7 / 12, "feet"),
  25044. weight: math.unit(185, "lb"),
  25045. name: "Side",
  25046. image: {
  25047. source: "./media/characters/aman-aquila/side.svg",
  25048. extra: 1054 / 1011,
  25049. bottom: 15 / 1070
  25050. }
  25051. },
  25052. back: {
  25053. height: math.unit(5 + 7 / 12, "feet"),
  25054. weight: math.unit(185, "lb"),
  25055. name: "Back",
  25056. image: {
  25057. source: "./media/characters/aman-aquila/back.svg",
  25058. extra: 1026 / 970,
  25059. bottom: 12 / 1039
  25060. }
  25061. },
  25062. head: {
  25063. height: math.unit(1.211, "feet"),
  25064. name: "Head",
  25065. image: {
  25066. source: "./media/characters/aman-aquila/head.svg",
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Minimicro",
  25073. height: math.unit(0.057, "inches")
  25074. },
  25075. {
  25076. name: "Micro",
  25077. height: math.unit(7, "inches")
  25078. },
  25079. {
  25080. name: "Mini",
  25081. height: math.unit(3 + 7 / 12, "feet")
  25082. },
  25083. {
  25084. name: "Normal",
  25085. height: math.unit(5 + 7 / 12, "feet"),
  25086. default: true
  25087. },
  25088. {
  25089. name: "Macro",
  25090. height: math.unit(157 + 7 / 12, "feet")
  25091. },
  25092. {
  25093. name: "Megamacro",
  25094. height: math.unit(1557 + 7 / 12, "feet")
  25095. },
  25096. {
  25097. name: "Gigamacro",
  25098. height: math.unit(15557 + 7 / 12, "feet")
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(3 + 2 / 12, "inches"),
  25107. weight: math.unit(0.3, "ounces"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/hiphae/front.svg",
  25111. extra: 1931 / 1683,
  25112. bottom: 24 / 1955
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(3 + 1 / 2, "inches"),
  25120. default: true
  25121. },
  25122. ]
  25123. ))
  25124. characterMakers.push(() => makeCharacter(
  25125. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25126. {
  25127. front: {
  25128. height: math.unit(5 + 10 / 12, "feet"),
  25129. weight: math.unit(165, "lb"),
  25130. name: "Front",
  25131. image: {
  25132. source: "./media/characters/nicky/front.svg",
  25133. extra: 3144 / 2886,
  25134. bottom: 45.6 / 3192
  25135. }
  25136. },
  25137. back: {
  25138. height: math.unit(5 + 10 / 12, "feet"),
  25139. weight: math.unit(165, "lb"),
  25140. name: "Back",
  25141. image: {
  25142. source: "./media/characters/nicky/back.svg",
  25143. extra: 3055 / 2804,
  25144. bottom: 28.4 / 3087
  25145. }
  25146. },
  25147. frontclothed: {
  25148. height: math.unit(5 + 10 / 12, "feet"),
  25149. weight: math.unit(165, "lb"),
  25150. name: "Front-clothed",
  25151. image: {
  25152. source: "./media/characters/nicky/front-clothed.svg",
  25153. extra: 3184.9 / 2926.9,
  25154. bottom: 86.5 / 3239.9
  25155. }
  25156. },
  25157. foot: {
  25158. height: math.unit(1.16, "feet"),
  25159. name: "Foot",
  25160. image: {
  25161. source: "./media/characters/nicky/foot.svg"
  25162. }
  25163. },
  25164. feet: {
  25165. height: math.unit(1.34, "feet"),
  25166. name: "Feet",
  25167. image: {
  25168. source: "./media/characters/nicky/feet.svg"
  25169. }
  25170. },
  25171. maw: {
  25172. height: math.unit(0.9, "feet"),
  25173. name: "Maw",
  25174. image: {
  25175. source: "./media/characters/nicky/maw.svg"
  25176. }
  25177. },
  25178. },
  25179. [
  25180. {
  25181. name: "Normal",
  25182. height: math.unit(5 + 10 / 12, "feet"),
  25183. default: true
  25184. },
  25185. {
  25186. name: "Macro",
  25187. height: math.unit(60, "feet")
  25188. },
  25189. {
  25190. name: "Megamacro",
  25191. height: math.unit(1, "mile")
  25192. },
  25193. ]
  25194. ))
  25195. characterMakers.push(() => makeCharacter(
  25196. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25197. {
  25198. side: {
  25199. height: math.unit(10, "feet"),
  25200. weight: math.unit(600, "lb"),
  25201. name: "Side",
  25202. image: {
  25203. source: "./media/characters/blair/side.svg",
  25204. bottom: 16.6 / 475,
  25205. extra: 458 / 431
  25206. }
  25207. },
  25208. },
  25209. [
  25210. {
  25211. name: "Micro",
  25212. height: math.unit(8, "inches")
  25213. },
  25214. {
  25215. name: "Normal",
  25216. height: math.unit(10, "feet"),
  25217. default: true
  25218. },
  25219. {
  25220. name: "Macro",
  25221. height: math.unit(180, "feet")
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25227. {
  25228. front: {
  25229. height: math.unit(5 + 4 / 12, "feet"),
  25230. weight: math.unit(125, "lb"),
  25231. name: "Front",
  25232. image: {
  25233. source: "./media/characters/fisher/front.svg",
  25234. extra: 444 / 390,
  25235. bottom: 2 / 444.8
  25236. }
  25237. },
  25238. },
  25239. [
  25240. {
  25241. name: "Micro",
  25242. height: math.unit(4, "inches")
  25243. },
  25244. {
  25245. name: "Normal",
  25246. height: math.unit(5 + 4 / 12, "feet"),
  25247. default: true
  25248. },
  25249. {
  25250. name: "Macro",
  25251. height: math.unit(100, "feet")
  25252. },
  25253. ]
  25254. ))
  25255. characterMakers.push(() => makeCharacter(
  25256. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25257. {
  25258. front: {
  25259. height: math.unit(6.71, "feet"),
  25260. weight: math.unit(200, "lb"),
  25261. capacity: math.unit(1000000, "people"),
  25262. name: "Front",
  25263. image: {
  25264. source: "./media/characters/gliss/front.svg",
  25265. extra: 2347 / 2231,
  25266. bottom: 113 / 2462
  25267. }
  25268. },
  25269. hammerspaceSize: {
  25270. height: math.unit(6.71 * 717, "feet"),
  25271. weight: math.unit(200, "lb"),
  25272. capacity: math.unit(1000000, "people"),
  25273. name: "Hammerspace Size",
  25274. image: {
  25275. source: "./media/characters/gliss/front.svg",
  25276. extra: 2347 / 2231,
  25277. bottom: 113 / 2462
  25278. }
  25279. },
  25280. },
  25281. [
  25282. {
  25283. name: "Normal",
  25284. height: math.unit(6.71, "feet"),
  25285. default: true
  25286. },
  25287. ]
  25288. ))
  25289. characterMakers.push(() => makeCharacter(
  25290. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25291. {
  25292. side: {
  25293. height: math.unit(1.44, "m"),
  25294. weight: math.unit(80, "kg"),
  25295. name: "Side",
  25296. image: {
  25297. source: "./media/characters/dune-anderson/side.svg",
  25298. bottom: 49 / 1426
  25299. }
  25300. },
  25301. },
  25302. [
  25303. {
  25304. name: "Wolf-sized",
  25305. height: math.unit(1.44, "meters")
  25306. },
  25307. {
  25308. name: "Normal",
  25309. height: math.unit(5.05, "meters"),
  25310. default: true
  25311. },
  25312. {
  25313. name: "Big",
  25314. height: math.unit(14.4, "meters")
  25315. },
  25316. {
  25317. name: "Huge",
  25318. height: math.unit(144, "meters")
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25324. {
  25325. front: {
  25326. height: math.unit(7, "feet"),
  25327. weight: math.unit(425, "lb"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/hind/front.svg",
  25331. extra: 2091 / 1860,
  25332. bottom: 129 / 2220
  25333. }
  25334. },
  25335. back: {
  25336. height: math.unit(7, "feet"),
  25337. weight: math.unit(425, "lb"),
  25338. name: "Back",
  25339. image: {
  25340. source: "./media/characters/hind/back.svg",
  25341. extra: 2091 / 1860,
  25342. bottom: 24.6 / 2309
  25343. }
  25344. },
  25345. tail: {
  25346. height: math.unit(2.8, "feet"),
  25347. name: "Tail",
  25348. image: {
  25349. source: "./media/characters/hind/tail.svg"
  25350. }
  25351. },
  25352. head: {
  25353. height: math.unit(2.55, "feet"),
  25354. name: "Head",
  25355. image: {
  25356. source: "./media/characters/hind/head.svg"
  25357. }
  25358. },
  25359. },
  25360. [
  25361. {
  25362. name: "XS",
  25363. height: math.unit(0.7, "feet")
  25364. },
  25365. {
  25366. name: "Normal",
  25367. height: math.unit(7, "feet"),
  25368. default: true
  25369. },
  25370. {
  25371. name: "XL",
  25372. height: math.unit(70, "feet")
  25373. },
  25374. ]
  25375. ))
  25376. characterMakers.push(() => makeCharacter(
  25377. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25378. {
  25379. front: {
  25380. height: math.unit(2.1, "meters"),
  25381. weight: math.unit(150, "lb"),
  25382. name: "Front",
  25383. image: {
  25384. source: "./media/characters/tharquench-sizestealer/front.svg",
  25385. extra: 1605/1470,
  25386. bottom: 36/1641
  25387. }
  25388. },
  25389. frontAlt: {
  25390. height: math.unit(2.1, "meters"),
  25391. weight: math.unit(150, "lb"),
  25392. name: "Front (Alt)",
  25393. image: {
  25394. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25395. extra: 2318 / 2063,
  25396. bottom: 93.4 / 2410
  25397. }
  25398. },
  25399. },
  25400. [
  25401. {
  25402. name: "Nano",
  25403. height: math.unit(1, "mm")
  25404. },
  25405. {
  25406. name: "Micro",
  25407. height: math.unit(1, "cm")
  25408. },
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(2.1, "meters"),
  25412. default: true
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(7 + 5 / 12, "feet"),
  25421. weight: math.unit(357, "lb"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/solex-draconov/front.svg",
  25425. extra: 1993 / 1865,
  25426. bottom: 117 / 2111
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Natural Height",
  25433. height: math.unit(7 + 5 / 12, "feet"),
  25434. default: true
  25435. },
  25436. {
  25437. name: "Macro",
  25438. height: math.unit(350, "feet")
  25439. },
  25440. {
  25441. name: "Macro+",
  25442. height: math.unit(1000, "feet")
  25443. },
  25444. {
  25445. name: "Megamacro",
  25446. height: math.unit(20, "km")
  25447. },
  25448. {
  25449. name: "Megamacro+",
  25450. height: math.unit(1000, "km")
  25451. },
  25452. {
  25453. name: "Gigamacro",
  25454. height: math.unit(2.5, "Gm")
  25455. },
  25456. {
  25457. name: "Teramacro",
  25458. height: math.unit(15, "Tm")
  25459. },
  25460. {
  25461. name: "Galactic",
  25462. height: math.unit(30, "Zm")
  25463. },
  25464. {
  25465. name: "Universal",
  25466. height: math.unit(21000, "Ym")
  25467. },
  25468. {
  25469. name: "Omniversal",
  25470. height: math.unit(9.861e50, "Ym")
  25471. },
  25472. {
  25473. name: "Existential",
  25474. height: math.unit(1e300, "meters")
  25475. },
  25476. ]
  25477. ))
  25478. characterMakers.push(() => makeCharacter(
  25479. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25480. {
  25481. side: {
  25482. height: math.unit(25, "feet"),
  25483. weight: math.unit(90000, "lb"),
  25484. name: "Side",
  25485. image: {
  25486. source: "./media/characters/mandarax/side.svg",
  25487. extra: 614 / 332,
  25488. bottom: 55 / 630
  25489. }
  25490. },
  25491. head: {
  25492. height: math.unit(11.4, "feet"),
  25493. name: "Head",
  25494. image: {
  25495. source: "./media/characters/mandarax/head.svg"
  25496. }
  25497. },
  25498. belly: {
  25499. height: math.unit(33, "feet"),
  25500. name: "Belly",
  25501. capacity: math.unit(500, "people"),
  25502. image: {
  25503. source: "./media/characters/mandarax/belly.svg"
  25504. }
  25505. },
  25506. dick: {
  25507. height: math.unit(8.46, "feet"),
  25508. name: "Dick",
  25509. image: {
  25510. source: "./media/characters/mandarax/dick.svg"
  25511. }
  25512. },
  25513. top: {
  25514. height: math.unit(28, "meters"),
  25515. name: "Top",
  25516. image: {
  25517. source: "./media/characters/mandarax/top.svg"
  25518. }
  25519. },
  25520. },
  25521. [
  25522. {
  25523. name: "Normal",
  25524. height: math.unit(25, "feet"),
  25525. default: true
  25526. },
  25527. ]
  25528. ))
  25529. characterMakers.push(() => makeCharacter(
  25530. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25531. {
  25532. front: {
  25533. height: math.unit(5, "feet"),
  25534. weight: math.unit(90, "lb"),
  25535. name: "Front",
  25536. image: {
  25537. source: "./media/characters/pixil/front.svg",
  25538. extra: 2000 / 1618,
  25539. bottom: 12.3 / 2011
  25540. }
  25541. },
  25542. },
  25543. [
  25544. {
  25545. name: "Normal",
  25546. height: math.unit(5, "feet"),
  25547. default: true
  25548. },
  25549. {
  25550. name: "Megamacro",
  25551. height: math.unit(10, "miles"),
  25552. },
  25553. ]
  25554. ))
  25555. characterMakers.push(() => makeCharacter(
  25556. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25557. {
  25558. front: {
  25559. height: math.unit(7 + 2 / 12, "feet"),
  25560. weight: math.unit(200, "lb"),
  25561. name: "Front",
  25562. image: {
  25563. source: "./media/characters/angel/front.svg",
  25564. extra: 1830 / 1737,
  25565. bottom: 22.6 / 1854,
  25566. }
  25567. },
  25568. },
  25569. [
  25570. {
  25571. name: "Normal",
  25572. height: math.unit(7 + 2 / 12, "feet"),
  25573. default: true
  25574. },
  25575. {
  25576. name: "Macro",
  25577. height: math.unit(1000, "feet")
  25578. },
  25579. {
  25580. name: "Megamacro",
  25581. height: math.unit(2, "miles")
  25582. },
  25583. {
  25584. name: "Gigamacro",
  25585. height: math.unit(20, "earths")
  25586. },
  25587. ]
  25588. ))
  25589. characterMakers.push(() => makeCharacter(
  25590. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25591. {
  25592. front: {
  25593. height: math.unit(5, "feet"),
  25594. weight: math.unit(180, "lb"),
  25595. name: "Front",
  25596. image: {
  25597. source: "./media/characters/mekana/front.svg",
  25598. extra: 1671 / 1605,
  25599. bottom: 3.5 / 1691
  25600. }
  25601. },
  25602. side: {
  25603. height: math.unit(5, "feet"),
  25604. weight: math.unit(180, "lb"),
  25605. name: "Side",
  25606. image: {
  25607. source: "./media/characters/mekana/side.svg",
  25608. extra: 1671 / 1605,
  25609. bottom: 3.5 / 1691
  25610. }
  25611. },
  25612. back: {
  25613. height: math.unit(5, "feet"),
  25614. weight: math.unit(180, "lb"),
  25615. name: "Back",
  25616. image: {
  25617. source: "./media/characters/mekana/back.svg",
  25618. extra: 1671 / 1605,
  25619. bottom: 3.5 / 1691
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(5, "feet"),
  25627. default: true
  25628. },
  25629. ]
  25630. ))
  25631. characterMakers.push(() => makeCharacter(
  25632. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25633. {
  25634. front: {
  25635. height: math.unit(4 + 6 / 12, "feet"),
  25636. weight: math.unit(80, "lb"),
  25637. name: "Front",
  25638. image: {
  25639. source: "./media/characters/pixie/front.svg",
  25640. extra: 1924 / 1825,
  25641. bottom: 22.4 / 1946
  25642. }
  25643. },
  25644. },
  25645. [
  25646. {
  25647. name: "Normal",
  25648. height: math.unit(4 + 6 / 12, "feet"),
  25649. default: true
  25650. },
  25651. {
  25652. name: "Macro",
  25653. height: math.unit(40, "feet")
  25654. },
  25655. ]
  25656. ))
  25657. characterMakers.push(() => makeCharacter(
  25658. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25659. {
  25660. front: {
  25661. height: math.unit(2.1, "meters"),
  25662. weight: math.unit(200, "lb"),
  25663. name: "Front",
  25664. image: {
  25665. source: "./media/characters/the-lascivious/front.svg",
  25666. extra: 1 / 0.893,
  25667. bottom: 3.5 / 573.7
  25668. }
  25669. },
  25670. },
  25671. [
  25672. {
  25673. name: "Human Scale",
  25674. height: math.unit(2.1, "meters")
  25675. },
  25676. {
  25677. name: "Wolxi Scale",
  25678. height: math.unit(46.2, "m"),
  25679. default: true
  25680. },
  25681. {
  25682. name: "Boinker of Buildings",
  25683. height: math.unit(10, "km")
  25684. },
  25685. {
  25686. name: "Shagger of Skyscrapers",
  25687. height: math.unit(40, "km")
  25688. },
  25689. {
  25690. name: "Banger of Boroughs",
  25691. height: math.unit(4000, "km")
  25692. },
  25693. {
  25694. name: "Screwer of States",
  25695. height: math.unit(100000, "km")
  25696. },
  25697. {
  25698. name: "Pounder of Planets",
  25699. height: math.unit(2000000, "km")
  25700. },
  25701. ]
  25702. ))
  25703. characterMakers.push(() => makeCharacter(
  25704. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25705. {
  25706. front: {
  25707. height: math.unit(6, "feet"),
  25708. weight: math.unit(150, "lb"),
  25709. name: "Front",
  25710. image: {
  25711. source: "./media/characters/aj/front.svg",
  25712. extra: 2039 / 1562,
  25713. bottom: 40 / 2079
  25714. }
  25715. },
  25716. },
  25717. [
  25718. {
  25719. name: "Normal",
  25720. height: math.unit(11 + 6 / 12, "feet"),
  25721. default: true
  25722. },
  25723. {
  25724. name: "Megamacro",
  25725. height: math.unit(60, "megameters")
  25726. },
  25727. ]
  25728. ))
  25729. characterMakers.push(() => makeCharacter(
  25730. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25731. {
  25732. side: {
  25733. height: math.unit(31 + 8 / 12, "feet"),
  25734. weight: math.unit(75000, "kg"),
  25735. name: "Side",
  25736. image: {
  25737. source: "./media/characters/koros/side.svg",
  25738. extra: 1442 / 1297,
  25739. bottom: 122.7 / 1562
  25740. }
  25741. },
  25742. dicksKingsCrown: {
  25743. height: math.unit(6, "feet"),
  25744. name: "Dicks (King's Crown)",
  25745. image: {
  25746. source: "./media/characters/koros/dicks-kings-crown.svg"
  25747. }
  25748. },
  25749. dicksTailSet: {
  25750. height: math.unit(3, "feet"),
  25751. name: "Dicks (Tail Set)",
  25752. image: {
  25753. source: "./media/characters/koros/dicks-tail-set.svg"
  25754. }
  25755. },
  25756. dickCumming: {
  25757. height: math.unit(7.98, "feet"),
  25758. name: "Dick (Cumming)",
  25759. image: {
  25760. source: "./media/characters/koros/dick-cumming.svg"
  25761. }
  25762. },
  25763. dicksBack: {
  25764. height: math.unit(5.9, "feet"),
  25765. name: "Dicks (Back)",
  25766. image: {
  25767. source: "./media/characters/koros/dicks-back.svg"
  25768. }
  25769. },
  25770. dicksFront: {
  25771. height: math.unit(3.72, "feet"),
  25772. name: "Dicks (Front)",
  25773. image: {
  25774. source: "./media/characters/koros/dicks-front.svg"
  25775. }
  25776. },
  25777. dicksPeeking: {
  25778. height: math.unit(3.0, "feet"),
  25779. name: "Dicks (Peeking)",
  25780. image: {
  25781. source: "./media/characters/koros/dicks-peeking.svg"
  25782. }
  25783. },
  25784. eye: {
  25785. height: math.unit(1.7, "feet"),
  25786. name: "Eye",
  25787. image: {
  25788. source: "./media/characters/koros/eye.svg"
  25789. }
  25790. },
  25791. headFront: {
  25792. height: math.unit(11.69, "feet"),
  25793. name: "Head (Front)",
  25794. image: {
  25795. source: "./media/characters/koros/head-front.svg"
  25796. }
  25797. },
  25798. headSide: {
  25799. height: math.unit(14, "feet"),
  25800. name: "Head (Side)",
  25801. image: {
  25802. source: "./media/characters/koros/head-side.svg"
  25803. }
  25804. },
  25805. leg: {
  25806. height: math.unit(17, "feet"),
  25807. name: "Leg",
  25808. image: {
  25809. source: "./media/characters/koros/leg.svg"
  25810. }
  25811. },
  25812. mawSide: {
  25813. height: math.unit(12.8, "feet"),
  25814. name: "Maw (Side)",
  25815. image: {
  25816. source: "./media/characters/koros/maw-side.svg"
  25817. }
  25818. },
  25819. mawSpitting: {
  25820. height: math.unit(17, "feet"),
  25821. name: "Maw (Spitting)",
  25822. image: {
  25823. source: "./media/characters/koros/maw-spitting.svg"
  25824. }
  25825. },
  25826. slit: {
  25827. height: math.unit(2.8, "feet"),
  25828. name: "Slit",
  25829. image: {
  25830. source: "./media/characters/koros/slit.svg"
  25831. }
  25832. },
  25833. stomach: {
  25834. height: math.unit(6.8, "feet"),
  25835. capacity: math.unit(20, "people"),
  25836. name: "Stomach",
  25837. image: {
  25838. source: "./media/characters/koros/stomach.svg"
  25839. }
  25840. },
  25841. wingspanBottom: {
  25842. height: math.unit(114, "feet"),
  25843. name: "Wingspan (Bottom)",
  25844. image: {
  25845. source: "./media/characters/koros/wingspan-bottom.svg"
  25846. }
  25847. },
  25848. wingspanTop: {
  25849. height: math.unit(104, "feet"),
  25850. name: "Wingspan (Top)",
  25851. image: {
  25852. source: "./media/characters/koros/wingspan-top.svg"
  25853. }
  25854. },
  25855. },
  25856. [
  25857. {
  25858. name: "Normal",
  25859. height: math.unit(31 + 8 / 12, "feet"),
  25860. default: true
  25861. },
  25862. ]
  25863. ))
  25864. characterMakers.push(() => makeCharacter(
  25865. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25866. {
  25867. front: {
  25868. height: math.unit(18 + 5 / 12, "feet"),
  25869. weight: math.unit(3750, "kg"),
  25870. name: "Front",
  25871. image: {
  25872. source: "./media/characters/vexx/front.svg",
  25873. extra: 426 / 396,
  25874. bottom: 31.5 / 458
  25875. }
  25876. },
  25877. maw: {
  25878. height: math.unit(6, "feet"),
  25879. name: "Maw",
  25880. image: {
  25881. source: "./media/characters/vexx/maw.svg"
  25882. }
  25883. },
  25884. },
  25885. [
  25886. {
  25887. name: "Normal",
  25888. height: math.unit(18 + 5 / 12, "feet"),
  25889. default: true
  25890. },
  25891. ]
  25892. ))
  25893. characterMakers.push(() => makeCharacter(
  25894. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25895. {
  25896. front: {
  25897. height: math.unit(17 + 6 / 12, "feet"),
  25898. weight: math.unit(150, "lb"),
  25899. name: "Front",
  25900. image: {
  25901. source: "./media/characters/baadra/front.svg",
  25902. extra: 3137 / 2890,
  25903. bottom: 168.4 / 3305
  25904. }
  25905. },
  25906. back: {
  25907. height: math.unit(17 + 6 / 12, "feet"),
  25908. weight: math.unit(150, "lb"),
  25909. name: "Back",
  25910. image: {
  25911. source: "./media/characters/baadra/back.svg",
  25912. extra: 3142 / 2890,
  25913. bottom: 220 / 3371
  25914. }
  25915. },
  25916. head: {
  25917. height: math.unit(5.45, "feet"),
  25918. name: "Head",
  25919. image: {
  25920. source: "./media/characters/baadra/head.svg"
  25921. }
  25922. },
  25923. headAngry: {
  25924. height: math.unit(4.95, "feet"),
  25925. name: "Head (Angry)",
  25926. image: {
  25927. source: "./media/characters/baadra/head-angry.svg"
  25928. }
  25929. },
  25930. headOpen: {
  25931. height: math.unit(6, "feet"),
  25932. name: "Head (Open)",
  25933. image: {
  25934. source: "./media/characters/baadra/head-open.svg"
  25935. }
  25936. },
  25937. },
  25938. [
  25939. {
  25940. name: "Normal",
  25941. height: math.unit(17 + 6 / 12, "feet"),
  25942. default: true
  25943. },
  25944. ]
  25945. ))
  25946. characterMakers.push(() => makeCharacter(
  25947. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25948. {
  25949. front: {
  25950. height: math.unit(7 + 3 / 12, "feet"),
  25951. weight: math.unit(180, "lb"),
  25952. name: "Front",
  25953. image: {
  25954. source: "./media/characters/juri/front.svg",
  25955. extra: 1401 / 1237,
  25956. bottom: 18.5 / 1418
  25957. }
  25958. },
  25959. side: {
  25960. height: math.unit(7 + 3 / 12, "feet"),
  25961. weight: math.unit(180, "lb"),
  25962. name: "Side",
  25963. image: {
  25964. source: "./media/characters/juri/side.svg",
  25965. extra: 1424 / 1242,
  25966. bottom: 18.5 / 1447
  25967. }
  25968. },
  25969. sitting: {
  25970. height: math.unit(6, "feet"),
  25971. weight: math.unit(180, "lb"),
  25972. name: "Sitting",
  25973. image: {
  25974. source: "./media/characters/juri/sitting.svg",
  25975. extra: 1270 / 1143,
  25976. bottom: 100 / 1343
  25977. }
  25978. },
  25979. back: {
  25980. height: math.unit(7 + 3 / 12, "feet"),
  25981. weight: math.unit(180, "lb"),
  25982. name: "Back",
  25983. image: {
  25984. source: "./media/characters/juri/back.svg",
  25985. extra: 1377 / 1240,
  25986. bottom: 23.7 / 1405
  25987. }
  25988. },
  25989. maw: {
  25990. height: math.unit(2.8, "feet"),
  25991. name: "Maw",
  25992. image: {
  25993. source: "./media/characters/juri/maw.svg"
  25994. }
  25995. },
  25996. stomach: {
  25997. height: math.unit(0.89, "feet"),
  25998. capacity: math.unit(4, "liters"),
  25999. name: "Stomach",
  26000. image: {
  26001. source: "./media/characters/juri/stomach.svg"
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(7 + 3 / 12, "feet"),
  26009. default: true
  26010. },
  26011. ]
  26012. ))
  26013. characterMakers.push(() => makeCharacter(
  26014. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26015. {
  26016. fox: {
  26017. height: math.unit(5 + 6 / 12, "feet"),
  26018. weight: math.unit(140, "lb"),
  26019. name: "Fox",
  26020. image: {
  26021. source: "./media/characters/maxene-sita/fox.svg",
  26022. extra: 146 / 138,
  26023. bottom: 2.1 / 148.19
  26024. }
  26025. },
  26026. foxLaying: {
  26027. height: math.unit(1.70, "feet"),
  26028. weight: math.unit(140, "lb"),
  26029. name: "Fox (Laying)",
  26030. image: {
  26031. source: "./media/characters/maxene-sita/fox-laying.svg",
  26032. extra: 910 / 572,
  26033. bottom: 71 / 981
  26034. }
  26035. },
  26036. kitsune: {
  26037. height: math.unit(10, "feet"),
  26038. weight: math.unit(800, "lb"),
  26039. name: "Kitsune",
  26040. image: {
  26041. source: "./media/characters/maxene-sita/kitsune.svg",
  26042. extra: 185 / 176,
  26043. bottom: 4.7 / 189.9
  26044. }
  26045. },
  26046. hellhound: {
  26047. height: math.unit(10, "feet"),
  26048. weight: math.unit(700, "lb"),
  26049. name: "Hellhound",
  26050. image: {
  26051. source: "./media/characters/maxene-sita/hellhound.svg",
  26052. extra: 1600 / 1545,
  26053. bottom: 81 / 1681
  26054. }
  26055. },
  26056. },
  26057. [
  26058. {
  26059. name: "Normal",
  26060. height: math.unit(5 + 6 / 12, "feet"),
  26061. default: true
  26062. },
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26067. {
  26068. front: {
  26069. height: math.unit(3 + 4 / 12, "feet"),
  26070. weight: math.unit(70, "lb"),
  26071. name: "Front",
  26072. image: {
  26073. source: "./media/characters/maia/front.svg",
  26074. extra: 227 / 219.5,
  26075. bottom: 40 / 267
  26076. }
  26077. },
  26078. back: {
  26079. height: math.unit(3 + 4 / 12, "feet"),
  26080. weight: math.unit(70, "lb"),
  26081. name: "Back",
  26082. image: {
  26083. source: "./media/characters/maia/back.svg",
  26084. extra: 237 / 225
  26085. }
  26086. },
  26087. },
  26088. [
  26089. {
  26090. name: "Normal",
  26091. height: math.unit(3 + 4 / 12, "feet"),
  26092. default: true
  26093. },
  26094. ]
  26095. ))
  26096. characterMakers.push(() => makeCharacter(
  26097. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26098. {
  26099. front: {
  26100. height: math.unit(5 + 10 / 12, "feet"),
  26101. weight: math.unit(197, "lb"),
  26102. name: "Front",
  26103. image: {
  26104. source: "./media/characters/jabaro/front.svg",
  26105. extra: 225 / 216,
  26106. bottom: 5.06 / 230
  26107. }
  26108. },
  26109. back: {
  26110. height: math.unit(5 + 10 / 12, "feet"),
  26111. weight: math.unit(197, "lb"),
  26112. name: "Back",
  26113. image: {
  26114. source: "./media/characters/jabaro/back.svg",
  26115. extra: 225 / 219,
  26116. bottom: 1.9 / 227
  26117. }
  26118. },
  26119. },
  26120. [
  26121. {
  26122. name: "Normal",
  26123. height: math.unit(5 + 10 / 12, "feet"),
  26124. default: true
  26125. },
  26126. ]
  26127. ))
  26128. characterMakers.push(() => makeCharacter(
  26129. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26130. {
  26131. front: {
  26132. height: math.unit(5 + 8 / 12, "feet"),
  26133. weight: math.unit(139, "lb"),
  26134. name: "Front",
  26135. image: {
  26136. source: "./media/characters/risa/front.svg",
  26137. extra: 270 / 260,
  26138. bottom: 11.2 / 282
  26139. }
  26140. },
  26141. back: {
  26142. height: math.unit(5 + 8 / 12, "feet"),
  26143. weight: math.unit(139, "lb"),
  26144. name: "Back",
  26145. image: {
  26146. source: "./media/characters/risa/back.svg",
  26147. extra: 264 / 255,
  26148. bottom: 4 / 268
  26149. }
  26150. },
  26151. },
  26152. [
  26153. {
  26154. name: "Normal",
  26155. height: math.unit(5 + 8 / 12, "feet"),
  26156. default: true
  26157. },
  26158. ]
  26159. ))
  26160. characterMakers.push(() => makeCharacter(
  26161. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26162. {
  26163. front: {
  26164. height: math.unit(2 + 11 / 12, "feet"),
  26165. weight: math.unit(30, "lb"),
  26166. name: "Front",
  26167. image: {
  26168. source: "./media/characters/weatley/front.svg",
  26169. bottom: 10.7 / 414,
  26170. extra: 403.5 / 362
  26171. }
  26172. },
  26173. back: {
  26174. height: math.unit(2 + 11 / 12, "feet"),
  26175. weight: math.unit(30, "lb"),
  26176. name: "Back",
  26177. image: {
  26178. source: "./media/characters/weatley/back.svg",
  26179. bottom: 10.7 / 414,
  26180. extra: 403.5 / 362
  26181. }
  26182. },
  26183. },
  26184. [
  26185. {
  26186. name: "Normal",
  26187. height: math.unit(2 + 11 / 12, "feet"),
  26188. default: true
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26194. {
  26195. front: {
  26196. height: math.unit(5 + 2 / 12, "feet"),
  26197. weight: math.unit(50, "kg"),
  26198. name: "Front",
  26199. image: {
  26200. source: "./media/characters/mercury-crescent/front.svg",
  26201. extra: 1088 / 1033,
  26202. bottom: 18.9 / 1109
  26203. }
  26204. },
  26205. },
  26206. [
  26207. {
  26208. name: "Normal",
  26209. height: math.unit(5 + 2 / 12, "feet"),
  26210. default: true
  26211. },
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26216. {
  26217. front: {
  26218. height: math.unit(2, "feet"),
  26219. weight: math.unit(15, "kg"),
  26220. name: "Front",
  26221. image: {
  26222. source: "./media/characters/diamond-jones/front.svg",
  26223. extra: 727/723,
  26224. bottom: 46/773
  26225. }
  26226. },
  26227. },
  26228. [
  26229. {
  26230. name: "Normal",
  26231. height: math.unit(2, "feet"),
  26232. default: true
  26233. },
  26234. ]
  26235. ))
  26236. characterMakers.push(() => makeCharacter(
  26237. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26238. {
  26239. front: {
  26240. height: math.unit(3, "feet"),
  26241. weight: math.unit(30, "kg"),
  26242. name: "Front",
  26243. image: {
  26244. source: "./media/characters/sweet-bit/front.svg",
  26245. extra: 675 / 567,
  26246. bottom: 27.7 / 703
  26247. }
  26248. },
  26249. },
  26250. [
  26251. {
  26252. name: "Normal",
  26253. height: math.unit(3, "feet"),
  26254. default: true
  26255. },
  26256. ]
  26257. ))
  26258. characterMakers.push(() => makeCharacter(
  26259. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26260. {
  26261. side: {
  26262. height: math.unit(9.178, "feet"),
  26263. weight: math.unit(500, "lb"),
  26264. name: "Side",
  26265. image: {
  26266. source: "./media/characters/umbrazen/side.svg",
  26267. extra: 1730 / 1473,
  26268. bottom: 34.6 / 1765
  26269. }
  26270. },
  26271. },
  26272. [
  26273. {
  26274. name: "Normal",
  26275. height: math.unit(9.178, "feet"),
  26276. default: true
  26277. },
  26278. ]
  26279. ))
  26280. characterMakers.push(() => makeCharacter(
  26281. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26282. {
  26283. front: {
  26284. height: math.unit(10, "feet"),
  26285. weight: math.unit(750, "lb"),
  26286. name: "Front",
  26287. image: {
  26288. source: "./media/characters/arlist/front.svg",
  26289. extra: 961 / 778,
  26290. bottom: 6.2 / 986
  26291. }
  26292. },
  26293. },
  26294. [
  26295. {
  26296. name: "Normal",
  26297. height: math.unit(10, "feet"),
  26298. default: true
  26299. },
  26300. ]
  26301. ))
  26302. characterMakers.push(() => makeCharacter(
  26303. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26304. {
  26305. front: {
  26306. height: math.unit(5 + 1 / 12, "feet"),
  26307. weight: math.unit(110, "lb"),
  26308. name: "Front",
  26309. image: {
  26310. source: "./media/characters/aradel/front.svg",
  26311. extra: 324 / 303,
  26312. bottom: 3.6 / 329.4
  26313. }
  26314. },
  26315. },
  26316. [
  26317. {
  26318. name: "Normal",
  26319. height: math.unit(5 + 1 / 12, "feet"),
  26320. default: true
  26321. },
  26322. ]
  26323. ))
  26324. characterMakers.push(() => makeCharacter(
  26325. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26326. {
  26327. front: {
  26328. height: math.unit(3 + 8 / 12, "feet"),
  26329. weight: math.unit(50, "lb"),
  26330. name: "Front",
  26331. image: {
  26332. source: "./media/characters/serryn/front.svg",
  26333. extra: 1792 / 1656,
  26334. bottom: 43.5 / 1840
  26335. }
  26336. },
  26337. },
  26338. [
  26339. {
  26340. name: "Normal",
  26341. height: math.unit(3 + 8 / 12, "feet"),
  26342. default: true
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26348. {
  26349. front: {
  26350. height: math.unit(7 + 10 / 12, "feet"),
  26351. weight: math.unit(255, "lb"),
  26352. name: "Front",
  26353. image: {
  26354. source: "./media/characters/xavier-thyme/front.svg",
  26355. extra: 3733 / 3642,
  26356. bottom: 131 / 3869
  26357. }
  26358. },
  26359. frontRaven: {
  26360. height: math.unit(7 + 10 / 12, "feet"),
  26361. weight: math.unit(255, "lb"),
  26362. name: "Front (Raven)",
  26363. image: {
  26364. source: "./media/characters/xavier-thyme/front-raven.svg",
  26365. extra: 4385 / 3642,
  26366. bottom: 131 / 4517
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(7 + 10 / 12, "feet"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(1.6, "m"),
  26383. weight: math.unit(50, "kg"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/kiki/front.svg",
  26387. extra: 4682 / 3610,
  26388. bottom: 115 / 4777
  26389. }
  26390. },
  26391. },
  26392. [
  26393. {
  26394. name: "Normal",
  26395. height: math.unit(1.6, "meters"),
  26396. default: true
  26397. },
  26398. ]
  26399. ))
  26400. characterMakers.push(() => makeCharacter(
  26401. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26402. {
  26403. front: {
  26404. height: math.unit(50, "m"),
  26405. weight: math.unit(500, "tonnes"),
  26406. name: "Front",
  26407. image: {
  26408. source: "./media/characters/ryoko/front.svg",
  26409. extra: 4632 / 3926,
  26410. bottom: 193 / 4823
  26411. }
  26412. },
  26413. },
  26414. [
  26415. {
  26416. name: "Normal",
  26417. height: math.unit(50, "meters"),
  26418. default: true
  26419. },
  26420. ]
  26421. ))
  26422. characterMakers.push(() => makeCharacter(
  26423. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26424. {
  26425. front: {
  26426. height: math.unit(30, "m"),
  26427. weight: math.unit(22, "tonnes"),
  26428. name: "Front",
  26429. image: {
  26430. source: "./media/characters/elio/front.svg",
  26431. extra: 4582 / 3720,
  26432. bottom: 236 / 4828
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Normal",
  26439. height: math.unit(30, "meters"),
  26440. default: true
  26441. },
  26442. ]
  26443. ))
  26444. characterMakers.push(() => makeCharacter(
  26445. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26446. {
  26447. front: {
  26448. height: math.unit(6 + 3 / 12, "feet"),
  26449. weight: math.unit(120, "lb"),
  26450. name: "Front",
  26451. image: {
  26452. source: "./media/characters/azura/front.svg",
  26453. extra: 1149 / 1135,
  26454. bottom: 45 / 1194
  26455. }
  26456. },
  26457. frontClothed: {
  26458. height: math.unit(6 + 3 / 12, "feet"),
  26459. weight: math.unit(120, "lb"),
  26460. name: "Front (Clothed)",
  26461. image: {
  26462. source: "./media/characters/azura/front-clothed.svg",
  26463. extra: 1149 / 1135,
  26464. bottom: 45 / 1194
  26465. }
  26466. },
  26467. },
  26468. [
  26469. {
  26470. name: "Normal",
  26471. height: math.unit(6 + 3 / 12, "feet"),
  26472. default: true
  26473. },
  26474. {
  26475. name: "Macro",
  26476. height: math.unit(20 + 6 / 12, "feet")
  26477. },
  26478. {
  26479. name: "Megamacro",
  26480. height: math.unit(12, "miles")
  26481. },
  26482. {
  26483. name: "Gigamacro",
  26484. height: math.unit(10000, "miles")
  26485. },
  26486. {
  26487. name: "Teramacro",
  26488. height: math.unit(900000, "miles")
  26489. },
  26490. ]
  26491. ))
  26492. characterMakers.push(() => makeCharacter(
  26493. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26494. {
  26495. front: {
  26496. height: math.unit(12, "feet"),
  26497. weight: math.unit(1, "ton"),
  26498. capacity: math.unit(660000, "gallons"),
  26499. name: "Front",
  26500. image: {
  26501. source: "./media/characters/zeus/front.svg",
  26502. extra: 5005 / 4717,
  26503. bottom: 363 / 5388
  26504. }
  26505. },
  26506. },
  26507. [
  26508. {
  26509. name: "Normal",
  26510. height: math.unit(12, "feet")
  26511. },
  26512. {
  26513. name: "Preferred Size",
  26514. height: math.unit(0.5, "miles"),
  26515. default: true
  26516. },
  26517. {
  26518. name: "Giga Horse",
  26519. height: math.unit(300, "miles")
  26520. },
  26521. {
  26522. name: "Riding Planets",
  26523. height: math.unit(30, "megameters")
  26524. },
  26525. {
  26526. name: "Cosmic Giant",
  26527. height: math.unit(3, "zettameters")
  26528. },
  26529. {
  26530. name: "Breeding God",
  26531. height: math.unit(9.92e22, "yottameters")
  26532. },
  26533. ]
  26534. ))
  26535. characterMakers.push(() => makeCharacter(
  26536. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26537. {
  26538. side: {
  26539. height: math.unit(9, "feet"),
  26540. weight: math.unit(1500, "kg"),
  26541. name: "Side",
  26542. image: {
  26543. source: "./media/characters/fang/side.svg",
  26544. extra: 924 / 866,
  26545. bottom: 47.5 / 972.3
  26546. }
  26547. },
  26548. },
  26549. [
  26550. {
  26551. name: "Normal",
  26552. height: math.unit(9, "feet"),
  26553. default: true
  26554. },
  26555. {
  26556. name: "Macro",
  26557. height: math.unit(75 + 6 / 12, "feet")
  26558. },
  26559. {
  26560. name: "Teramacro",
  26561. height: math.unit(50000, "miles")
  26562. },
  26563. ]
  26564. ))
  26565. characterMakers.push(() => makeCharacter(
  26566. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26567. {
  26568. front: {
  26569. height: math.unit(10, "feet"),
  26570. weight: math.unit(2, "tons"),
  26571. name: "Front",
  26572. image: {
  26573. source: "./media/characters/rekhit/front.svg",
  26574. extra: 2796 / 2590,
  26575. bottom: 225 / 3022
  26576. }
  26577. },
  26578. },
  26579. [
  26580. {
  26581. name: "Normal",
  26582. height: math.unit(10, "feet"),
  26583. default: true
  26584. },
  26585. {
  26586. name: "Macro",
  26587. height: math.unit(500, "feet")
  26588. },
  26589. ]
  26590. ))
  26591. characterMakers.push(() => makeCharacter(
  26592. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26593. {
  26594. front: {
  26595. height: math.unit(7 + 6.451 / 12, "feet"),
  26596. weight: math.unit(310, "lb"),
  26597. name: "Front",
  26598. image: {
  26599. source: "./media/characters/dahlia-verrick/front.svg",
  26600. extra: 1488 / 1365,
  26601. bottom: 6.2 / 1495
  26602. }
  26603. },
  26604. back: {
  26605. height: math.unit(7 + 6.451 / 12, "feet"),
  26606. weight: math.unit(310, "lb"),
  26607. name: "Back",
  26608. image: {
  26609. source: "./media/characters/dahlia-verrick/back.svg",
  26610. extra: 1472 / 1351,
  26611. bottom: 5.28 / 1477
  26612. }
  26613. },
  26614. frontBusiness: {
  26615. height: math.unit(7 + 6.451 / 12, "feet"),
  26616. weight: math.unit(200, "lb"),
  26617. name: "Front (Business)",
  26618. image: {
  26619. source: "./media/characters/dahlia-verrick/front-business.svg",
  26620. extra: 1478 / 1381,
  26621. bottom: 5.5 / 1484
  26622. }
  26623. },
  26624. frontCasual: {
  26625. height: math.unit(7 + 6.451 / 12, "feet"),
  26626. weight: math.unit(200, "lb"),
  26627. name: "Front (Casual)",
  26628. image: {
  26629. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26630. extra: 1478 / 1381,
  26631. bottom: 5.5 / 1484
  26632. }
  26633. },
  26634. },
  26635. [
  26636. {
  26637. name: "Travel-Sized",
  26638. height: math.unit(7.45, "inches")
  26639. },
  26640. {
  26641. name: "Normal",
  26642. height: math.unit(7 + 6.451 / 12, "feet"),
  26643. default: true
  26644. },
  26645. {
  26646. name: "Hitting the Town",
  26647. height: math.unit(37 + 8 / 12, "feet")
  26648. },
  26649. {
  26650. name: "Stomp in the Suburbs",
  26651. height: math.unit(964 + 9.728 / 12, "feet")
  26652. },
  26653. {
  26654. name: "Sit on the City",
  26655. height: math.unit(61747 + 10.592 / 12, "feet")
  26656. },
  26657. {
  26658. name: "Glomp the Globe",
  26659. height: math.unit(252919327 + 4.832 / 12, "feet")
  26660. },
  26661. ]
  26662. ))
  26663. characterMakers.push(() => makeCharacter(
  26664. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26665. {
  26666. front: {
  26667. height: math.unit(6 + 4 / 12, "feet"),
  26668. weight: math.unit(320, "lb"),
  26669. name: "Front",
  26670. image: {
  26671. source: "./media/characters/balina-mahigan/front.svg",
  26672. extra: 447 / 428,
  26673. bottom: 18 / 466
  26674. }
  26675. },
  26676. back: {
  26677. height: math.unit(6 + 4 / 12, "feet"),
  26678. weight: math.unit(320, "lb"),
  26679. name: "Back",
  26680. image: {
  26681. source: "./media/characters/balina-mahigan/back.svg",
  26682. extra: 445 / 428,
  26683. bottom: 4.07 / 448
  26684. }
  26685. },
  26686. arm: {
  26687. height: math.unit(1.88, "feet"),
  26688. name: "Arm",
  26689. image: {
  26690. source: "./media/characters/balina-mahigan/arm.svg"
  26691. }
  26692. },
  26693. backPort: {
  26694. height: math.unit(0.685, "feet"),
  26695. name: "Back Port",
  26696. image: {
  26697. source: "./media/characters/balina-mahigan/back-port.svg"
  26698. }
  26699. },
  26700. hoofpaw: {
  26701. height: math.unit(1.41, "feet"),
  26702. name: "Hoofpaw",
  26703. image: {
  26704. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26705. }
  26706. },
  26707. leftHandBack: {
  26708. height: math.unit(0.938, "feet"),
  26709. name: "Left Hand (Back)",
  26710. image: {
  26711. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26712. }
  26713. },
  26714. leftHandFront: {
  26715. height: math.unit(0.938, "feet"),
  26716. name: "Left Hand (Front)",
  26717. image: {
  26718. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26719. }
  26720. },
  26721. rightHandBack: {
  26722. height: math.unit(0.95, "feet"),
  26723. name: "Right Hand (Back)",
  26724. image: {
  26725. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26726. }
  26727. },
  26728. rightHandFront: {
  26729. height: math.unit(0.95, "feet"),
  26730. name: "Right Hand (Front)",
  26731. image: {
  26732. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26733. }
  26734. },
  26735. },
  26736. [
  26737. {
  26738. name: "Normal",
  26739. height: math.unit(6 + 4 / 12, "feet"),
  26740. default: true
  26741. },
  26742. ]
  26743. ))
  26744. characterMakers.push(() => makeCharacter(
  26745. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26746. {
  26747. front: {
  26748. height: math.unit(6, "feet"),
  26749. weight: math.unit(320, "lb"),
  26750. name: "Front",
  26751. image: {
  26752. source: "./media/characters/balina-mejeri/front.svg",
  26753. extra: 517 / 488,
  26754. bottom: 44.2 / 561
  26755. }
  26756. },
  26757. },
  26758. [
  26759. {
  26760. name: "Normal",
  26761. height: math.unit(6 + 4 / 12, "feet")
  26762. },
  26763. {
  26764. name: "Business",
  26765. height: math.unit(155, "feet"),
  26766. default: true
  26767. },
  26768. ]
  26769. ))
  26770. characterMakers.push(() => makeCharacter(
  26771. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26772. {
  26773. kneeling: {
  26774. height: math.unit(6 + 4 / 12, "feet"),
  26775. weight: math.unit(300 * 20, "lb"),
  26776. name: "Kneeling",
  26777. image: {
  26778. source: "./media/characters/balbarian/kneeling.svg",
  26779. extra: 922 / 862,
  26780. bottom: 42.4 / 965
  26781. }
  26782. },
  26783. },
  26784. [
  26785. {
  26786. name: "Normal",
  26787. height: math.unit(6 + 4 / 12, "feet")
  26788. },
  26789. {
  26790. name: "Treasured",
  26791. height: math.unit(18 + 9 / 12, "feet"),
  26792. default: true
  26793. },
  26794. {
  26795. name: "Macro",
  26796. height: math.unit(900, "feet")
  26797. },
  26798. ]
  26799. ))
  26800. characterMakers.push(() => makeCharacter(
  26801. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26802. {
  26803. front: {
  26804. height: math.unit(6 + 4 / 12, "feet"),
  26805. weight: math.unit(325, "lb"),
  26806. name: "Front",
  26807. image: {
  26808. source: "./media/characters/balina-amarini/front.svg",
  26809. extra: 415 / 403,
  26810. bottom: 19 / 433.4
  26811. }
  26812. },
  26813. back: {
  26814. height: math.unit(6 + 4 / 12, "feet"),
  26815. weight: math.unit(325, "lb"),
  26816. name: "Back",
  26817. image: {
  26818. source: "./media/characters/balina-amarini/back.svg",
  26819. extra: 415 / 403,
  26820. bottom: 13.5 / 432
  26821. }
  26822. },
  26823. overdrive: {
  26824. height: math.unit(6 + 4 / 12, "feet"),
  26825. weight: math.unit(400, "lb"),
  26826. name: "Overdrive",
  26827. image: {
  26828. source: "./media/characters/balina-amarini/overdrive.svg",
  26829. extra: 269 / 259,
  26830. bottom: 12 / 282
  26831. }
  26832. },
  26833. },
  26834. [
  26835. {
  26836. name: "Boom",
  26837. height: math.unit(9 + 10 / 12, "feet"),
  26838. default: true
  26839. },
  26840. {
  26841. name: "Macro",
  26842. height: math.unit(280, "feet")
  26843. },
  26844. ]
  26845. ))
  26846. characterMakers.push(() => makeCharacter(
  26847. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26848. {
  26849. goddess: {
  26850. height: math.unit(600, "feet"),
  26851. weight: math.unit(2000000, "tons"),
  26852. name: "Goddess",
  26853. image: {
  26854. source: "./media/characters/lady-kubwa/goddess.svg",
  26855. extra: 1240.5 / 1223,
  26856. bottom: 22 / 1263
  26857. }
  26858. },
  26859. goddesser: {
  26860. height: math.unit(900, "feet"),
  26861. weight: math.unit(20000000, "lb"),
  26862. name: "Goddess-er",
  26863. image: {
  26864. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26865. extra: 899 / 888,
  26866. bottom: 12.6 / 912
  26867. }
  26868. },
  26869. },
  26870. [
  26871. {
  26872. name: "Macro",
  26873. height: math.unit(600, "feet"),
  26874. default: true
  26875. },
  26876. {
  26877. name: "Megamacro",
  26878. height: math.unit(250, "miles")
  26879. },
  26880. ]
  26881. ))
  26882. characterMakers.push(() => makeCharacter(
  26883. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26884. {
  26885. front: {
  26886. height: math.unit(7 + 7 / 12, "feet"),
  26887. weight: math.unit(250, "lb"),
  26888. name: "Front",
  26889. image: {
  26890. source: "./media/characters/tala-grovehorn/front.svg",
  26891. extra: 2636 / 2525,
  26892. bottom: 147 / 2781
  26893. }
  26894. },
  26895. back: {
  26896. height: math.unit(7 + 7 / 12, "feet"),
  26897. weight: math.unit(250, "lb"),
  26898. name: "Back",
  26899. image: {
  26900. source: "./media/characters/tala-grovehorn/back.svg",
  26901. extra: 2635 / 2539,
  26902. bottom: 100 / 2732.8
  26903. }
  26904. },
  26905. mouth: {
  26906. height: math.unit(1.15, "feet"),
  26907. name: "Mouth",
  26908. image: {
  26909. source: "./media/characters/tala-grovehorn/mouth.svg"
  26910. }
  26911. },
  26912. dick: {
  26913. height: math.unit(2.36, "feet"),
  26914. name: "Dick",
  26915. image: {
  26916. source: "./media/characters/tala-grovehorn/dick.svg"
  26917. }
  26918. },
  26919. slit: {
  26920. height: math.unit(0.61, "feet"),
  26921. name: "Slit",
  26922. image: {
  26923. source: "./media/characters/tala-grovehorn/slit.svg"
  26924. }
  26925. },
  26926. },
  26927. [
  26928. ]
  26929. ))
  26930. characterMakers.push(() => makeCharacter(
  26931. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26932. {
  26933. front: {
  26934. height: math.unit(7 + 7 / 12, "feet"),
  26935. weight: math.unit(225, "lb"),
  26936. name: "Front",
  26937. image: {
  26938. source: "./media/characters/epona/front.svg",
  26939. extra: 2445 / 2290,
  26940. bottom: 251 / 2696
  26941. }
  26942. },
  26943. back: {
  26944. height: math.unit(7 + 7 / 12, "feet"),
  26945. weight: math.unit(225, "lb"),
  26946. name: "Back",
  26947. image: {
  26948. source: "./media/characters/epona/back.svg",
  26949. extra: 2546 / 2408,
  26950. bottom: 44 / 2589
  26951. }
  26952. },
  26953. genitals: {
  26954. height: math.unit(1.5, "feet"),
  26955. name: "Genitals",
  26956. image: {
  26957. source: "./media/characters/epona/genitals.svg"
  26958. }
  26959. },
  26960. },
  26961. [
  26962. {
  26963. name: "Normal",
  26964. height: math.unit(7 + 7 / 12, "feet"),
  26965. default: true
  26966. },
  26967. ]
  26968. ))
  26969. characterMakers.push(() => makeCharacter(
  26970. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26971. {
  26972. front: {
  26973. height: math.unit(7, "feet"),
  26974. weight: math.unit(518, "lb"),
  26975. name: "Front",
  26976. image: {
  26977. source: "./media/characters/avia-bloodbourn/front.svg",
  26978. extra: 1466 / 1350,
  26979. bottom: 65 / 1527
  26980. }
  26981. },
  26982. },
  26983. [
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(9.35, "feet"),
  26991. weight: math.unit(600, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/amera/front.svg",
  26995. extra: 891 / 818,
  26996. bottom: 30 / 922.7
  26997. }
  26998. },
  26999. back: {
  27000. height: math.unit(9.35, "feet"),
  27001. weight: math.unit(600, "lb"),
  27002. name: "Back",
  27003. image: {
  27004. source: "./media/characters/amera/back.svg",
  27005. extra: 876 / 824,
  27006. bottom: 6.8 / 884
  27007. }
  27008. },
  27009. dick: {
  27010. height: math.unit(2.14, "feet"),
  27011. name: "Dick",
  27012. image: {
  27013. source: "./media/characters/amera/dick.svg"
  27014. }
  27015. },
  27016. },
  27017. [
  27018. {
  27019. name: "Normal",
  27020. height: math.unit(9.35, "feet"),
  27021. default: true
  27022. },
  27023. ]
  27024. ))
  27025. characterMakers.push(() => makeCharacter(
  27026. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27027. {
  27028. kneeling: {
  27029. height: math.unit(3 + 4 / 12, "feet"),
  27030. weight: math.unit(90, "lb"),
  27031. name: "Kneeling",
  27032. image: {
  27033. source: "./media/characters/rosewen/kneeling.svg",
  27034. extra: 1835 / 1571,
  27035. bottom: 27.7 / 1862
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Normal",
  27042. height: math.unit(3 + 4 / 12, "feet"),
  27043. default: true
  27044. },
  27045. ]
  27046. ))
  27047. characterMakers.push(() => makeCharacter(
  27048. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27049. {
  27050. front: {
  27051. height: math.unit(5 + 10 / 12, "feet"),
  27052. weight: math.unit(200, "lb"),
  27053. name: "Front",
  27054. image: {
  27055. source: "./media/characters/sabah/front.svg",
  27056. extra: 849 / 763,
  27057. bottom: 33.9 / 881
  27058. }
  27059. },
  27060. },
  27061. [
  27062. {
  27063. name: "Normal",
  27064. height: math.unit(5 + 10 / 12, "feet"),
  27065. default: true
  27066. },
  27067. ]
  27068. ))
  27069. characterMakers.push(() => makeCharacter(
  27070. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27071. {
  27072. front: {
  27073. height: math.unit(3 + 5 / 12, "feet"),
  27074. weight: math.unit(40, "kg"),
  27075. name: "Front",
  27076. image: {
  27077. source: "./media/characters/purple-flame/front.svg",
  27078. extra: 1577 / 1412,
  27079. bottom: 97 / 1694
  27080. }
  27081. },
  27082. frontDressed: {
  27083. height: math.unit(3 + 5 / 12, "feet"),
  27084. weight: math.unit(40, "kg"),
  27085. name: "Front (Dressed)",
  27086. image: {
  27087. source: "./media/characters/purple-flame/front-dressed.svg",
  27088. extra: 1577 / 1412,
  27089. bottom: 97 / 1694
  27090. }
  27091. },
  27092. headphones: {
  27093. height: math.unit(0.85, "feet"),
  27094. name: "Headphones",
  27095. image: {
  27096. source: "./media/characters/purple-flame/headphones.svg"
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Really Small",
  27103. height: math.unit(5, "cm")
  27104. },
  27105. {
  27106. name: "Micro",
  27107. height: math.unit(1 + 5 / 12, "feet")
  27108. },
  27109. {
  27110. name: "Normal",
  27111. height: math.unit(3 + 5 / 12, "feet"),
  27112. default: true
  27113. },
  27114. {
  27115. name: "Minimacro",
  27116. height: math.unit(125, "feet")
  27117. },
  27118. {
  27119. name: "Macro",
  27120. height: math.unit(0.5, "miles")
  27121. },
  27122. {
  27123. name: "Megamacro",
  27124. height: math.unit(50, "miles")
  27125. },
  27126. {
  27127. name: "Gigantic",
  27128. height: math.unit(750, "miles")
  27129. },
  27130. {
  27131. name: "Planetary",
  27132. height: math.unit(15000, "miles")
  27133. },
  27134. ]
  27135. ))
  27136. characterMakers.push(() => makeCharacter(
  27137. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27138. {
  27139. front: {
  27140. height: math.unit(14, "feet"),
  27141. weight: math.unit(959, "lb"),
  27142. name: "Front",
  27143. image: {
  27144. source: "./media/characters/arsenal/front.svg",
  27145. extra: 2357 / 2157,
  27146. bottom: 93 / 2458
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Normal",
  27153. height: math.unit(14, "feet"),
  27154. default: true
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27160. {
  27161. front: {
  27162. height: math.unit(6, "feet"),
  27163. weight: math.unit(150, "lb"),
  27164. name: "Front",
  27165. image: {
  27166. source: "./media/characters/adira/front.svg",
  27167. extra: 1078 / 1029,
  27168. bottom: 87 / 1166
  27169. }
  27170. },
  27171. },
  27172. [
  27173. {
  27174. name: "Micro",
  27175. height: math.unit(4, "inches"),
  27176. default: true
  27177. },
  27178. {
  27179. name: "Macro",
  27180. height: math.unit(50, "feet")
  27181. },
  27182. ]
  27183. ))
  27184. characterMakers.push(() => makeCharacter(
  27185. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27186. {
  27187. front: {
  27188. height: math.unit(16, "feet"),
  27189. weight: math.unit(1000, "lb"),
  27190. name: "Front",
  27191. image: {
  27192. source: "./media/characters/grim/front.svg",
  27193. extra: 622 / 614,
  27194. bottom: 18.1 / 642
  27195. }
  27196. },
  27197. back: {
  27198. height: math.unit(16, "feet"),
  27199. weight: math.unit(1000, "lb"),
  27200. name: "Back",
  27201. image: {
  27202. source: "./media/characters/grim/back.svg",
  27203. extra: 610.6 / 602,
  27204. bottom: 40.8 / 652
  27205. }
  27206. },
  27207. hunched: {
  27208. height: math.unit(9.75, "feet"),
  27209. weight: math.unit(1000, "lb"),
  27210. name: "Hunched",
  27211. image: {
  27212. source: "./media/characters/grim/hunched.svg",
  27213. extra: 304 / 297,
  27214. bottom: 35.4 / 394
  27215. }
  27216. },
  27217. },
  27218. [
  27219. {
  27220. name: "Normal",
  27221. height: math.unit(16, "feet"),
  27222. default: true
  27223. },
  27224. ]
  27225. ))
  27226. characterMakers.push(() => makeCharacter(
  27227. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27228. {
  27229. front: {
  27230. height: math.unit(2.3, "meters"),
  27231. weight: math.unit(300, "lb"),
  27232. name: "Front",
  27233. image: {
  27234. source: "./media/characters/sinja/front-sfw.svg",
  27235. extra: 1393 / 1294,
  27236. bottom: 70 / 1463
  27237. }
  27238. },
  27239. frontNsfw: {
  27240. height: math.unit(2.3, "meters"),
  27241. weight: math.unit(300, "lb"),
  27242. name: "Front (NSFW)",
  27243. image: {
  27244. source: "./media/characters/sinja/front-nsfw.svg",
  27245. extra: 1393 / 1294,
  27246. bottom: 70 / 1463
  27247. }
  27248. },
  27249. back: {
  27250. height: math.unit(2.3, "meters"),
  27251. weight: math.unit(300, "lb"),
  27252. name: "Back",
  27253. image: {
  27254. source: "./media/characters/sinja/back.svg",
  27255. extra: 1393 / 1294,
  27256. bottom: 70 / 1463
  27257. }
  27258. },
  27259. head: {
  27260. height: math.unit(1.771, "feet"),
  27261. name: "Head",
  27262. image: {
  27263. source: "./media/characters/sinja/head.svg"
  27264. }
  27265. },
  27266. slit: {
  27267. height: math.unit(0.8, "feet"),
  27268. name: "Slit",
  27269. image: {
  27270. source: "./media/characters/sinja/slit.svg"
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(2.3, "meters")
  27278. },
  27279. {
  27280. name: "Macro",
  27281. height: math.unit(91, "meters"),
  27282. default: true
  27283. },
  27284. {
  27285. name: "Megamacro",
  27286. height: math.unit(91440, "meters")
  27287. },
  27288. {
  27289. name: "Gigamacro",
  27290. height: math.unit(60960000, "meters")
  27291. },
  27292. {
  27293. name: "Teramacro",
  27294. height: math.unit(9144000000, "meters")
  27295. },
  27296. ]
  27297. ))
  27298. characterMakers.push(() => makeCharacter(
  27299. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27300. {
  27301. front: {
  27302. height: math.unit(1.7, "meters"),
  27303. weight: math.unit(130, "lb"),
  27304. name: "Front",
  27305. image: {
  27306. source: "./media/characters/kyu/front.svg",
  27307. extra: 415 / 395,
  27308. bottom: 5 / 420
  27309. }
  27310. },
  27311. head: {
  27312. height: math.unit(1.75, "feet"),
  27313. name: "Head",
  27314. image: {
  27315. source: "./media/characters/kyu/head.svg"
  27316. }
  27317. },
  27318. foot: {
  27319. height: math.unit(0.81, "feet"),
  27320. name: "Foot",
  27321. image: {
  27322. source: "./media/characters/kyu/foot.svg"
  27323. }
  27324. },
  27325. },
  27326. [
  27327. {
  27328. name: "Normal",
  27329. height: math.unit(1.7, "meters")
  27330. },
  27331. {
  27332. name: "Macro",
  27333. height: math.unit(131, "feet"),
  27334. default: true
  27335. },
  27336. {
  27337. name: "Megamacro",
  27338. height: math.unit(91440, "meters")
  27339. },
  27340. {
  27341. name: "Gigamacro",
  27342. height: math.unit(60960000, "meters")
  27343. },
  27344. {
  27345. name: "Teramacro",
  27346. height: math.unit(9144000000, "meters")
  27347. },
  27348. ]
  27349. ))
  27350. characterMakers.push(() => makeCharacter(
  27351. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27352. {
  27353. front: {
  27354. height: math.unit(7 + 1 / 12, "feet"),
  27355. weight: math.unit(250, "lb"),
  27356. name: "Front",
  27357. image: {
  27358. source: "./media/characters/joey/front.svg",
  27359. extra: 1791 / 1537,
  27360. bottom: 28 / 1816
  27361. }
  27362. },
  27363. },
  27364. [
  27365. {
  27366. name: "Micro",
  27367. height: math.unit(3, "inches")
  27368. },
  27369. {
  27370. name: "Normal",
  27371. height: math.unit(7 + 1 / 12, "feet"),
  27372. default: true
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27378. {
  27379. front: {
  27380. height: math.unit(165, "cm"),
  27381. weight: math.unit(140, "lb"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/sam-evans/front.svg",
  27385. extra: 3417 / 3230,
  27386. bottom: 41.3 / 3417
  27387. }
  27388. },
  27389. frontSixTails: {
  27390. height: math.unit(165, "cm"),
  27391. weight: math.unit(140, "lb"),
  27392. name: "Front-six-tails",
  27393. image: {
  27394. source: "./media/characters/sam-evans/front-six-tails.svg",
  27395. extra: 3417 / 3230,
  27396. bottom: 41.3 / 3417
  27397. }
  27398. },
  27399. back: {
  27400. height: math.unit(165, "cm"),
  27401. weight: math.unit(140, "lb"),
  27402. name: "Back",
  27403. image: {
  27404. source: "./media/characters/sam-evans/back.svg",
  27405. extra: 3227 / 3032,
  27406. bottom: 6.8 / 3234
  27407. }
  27408. },
  27409. face: {
  27410. height: math.unit(0.68, "feet"),
  27411. name: "Face",
  27412. image: {
  27413. source: "./media/characters/sam-evans/face.svg"
  27414. }
  27415. },
  27416. },
  27417. [
  27418. {
  27419. name: "Normal",
  27420. height: math.unit(165, "cm"),
  27421. default: true
  27422. },
  27423. {
  27424. name: "Macro",
  27425. height: math.unit(100, "meters")
  27426. },
  27427. {
  27428. name: "Macro+",
  27429. height: math.unit(800, "meters")
  27430. },
  27431. {
  27432. name: "Macro++",
  27433. height: math.unit(3, "km")
  27434. },
  27435. {
  27436. name: "Macro+++",
  27437. height: math.unit(30, "km")
  27438. },
  27439. ]
  27440. ))
  27441. characterMakers.push(() => makeCharacter(
  27442. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27443. {
  27444. front: {
  27445. height: math.unit(10, "feet"),
  27446. weight: math.unit(750, "lb"),
  27447. name: "Front",
  27448. image: {
  27449. source: "./media/characters/juliet-a/front.svg",
  27450. extra: 1766 / 1720,
  27451. bottom: 43 / 1809
  27452. }
  27453. },
  27454. back: {
  27455. height: math.unit(10, "feet"),
  27456. weight: math.unit(750, "lb"),
  27457. name: "Back",
  27458. image: {
  27459. source: "./media/characters/juliet-a/back.svg",
  27460. extra: 1781 / 1734,
  27461. bottom: 35 / 1810,
  27462. }
  27463. },
  27464. },
  27465. [
  27466. {
  27467. name: "Normal",
  27468. height: math.unit(10, "feet"),
  27469. default: true
  27470. },
  27471. {
  27472. name: "Dragon Form",
  27473. height: math.unit(250, "feet")
  27474. },
  27475. {
  27476. name: "Macro",
  27477. height: math.unit(1000, "feet")
  27478. },
  27479. {
  27480. name: "Megamacro",
  27481. height: math.unit(10000, "feet")
  27482. }
  27483. ]
  27484. ))
  27485. characterMakers.push(() => makeCharacter(
  27486. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27487. {
  27488. regular: {
  27489. height: math.unit(7 + 3 / 12, "feet"),
  27490. weight: math.unit(260, "lb"),
  27491. name: "Regular",
  27492. image: {
  27493. source: "./media/characters/wild/regular.svg",
  27494. extra: 97.45 / 92,
  27495. bottom: 6.8 / 104.3
  27496. }
  27497. },
  27498. biggums: {
  27499. height: math.unit(8 + 6 / 12, "feet"),
  27500. weight: math.unit(425, "lb"),
  27501. name: "Biggums",
  27502. image: {
  27503. source: "./media/characters/wild/biggums.svg",
  27504. extra: 97.45 / 92,
  27505. bottom: 7.5 / 132.34
  27506. }
  27507. },
  27508. mawRegular: {
  27509. height: math.unit(1.24, "feet"),
  27510. name: "Maw (Regular)",
  27511. image: {
  27512. source: "./media/characters/wild/maw.svg"
  27513. }
  27514. },
  27515. mawBiggums: {
  27516. height: math.unit(1.47, "feet"),
  27517. name: "Maw (Biggums)",
  27518. image: {
  27519. source: "./media/characters/wild/maw.svg"
  27520. }
  27521. },
  27522. },
  27523. [
  27524. {
  27525. name: "Normal",
  27526. height: math.unit(7 + 3 / 12, "feet"),
  27527. default: true
  27528. },
  27529. ]
  27530. ))
  27531. characterMakers.push(() => makeCharacter(
  27532. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27533. {
  27534. front: {
  27535. height: math.unit(2.5, "meters"),
  27536. weight: math.unit(200, "kg"),
  27537. name: "Front",
  27538. image: {
  27539. source: "./media/characters/vidar/front.svg",
  27540. extra: 2994 / 2795,
  27541. bottom: 56 / 3061
  27542. }
  27543. },
  27544. back: {
  27545. height: math.unit(2.5, "meters"),
  27546. weight: math.unit(200, "kg"),
  27547. name: "Back",
  27548. image: {
  27549. source: "./media/characters/vidar/back.svg",
  27550. extra: 3131 / 2928,
  27551. bottom: 13.5 / 3141.5
  27552. }
  27553. },
  27554. feral: {
  27555. height: math.unit(2.5, "meters"),
  27556. weight: math.unit(2000, "kg"),
  27557. name: "Feral",
  27558. image: {
  27559. source: "./media/characters/vidar/feral.svg",
  27560. extra: 2790 / 1765,
  27561. bottom: 6 / 2796
  27562. }
  27563. },
  27564. },
  27565. [
  27566. {
  27567. name: "Normal",
  27568. height: math.unit(2.5, "meters"),
  27569. default: true
  27570. },
  27571. {
  27572. name: "Macro",
  27573. height: math.unit(100, "meters")
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27579. {
  27580. front: {
  27581. height: math.unit(5 + 9 / 12, "feet"),
  27582. weight: math.unit(120, "lb"),
  27583. name: "Front",
  27584. image: {
  27585. source: "./media/characters/ash/front.svg",
  27586. extra: 2189 / 1961,
  27587. bottom: 5.2 / 2194
  27588. }
  27589. },
  27590. },
  27591. [
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(5 + 9 / 12, "feet"),
  27595. default: true
  27596. },
  27597. ]
  27598. ))
  27599. characterMakers.push(() => makeCharacter(
  27600. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27601. {
  27602. front: {
  27603. height: math.unit(9, "feet"),
  27604. weight: math.unit(10000, "lb"),
  27605. name: "Front",
  27606. image: {
  27607. source: "./media/characters/gygabite/front.svg",
  27608. bottom: 31.7 / 537.8,
  27609. extra: 505 / 370
  27610. }
  27611. },
  27612. },
  27613. [
  27614. {
  27615. name: "Normal",
  27616. height: math.unit(9, "feet"),
  27617. default: true
  27618. },
  27619. ]
  27620. ))
  27621. characterMakers.push(() => makeCharacter(
  27622. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27623. {
  27624. front: {
  27625. height: math.unit(12, "feet"),
  27626. weight: math.unit(35000, "lb"),
  27627. name: "Front",
  27628. image: {
  27629. source: "./media/characters/p0tat0/front.svg",
  27630. extra: 1065 / 921,
  27631. bottom: 55.7 / 1121.25
  27632. }
  27633. },
  27634. },
  27635. [
  27636. {
  27637. name: "Normal",
  27638. height: math.unit(12, "feet"),
  27639. default: true
  27640. },
  27641. ]
  27642. ))
  27643. characterMakers.push(() => makeCharacter(
  27644. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27645. {
  27646. side: {
  27647. height: math.unit(6.5, "feet"),
  27648. weight: math.unit(800, "lb"),
  27649. name: "Side",
  27650. image: {
  27651. source: "./media/characters/dusk/side.svg",
  27652. extra: 615 / 373,
  27653. bottom: 53 / 664
  27654. }
  27655. },
  27656. sitting: {
  27657. height: math.unit(7, "feet"),
  27658. weight: math.unit(800, "lb"),
  27659. name: "Sitting",
  27660. image: {
  27661. source: "./media/characters/dusk/sitting.svg",
  27662. extra: 753 / 425,
  27663. bottom: 33 / 774
  27664. }
  27665. },
  27666. head: {
  27667. height: math.unit(6.1, "feet"),
  27668. name: "Head",
  27669. image: {
  27670. source: "./media/characters/dusk/head.svg"
  27671. }
  27672. },
  27673. },
  27674. [
  27675. {
  27676. name: "Normal",
  27677. height: math.unit(7, "feet"),
  27678. default: true
  27679. },
  27680. ]
  27681. ))
  27682. characterMakers.push(() => makeCharacter(
  27683. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27684. {
  27685. front: {
  27686. height: math.unit(15, "feet"),
  27687. weight: math.unit(7000, "lb"),
  27688. name: "Front",
  27689. image: {
  27690. source: "./media/characters/jay-direwolf/front.svg",
  27691. extra: 1810 / 1732,
  27692. bottom: 66 / 1892
  27693. }
  27694. },
  27695. },
  27696. [
  27697. {
  27698. name: "Normal",
  27699. height: math.unit(15, "feet"),
  27700. default: true
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27706. {
  27707. front: {
  27708. height: math.unit(4 + 9 / 12, "feet"),
  27709. weight: math.unit(130, "lb"),
  27710. name: "Front",
  27711. image: {
  27712. source: "./media/characters/anchovie/front.svg",
  27713. extra: 382 / 350,
  27714. bottom: 25 / 409
  27715. }
  27716. },
  27717. back: {
  27718. height: math.unit(4 + 9 / 12, "feet"),
  27719. weight: math.unit(130, "lb"),
  27720. name: "Back",
  27721. image: {
  27722. source: "./media/characters/anchovie/back.svg",
  27723. extra: 385 / 352,
  27724. bottom: 16.6 / 402
  27725. }
  27726. },
  27727. frontDressed: {
  27728. height: math.unit(4 + 9 / 12, "feet"),
  27729. weight: math.unit(130, "lb"),
  27730. name: "Front (Dressed)",
  27731. image: {
  27732. source: "./media/characters/anchovie/front-dressed.svg",
  27733. extra: 382 / 350,
  27734. bottom: 25 / 409
  27735. }
  27736. },
  27737. backDressed: {
  27738. height: math.unit(4 + 9 / 12, "feet"),
  27739. weight: math.unit(130, "lb"),
  27740. name: "Back (Dressed)",
  27741. image: {
  27742. source: "./media/characters/anchovie/back-dressed.svg",
  27743. extra: 385 / 352,
  27744. bottom: 16.6 / 402
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Micro",
  27751. height: math.unit(6.4, "inches")
  27752. },
  27753. {
  27754. name: "Normal",
  27755. height: math.unit(4 + 9 / 12, "feet"),
  27756. default: true
  27757. },
  27758. ]
  27759. ))
  27760. characterMakers.push(() => makeCharacter(
  27761. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27762. {
  27763. front: {
  27764. height: math.unit(2, "meters"),
  27765. weight: math.unit(180, "lb"),
  27766. name: "Front",
  27767. image: {
  27768. source: "./media/characters/acidrenamon/front.svg",
  27769. extra: 987 / 890,
  27770. bottom: 22.8 / 1009
  27771. }
  27772. },
  27773. back: {
  27774. height: math.unit(2, "meters"),
  27775. weight: math.unit(180, "lb"),
  27776. name: "Back",
  27777. image: {
  27778. source: "./media/characters/acidrenamon/back.svg",
  27779. extra: 983 / 891,
  27780. bottom: 8.4 / 992
  27781. }
  27782. },
  27783. head: {
  27784. height: math.unit(1.92, "feet"),
  27785. name: "Head",
  27786. image: {
  27787. source: "./media/characters/acidrenamon/head.svg"
  27788. }
  27789. },
  27790. rump: {
  27791. height: math.unit(1.72, "feet"),
  27792. name: "Rump",
  27793. image: {
  27794. source: "./media/characters/acidrenamon/rump.svg"
  27795. }
  27796. },
  27797. tail: {
  27798. height: math.unit(4.2, "feet"),
  27799. name: "Tail",
  27800. image: {
  27801. source: "./media/characters/acidrenamon/tail.svg"
  27802. }
  27803. },
  27804. },
  27805. [
  27806. {
  27807. name: "Normal",
  27808. height: math.unit(2, "meters"),
  27809. default: true
  27810. },
  27811. {
  27812. name: "Minimacro",
  27813. height: math.unit(7, "meters")
  27814. },
  27815. {
  27816. name: "Macro",
  27817. height: math.unit(200, "meters")
  27818. },
  27819. {
  27820. name: "Gigamacro",
  27821. height: math.unit(0.2, "earths")
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27827. {
  27828. front: {
  27829. height: math.unit(152, "feet"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/kenzie-lee/front.svg",
  27833. extra: 1869/1774,
  27834. bottom: 128/1997
  27835. }
  27836. },
  27837. side: {
  27838. height: math.unit(86, "feet"),
  27839. name: "Side",
  27840. image: {
  27841. source: "./media/characters/kenzie-lee/side.svg",
  27842. extra: 930/815,
  27843. bottom: 177/1107
  27844. }
  27845. },
  27846. paw: {
  27847. height: math.unit(15, "feet"),
  27848. name: "Paw",
  27849. image: {
  27850. source: "./media/characters/kenzie-lee/paw.svg"
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Micro",
  27857. height: math.unit(1.5, "inches")
  27858. },
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(152, "feet"),
  27862. default: true
  27863. },
  27864. {
  27865. name: "Megamacro",
  27866. height: math.unit(7, "miles")
  27867. },
  27868. {
  27869. name: "Gigamacro",
  27870. height: math.unit(8000, "miles")
  27871. },
  27872. ]
  27873. ))
  27874. characterMakers.push(() => makeCharacter(
  27875. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27876. {
  27877. side: {
  27878. height: math.unit(6, "feet"),
  27879. weight: math.unit(150, "lb"),
  27880. name: "Side",
  27881. image: {
  27882. source: "./media/characters/withers/side.svg",
  27883. extra: 1830 / 1728,
  27884. bottom: 96 / 1927
  27885. }
  27886. },
  27887. front: {
  27888. height: math.unit(6, "feet"),
  27889. weight: math.unit(150, "lb"),
  27890. name: "Front",
  27891. image: {
  27892. source: "./media/characters/withers/front.svg",
  27893. extra: 1514 / 1438,
  27894. bottom: 118 / 1632
  27895. }
  27896. },
  27897. },
  27898. [
  27899. {
  27900. name: "Macro",
  27901. height: math.unit(168, "feet"),
  27902. default: true
  27903. },
  27904. {
  27905. name: "Megamacro",
  27906. height: math.unit(15, "miles")
  27907. }
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27912. {
  27913. front: {
  27914. height: math.unit(6 + 7 / 12, "feet"),
  27915. weight: math.unit(250, "lb"),
  27916. name: "Front",
  27917. image: {
  27918. source: "./media/characters/nemoskii/front.svg",
  27919. extra: 2270 / 1734,
  27920. bottom: 86 / 2354
  27921. }
  27922. },
  27923. back: {
  27924. height: math.unit(6 + 7 / 12, "feet"),
  27925. weight: math.unit(250, "lb"),
  27926. name: "Back",
  27927. image: {
  27928. source: "./media/characters/nemoskii/back.svg",
  27929. extra: 1845 / 1788,
  27930. bottom: 10.5 / 1852
  27931. }
  27932. },
  27933. head: {
  27934. height: math.unit(1.31, "feet"),
  27935. name: "Head",
  27936. image: {
  27937. source: "./media/characters/nemoskii/head.svg"
  27938. }
  27939. },
  27940. },
  27941. [
  27942. {
  27943. name: "Micro",
  27944. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27945. },
  27946. {
  27947. name: "Normal",
  27948. height: math.unit(6 + 7 / 12, "feet"),
  27949. default: true
  27950. },
  27951. {
  27952. name: "Macro",
  27953. height: math.unit((6 + 7 / 12) * 150, "feet")
  27954. },
  27955. {
  27956. name: "Macro+",
  27957. height: math.unit((6 + 7 / 12) * 500, "feet")
  27958. },
  27959. {
  27960. name: "Megamacro",
  27961. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27962. },
  27963. ]
  27964. ))
  27965. characterMakers.push(() => makeCharacter(
  27966. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27967. {
  27968. front: {
  27969. height: math.unit(1, "mile"),
  27970. weight: math.unit(265261.9, "lb"),
  27971. name: "Front",
  27972. image: {
  27973. source: "./media/characters/shui/front.svg",
  27974. extra: 1633 / 1564,
  27975. bottom: 91.5 / 1726
  27976. }
  27977. },
  27978. },
  27979. [
  27980. {
  27981. name: "Macro",
  27982. height: math.unit(1, "mile"),
  27983. default: true
  27984. },
  27985. ]
  27986. ))
  27987. characterMakers.push(() => makeCharacter(
  27988. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27989. {
  27990. front: {
  27991. height: math.unit(12 + 6 / 12, "feet"),
  27992. weight: math.unit(1342, "lb"),
  27993. name: "Front",
  27994. image: {
  27995. source: "./media/characters/arokh-takakura/front.svg",
  27996. extra: 1089 / 1043,
  27997. bottom: 77.4 / 1176.7
  27998. }
  27999. },
  28000. back: {
  28001. height: math.unit(12 + 6 / 12, "feet"),
  28002. weight: math.unit(1342, "lb"),
  28003. name: "Back",
  28004. image: {
  28005. source: "./media/characters/arokh-takakura/back.svg",
  28006. extra: 1046 / 1019,
  28007. bottom: 102 / 1150
  28008. }
  28009. },
  28010. },
  28011. [
  28012. {
  28013. name: "Big",
  28014. height: math.unit(12 + 6 / 12, "feet"),
  28015. default: true
  28016. },
  28017. ]
  28018. ))
  28019. characterMakers.push(() => makeCharacter(
  28020. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28021. {
  28022. front: {
  28023. height: math.unit(5 + 6 / 12, "feet"),
  28024. weight: math.unit(150, "lb"),
  28025. name: "Front",
  28026. image: {
  28027. source: "./media/characters/theo/front.svg",
  28028. extra: 1184 / 1131,
  28029. bottom: 7.4 / 1191
  28030. }
  28031. },
  28032. },
  28033. [
  28034. {
  28035. name: "Micro",
  28036. height: math.unit(5, "inches")
  28037. },
  28038. {
  28039. name: "Normal",
  28040. height: math.unit(5 + 6 / 12, "feet"),
  28041. default: true
  28042. },
  28043. ]
  28044. ))
  28045. characterMakers.push(() => makeCharacter(
  28046. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28047. {
  28048. front: {
  28049. height: math.unit(5 + 9 / 12, "feet"),
  28050. weight: math.unit(130, "lb"),
  28051. name: "Front",
  28052. image: {
  28053. source: "./media/characters/cecelia-swift/front.svg",
  28054. extra: 502 / 484,
  28055. bottom: 23 / 523
  28056. }
  28057. },
  28058. back: {
  28059. height: math.unit(5 + 9 / 12, "feet"),
  28060. weight: math.unit(130, "lb"),
  28061. name: "Back",
  28062. image: {
  28063. source: "./media/characters/cecelia-swift/back.svg",
  28064. extra: 499 / 485,
  28065. bottom: 12 / 511
  28066. }
  28067. },
  28068. head: {
  28069. height: math.unit(0.90, "feet"),
  28070. name: "Head",
  28071. image: {
  28072. source: "./media/characters/cecelia-swift/head.svg"
  28073. }
  28074. },
  28075. rump: {
  28076. height: math.unit(1.75, "feet"),
  28077. name: "Rump",
  28078. image: {
  28079. source: "./media/characters/cecelia-swift/rump.svg"
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Normal",
  28086. height: math.unit(5 + 9 / 12, "feet"),
  28087. default: true
  28088. },
  28089. {
  28090. name: "Big",
  28091. height: math.unit(50, "feet")
  28092. },
  28093. {
  28094. name: "Macro",
  28095. height: math.unit(100, "feet")
  28096. },
  28097. {
  28098. name: "Macro+",
  28099. height: math.unit(500, "feet")
  28100. },
  28101. {
  28102. name: "Macro++",
  28103. height: math.unit(1000, "feet")
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28109. {
  28110. front: {
  28111. height: math.unit(6, "feet"),
  28112. weight: math.unit(150, "lb"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/kaunan/front.svg",
  28116. extra: 2890 / 2523,
  28117. bottom: 49 / 2939
  28118. }
  28119. },
  28120. },
  28121. [
  28122. {
  28123. name: "Macro",
  28124. height: math.unit(150, "feet"),
  28125. default: true
  28126. },
  28127. ]
  28128. ))
  28129. characterMakers.push(() => makeCharacter(
  28130. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28131. {
  28132. front: {
  28133. height: math.unit(175, "cm"),
  28134. weight: math.unit(60, "kg"),
  28135. name: "Front",
  28136. image: {
  28137. source: "./media/characters/fei/front.svg",
  28138. extra: 1873/1723,
  28139. bottom: 53/1926
  28140. }
  28141. },
  28142. },
  28143. [
  28144. {
  28145. name: "Mortal",
  28146. height: math.unit(175, "cm")
  28147. },
  28148. {
  28149. name: "Normal",
  28150. height: math.unit(3500, "m"),
  28151. default: true
  28152. },
  28153. {
  28154. name: "Stroll",
  28155. height: math.unit(17.5, "km")
  28156. },
  28157. {
  28158. name: "Showoff",
  28159. height: math.unit(175, "km")
  28160. },
  28161. ]
  28162. ))
  28163. characterMakers.push(() => makeCharacter(
  28164. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28165. {
  28166. front: {
  28167. height: math.unit(7, "feet"),
  28168. weight: math.unit(1000, "kg"),
  28169. name: "Front",
  28170. image: {
  28171. source: "./media/characters/edrax/front.svg",
  28172. extra: 2838 / 2550,
  28173. bottom: 130 / 2968
  28174. }
  28175. },
  28176. },
  28177. [
  28178. {
  28179. name: "Small",
  28180. height: math.unit(7, "feet")
  28181. },
  28182. {
  28183. name: "Normal",
  28184. height: math.unit(1500, "meters")
  28185. },
  28186. {
  28187. name: "Mega",
  28188. height: math.unit(12000000, "km"),
  28189. default: true
  28190. },
  28191. {
  28192. name: "Megamacro",
  28193. height: math.unit(10600000, "lightyears")
  28194. },
  28195. {
  28196. name: "Hypermacro",
  28197. height: math.unit(256, "yottameters")
  28198. },
  28199. ]
  28200. ))
  28201. characterMakers.push(() => makeCharacter(
  28202. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28203. {
  28204. front: {
  28205. height: math.unit(10, "feet"),
  28206. weight: math.unit(750, "lb"),
  28207. name: "Front",
  28208. image: {
  28209. source: "./media/characters/clove/front.svg",
  28210. extra: 1918/1751,
  28211. bottom: 52/1970
  28212. }
  28213. },
  28214. back: {
  28215. height: math.unit(10, "feet"),
  28216. weight: math.unit(750, "lb"),
  28217. name: "Back",
  28218. image: {
  28219. source: "./media/characters/clove/back.svg",
  28220. extra: 1912/1747,
  28221. bottom: 50/1962
  28222. }
  28223. },
  28224. },
  28225. [
  28226. {
  28227. name: "Normal",
  28228. height: math.unit(10, "feet"),
  28229. default: true
  28230. },
  28231. ]
  28232. ))
  28233. characterMakers.push(() => makeCharacter(
  28234. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28235. {
  28236. front: {
  28237. height: math.unit(4, "feet"),
  28238. weight: math.unit(50, "lb"),
  28239. name: "Front",
  28240. image: {
  28241. source: "./media/characters/alex-rabbit/front.svg",
  28242. extra: 507 / 458,
  28243. bottom: 18.5 / 527
  28244. }
  28245. },
  28246. back: {
  28247. height: math.unit(4, "feet"),
  28248. weight: math.unit(50, "lb"),
  28249. name: "Back",
  28250. image: {
  28251. source: "./media/characters/alex-rabbit/back.svg",
  28252. extra: 502 / 460,
  28253. bottom: 18.9 / 521
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Normal",
  28260. height: math.unit(4, "feet"),
  28261. default: true
  28262. },
  28263. ]
  28264. ))
  28265. characterMakers.push(() => makeCharacter(
  28266. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28267. {
  28268. front: {
  28269. height: math.unit(1 + 3 / 12, "feet"),
  28270. weight: math.unit(80, "lb"),
  28271. name: "Front",
  28272. image: {
  28273. source: "./media/characters/zander-rose/front.svg",
  28274. extra: 916 / 797,
  28275. bottom: 17 / 933
  28276. }
  28277. },
  28278. back: {
  28279. height: math.unit(1 + 3 / 12, "feet"),
  28280. weight: math.unit(80, "lb"),
  28281. name: "Back",
  28282. image: {
  28283. source: "./media/characters/zander-rose/back.svg",
  28284. extra: 903 / 779,
  28285. bottom: 31 / 934
  28286. }
  28287. },
  28288. },
  28289. [
  28290. {
  28291. name: "Normal",
  28292. height: math.unit(1 + 3 / 12, "feet"),
  28293. default: true
  28294. },
  28295. ]
  28296. ))
  28297. characterMakers.push(() => makeCharacter(
  28298. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28299. {
  28300. anthro: {
  28301. height: math.unit(6, "feet"),
  28302. weight: math.unit(150, "lb"),
  28303. name: "Anthro",
  28304. image: {
  28305. source: "./media/characters/razz/anthro.svg",
  28306. extra: 1437 / 1343,
  28307. bottom: 48 / 1485
  28308. }
  28309. },
  28310. feral: {
  28311. height: math.unit(6, "feet"),
  28312. weight: math.unit(150, "lb"),
  28313. name: "Feral",
  28314. image: {
  28315. source: "./media/characters/razz/feral.svg",
  28316. extra: 2569 / 1385,
  28317. bottom: 95 / 2664
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Normal",
  28324. height: math.unit(6, "feet"),
  28325. default: true
  28326. },
  28327. ]
  28328. ))
  28329. characterMakers.push(() => makeCharacter(
  28330. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28331. {
  28332. front: {
  28333. height: math.unit(9 + 4 / 12, "feet"),
  28334. weight: math.unit(500, "lb"),
  28335. name: "Front",
  28336. image: {
  28337. source: "./media/characters/morrigan/front.svg",
  28338. extra: 2707 / 2579,
  28339. bottom: 156 / 2863
  28340. }
  28341. },
  28342. },
  28343. [
  28344. {
  28345. name: "Normal",
  28346. height: math.unit(9 + 4 / 12, "feet"),
  28347. default: true
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28353. {
  28354. front: {
  28355. height: math.unit(5, "stories"),
  28356. weight: math.unit(4000, "lb"),
  28357. name: "Front",
  28358. image: {
  28359. source: "./media/characters/jenene/front.svg",
  28360. extra: 1780 / 1710,
  28361. bottom: 57 / 1837
  28362. }
  28363. },
  28364. },
  28365. [
  28366. {
  28367. name: "Normal",
  28368. height: math.unit(5, "stories"),
  28369. default: true
  28370. },
  28371. ]
  28372. ))
  28373. characterMakers.push(() => makeCharacter(
  28374. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28375. {
  28376. taurSfw: {
  28377. height: math.unit(10, "meters"),
  28378. weight: math.unit(17500, "kg"),
  28379. name: "Taur",
  28380. image: {
  28381. source: "./media/characters/faey/taur-sfw.svg",
  28382. extra: 1200 / 968,
  28383. bottom: 41 / 1241
  28384. }
  28385. },
  28386. chestmaw: {
  28387. height: math.unit(2.01, "meters"),
  28388. name: "Chestmaw",
  28389. image: {
  28390. source: "./media/characters/faey/chestmaw.svg"
  28391. }
  28392. },
  28393. foot: {
  28394. height: math.unit(2.43, "meters"),
  28395. name: "Foot",
  28396. image: {
  28397. source: "./media/characters/faey/foot.svg"
  28398. }
  28399. },
  28400. jaws: {
  28401. height: math.unit(1.66, "meters"),
  28402. name: "Jaws",
  28403. image: {
  28404. source: "./media/characters/faey/jaws.svg"
  28405. }
  28406. },
  28407. tongues: {
  28408. height: math.unit(2.01, "meters"),
  28409. name: "Tongues",
  28410. image: {
  28411. source: "./media/characters/faey/tongues.svg"
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Small",
  28418. height: math.unit(10, "meters"),
  28419. default: true
  28420. },
  28421. {
  28422. name: "Big",
  28423. height: math.unit(500000, "km")
  28424. },
  28425. ]
  28426. ))
  28427. characterMakers.push(() => makeCharacter(
  28428. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28429. {
  28430. front: {
  28431. height: math.unit(7, "feet"),
  28432. weight: math.unit(275, "lb"),
  28433. name: "Front",
  28434. image: {
  28435. source: "./media/characters/roku/front.svg",
  28436. extra: 903 / 878,
  28437. bottom: 37 / 940
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Normal",
  28444. height: math.unit(7, "feet"),
  28445. default: true
  28446. },
  28447. {
  28448. name: "Macro",
  28449. height: math.unit(500, "feet")
  28450. },
  28451. {
  28452. name: "Megamacro",
  28453. height: math.unit(200, "miles")
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(6 + 2 / 12, "feet"),
  28462. weight: math.unit(150, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/lira/front.svg",
  28466. extra: 1727 / 1605,
  28467. bottom: 26 / 1753
  28468. }
  28469. },
  28470. back: {
  28471. height: math.unit(6 + 2 / 12, "feet"),
  28472. weight: math.unit(150, "lb"),
  28473. name: "Back",
  28474. image: {
  28475. source: "./media/characters/lira/back.svg",
  28476. extra: 1713/1621,
  28477. bottom: 20/1733
  28478. }
  28479. },
  28480. hand: {
  28481. height: math.unit(0.75, "feet"),
  28482. name: "Hand",
  28483. image: {
  28484. source: "./media/characters/lira/hand.svg"
  28485. }
  28486. },
  28487. maw: {
  28488. height: math.unit(0.65, "feet"),
  28489. name: "Maw",
  28490. image: {
  28491. source: "./media/characters/lira/maw.svg"
  28492. }
  28493. },
  28494. pawDigi: {
  28495. height: math.unit(1.6, "feet"),
  28496. name: "Paw Digi",
  28497. image: {
  28498. source: "./media/characters/lira/paw-digi.svg"
  28499. }
  28500. },
  28501. pawPlanti: {
  28502. height: math.unit(1.4, "feet"),
  28503. name: "Paw Planti",
  28504. image: {
  28505. source: "./media/characters/lira/paw-planti.svg"
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Normal",
  28512. height: math.unit(6 + 2 / 12, "feet"),
  28513. default: true
  28514. },
  28515. {
  28516. name: "Macro",
  28517. height: math.unit(100, "feet")
  28518. },
  28519. {
  28520. name: "Macro²",
  28521. height: math.unit(1600, "feet")
  28522. },
  28523. {
  28524. name: "Planetary",
  28525. height: math.unit(20, "earths")
  28526. },
  28527. ]
  28528. ))
  28529. characterMakers.push(() => makeCharacter(
  28530. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28531. {
  28532. front: {
  28533. height: math.unit(6, "feet"),
  28534. weight: math.unit(150, "lb"),
  28535. name: "Front",
  28536. image: {
  28537. source: "./media/characters/hadjet/front.svg",
  28538. extra: 1480 / 1346,
  28539. bottom: 26 / 1506
  28540. }
  28541. },
  28542. frontNsfw: {
  28543. height: math.unit(6, "feet"),
  28544. weight: math.unit(150, "lb"),
  28545. name: "Front (NSFW)",
  28546. image: {
  28547. source: "./media/characters/hadjet/front-nsfw.svg",
  28548. extra: 1440 / 1358,
  28549. bottom: 52 / 1492
  28550. }
  28551. },
  28552. },
  28553. [
  28554. {
  28555. name: "Macro",
  28556. height: math.unit(10, "stories"),
  28557. default: true
  28558. },
  28559. {
  28560. name: "Megamacro",
  28561. height: math.unit(1.5, "miles")
  28562. },
  28563. {
  28564. name: "Megamacro+",
  28565. height: math.unit(5, "miles")
  28566. },
  28567. ]
  28568. ))
  28569. characterMakers.push(() => makeCharacter(
  28570. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28571. {
  28572. side: {
  28573. height: math.unit(106, "feet"),
  28574. weight: math.unit(500, "tonnes"),
  28575. name: "Side",
  28576. image: {
  28577. source: "./media/characters/kodran/side.svg",
  28578. extra: 553 / 480,
  28579. bottom: 33 / 586
  28580. }
  28581. },
  28582. front: {
  28583. height: math.unit(132, "feet"),
  28584. weight: math.unit(500, "tonnes"),
  28585. name: "Front",
  28586. image: {
  28587. source: "./media/characters/kodran/front.svg",
  28588. extra: 667 / 643,
  28589. bottom: 42 / 709
  28590. }
  28591. },
  28592. flying: {
  28593. height: math.unit(350, "feet"),
  28594. weight: math.unit(500, "tonnes"),
  28595. name: "Flying",
  28596. image: {
  28597. source: "./media/characters/kodran/flying.svg"
  28598. }
  28599. },
  28600. foot: {
  28601. height: math.unit(33, "feet"),
  28602. name: "Foot",
  28603. image: {
  28604. source: "./media/characters/kodran/foot.svg"
  28605. }
  28606. },
  28607. footFront: {
  28608. height: math.unit(19, "feet"),
  28609. name: "Foot (Front)",
  28610. image: {
  28611. source: "./media/characters/kodran/foot-front.svg",
  28612. extra: 261 / 261,
  28613. bottom: 91 / 352
  28614. }
  28615. },
  28616. headFront: {
  28617. height: math.unit(53, "feet"),
  28618. name: "Head (Front)",
  28619. image: {
  28620. source: "./media/characters/kodran/head-front.svg"
  28621. }
  28622. },
  28623. headSide: {
  28624. height: math.unit(65, "feet"),
  28625. name: "Head (Side)",
  28626. image: {
  28627. source: "./media/characters/kodran/head-side.svg"
  28628. }
  28629. },
  28630. throat: {
  28631. height: math.unit(79, "feet"),
  28632. name: "Throat",
  28633. image: {
  28634. source: "./media/characters/kodran/throat.svg"
  28635. }
  28636. },
  28637. },
  28638. [
  28639. {
  28640. name: "Large",
  28641. height: math.unit(106, "feet"),
  28642. default: true
  28643. },
  28644. ]
  28645. ))
  28646. characterMakers.push(() => makeCharacter(
  28647. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28648. {
  28649. side: {
  28650. height: math.unit(11, "feet"),
  28651. weight: math.unit(150, "lb"),
  28652. name: "Side",
  28653. image: {
  28654. source: "./media/characters/pyxaron/side.svg",
  28655. extra: 305 / 195,
  28656. bottom: 17 / 322
  28657. }
  28658. },
  28659. },
  28660. [
  28661. {
  28662. name: "Normal",
  28663. height: math.unit(11, "feet"),
  28664. default: true
  28665. },
  28666. ]
  28667. ))
  28668. characterMakers.push(() => makeCharacter(
  28669. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28670. {
  28671. front: {
  28672. height: math.unit(6, "feet"),
  28673. weight: math.unit(150, "lb"),
  28674. name: "Front",
  28675. image: {
  28676. source: "./media/characters/meep/front.svg",
  28677. extra: 88 / 80,
  28678. bottom: 6 / 94
  28679. }
  28680. },
  28681. },
  28682. [
  28683. {
  28684. name: "Fun Sized",
  28685. height: math.unit(2, "inches"),
  28686. default: true
  28687. },
  28688. {
  28689. name: "Friend Sized",
  28690. height: math.unit(8, "inches")
  28691. },
  28692. ]
  28693. ))
  28694. characterMakers.push(() => makeCharacter(
  28695. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28696. {
  28697. front: {
  28698. height: math.unit(15, "feet"),
  28699. weight: math.unit(2500, "lb"),
  28700. name: "Front",
  28701. image: {
  28702. source: "./media/characters/holly-rabbit/front.svg",
  28703. extra: 1433 / 1233,
  28704. bottom: 125 / 1558
  28705. }
  28706. },
  28707. dick: {
  28708. height: math.unit(4.6, "feet"),
  28709. name: "Dick",
  28710. image: {
  28711. source: "./media/characters/holly-rabbit/dick.svg"
  28712. }
  28713. },
  28714. },
  28715. [
  28716. {
  28717. name: "Normal",
  28718. height: math.unit(15, "feet"),
  28719. default: true
  28720. },
  28721. {
  28722. name: "Macro",
  28723. height: math.unit(250, "feet")
  28724. },
  28725. {
  28726. name: "Macro+",
  28727. height: math.unit(2500, "feet")
  28728. },
  28729. ]
  28730. ))
  28731. characterMakers.push(() => makeCharacter(
  28732. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28733. {
  28734. front: {
  28735. height: math.unit(3.02, "meters"),
  28736. weight: math.unit(500, "kg"),
  28737. name: "Front",
  28738. image: {
  28739. source: "./media/characters/drena/front.svg",
  28740. extra: 282 / 243,
  28741. bottom: 8 / 290
  28742. }
  28743. },
  28744. side: {
  28745. height: math.unit(3.02, "meters"),
  28746. weight: math.unit(500, "kg"),
  28747. name: "Side",
  28748. image: {
  28749. source: "./media/characters/drena/side.svg",
  28750. extra: 280 / 245,
  28751. bottom: 10 / 290
  28752. }
  28753. },
  28754. back: {
  28755. height: math.unit(3.02, "meters"),
  28756. weight: math.unit(500, "kg"),
  28757. name: "Back",
  28758. image: {
  28759. source: "./media/characters/drena/back.svg",
  28760. extra: 278 / 243,
  28761. bottom: 2 / 280
  28762. }
  28763. },
  28764. foot: {
  28765. height: math.unit(0.75, "meters"),
  28766. name: "Foot",
  28767. image: {
  28768. source: "./media/characters/drena/foot.svg"
  28769. }
  28770. },
  28771. maw: {
  28772. height: math.unit(0.82, "meters"),
  28773. name: "Maw",
  28774. image: {
  28775. source: "./media/characters/drena/maw.svg"
  28776. }
  28777. },
  28778. rump: {
  28779. height: math.unit(0.93, "meters"),
  28780. name: "Rump",
  28781. image: {
  28782. source: "./media/characters/drena/rump.svg"
  28783. }
  28784. },
  28785. },
  28786. [
  28787. {
  28788. name: "Normal",
  28789. height: math.unit(3.02, "meters"),
  28790. default: true
  28791. },
  28792. ]
  28793. ))
  28794. characterMakers.push(() => makeCharacter(
  28795. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28796. {
  28797. front: {
  28798. height: math.unit(6 + 4 / 12, "feet"),
  28799. weight: math.unit(250, "lb"),
  28800. name: "Front",
  28801. image: {
  28802. source: "./media/characters/remmyzilla/front.svg",
  28803. extra: 4033 / 3588,
  28804. bottom: 123 / 4156
  28805. }
  28806. },
  28807. back: {
  28808. height: math.unit(6 + 4 / 12, "feet"),
  28809. weight: math.unit(250, "lb"),
  28810. name: "Back",
  28811. image: {
  28812. source: "./media/characters/remmyzilla/back.svg",
  28813. extra: 2687 / 2555,
  28814. bottom: 48 / 2735
  28815. }
  28816. },
  28817. paw: {
  28818. height: math.unit(1.73, "feet"),
  28819. name: "Paw",
  28820. image: {
  28821. source: "./media/characters/remmyzilla/paw.svg"
  28822. }
  28823. },
  28824. maw: {
  28825. height: math.unit(1.73, "feet"),
  28826. name: "Maw",
  28827. image: {
  28828. source: "./media/characters/remmyzilla/maw.svg"
  28829. }
  28830. },
  28831. },
  28832. [
  28833. {
  28834. name: "Normal",
  28835. height: math.unit(6 + 4 / 12, "feet")
  28836. },
  28837. {
  28838. name: "Minimacro",
  28839. height: math.unit(12 + 8 / 12, "feet")
  28840. },
  28841. {
  28842. name: "Normal",
  28843. height: math.unit(640, "feet"),
  28844. default: true
  28845. },
  28846. {
  28847. name: "Megamacro",
  28848. height: math.unit(6400, "feet")
  28849. },
  28850. {
  28851. name: "Gigamacro",
  28852. height: math.unit(64000, "miles")
  28853. },
  28854. ]
  28855. ))
  28856. characterMakers.push(() => makeCharacter(
  28857. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28858. {
  28859. front: {
  28860. height: math.unit(2.5, "meters"),
  28861. weight: math.unit(300, "lb"),
  28862. name: "Front",
  28863. image: {
  28864. source: "./media/characters/lawrence/front.svg",
  28865. extra: 357 / 335,
  28866. bottom: 30 / 387
  28867. }
  28868. },
  28869. back: {
  28870. height: math.unit(2.5, "meters"),
  28871. weight: math.unit(300, "lb"),
  28872. name: "Back",
  28873. image: {
  28874. source: "./media/characters/lawrence/back.svg",
  28875. extra: 357 / 338,
  28876. bottom: 16 / 373
  28877. }
  28878. },
  28879. head: {
  28880. height: math.unit(0.9, "meter"),
  28881. name: "Head",
  28882. image: {
  28883. source: "./media/characters/lawrence/head.svg"
  28884. }
  28885. },
  28886. maw: {
  28887. height: math.unit(0.7, "meter"),
  28888. name: "Maw",
  28889. image: {
  28890. source: "./media/characters/lawrence/maw.svg"
  28891. }
  28892. },
  28893. footBottom: {
  28894. height: math.unit(0.5, "meter"),
  28895. name: "Foot (Bottom)",
  28896. image: {
  28897. source: "./media/characters/lawrence/foot-bottom.svg"
  28898. }
  28899. },
  28900. footTop: {
  28901. height: math.unit(0.5, "meter"),
  28902. name: "Foot (Top)",
  28903. image: {
  28904. source: "./media/characters/lawrence/foot-top.svg"
  28905. }
  28906. },
  28907. },
  28908. [
  28909. {
  28910. name: "Normal",
  28911. height: math.unit(2.5, "meters"),
  28912. default: true
  28913. },
  28914. {
  28915. name: "Macro",
  28916. height: math.unit(95, "meters")
  28917. },
  28918. {
  28919. name: "Megamacro",
  28920. height: math.unit(150, "km")
  28921. },
  28922. ]
  28923. ))
  28924. characterMakers.push(() => makeCharacter(
  28925. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28926. {
  28927. front: {
  28928. height: math.unit(4.2, "meters"),
  28929. name: "Front",
  28930. image: {
  28931. source: "./media/characters/sydney/front.svg",
  28932. extra: 1323 / 1277,
  28933. bottom: 111 / 1434
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Normal",
  28940. height: math.unit(4.2, "meters"),
  28941. default: true
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28947. {
  28948. back: {
  28949. height: math.unit(201, "feet"),
  28950. name: "Back",
  28951. image: {
  28952. source: "./media/characters/jessica/back.svg",
  28953. extra: 273 / 259,
  28954. bottom: 7 / 280
  28955. }
  28956. },
  28957. },
  28958. [
  28959. {
  28960. name: "Normal",
  28961. height: math.unit(201, "feet"),
  28962. default: true
  28963. },
  28964. {
  28965. name: "Megamacro",
  28966. height: math.unit(8, "miles")
  28967. },
  28968. ]
  28969. ))
  28970. characterMakers.push(() => makeCharacter(
  28971. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28972. {
  28973. side: {
  28974. height: math.unit(5.6, "m"),
  28975. weight: math.unit(8000, "kg"),
  28976. name: "Side",
  28977. image: {
  28978. source: "./media/characters/victoria/side.svg",
  28979. extra: 1542/1229,
  28980. bottom: 124/1666
  28981. }
  28982. },
  28983. maw: {
  28984. height: math.unit(7.14, "feet"),
  28985. name: "Maw",
  28986. image: {
  28987. source: "./media/characters/victoria/maw.svg"
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Normal",
  28994. height: math.unit(5.6, "m"),
  28995. default: true
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29001. {
  29002. front: {
  29003. height: math.unit(5 + 6 / 12, "feet"),
  29004. name: "Front",
  29005. image: {
  29006. source: "./media/characters/cat/front.svg",
  29007. extra: 1449/1295,
  29008. bottom: 34/1483
  29009. }
  29010. },
  29011. back: {
  29012. height: math.unit(5 + 6 / 12, "feet"),
  29013. name: "Back",
  29014. image: {
  29015. source: "./media/characters/cat/back.svg",
  29016. extra: 1466/1301,
  29017. bottom: 19/1485
  29018. }
  29019. },
  29020. taur: {
  29021. height: math.unit(7, "feet"),
  29022. name: "Taur",
  29023. image: {
  29024. source: "./media/characters/cat/taur.svg",
  29025. extra: 1389/1233,
  29026. bottom: 83/1472
  29027. }
  29028. },
  29029. lucarioFront: {
  29030. height: math.unit(4, "feet"),
  29031. name: "Lucario (Front)",
  29032. image: {
  29033. source: "./media/characters/cat/lucario-front.svg",
  29034. extra: 1149/1019,
  29035. bottom: 84/1233
  29036. }
  29037. },
  29038. lucarioBack: {
  29039. height: math.unit(4, "feet"),
  29040. name: "Lucario (Back)",
  29041. image: {
  29042. source: "./media/characters/cat/lucario-back.svg",
  29043. extra: 1190/1059,
  29044. bottom: 33/1223
  29045. }
  29046. },
  29047. megaLucario: {
  29048. height: math.unit(4, "feet"),
  29049. name: "Mega Lucario",
  29050. image: {
  29051. source: "./media/characters/cat/mega-lucario.svg",
  29052. extra: 1515 / 1319,
  29053. bottom: 63 / 1578
  29054. }
  29055. },
  29056. nickit: {
  29057. height: math.unit(2, "feet"),
  29058. name: "Nickit",
  29059. image: {
  29060. source: "./media/characters/cat/nickit.svg",
  29061. extra: 1980 / 1585,
  29062. bottom: 102 / 2082
  29063. }
  29064. },
  29065. lopunnyFront: {
  29066. height: math.unit(5, "feet"),
  29067. name: "Lopunny (Front)",
  29068. image: {
  29069. source: "./media/characters/cat/lopunny-front.svg",
  29070. extra: 1782 / 1469,
  29071. bottom: 38 / 1820
  29072. }
  29073. },
  29074. lopunnyBack: {
  29075. height: math.unit(5, "feet"),
  29076. name: "Lopunny (Back)",
  29077. image: {
  29078. source: "./media/characters/cat/lopunny-back.svg",
  29079. extra: 1660 / 1490,
  29080. bottom: 25 / 1685
  29081. }
  29082. },
  29083. },
  29084. [
  29085. {
  29086. name: "Really small",
  29087. height: math.unit(1, "nm")
  29088. },
  29089. {
  29090. name: "Micro",
  29091. height: math.unit(5, "inches")
  29092. },
  29093. {
  29094. name: "Normal",
  29095. height: math.unit(5 + 6 / 12, "feet"),
  29096. default: true
  29097. },
  29098. {
  29099. name: "Macro",
  29100. height: math.unit(50, "feet")
  29101. },
  29102. {
  29103. name: "Macro+",
  29104. height: math.unit(150, "feet")
  29105. },
  29106. {
  29107. name: "Megamacro",
  29108. height: math.unit(100, "miles")
  29109. },
  29110. ]
  29111. ))
  29112. characterMakers.push(() => makeCharacter(
  29113. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29114. {
  29115. front: {
  29116. height: math.unit(63.4, "meters"),
  29117. weight: math.unit(3.28349e+6, "kilograms"),
  29118. name: "Front",
  29119. image: {
  29120. source: "./media/characters/kirina-violet/front.svg",
  29121. extra: 2812 / 2725,
  29122. bottom: 0 / 2812
  29123. }
  29124. },
  29125. back: {
  29126. height: math.unit(63.4, "meters"),
  29127. weight: math.unit(3.28349e+6, "kilograms"),
  29128. name: "Back",
  29129. image: {
  29130. source: "./media/characters/kirina-violet/back.svg",
  29131. extra: 2812 / 2725,
  29132. bottom: 0 / 2812
  29133. }
  29134. },
  29135. mouth: {
  29136. height: math.unit(4.35, "meters"),
  29137. name: "Mouth",
  29138. image: {
  29139. source: "./media/characters/kirina-violet/mouth.svg"
  29140. }
  29141. },
  29142. paw: {
  29143. height: math.unit(5.6, "meters"),
  29144. name: "Paw",
  29145. image: {
  29146. source: "./media/characters/kirina-violet/paw.svg"
  29147. }
  29148. },
  29149. tail: {
  29150. height: math.unit(18, "meters"),
  29151. name: "Tail",
  29152. image: {
  29153. source: "./media/characters/kirina-violet/tail.svg"
  29154. }
  29155. },
  29156. },
  29157. [
  29158. {
  29159. name: "Macro",
  29160. height: math.unit(63.4, "meters"),
  29161. default: true
  29162. },
  29163. ]
  29164. ))
  29165. characterMakers.push(() => makeCharacter(
  29166. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29167. {
  29168. front: {
  29169. height: math.unit(75, "feet"),
  29170. name: "Front",
  29171. image: {
  29172. source: "./media/characters/cat-gigachu/front.svg",
  29173. extra: 1239/1027,
  29174. bottom: 32/1271
  29175. }
  29176. },
  29177. back: {
  29178. height: math.unit(75, "feet"),
  29179. name: "Back",
  29180. image: {
  29181. source: "./media/characters/cat-gigachu/back.svg",
  29182. extra: 1229/1030,
  29183. bottom: 9/1238
  29184. }
  29185. },
  29186. },
  29187. [
  29188. {
  29189. name: "Dynamax",
  29190. height: math.unit(75, "feet"),
  29191. default: true
  29192. },
  29193. ]
  29194. ))
  29195. characterMakers.push(() => makeCharacter(
  29196. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29197. {
  29198. front: {
  29199. height: math.unit(6, "feet"),
  29200. weight: math.unit(150, "lb"),
  29201. name: "Front",
  29202. image: {
  29203. source: "./media/characters/sfaiyan/front.svg",
  29204. extra: 999 / 978,
  29205. bottom: 5 / 1004
  29206. }
  29207. },
  29208. },
  29209. [
  29210. {
  29211. name: "Normal",
  29212. height: math.unit(1.82, "meters")
  29213. },
  29214. {
  29215. name: "Giant",
  29216. height: math.unit(2.27, "km"),
  29217. default: true
  29218. },
  29219. ]
  29220. ))
  29221. characterMakers.push(() => makeCharacter(
  29222. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29223. {
  29224. front: {
  29225. height: math.unit(179, "cm"),
  29226. weight: math.unit(100, "kg"),
  29227. name: "Front",
  29228. image: {
  29229. source: "./media/characters/raunehkeli/front.svg",
  29230. extra: 1934 / 1926,
  29231. bottom: 0 / 1934
  29232. }
  29233. },
  29234. },
  29235. [
  29236. {
  29237. name: "Normal",
  29238. height: math.unit(179, "cm")
  29239. },
  29240. {
  29241. name: "Maximum",
  29242. height: math.unit(575, "meters"),
  29243. default: true
  29244. },
  29245. ]
  29246. ))
  29247. characterMakers.push(() => makeCharacter(
  29248. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29249. {
  29250. front: {
  29251. height: math.unit(6, "feet"),
  29252. weight: math.unit(150, "lb"),
  29253. name: "Front",
  29254. image: {
  29255. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29256. extra: 2625 / 2518,
  29257. bottom: 60 / 2685
  29258. }
  29259. },
  29260. },
  29261. [
  29262. {
  29263. name: "Normal",
  29264. height: math.unit(6 + 2 / 12, "feet")
  29265. },
  29266. {
  29267. name: "Macro",
  29268. height: math.unit(1180, "feet"),
  29269. default: true
  29270. },
  29271. ]
  29272. ))
  29273. characterMakers.push(() => makeCharacter(
  29274. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29275. {
  29276. front: {
  29277. height: math.unit(5 + 6 / 12, "feet"),
  29278. weight: math.unit(108, "lb"),
  29279. name: "Front",
  29280. image: {
  29281. source: "./media/characters/lilith-zott/front.svg",
  29282. extra: 2510 / 2238,
  29283. bottom: 100 / 2610
  29284. }
  29285. },
  29286. frontDressed: {
  29287. height: math.unit(5 + 6 / 12, "feet"),
  29288. weight: math.unit(108, "lb"),
  29289. name: "Front (Dressed)",
  29290. image: {
  29291. source: "./media/characters/lilith-zott/front-dressed.svg",
  29292. extra: 2510 / 2238,
  29293. bottom: 100 / 2610
  29294. }
  29295. },
  29296. },
  29297. [
  29298. {
  29299. name: "Normal",
  29300. height: math.unit(5 + 6 / 12, "feet")
  29301. },
  29302. {
  29303. name: "Macro",
  29304. height: math.unit(1030, "feet"),
  29305. default: true
  29306. },
  29307. ]
  29308. ))
  29309. characterMakers.push(() => makeCharacter(
  29310. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29311. {
  29312. front: {
  29313. height: math.unit(6, "feet"),
  29314. weight: math.unit(150, "lb"),
  29315. name: "Front",
  29316. image: {
  29317. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29318. extra: 2567 / 2435,
  29319. bottom: 39 / 2606
  29320. }
  29321. },
  29322. frontSuper: {
  29323. height: math.unit(6, "feet"),
  29324. name: "Front (Super)",
  29325. image: {
  29326. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29327. extra: 2567 / 2435,
  29328. bottom: 39 / 2606
  29329. }
  29330. },
  29331. },
  29332. [
  29333. {
  29334. name: "Normal",
  29335. height: math.unit(5 + 10 / 12, "feet")
  29336. },
  29337. {
  29338. name: "Macro",
  29339. height: math.unit(1100, "feet"),
  29340. default: true
  29341. },
  29342. ]
  29343. ))
  29344. characterMakers.push(() => makeCharacter(
  29345. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29346. {
  29347. front: {
  29348. height: math.unit(100, "miles"),
  29349. name: "Front",
  29350. image: {
  29351. source: "./media/characters/sona/front.svg",
  29352. extra: 2433 / 2201,
  29353. bottom: 53 / 2486
  29354. }
  29355. },
  29356. foot: {
  29357. height: math.unit(16.1, "miles"),
  29358. name: "Foot",
  29359. image: {
  29360. source: "./media/characters/sona/foot.svg"
  29361. }
  29362. },
  29363. },
  29364. [
  29365. {
  29366. name: "Macro",
  29367. height: math.unit(100, "miles"),
  29368. default: true
  29369. },
  29370. ]
  29371. ))
  29372. characterMakers.push(() => makeCharacter(
  29373. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29374. {
  29375. front: {
  29376. height: math.unit(6, "feet"),
  29377. weight: math.unit(150, "lb"),
  29378. name: "Front",
  29379. image: {
  29380. source: "./media/characters/bailey/front.svg",
  29381. extra: 1778 / 1724,
  29382. bottom: 30 / 1808
  29383. }
  29384. },
  29385. },
  29386. [
  29387. {
  29388. name: "Micro",
  29389. height: math.unit(4, "inches")
  29390. },
  29391. {
  29392. name: "Normal",
  29393. height: math.unit(5 + 5 / 12, "feet"),
  29394. default: true
  29395. },
  29396. {
  29397. name: "Macro",
  29398. height: math.unit(250, "feet")
  29399. },
  29400. {
  29401. name: "Megamacro",
  29402. height: math.unit(100, "miles")
  29403. },
  29404. ]
  29405. ))
  29406. characterMakers.push(() => makeCharacter(
  29407. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29408. {
  29409. front: {
  29410. height: math.unit(5 + 2 / 12, "feet"),
  29411. weight: math.unit(120, "lb"),
  29412. name: "Front",
  29413. image: {
  29414. source: "./media/characters/snaps/front.svg",
  29415. extra: 2370 / 2177,
  29416. bottom: 48 / 2418
  29417. }
  29418. },
  29419. back: {
  29420. height: math.unit(5 + 2 / 12, "feet"),
  29421. weight: math.unit(120, "lb"),
  29422. name: "Back",
  29423. image: {
  29424. source: "./media/characters/snaps/back.svg",
  29425. extra: 2408 / 2258,
  29426. bottom: 15 / 2423
  29427. }
  29428. },
  29429. },
  29430. [
  29431. {
  29432. name: "Micro",
  29433. height: math.unit(9, "inches")
  29434. },
  29435. {
  29436. name: "Normal",
  29437. height: math.unit(5 + 2 / 12, "feet"),
  29438. default: true
  29439. },
  29440. {
  29441. name: "Mini Macro",
  29442. height: math.unit(10, "feet")
  29443. },
  29444. ]
  29445. ))
  29446. characterMakers.push(() => makeCharacter(
  29447. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29448. {
  29449. front: {
  29450. height: math.unit(1.8, "meters"),
  29451. weight: math.unit(85, "kg"),
  29452. name: "Front",
  29453. image: {
  29454. source: "./media/characters/azteck/front.svg",
  29455. extra: 2815 / 2625,
  29456. bottom: 89 / 2904
  29457. }
  29458. },
  29459. back: {
  29460. height: math.unit(1.8, "meters"),
  29461. weight: math.unit(85, "kg"),
  29462. name: "Back",
  29463. image: {
  29464. source: "./media/characters/azteck/back.svg",
  29465. extra: 2856 / 2648,
  29466. bottom: 85 / 2941
  29467. }
  29468. },
  29469. frontDressed: {
  29470. height: math.unit(1.8, "meters"),
  29471. weight: math.unit(85, "kg"),
  29472. name: "Front (Dressed)",
  29473. image: {
  29474. source: "./media/characters/azteck/front-dressed.svg",
  29475. extra: 2147 / 2003,
  29476. bottom: 68 / 2215
  29477. }
  29478. },
  29479. head: {
  29480. height: math.unit(0.47, "meters"),
  29481. weight: math.unit(85, "kg"),
  29482. name: "Head",
  29483. image: {
  29484. source: "./media/characters/azteck/head.svg"
  29485. }
  29486. },
  29487. },
  29488. [
  29489. {
  29490. name: "Bite sized",
  29491. height: math.unit(16, "cm")
  29492. },
  29493. {
  29494. name: "Normal",
  29495. height: math.unit(1.8, "meters"),
  29496. default: true
  29497. },
  29498. ]
  29499. ))
  29500. characterMakers.push(() => makeCharacter(
  29501. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29502. {
  29503. front: {
  29504. height: math.unit(6, "feet"),
  29505. weight: math.unit(150, "lb"),
  29506. name: "Front",
  29507. image: {
  29508. source: "./media/characters/pidge/front.svg",
  29509. extra: 620 / 588,
  29510. bottom: 9 / 629
  29511. }
  29512. },
  29513. back: {
  29514. height: math.unit(6, "feet"),
  29515. weight: math.unit(150, "lb"),
  29516. name: "Back",
  29517. image: {
  29518. source: "./media/characters/pidge/back.svg",
  29519. extra: 620 / 588,
  29520. bottom: 9 / 629
  29521. }
  29522. },
  29523. },
  29524. [
  29525. {
  29526. name: "Macro",
  29527. height: math.unit(1, "mile"),
  29528. default: true
  29529. },
  29530. ]
  29531. ))
  29532. characterMakers.push(() => makeCharacter(
  29533. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29534. {
  29535. front: {
  29536. height: math.unit(6, "feet"),
  29537. weight: math.unit(150, "lb"),
  29538. name: "Front",
  29539. image: {
  29540. source: "./media/characters/en/front.svg",
  29541. extra: 1697 / 1563,
  29542. bottom: 103 / 1800
  29543. }
  29544. },
  29545. back: {
  29546. height: math.unit(6, "feet"),
  29547. weight: math.unit(150, "lb"),
  29548. name: "Back",
  29549. image: {
  29550. source: "./media/characters/en/back.svg",
  29551. extra: 1700 / 1570,
  29552. bottom: 51 / 1751
  29553. }
  29554. },
  29555. frontDressed: {
  29556. height: math.unit(6, "feet"),
  29557. weight: math.unit(150, "lb"),
  29558. name: "Front (Dressed)",
  29559. image: {
  29560. source: "./media/characters/en/front-dressed.svg",
  29561. extra: 1697 / 1563,
  29562. bottom: 103 / 1800
  29563. }
  29564. },
  29565. backDressed: {
  29566. height: math.unit(6, "feet"),
  29567. weight: math.unit(150, "lb"),
  29568. name: "Back (Dressed)",
  29569. image: {
  29570. source: "./media/characters/en/back-dressed.svg",
  29571. extra: 1700 / 1570,
  29572. bottom: 51 / 1751
  29573. }
  29574. },
  29575. },
  29576. [
  29577. {
  29578. name: "Macro",
  29579. height: math.unit(210, "feet"),
  29580. default: true
  29581. },
  29582. ]
  29583. ))
  29584. characterMakers.push(() => makeCharacter(
  29585. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29586. {
  29587. front: {
  29588. height: math.unit(6, "feet"),
  29589. weight: math.unit(150, "lb"),
  29590. name: "Front",
  29591. image: {
  29592. source: "./media/characters/haze-orris/front.svg",
  29593. extra: 3975 / 3525,
  29594. bottom: 137 / 4112
  29595. }
  29596. },
  29597. },
  29598. [
  29599. {
  29600. name: "Micro",
  29601. height: math.unit(150, "mm"),
  29602. default: true
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29608. {
  29609. front: {
  29610. height: math.unit(6, "feet"),
  29611. weight: math.unit(150, "lb"),
  29612. name: "Front",
  29613. image: {
  29614. source: "./media/characters/casselene-yaro/front.svg",
  29615. extra: 4721 / 4541,
  29616. bottom: 82 / 4803
  29617. }
  29618. },
  29619. back: {
  29620. height: math.unit(6, "feet"),
  29621. weight: math.unit(150, "lb"),
  29622. name: "Back",
  29623. image: {
  29624. source: "./media/characters/casselene-yaro/back.svg",
  29625. extra: 4569 / 4377,
  29626. bottom: 69 / 4638
  29627. }
  29628. },
  29629. frontDressed: {
  29630. height: math.unit(6, "feet"),
  29631. weight: math.unit(150, "lb"),
  29632. name: "Front-dressed",
  29633. image: {
  29634. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29635. extra: 4721 / 4541,
  29636. bottom: 82 / 4803
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Macro",
  29643. height: math.unit(190, "feet"),
  29644. default: true
  29645. },
  29646. ]
  29647. ))
  29648. characterMakers.push(() => makeCharacter(
  29649. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29650. {
  29651. front: {
  29652. height: math.unit(6, "feet"),
  29653. weight: math.unit(150, "lb"),
  29654. name: "Front",
  29655. image: {
  29656. source: "./media/characters/myra-rue-delore/front.svg",
  29657. extra: 1340 / 1308,
  29658. bottom: 67 / 1407
  29659. }
  29660. },
  29661. back: {
  29662. height: math.unit(6, "feet"),
  29663. weight: math.unit(150, "lb"),
  29664. name: "Back",
  29665. image: {
  29666. source: "./media/characters/myra-rue-delore/back.svg",
  29667. extra: 1341 / 1310,
  29668. bottom: 40 / 1381
  29669. }
  29670. },
  29671. frontDressed: {
  29672. height: math.unit(6, "feet"),
  29673. weight: math.unit(150, "lb"),
  29674. name: "Front (Dressed)",
  29675. image: {
  29676. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29677. extra: 1340 / 1308,
  29678. bottom: 67 / 1407
  29679. }
  29680. },
  29681. },
  29682. [
  29683. {
  29684. name: "Macro",
  29685. height: math.unit(150, "feet"),
  29686. default: true
  29687. },
  29688. ]
  29689. ))
  29690. characterMakers.push(() => makeCharacter(
  29691. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29692. {
  29693. front: {
  29694. height: math.unit(10, "feet"),
  29695. weight: math.unit(15015, "lb"),
  29696. name: "Front",
  29697. image: {
  29698. source: "./media/characters/fem!plat/front.svg",
  29699. extra: 2799 / 2604,
  29700. bottom: 149 / 2948
  29701. }
  29702. },
  29703. },
  29704. [
  29705. {
  29706. name: "Normal",
  29707. height: math.unit(10, "feet"),
  29708. default: true
  29709. },
  29710. {
  29711. name: "Macro",
  29712. height: math.unit(100, "feet")
  29713. },
  29714. {
  29715. name: "Megamacro",
  29716. height: math.unit(1000, "feet")
  29717. },
  29718. ]
  29719. ))
  29720. characterMakers.push(() => makeCharacter(
  29721. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29722. {
  29723. front: {
  29724. height: math.unit(15 + 5 / 12, "feet"),
  29725. weight: math.unit(4600, "lb"),
  29726. name: "Front",
  29727. image: {
  29728. source: "./media/characters/neapolitan-ananassa/front.svg",
  29729. extra: 2903 / 2736,
  29730. bottom: 0 / 2903
  29731. }
  29732. },
  29733. side: {
  29734. height: math.unit(15 + 5 / 12, "feet"),
  29735. weight: math.unit(4600, "lb"),
  29736. name: "Side",
  29737. image: {
  29738. source: "./media/characters/neapolitan-ananassa/side.svg",
  29739. extra: 2925 / 2719,
  29740. bottom: 0 / 2925
  29741. }
  29742. },
  29743. back: {
  29744. height: math.unit(15 + 5 / 12, "feet"),
  29745. weight: math.unit(4600, "lb"),
  29746. name: "Back",
  29747. image: {
  29748. source: "./media/characters/neapolitan-ananassa/back.svg",
  29749. extra: 2903 / 2736,
  29750. bottom: 0 / 2903
  29751. }
  29752. },
  29753. },
  29754. [
  29755. {
  29756. name: "Normal",
  29757. height: math.unit(15 + 5 / 12, "feet"),
  29758. default: true
  29759. },
  29760. {
  29761. name: "Post-Millenium",
  29762. height: math.unit(35 + 5 / 12, "feet")
  29763. },
  29764. {
  29765. name: "Post-Era",
  29766. height: math.unit(450 + 5 / 12, "feet")
  29767. },
  29768. ]
  29769. ))
  29770. characterMakers.push(() => makeCharacter(
  29771. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29772. {
  29773. front: {
  29774. height: math.unit(300, "meters"),
  29775. weight: math.unit(125000, "tonnes"),
  29776. name: "Front",
  29777. image: {
  29778. source: "./media/characters/pazuzu/front.svg",
  29779. extra: 877 / 794,
  29780. bottom: 47 / 924
  29781. }
  29782. },
  29783. },
  29784. [
  29785. {
  29786. name: "Macro",
  29787. height: math.unit(300, "meters"),
  29788. default: true
  29789. },
  29790. ]
  29791. ))
  29792. characterMakers.push(() => makeCharacter(
  29793. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29794. {
  29795. side: {
  29796. height: math.unit(10 + 7 / 12, "feet"),
  29797. weight: math.unit(2.5, "tons"),
  29798. name: "Side",
  29799. image: {
  29800. source: "./media/characters/aasha/side.svg",
  29801. extra: 1345 / 1245,
  29802. bottom: 111 / 1456
  29803. }
  29804. },
  29805. back: {
  29806. height: math.unit(10 + 7 / 12, "feet"),
  29807. weight: math.unit(2.5, "tons"),
  29808. name: "Back",
  29809. image: {
  29810. source: "./media/characters/aasha/back.svg",
  29811. extra: 1133 / 1057,
  29812. bottom: 257 / 1390
  29813. }
  29814. },
  29815. },
  29816. [
  29817. {
  29818. name: "Normal",
  29819. height: math.unit(10 + 7 / 12, "feet"),
  29820. default: true
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29826. {
  29827. front: {
  29828. height: math.unit(6 + 3 / 12, "feet"),
  29829. name: "Front",
  29830. image: {
  29831. source: "./media/characters/nevan/front.svg",
  29832. extra: 704 / 704,
  29833. bottom: 28 / 732
  29834. }
  29835. },
  29836. back: {
  29837. height: math.unit(6 + 3 / 12, "feet"),
  29838. name: "Back",
  29839. image: {
  29840. source: "./media/characters/nevan/back.svg",
  29841. extra: 714 / 714,
  29842. bottom: 21 / 735
  29843. }
  29844. },
  29845. frontFlaccid: {
  29846. height: math.unit(6 + 3 / 12, "feet"),
  29847. name: "Front (Flaccid)",
  29848. image: {
  29849. source: "./media/characters/nevan/front-flaccid.svg",
  29850. extra: 704 / 704,
  29851. bottom: 28 / 732
  29852. }
  29853. },
  29854. frontErect: {
  29855. height: math.unit(6 + 3 / 12, "feet"),
  29856. name: "Front (Erect)",
  29857. image: {
  29858. source: "./media/characters/nevan/front-erect.svg",
  29859. extra: 704 / 704,
  29860. bottom: 28 / 732
  29861. }
  29862. },
  29863. backFlaccid: {
  29864. height: math.unit(6 + 3 / 12, "feet"),
  29865. name: "Back (Flaccid)",
  29866. image: {
  29867. source: "./media/characters/nevan/back-flaccid.svg",
  29868. extra: 714 / 714,
  29869. bottom: 21 / 735
  29870. }
  29871. },
  29872. },
  29873. [
  29874. {
  29875. name: "Normal",
  29876. height: math.unit(6 + 3 / 12, "feet"),
  29877. default: true
  29878. },
  29879. ]
  29880. ))
  29881. characterMakers.push(() => makeCharacter(
  29882. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29883. {
  29884. front: {
  29885. height: math.unit(4, "feet"),
  29886. name: "Front",
  29887. image: {
  29888. source: "./media/characters/arhan/front.svg",
  29889. extra: 3368 / 3133,
  29890. bottom: 0 / 3368
  29891. }
  29892. },
  29893. side: {
  29894. height: math.unit(4, "feet"),
  29895. name: "Side",
  29896. image: {
  29897. source: "./media/characters/arhan/side.svg",
  29898. extra: 3347 / 3105,
  29899. bottom: 0 / 3347
  29900. }
  29901. },
  29902. tongue: {
  29903. height: math.unit(1.42, "feet"),
  29904. name: "Tongue",
  29905. image: {
  29906. source: "./media/characters/arhan/tongue.svg"
  29907. }
  29908. },
  29909. head: {
  29910. height: math.unit(0.85, "feet"),
  29911. name: "Head",
  29912. image: {
  29913. source: "./media/characters/arhan/head.svg"
  29914. }
  29915. },
  29916. },
  29917. [
  29918. {
  29919. name: "Normal",
  29920. height: math.unit(4, "feet"),
  29921. default: true
  29922. },
  29923. ]
  29924. ))
  29925. characterMakers.push(() => makeCharacter(
  29926. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29927. {
  29928. front: {
  29929. height: math.unit(5 + 7.5 / 12, "feet"),
  29930. weight: math.unit(120, "lb"),
  29931. name: "Front",
  29932. image: {
  29933. source: "./media/characters/digi-duncan/front.svg",
  29934. extra: 330 / 326,
  29935. bottom: 16 / 346
  29936. }
  29937. },
  29938. side: {
  29939. height: math.unit(5 + 7.5 / 12, "feet"),
  29940. weight: math.unit(120, "lb"),
  29941. name: "Side",
  29942. image: {
  29943. source: "./media/characters/digi-duncan/side.svg",
  29944. extra: 341 / 337,
  29945. bottom: 1 / 342
  29946. }
  29947. },
  29948. back: {
  29949. height: math.unit(5 + 7.5 / 12, "feet"),
  29950. weight: math.unit(120, "lb"),
  29951. name: "Back",
  29952. image: {
  29953. source: "./media/characters/digi-duncan/back.svg",
  29954. extra: 330 / 326,
  29955. bottom: 12 / 342
  29956. }
  29957. },
  29958. },
  29959. [
  29960. {
  29961. name: "Speck",
  29962. height: math.unit(0.25, "mm")
  29963. },
  29964. {
  29965. name: "Micro",
  29966. height: math.unit(5, "mm")
  29967. },
  29968. {
  29969. name: "Tiny",
  29970. height: math.unit(0.5, "inches"),
  29971. default: true
  29972. },
  29973. {
  29974. name: "Human",
  29975. height: math.unit(5 + 7.5 / 12, "feet")
  29976. },
  29977. {
  29978. name: "Minigiant",
  29979. height: math.unit(8 + 5.25, "feet")
  29980. },
  29981. {
  29982. name: "Giant",
  29983. height: math.unit(2000, "feet")
  29984. },
  29985. {
  29986. name: "Mega",
  29987. height: math.unit(371.1, "miles")
  29988. },
  29989. ]
  29990. ))
  29991. characterMakers.push(() => makeCharacter(
  29992. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29993. {
  29994. front: {
  29995. height: math.unit(2, "meters"),
  29996. weight: math.unit(350, "kg"),
  29997. name: "Front",
  29998. image: {
  29999. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30000. extra: 898 / 838,
  30001. bottom: 9 / 907
  30002. }
  30003. },
  30004. },
  30005. [
  30006. {
  30007. name: "Micro",
  30008. height: math.unit(8, "meters")
  30009. },
  30010. {
  30011. name: "Normal",
  30012. height: math.unit(50, "meters"),
  30013. default: true
  30014. },
  30015. {
  30016. name: "Macro",
  30017. height: math.unit(500, "meters")
  30018. },
  30019. ]
  30020. ))
  30021. characterMakers.push(() => makeCharacter(
  30022. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30023. {
  30024. front: {
  30025. height: math.unit(6 + 6 / 12, "feet"),
  30026. name: "Front",
  30027. image: {
  30028. source: "./media/characters/khardesh/front.svg",
  30029. extra: 1788/1596,
  30030. bottom: 66/1854
  30031. }
  30032. },
  30033. back: {
  30034. height: math.unit(6 + 6 / 12, "feet"),
  30035. name: "Back",
  30036. image: {
  30037. source: "./media/characters/khardesh/back.svg",
  30038. extra: 1781/1584,
  30039. bottom: 68/1849
  30040. }
  30041. },
  30042. },
  30043. [
  30044. {
  30045. name: "Normal",
  30046. height: math.unit(6 + 6 / 12, "feet"),
  30047. default: true
  30048. },
  30049. {
  30050. name: "Normal+",
  30051. height: math.unit(4, "meters")
  30052. },
  30053. {
  30054. name: "Macro",
  30055. height: math.unit(50, "meters")
  30056. },
  30057. {
  30058. name: "Macro+",
  30059. height: math.unit(100, "meters")
  30060. },
  30061. {
  30062. name: "Megamacro",
  30063. height: math.unit(20, "km")
  30064. },
  30065. ]
  30066. ))
  30067. characterMakers.push(() => makeCharacter(
  30068. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30069. {
  30070. front: {
  30071. height: math.unit(6, "feet"),
  30072. weight: math.unit(150, "lb"),
  30073. name: "Front",
  30074. image: {
  30075. source: "./media/characters/kosho/front.svg",
  30076. extra: 1847 / 1847,
  30077. bottom: 86 / 1933
  30078. }
  30079. },
  30080. },
  30081. [
  30082. {
  30083. name: "Second-stage micro",
  30084. height: math.unit(0.5, "inches")
  30085. },
  30086. {
  30087. name: "First-stage micro",
  30088. height: math.unit(6, "inches")
  30089. },
  30090. {
  30091. name: "Normal",
  30092. height: math.unit(6, "feet"),
  30093. default: true
  30094. },
  30095. {
  30096. name: "First-stage macro",
  30097. height: math.unit(72, "feet")
  30098. },
  30099. {
  30100. name: "Second-stage macro",
  30101. height: math.unit(864, "feet")
  30102. },
  30103. ]
  30104. ))
  30105. characterMakers.push(() => makeCharacter(
  30106. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30107. {
  30108. normal: {
  30109. height: math.unit(4 + 6 / 12, "feet"),
  30110. name: "Normal",
  30111. image: {
  30112. source: "./media/characters/hydra/normal.svg",
  30113. extra: 2833 / 2634,
  30114. bottom: 68 / 2901
  30115. }
  30116. },
  30117. smol: {
  30118. height: math.unit(0.705, "inches"),
  30119. name: "Smol",
  30120. image: {
  30121. source: "./media/characters/hydra/smol.svg",
  30122. extra: 2715 / 2540,
  30123. bottom: 0 / 2715
  30124. }
  30125. },
  30126. },
  30127. [
  30128. {
  30129. name: "Normal",
  30130. height: math.unit(4 + 6 / 12, "feet"),
  30131. default: true
  30132. }
  30133. ]
  30134. ))
  30135. characterMakers.push(() => makeCharacter(
  30136. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30137. {
  30138. front: {
  30139. height: math.unit(0.6, "cm"),
  30140. name: "Front",
  30141. image: {
  30142. source: "./media/characters/daz/front.svg",
  30143. extra: 1682 / 1164,
  30144. bottom: 42 / 1724
  30145. }
  30146. },
  30147. },
  30148. [
  30149. {
  30150. name: "Normal",
  30151. height: math.unit(0.6, "cm"),
  30152. default: true
  30153. },
  30154. ]
  30155. ))
  30156. characterMakers.push(() => makeCharacter(
  30157. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30158. {
  30159. front: {
  30160. height: math.unit(6, "feet"),
  30161. weight: math.unit(235, "lb"),
  30162. name: "Front",
  30163. image: {
  30164. source: "./media/characters/theo-pangolin/front.svg",
  30165. extra: 1996 / 1969,
  30166. bottom: 115 / 2111
  30167. }
  30168. },
  30169. back: {
  30170. height: math.unit(6, "feet"),
  30171. weight: math.unit(235, "lb"),
  30172. name: "Back",
  30173. image: {
  30174. source: "./media/characters/theo-pangolin/back.svg",
  30175. extra: 1979 / 1979,
  30176. bottom: 40 / 2019
  30177. }
  30178. },
  30179. feral: {
  30180. height: math.unit(2, "feet"),
  30181. weight: math.unit(30, "lb"),
  30182. name: "Feral",
  30183. image: {
  30184. source: "./media/characters/theo-pangolin/feral.svg",
  30185. extra: 803 / 791,
  30186. bottom: 181 / 984
  30187. }
  30188. },
  30189. footFive: {
  30190. height: math.unit(1.43, "feet"),
  30191. name: "Foot (Five Toes)",
  30192. image: {
  30193. source: "./media/characters/theo-pangolin/foot-five.svg"
  30194. }
  30195. },
  30196. footFour: {
  30197. height: math.unit(1.43, "feet"),
  30198. name: "Foot (Four Toes)",
  30199. image: {
  30200. source: "./media/characters/theo-pangolin/foot-four.svg"
  30201. }
  30202. },
  30203. handFour: {
  30204. height: math.unit(0.81, "feet"),
  30205. name: "Hand (Four Fingers)",
  30206. image: {
  30207. source: "./media/characters/theo-pangolin/hand-four.svg"
  30208. }
  30209. },
  30210. handThree: {
  30211. height: math.unit(0.81, "feet"),
  30212. name: "Hand (Three Fingers)",
  30213. image: {
  30214. source: "./media/characters/theo-pangolin/hand-three.svg"
  30215. }
  30216. },
  30217. headFront: {
  30218. height: math.unit(1.37, "feet"),
  30219. name: "Head (Front)",
  30220. image: {
  30221. source: "./media/characters/theo-pangolin/head-front.svg"
  30222. }
  30223. },
  30224. headSide: {
  30225. height: math.unit(1.43, "feet"),
  30226. name: "Head (Side)",
  30227. image: {
  30228. source: "./media/characters/theo-pangolin/head-side.svg"
  30229. }
  30230. },
  30231. tongue: {
  30232. height: math.unit(2.29, "feet"),
  30233. name: "Tongue",
  30234. image: {
  30235. source: "./media/characters/theo-pangolin/tongue.svg"
  30236. }
  30237. },
  30238. },
  30239. [
  30240. {
  30241. name: "Normal",
  30242. height: math.unit(6, "feet")
  30243. },
  30244. {
  30245. name: "Macro",
  30246. height: math.unit(400, "feet"),
  30247. default: true
  30248. },
  30249. ]
  30250. ))
  30251. characterMakers.push(() => makeCharacter(
  30252. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30253. {
  30254. front: {
  30255. height: math.unit(6, "inches"),
  30256. weight: math.unit(0.036, "kg"),
  30257. name: "Front",
  30258. image: {
  30259. source: "./media/characters/renée/front.svg",
  30260. extra: 900 / 886,
  30261. bottom: 8 / 908
  30262. }
  30263. },
  30264. },
  30265. [
  30266. {
  30267. name: "Nano",
  30268. height: math.unit(1, "nm")
  30269. },
  30270. {
  30271. name: "Micro",
  30272. height: math.unit(1, "mm")
  30273. },
  30274. {
  30275. name: "Normal",
  30276. height: math.unit(6, "inches")
  30277. },
  30278. {
  30279. name: "Macro",
  30280. height: math.unit(2000, "feet"),
  30281. default: true
  30282. },
  30283. {
  30284. name: "Megamacro",
  30285. height: math.unit(2, "km")
  30286. },
  30287. {
  30288. name: "Gigamacro",
  30289. height: math.unit(2000, "km")
  30290. },
  30291. {
  30292. name: "Teramacro",
  30293. height: math.unit(250000, "km")
  30294. },
  30295. ]
  30296. ))
  30297. characterMakers.push(() => makeCharacter(
  30298. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30299. {
  30300. front: {
  30301. height: math.unit(4, "meters"),
  30302. weight: math.unit(150, "kg"),
  30303. name: "Front",
  30304. image: {
  30305. source: "./media/characters/caledvwlch/front.svg",
  30306. extra: 1760 / 1551,
  30307. bottom: 28 / 1788
  30308. }
  30309. },
  30310. side: {
  30311. height: math.unit(4, "meters"),
  30312. weight: math.unit(150, "kg"),
  30313. name: "Side",
  30314. image: {
  30315. source: "./media/characters/caledvwlch/side.svg",
  30316. extra: 1605 / 1536,
  30317. bottom: 31 / 1636
  30318. }
  30319. },
  30320. back: {
  30321. height: math.unit(4, "meters"),
  30322. weight: math.unit(150, "kg"),
  30323. name: "Back",
  30324. image: {
  30325. source: "./media/characters/caledvwlch/back.svg",
  30326. extra: 1635 / 1565,
  30327. bottom: 27 / 1662
  30328. }
  30329. },
  30330. },
  30331. [
  30332. {
  30333. name: "\"Incognito\"",
  30334. height: math.unit(4, "meters")
  30335. },
  30336. {
  30337. name: "Small rampage",
  30338. height: math.unit(600, "meters")
  30339. },
  30340. {
  30341. name: "Mega",
  30342. height: math.unit(30, "km")
  30343. },
  30344. {
  30345. name: "Home-size",
  30346. height: math.unit(50, "km"),
  30347. default: true
  30348. },
  30349. {
  30350. name: "Giga",
  30351. height: math.unit(300, "km")
  30352. },
  30353. {
  30354. name: "Lounging",
  30355. height: math.unit(11000, "km")
  30356. },
  30357. {
  30358. name: "Planet snacking",
  30359. height: math.unit(2000000, "km")
  30360. },
  30361. ]
  30362. ))
  30363. characterMakers.push(() => makeCharacter(
  30364. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30365. {
  30366. front: {
  30367. height: math.unit(6, "feet"),
  30368. weight: math.unit(215, "lb"),
  30369. name: "Front",
  30370. image: {
  30371. source: "./media/characters/sapphire-svell/front.svg",
  30372. extra: 495 / 455,
  30373. bottom: 20 / 515
  30374. }
  30375. },
  30376. back: {
  30377. height: math.unit(6, "feet"),
  30378. weight: math.unit(216, "lb"),
  30379. name: "Back",
  30380. image: {
  30381. source: "./media/characters/sapphire-svell/back.svg",
  30382. extra: 497 / 477,
  30383. bottom: 7 / 504
  30384. }
  30385. },
  30386. maw: {
  30387. height: math.unit(1.57, "feet"),
  30388. name: "Maw",
  30389. image: {
  30390. source: "./media/characters/sapphire-svell/maw.svg"
  30391. }
  30392. },
  30393. foot: {
  30394. height: math.unit(1.07, "feet"),
  30395. name: "Foot",
  30396. image: {
  30397. source: "./media/characters/sapphire-svell/foot.svg"
  30398. }
  30399. },
  30400. toering: {
  30401. height: math.unit(1.7, "inch"),
  30402. name: "Toering",
  30403. image: {
  30404. source: "./media/characters/sapphire-svell/toering.svg"
  30405. }
  30406. },
  30407. },
  30408. [
  30409. {
  30410. name: "Normal",
  30411. height: math.unit(300, "feet"),
  30412. default: true
  30413. },
  30414. {
  30415. name: "Augmented",
  30416. height: math.unit(1250, "feet")
  30417. },
  30418. {
  30419. name: "Unleashed",
  30420. height: math.unit(3000, "feet")
  30421. },
  30422. ]
  30423. ))
  30424. characterMakers.push(() => makeCharacter(
  30425. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30426. {
  30427. side: {
  30428. height: math.unit(2 + 3 / 12, "feet"),
  30429. weight: math.unit(110, "lb"),
  30430. name: "Side",
  30431. image: {
  30432. source: "./media/characters/glitch-flux/side.svg",
  30433. extra: 997 / 805,
  30434. bottom: 20 / 1017
  30435. }
  30436. },
  30437. },
  30438. [
  30439. {
  30440. name: "Normal",
  30441. height: math.unit(2 + 3 / 12, "feet"),
  30442. default: true
  30443. },
  30444. ]
  30445. ))
  30446. characterMakers.push(() => makeCharacter(
  30447. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30448. {
  30449. front: {
  30450. height: math.unit(4, "meters"),
  30451. name: "Front",
  30452. image: {
  30453. source: "./media/characters/mid/front.svg",
  30454. extra: 507 / 476,
  30455. bottom: 17 / 524
  30456. }
  30457. },
  30458. back: {
  30459. height: math.unit(4, "meters"),
  30460. name: "Back",
  30461. image: {
  30462. source: "./media/characters/mid/back.svg",
  30463. extra: 519 / 487,
  30464. bottom: 7 / 526
  30465. }
  30466. },
  30467. stuck: {
  30468. height: math.unit(2.2, "meters"),
  30469. name: "Stuck",
  30470. image: {
  30471. source: "./media/characters/mid/stuck.svg",
  30472. extra: 1951 / 1869,
  30473. bottom: 88 / 2039
  30474. }
  30475. }
  30476. },
  30477. [
  30478. {
  30479. name: "Normal",
  30480. height: math.unit(4, "meters"),
  30481. default: true
  30482. },
  30483. {
  30484. name: "Big",
  30485. height: math.unit(10, "meters")
  30486. },
  30487. {
  30488. name: "Macro",
  30489. height: math.unit(800, "meters")
  30490. },
  30491. {
  30492. name: "Megamacro",
  30493. height: math.unit(100, "km")
  30494. },
  30495. {
  30496. name: "Overgrown",
  30497. height: math.unit(1, "parsec")
  30498. },
  30499. ]
  30500. ))
  30501. characterMakers.push(() => makeCharacter(
  30502. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30503. {
  30504. front: {
  30505. height: math.unit(2.5, "meters"),
  30506. weight: math.unit(225, "kg"),
  30507. name: "Front",
  30508. image: {
  30509. source: "./media/characters/iris/front.svg",
  30510. extra: 3348 / 3251,
  30511. bottom: 205 / 3553
  30512. }
  30513. },
  30514. maw: {
  30515. height: math.unit(0.56, "meter"),
  30516. name: "Maw",
  30517. image: {
  30518. source: "./media/characters/iris/maw.svg"
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Mewter cat",
  30525. height: math.unit(1.2, "meters")
  30526. },
  30527. {
  30528. name: "Minimacro",
  30529. height: math.unit(2.5, "meters"),
  30530. default: true
  30531. },
  30532. {
  30533. name: "Macro",
  30534. height: math.unit(180, "meters")
  30535. },
  30536. {
  30537. name: "Megamacro",
  30538. height: math.unit(2746, "meters")
  30539. },
  30540. ]
  30541. ))
  30542. characterMakers.push(() => makeCharacter(
  30543. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30544. {
  30545. front: {
  30546. height: math.unit(6, "feet"),
  30547. weight: math.unit(135, "lb"),
  30548. name: "Front",
  30549. image: {
  30550. source: "./media/characters/axel/front.svg",
  30551. extra: 908 / 908,
  30552. bottom: 58 / 966
  30553. }
  30554. },
  30555. side: {
  30556. height: math.unit(6, "feet"),
  30557. weight: math.unit(135, "lb"),
  30558. name: "Side",
  30559. image: {
  30560. source: "./media/characters/axel/side.svg",
  30561. extra: 958 / 958,
  30562. bottom: 11 / 969
  30563. }
  30564. },
  30565. back: {
  30566. height: math.unit(6, "feet"),
  30567. weight: math.unit(135, "lb"),
  30568. name: "Back",
  30569. image: {
  30570. source: "./media/characters/axel/back.svg",
  30571. extra: 887 / 887,
  30572. bottom: 34 / 921
  30573. }
  30574. },
  30575. head: {
  30576. height: math.unit(1.07, "feet"),
  30577. name: "Head",
  30578. image: {
  30579. source: "./media/characters/axel/head.svg"
  30580. }
  30581. },
  30582. beak: {
  30583. height: math.unit(1.4, "feet"),
  30584. name: "Beak",
  30585. image: {
  30586. source: "./media/characters/axel/beak.svg"
  30587. }
  30588. },
  30589. beakSide: {
  30590. height: math.unit(1.4, "feet"),
  30591. name: "Beak Side",
  30592. image: {
  30593. source: "./media/characters/axel/beak-side.svg"
  30594. }
  30595. },
  30596. sheath: {
  30597. height: math.unit(0.5, "feet"),
  30598. name: "Sheath",
  30599. image: {
  30600. source: "./media/characters/axel/sheath.svg"
  30601. }
  30602. },
  30603. dick: {
  30604. height: math.unit(0.98, "feet"),
  30605. name: "Dick",
  30606. image: {
  30607. source: "./media/characters/axel/dick.svg"
  30608. }
  30609. },
  30610. },
  30611. [
  30612. {
  30613. name: "Macro",
  30614. height: math.unit(68, "meters"),
  30615. default: true
  30616. },
  30617. ]
  30618. ))
  30619. characterMakers.push(() => makeCharacter(
  30620. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30621. {
  30622. front: {
  30623. height: math.unit(3.5, "meters"),
  30624. weight: math.unit(1200, "kg"),
  30625. name: "Front",
  30626. image: {
  30627. source: "./media/characters/joanna/front.svg",
  30628. extra: 1596 / 1488,
  30629. bottom: 29 / 1625
  30630. }
  30631. },
  30632. back: {
  30633. height: math.unit(3.5, "meters"),
  30634. weight: math.unit(1200, "kg"),
  30635. name: "Back",
  30636. image: {
  30637. source: "./media/characters/joanna/back.svg",
  30638. extra: 1594 / 1495,
  30639. bottom: 26 / 1620
  30640. }
  30641. },
  30642. frontShorts: {
  30643. height: math.unit(3.5, "meters"),
  30644. weight: math.unit(1200, "kg"),
  30645. name: "Front (Shorts)",
  30646. image: {
  30647. source: "./media/characters/joanna/front-shorts.svg",
  30648. extra: 1596 / 1488,
  30649. bottom: 29 / 1625
  30650. }
  30651. },
  30652. frontBiker: {
  30653. height: math.unit(3.5, "meters"),
  30654. weight: math.unit(1200, "kg"),
  30655. name: "Front (Biker)",
  30656. image: {
  30657. source: "./media/characters/joanna/front-biker.svg",
  30658. extra: 1596 / 1488,
  30659. bottom: 29 / 1625
  30660. }
  30661. },
  30662. backBiker: {
  30663. height: math.unit(3.5, "meters"),
  30664. weight: math.unit(1200, "kg"),
  30665. name: "Back (Biker)",
  30666. image: {
  30667. source: "./media/characters/joanna/back-biker.svg",
  30668. extra: 1594 / 1495,
  30669. bottom: 88 / 1682
  30670. }
  30671. },
  30672. bikeLeft: {
  30673. height: math.unit(2.4, "meters"),
  30674. weight: math.unit(1600, "kg"),
  30675. name: "Bike (Left)",
  30676. image: {
  30677. source: "./media/characters/joanna/bike-left.svg",
  30678. extra: 720 / 720,
  30679. bottom: 8 / 728
  30680. }
  30681. },
  30682. bikeRight: {
  30683. height: math.unit(2.4, "meters"),
  30684. weight: math.unit(1600, "kg"),
  30685. name: "Bike (Right)",
  30686. image: {
  30687. source: "./media/characters/joanna/bike-right.svg",
  30688. extra: 720 / 720,
  30689. bottom: 8 / 728
  30690. }
  30691. },
  30692. },
  30693. [
  30694. {
  30695. name: "Incognito",
  30696. height: math.unit(3.5, "meters")
  30697. },
  30698. {
  30699. name: "Casual Big",
  30700. height: math.unit(200, "meters")
  30701. },
  30702. {
  30703. name: "Macro",
  30704. height: math.unit(600, "meters")
  30705. },
  30706. {
  30707. name: "Original",
  30708. height: math.unit(20, "km"),
  30709. default: true
  30710. },
  30711. {
  30712. name: "Giga",
  30713. height: math.unit(400, "km")
  30714. },
  30715. {
  30716. name: "Lounging",
  30717. height: math.unit(1500, "km")
  30718. },
  30719. {
  30720. name: "Planetary",
  30721. height: math.unit(200000, "km")
  30722. },
  30723. ]
  30724. ))
  30725. characterMakers.push(() => makeCharacter(
  30726. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30727. {
  30728. front: {
  30729. height: math.unit(6, "feet"),
  30730. weight: math.unit(150, "lb"),
  30731. name: "Front",
  30732. image: {
  30733. source: "./media/characters/hugo-sigil/front.svg",
  30734. extra: 522 / 500,
  30735. bottom: 2 / 524
  30736. }
  30737. },
  30738. back: {
  30739. height: math.unit(6, "feet"),
  30740. weight: math.unit(150, "lb"),
  30741. name: "Back",
  30742. image: {
  30743. source: "./media/characters/hugo-sigil/back.svg",
  30744. extra: 519 / 495,
  30745. bottom: 5 / 524
  30746. }
  30747. },
  30748. maw: {
  30749. height: math.unit(1.4, "feet"),
  30750. weight: math.unit(150, "lb"),
  30751. name: "Maw",
  30752. image: {
  30753. source: "./media/characters/hugo-sigil/maw.svg"
  30754. }
  30755. },
  30756. feet: {
  30757. height: math.unit(1.56, "feet"),
  30758. weight: math.unit(150, "lb"),
  30759. name: "Feet",
  30760. image: {
  30761. source: "./media/characters/hugo-sigil/feet.svg",
  30762. extra: 177 / 177,
  30763. bottom: 12 / 189
  30764. }
  30765. },
  30766. },
  30767. [
  30768. {
  30769. name: "Normal",
  30770. height: math.unit(6, "feet")
  30771. },
  30772. {
  30773. name: "Macro",
  30774. height: math.unit(200, "feet"),
  30775. default: true
  30776. },
  30777. ]
  30778. ))
  30779. characterMakers.push(() => makeCharacter(
  30780. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30781. {
  30782. front: {
  30783. height: math.unit(6, "feet"),
  30784. weight: math.unit(150, "lb"),
  30785. name: "Front",
  30786. image: {
  30787. source: "./media/characters/peri/front.svg",
  30788. extra: 2354 / 2233,
  30789. bottom: 49 / 2403
  30790. }
  30791. },
  30792. },
  30793. [
  30794. {
  30795. name: "Really Small",
  30796. height: math.unit(1, "nm")
  30797. },
  30798. {
  30799. name: "Micro",
  30800. height: math.unit(4, "inches")
  30801. },
  30802. {
  30803. name: "Normal",
  30804. height: math.unit(7, "inches"),
  30805. default: true
  30806. },
  30807. {
  30808. name: "Macro",
  30809. height: math.unit(400, "feet")
  30810. },
  30811. {
  30812. name: "Megamacro",
  30813. height: math.unit(100, "miles")
  30814. },
  30815. ]
  30816. ))
  30817. characterMakers.push(() => makeCharacter(
  30818. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30819. {
  30820. frontSlim: {
  30821. height: math.unit(7, "feet"),
  30822. name: "Front (Slim)",
  30823. image: {
  30824. source: "./media/characters/issilora/front-slim.svg",
  30825. extra: 529 / 449,
  30826. bottom: 53 / 582
  30827. }
  30828. },
  30829. sideSlim: {
  30830. height: math.unit(7, "feet"),
  30831. name: "Side (Slim)",
  30832. image: {
  30833. source: "./media/characters/issilora/side-slim.svg",
  30834. extra: 570 / 480,
  30835. bottom: 30 / 600
  30836. }
  30837. },
  30838. backSlim: {
  30839. height: math.unit(7, "feet"),
  30840. name: "Back (Slim)",
  30841. image: {
  30842. source: "./media/characters/issilora/back-slim.svg",
  30843. extra: 537 / 455,
  30844. bottom: 46 / 583
  30845. }
  30846. },
  30847. frontBuff: {
  30848. height: math.unit(7, "feet"),
  30849. name: "Front (Buff)",
  30850. image: {
  30851. source: "./media/characters/issilora/front-buff.svg",
  30852. extra: 2310 / 2035,
  30853. bottom: 335 / 2645
  30854. }
  30855. },
  30856. head: {
  30857. height: math.unit(1.94, "feet"),
  30858. name: "Head",
  30859. image: {
  30860. source: "./media/characters/issilora/head.svg"
  30861. }
  30862. },
  30863. },
  30864. [
  30865. {
  30866. name: "Minimum",
  30867. height: math.unit(7, "feet")
  30868. },
  30869. {
  30870. name: "Comfortable",
  30871. height: math.unit(17, "feet")
  30872. },
  30873. {
  30874. name: "Fun Size",
  30875. height: math.unit(47, "feet")
  30876. },
  30877. {
  30878. name: "Natural Macro",
  30879. height: math.unit(137, "feet"),
  30880. default: true
  30881. },
  30882. {
  30883. name: "Maximum Kaiju",
  30884. height: math.unit(397, "feet")
  30885. },
  30886. ]
  30887. ))
  30888. characterMakers.push(() => makeCharacter(
  30889. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30890. {
  30891. front: {
  30892. height: math.unit(50 + 9/12, "feet"),
  30893. weight: math.unit(32.8, "tons"),
  30894. name: "Front",
  30895. image: {
  30896. source: "./media/characters/irb'iiritaahn/front.svg",
  30897. extra: 1878/1826,
  30898. bottom: 326/2204
  30899. }
  30900. },
  30901. back: {
  30902. height: math.unit(50 + 9/12, "feet"),
  30903. weight: math.unit(32.8, "tons"),
  30904. name: "Back",
  30905. image: {
  30906. source: "./media/characters/irb'iiritaahn/back.svg",
  30907. extra: 2052/2018,
  30908. bottom: 152/2204
  30909. }
  30910. },
  30911. head: {
  30912. height: math.unit(12.86, "feet"),
  30913. name: "Head",
  30914. image: {
  30915. source: "./media/characters/irb'iiritaahn/head.svg"
  30916. }
  30917. },
  30918. maw: {
  30919. height: math.unit(9.66, "feet"),
  30920. name: "Maw",
  30921. image: {
  30922. source: "./media/characters/irb'iiritaahn/maw.svg"
  30923. }
  30924. },
  30925. frontDick: {
  30926. height: math.unit(8.78461, "feet"),
  30927. name: "Front Dick",
  30928. image: {
  30929. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30930. }
  30931. },
  30932. rearDick: {
  30933. height: math.unit(8.78461, "feet"),
  30934. name: "Rear Dick",
  30935. image: {
  30936. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30937. }
  30938. },
  30939. rearDickUnfolded: {
  30940. height: math.unit(8.78, "feet"),
  30941. name: "Rear Dick (Unfolded)",
  30942. image: {
  30943. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30944. }
  30945. },
  30946. wings: {
  30947. height: math.unit(43, "feet"),
  30948. name: "Wings",
  30949. image: {
  30950. source: "./media/characters/irb'iiritaahn/wings.svg"
  30951. }
  30952. },
  30953. },
  30954. [
  30955. {
  30956. name: "Macro",
  30957. height: math.unit(50 + 9/12, "feet"),
  30958. default: true
  30959. },
  30960. ]
  30961. ))
  30962. characterMakers.push(() => makeCharacter(
  30963. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30964. {
  30965. front: {
  30966. height: math.unit(205, "cm"),
  30967. weight: math.unit(102, "kg"),
  30968. name: "Front",
  30969. image: {
  30970. source: "./media/characters/irbisgreif/front.svg",
  30971. extra: 785/706,
  30972. bottom: 13/798
  30973. }
  30974. },
  30975. back: {
  30976. height: math.unit(205, "cm"),
  30977. weight: math.unit(102, "kg"),
  30978. name: "Back",
  30979. image: {
  30980. source: "./media/characters/irbisgreif/back.svg",
  30981. extra: 713/701,
  30982. bottom: 26/739
  30983. }
  30984. },
  30985. frontDressed: {
  30986. height: math.unit(216, "cm"),
  30987. weight: math.unit(102, "kg"),
  30988. name: "Front-dressed",
  30989. image: {
  30990. source: "./media/characters/irbisgreif/front-dressed.svg",
  30991. extra: 902/776,
  30992. bottom: 14/916
  30993. }
  30994. },
  30995. sideDressed: {
  30996. height: math.unit(195, "cm"),
  30997. weight: math.unit(102, "kg"),
  30998. name: "Side-dressed",
  30999. image: {
  31000. source: "./media/characters/irbisgreif/side-dressed.svg",
  31001. extra: 788/688,
  31002. bottom: 21/809
  31003. }
  31004. },
  31005. backDressed: {
  31006. height: math.unit(216, "cm"),
  31007. weight: math.unit(102, "kg"),
  31008. name: "Back-dressed",
  31009. image: {
  31010. source: "./media/characters/irbisgreif/back-dressed.svg",
  31011. extra: 901/783,
  31012. bottom: 10/911
  31013. }
  31014. },
  31015. dick: {
  31016. height: math.unit(0.49, "feet"),
  31017. name: "Dick",
  31018. image: {
  31019. source: "./media/characters/irbisgreif/dick.svg"
  31020. }
  31021. },
  31022. wingTop: {
  31023. height: math.unit(1.93 , "feet"),
  31024. name: "Wing-top",
  31025. image: {
  31026. source: "./media/characters/irbisgreif/wing-top.svg"
  31027. }
  31028. },
  31029. wingBottom: {
  31030. height: math.unit(1.93 , "feet"),
  31031. name: "Wing-bottom",
  31032. image: {
  31033. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31034. }
  31035. },
  31036. },
  31037. [
  31038. {
  31039. name: "Normal",
  31040. height: math.unit(216, "cm"),
  31041. default: true
  31042. },
  31043. ]
  31044. ))
  31045. characterMakers.push(() => makeCharacter(
  31046. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31047. {
  31048. front: {
  31049. height: math.unit(6, "feet"),
  31050. weight: math.unit(150, "lb"),
  31051. name: "Front",
  31052. image: {
  31053. source: "./media/characters/pride/front.svg",
  31054. extra: 1299/1230,
  31055. bottom: 18/1317
  31056. }
  31057. },
  31058. },
  31059. [
  31060. {
  31061. name: "Normal",
  31062. height: math.unit(7, "feet")
  31063. },
  31064. {
  31065. name: "Mini-macro",
  31066. height: math.unit(11, "feet")
  31067. },
  31068. {
  31069. name: "Macro",
  31070. height: math.unit(15, "meters"),
  31071. default: true
  31072. },
  31073. {
  31074. name: "Macro+",
  31075. height: math.unit(40, "meters")
  31076. },
  31077. ]
  31078. ))
  31079. characterMakers.push(() => makeCharacter(
  31080. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31081. {
  31082. front: {
  31083. height: math.unit(4 + 2 / 12, "feet"),
  31084. weight: math.unit(95, "lb"),
  31085. name: "Front",
  31086. image: {
  31087. source: "./media/characters/vaelophis-nyx/front.svg",
  31088. extra: 2532/2330,
  31089. bottom: 0/2532
  31090. }
  31091. },
  31092. back: {
  31093. height: math.unit(4 + 2 / 12, "feet"),
  31094. weight: math.unit(95, "lb"),
  31095. name: "Back",
  31096. image: {
  31097. source: "./media/characters/vaelophis-nyx/back.svg",
  31098. extra: 2484/2361,
  31099. bottom: 0/2484
  31100. }
  31101. },
  31102. feralSide: {
  31103. height: math.unit(2 + 1/12, "feet"),
  31104. weight: math.unit(20, "lb"),
  31105. name: "Feral (Side)",
  31106. image: {
  31107. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31108. extra: 1721/1581,
  31109. bottom: 70/1791
  31110. }
  31111. },
  31112. feralLazing: {
  31113. height: math.unit(1.08, "feet"),
  31114. weight: math.unit(20, "lb"),
  31115. name: "Feral (Lazing)",
  31116. image: {
  31117. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31118. extra: 822/822,
  31119. bottom: 248/1070
  31120. }
  31121. },
  31122. ear: {
  31123. height: math.unit(0.416, "feet"),
  31124. name: "Ear",
  31125. image: {
  31126. source: "./media/characters/vaelophis-nyx/ear.svg"
  31127. }
  31128. },
  31129. eye: {
  31130. height: math.unit(0.0748, "feet"),
  31131. name: "Eye",
  31132. image: {
  31133. source: "./media/characters/vaelophis-nyx/eye.svg"
  31134. }
  31135. },
  31136. mouth: {
  31137. height: math.unit(0.378, "feet"),
  31138. name: "Mouth",
  31139. image: {
  31140. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31141. }
  31142. },
  31143. spade: {
  31144. height: math.unit(0.55, "feet"),
  31145. name: "Spade",
  31146. image: {
  31147. source: "./media/characters/vaelophis-nyx/spade.svg"
  31148. }
  31149. },
  31150. },
  31151. [
  31152. {
  31153. name: "Normal",
  31154. height: math.unit(4 + 2/12, "feet"),
  31155. default: true
  31156. },
  31157. ]
  31158. ))
  31159. characterMakers.push(() => makeCharacter(
  31160. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31161. {
  31162. front: {
  31163. height: math.unit(7, "feet"),
  31164. weight: math.unit(231, "lb"),
  31165. name: "Front",
  31166. image: {
  31167. source: "./media/characters/flux/front.svg",
  31168. extra: 919/871,
  31169. bottom: 0/919
  31170. }
  31171. },
  31172. back: {
  31173. height: math.unit(7, "feet"),
  31174. weight: math.unit(231, "lb"),
  31175. name: "Back",
  31176. image: {
  31177. source: "./media/characters/flux/back.svg",
  31178. extra: 1040/992,
  31179. bottom: 0/1040
  31180. }
  31181. },
  31182. frontDressed: {
  31183. height: math.unit(7, "feet"),
  31184. weight: math.unit(231, "lb"),
  31185. name: "Front (Dressed)",
  31186. image: {
  31187. source: "./media/characters/flux/front-dressed.svg",
  31188. extra: 919/871,
  31189. bottom: 0/919
  31190. }
  31191. },
  31192. feralSide: {
  31193. height: math.unit(5, "feet"),
  31194. weight: math.unit(150, "lb"),
  31195. name: "Feral (Side)",
  31196. image: {
  31197. source: "./media/characters/flux/feral-side.svg",
  31198. extra: 598/528,
  31199. bottom: 28/626
  31200. }
  31201. },
  31202. head: {
  31203. height: math.unit(1.585, "feet"),
  31204. name: "Head",
  31205. image: {
  31206. source: "./media/characters/flux/head.svg"
  31207. }
  31208. },
  31209. headSide: {
  31210. height: math.unit(1.74, "feet"),
  31211. name: "Head (Side)",
  31212. image: {
  31213. source: "./media/characters/flux/head-side.svg"
  31214. }
  31215. },
  31216. headSideFire: {
  31217. height: math.unit(1.76, "feet"),
  31218. name: "Head (Side, Fire)",
  31219. image: {
  31220. source: "./media/characters/flux/head-side-fire.svg"
  31221. }
  31222. },
  31223. },
  31224. [
  31225. {
  31226. name: "Normal",
  31227. height: math.unit(7, "feet"),
  31228. default: true
  31229. },
  31230. ]
  31231. ))
  31232. characterMakers.push(() => makeCharacter(
  31233. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31234. {
  31235. front: {
  31236. height: math.unit(9, "feet"),
  31237. weight: math.unit(1012, "lb"),
  31238. name: "Front",
  31239. image: {
  31240. source: "./media/characters/ulfra-lupae/front.svg",
  31241. extra: 1083/1011,
  31242. bottom: 67/1150
  31243. }
  31244. },
  31245. },
  31246. [
  31247. {
  31248. name: "Micro",
  31249. height: math.unit(6, "inches")
  31250. },
  31251. {
  31252. name: "Socializing",
  31253. height: math.unit(6 + 5/12, "feet")
  31254. },
  31255. {
  31256. name: "Normal",
  31257. height: math.unit(9, "feet"),
  31258. default: true
  31259. },
  31260. {
  31261. name: "Macro",
  31262. height: math.unit(150, "feet")
  31263. },
  31264. ]
  31265. ))
  31266. characterMakers.push(() => makeCharacter(
  31267. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31268. {
  31269. front: {
  31270. height: math.unit(5 + 2/12, "feet"),
  31271. weight: math.unit(120, "lb"),
  31272. name: "Front",
  31273. image: {
  31274. source: "./media/characters/timber/front.svg",
  31275. extra: 2814/2705,
  31276. bottom: 181/2995
  31277. }
  31278. },
  31279. },
  31280. [
  31281. {
  31282. name: "Normal",
  31283. height: math.unit(5 + 2/12, "feet"),
  31284. default: true
  31285. },
  31286. ]
  31287. ))
  31288. characterMakers.push(() => makeCharacter(
  31289. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31290. {
  31291. front: {
  31292. height: math.unit(5 + 7/12, "feet"),
  31293. weight: math.unit(220, "lb"),
  31294. name: "Front",
  31295. image: {
  31296. source: "./media/characters/nicki/front.svg",
  31297. extra: 453/419,
  31298. bottom: 7/460
  31299. }
  31300. },
  31301. frontAlt: {
  31302. height: math.unit(5 + 7/12, "feet"),
  31303. weight: math.unit(220, "lb"),
  31304. name: "Front-alt",
  31305. image: {
  31306. source: "./media/characters/nicki/front-alt.svg",
  31307. extra: 435/411,
  31308. bottom: 12/447
  31309. }
  31310. },
  31311. back: {
  31312. height: math.unit(5 + 7/12, "feet"),
  31313. weight: math.unit(220, "lb"),
  31314. name: "Back",
  31315. image: {
  31316. source: "./media/characters/nicki/back.svg",
  31317. extra: 440/413,
  31318. bottom: 19/459
  31319. }
  31320. },
  31321. taur: {
  31322. height: math.unit(7 + 6/12, "feet"),
  31323. weight: math.unit(700, "lb"),
  31324. name: "Taur",
  31325. image: {
  31326. source: "./media/characters/nicki/taur.svg",
  31327. extra: 975/773,
  31328. bottom: 0/975
  31329. }
  31330. },
  31331. frontNsfw: {
  31332. height: math.unit(5 + 7/12, "feet"),
  31333. weight: math.unit(220, "lb"),
  31334. name: "Front (NSFW)",
  31335. image: {
  31336. source: "./media/characters/nicki/front-nsfw.svg",
  31337. extra: 453/419,
  31338. bottom: 7/460
  31339. }
  31340. },
  31341. frontNsfwAlt: {
  31342. height: math.unit(5 + 7/12, "feet"),
  31343. weight: math.unit(220, "lb"),
  31344. name: "Front (Alt, NSFW)",
  31345. image: {
  31346. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31347. extra: 435/411,
  31348. bottom: 12/447
  31349. }
  31350. },
  31351. backNsfw: {
  31352. height: math.unit(5 + 7/12, "feet"),
  31353. weight: math.unit(220, "lb"),
  31354. name: "Back (NSFW)",
  31355. image: {
  31356. source: "./media/characters/nicki/back-nsfw.svg",
  31357. extra: 440/413,
  31358. bottom: 19/459
  31359. }
  31360. },
  31361. head: {
  31362. height: math.unit(2.1, "feet"),
  31363. name: "Head",
  31364. image: {
  31365. source: "./media/characters/nicki/head.svg"
  31366. }
  31367. },
  31368. paw: {
  31369. height: math.unit(1.88, "feet"),
  31370. name: "Paw",
  31371. image: {
  31372. source: "./media/characters/nicki/paw.svg"
  31373. }
  31374. },
  31375. },
  31376. [
  31377. {
  31378. name: "Normal",
  31379. height: math.unit(5 + 7/12, "feet"),
  31380. default: true
  31381. },
  31382. ]
  31383. ))
  31384. characterMakers.push(() => makeCharacter(
  31385. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31386. {
  31387. front: {
  31388. height: math.unit(7 + 10/12, "feet"),
  31389. weight: math.unit(3.5, "tons"),
  31390. name: "Front",
  31391. image: {
  31392. source: "./media/characters/lee/front.svg",
  31393. extra: 1773/1615,
  31394. bottom: 86/1859
  31395. }
  31396. },
  31397. hand: {
  31398. height: math.unit(1.78, "feet"),
  31399. name: "Hand",
  31400. image: {
  31401. source: "./media/characters/lee/hand.svg"
  31402. }
  31403. },
  31404. maw: {
  31405. height: math.unit(1.18, "feet"),
  31406. name: "Maw",
  31407. image: {
  31408. source: "./media/characters/lee/maw.svg"
  31409. }
  31410. },
  31411. },
  31412. [
  31413. {
  31414. name: "Normal",
  31415. height: math.unit(7 + 10/12, "feet"),
  31416. default: true
  31417. },
  31418. ]
  31419. ))
  31420. characterMakers.push(() => makeCharacter(
  31421. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31422. {
  31423. front: {
  31424. height: math.unit(9, "feet"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/guti/front.svg",
  31428. extra: 4551/4355,
  31429. bottom: 123/4674
  31430. }
  31431. },
  31432. tongue: {
  31433. height: math.unit(1, "feet"),
  31434. name: "Tongue",
  31435. image: {
  31436. source: "./media/characters/guti/tongue.svg"
  31437. }
  31438. },
  31439. paw: {
  31440. height: math.unit(1.18, "feet"),
  31441. name: "Paw",
  31442. image: {
  31443. source: "./media/characters/guti/paw.svg"
  31444. }
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Normal",
  31450. height: math.unit(9, "feet"),
  31451. default: true
  31452. },
  31453. ]
  31454. ))
  31455. characterMakers.push(() => makeCharacter(
  31456. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31457. {
  31458. side: {
  31459. height: math.unit(5, "meters"),
  31460. name: "Side",
  31461. image: {
  31462. source: "./media/characters/vesper/side.svg",
  31463. extra: 1605/1518,
  31464. bottom: 0/1605
  31465. }
  31466. },
  31467. },
  31468. [
  31469. {
  31470. name: "Small",
  31471. height: math.unit(5, "meters")
  31472. },
  31473. {
  31474. name: "Sage",
  31475. height: math.unit(100, "meters"),
  31476. default: true
  31477. },
  31478. {
  31479. name: "Fun Size",
  31480. height: math.unit(600, "meters")
  31481. },
  31482. {
  31483. name: "Goddess",
  31484. height: math.unit(20000, "km")
  31485. },
  31486. {
  31487. name: "Maximum",
  31488. height: math.unit(5, "galaxies")
  31489. },
  31490. ]
  31491. ))
  31492. characterMakers.push(() => makeCharacter(
  31493. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31494. {
  31495. front: {
  31496. height: math.unit(6 + 3/12, "feet"),
  31497. weight: math.unit(190, "lb"),
  31498. name: "Front",
  31499. image: {
  31500. source: "./media/characters/gawain/front.svg",
  31501. extra: 2222/2139,
  31502. bottom: 90/2312
  31503. }
  31504. },
  31505. back: {
  31506. height: math.unit(6 + 3/12, "feet"),
  31507. weight: math.unit(190, "lb"),
  31508. name: "Back",
  31509. image: {
  31510. source: "./media/characters/gawain/back.svg",
  31511. extra: 2199/2111,
  31512. bottom: 73/2272
  31513. }
  31514. },
  31515. },
  31516. [
  31517. {
  31518. name: "Normal",
  31519. height: math.unit(6 + 3/12, "feet"),
  31520. default: true
  31521. },
  31522. ]
  31523. ))
  31524. characterMakers.push(() => makeCharacter(
  31525. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31526. {
  31527. side: {
  31528. height: math.unit(3.5, "meters"),
  31529. weight: math.unit(16000, "lb"),
  31530. name: "Side",
  31531. image: {
  31532. source: "./media/characters/dascalti/side.svg",
  31533. extra: 392/273,
  31534. bottom: 47/439
  31535. }
  31536. },
  31537. breath: {
  31538. height: math.unit(7.4, "feet"),
  31539. name: "Breath",
  31540. image: {
  31541. source: "./media/characters/dascalti/breath.svg"
  31542. }
  31543. },
  31544. fed: {
  31545. height: math.unit(3.6, "meters"),
  31546. weight: math.unit(16000, "lb"),
  31547. name: "Fed",
  31548. image: {
  31549. source: "./media/characters/dascalti/fed.svg",
  31550. extra: 1419/820,
  31551. bottom: 95/1514
  31552. }
  31553. },
  31554. },
  31555. [
  31556. {
  31557. name: "Normal",
  31558. height: math.unit(3.5, "meters"),
  31559. default: true
  31560. },
  31561. ]
  31562. ))
  31563. characterMakers.push(() => makeCharacter(
  31564. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31565. {
  31566. front: {
  31567. height: math.unit(3 + 5/12, "feet"),
  31568. name: "Front",
  31569. image: {
  31570. source: "./media/characters/mauve/front.svg",
  31571. extra: 1126/1033,
  31572. bottom: 65/1191
  31573. }
  31574. },
  31575. side: {
  31576. height: math.unit(3 + 5/12, "feet"),
  31577. name: "Side",
  31578. image: {
  31579. source: "./media/characters/mauve/side.svg",
  31580. extra: 1089/1001,
  31581. bottom: 29/1118
  31582. }
  31583. },
  31584. back: {
  31585. height: math.unit(3 + 5/12, "feet"),
  31586. name: "Back",
  31587. image: {
  31588. source: "./media/characters/mauve/back.svg",
  31589. extra: 1173/1053,
  31590. bottom: 109/1282
  31591. }
  31592. },
  31593. },
  31594. [
  31595. {
  31596. name: "Normal",
  31597. height: math.unit(3 + 5/12, "feet"),
  31598. default: true
  31599. },
  31600. ]
  31601. ))
  31602. characterMakers.push(() => makeCharacter(
  31603. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31604. {
  31605. front: {
  31606. height: math.unit(6 + 3/12, "feet"),
  31607. weight: math.unit(430, "lb"),
  31608. name: "Front",
  31609. image: {
  31610. source: "./media/characters/carlos/front.svg",
  31611. extra: 1964/1913,
  31612. bottom: 70/2034
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Normal",
  31619. height: math.unit(6 + 3/12, "feet"),
  31620. default: true
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31626. {
  31627. back: {
  31628. height: math.unit(5 + 10/12, "feet"),
  31629. weight: math.unit(200, "lb"),
  31630. name: "Back",
  31631. image: {
  31632. source: "./media/characters/jax/back.svg",
  31633. extra: 764/739,
  31634. bottom: 25/789
  31635. }
  31636. },
  31637. },
  31638. [
  31639. {
  31640. name: "Normal",
  31641. height: math.unit(5 + 10/12, "feet"),
  31642. default: true
  31643. },
  31644. ]
  31645. ))
  31646. characterMakers.push(() => makeCharacter(
  31647. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31648. {
  31649. front: {
  31650. height: math.unit(8, "feet"),
  31651. weight: math.unit(250, "lb"),
  31652. name: "Front",
  31653. image: {
  31654. source: "./media/characters/eikthynir/front.svg",
  31655. extra: 1332/1166,
  31656. bottom: 82/1414
  31657. }
  31658. },
  31659. back: {
  31660. height: math.unit(8, "feet"),
  31661. weight: math.unit(250, "lb"),
  31662. name: "Back",
  31663. image: {
  31664. source: "./media/characters/eikthynir/back.svg",
  31665. extra: 1342/1190,
  31666. bottom: 19/1361
  31667. }
  31668. },
  31669. dick: {
  31670. height: math.unit(2.35, "feet"),
  31671. name: "Dick",
  31672. image: {
  31673. source: "./media/characters/eikthynir/dick.svg"
  31674. }
  31675. },
  31676. },
  31677. [
  31678. {
  31679. name: "Normal",
  31680. height: math.unit(8, "feet"),
  31681. default: true
  31682. },
  31683. ]
  31684. ))
  31685. characterMakers.push(() => makeCharacter(
  31686. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31687. {
  31688. front: {
  31689. height: math.unit(99, "meters"),
  31690. weight: math.unit(13000, "tons"),
  31691. name: "Front",
  31692. image: {
  31693. source: "./media/characters/zlmos/front.svg",
  31694. extra: 2202/1992,
  31695. bottom: 315/2517
  31696. }
  31697. },
  31698. },
  31699. [
  31700. {
  31701. name: "Macro",
  31702. height: math.unit(99, "meters"),
  31703. default: true
  31704. },
  31705. ]
  31706. ))
  31707. characterMakers.push(() => makeCharacter(
  31708. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31709. {
  31710. front: {
  31711. height: math.unit(6 + 5/12, "feet"),
  31712. name: "Front",
  31713. image: {
  31714. source: "./media/characters/purri/front.svg",
  31715. extra: 1698/1610,
  31716. bottom: 32/1730
  31717. }
  31718. },
  31719. frontAlt: {
  31720. height: math.unit(6 + 5/12, "feet"),
  31721. name: "Front (Alt)",
  31722. image: {
  31723. source: "./media/characters/purri/front-alt.svg",
  31724. extra: 450/420,
  31725. bottom: 26/476
  31726. }
  31727. },
  31728. boots: {
  31729. height: math.unit(5.5, "feet"),
  31730. name: "Boots",
  31731. image: {
  31732. source: "./media/characters/purri/boots.svg",
  31733. extra: 905/853,
  31734. bottom: 18/923
  31735. }
  31736. },
  31737. lying: {
  31738. height: math.unit(2, "feet"),
  31739. name: "Lying",
  31740. image: {
  31741. source: "./media/characters/purri/lying.svg",
  31742. extra: 940/843,
  31743. bottom: 146/1086
  31744. }
  31745. },
  31746. devious: {
  31747. height: math.unit(1.77, "feet"),
  31748. name: "Devious",
  31749. image: {
  31750. source: "./media/characters/purri/devious.svg",
  31751. extra: 1440/1155,
  31752. bottom: 147/1587
  31753. }
  31754. },
  31755. bean: {
  31756. height: math.unit(1.94, "feet"),
  31757. name: "Bean",
  31758. image: {
  31759. source: "./media/characters/purri/bean.svg"
  31760. }
  31761. },
  31762. },
  31763. [
  31764. {
  31765. name: "Micro",
  31766. height: math.unit(1, "mm")
  31767. },
  31768. {
  31769. name: "Normal",
  31770. height: math.unit(6 + 5/12, "feet"),
  31771. default: true
  31772. },
  31773. {
  31774. name: "Macro :3c",
  31775. height: math.unit(2, "miles")
  31776. },
  31777. ]
  31778. ))
  31779. characterMakers.push(() => makeCharacter(
  31780. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31781. {
  31782. front: {
  31783. height: math.unit(6 + 2/12, "feet"),
  31784. weight: math.unit(250, "lb"),
  31785. name: "Front",
  31786. image: {
  31787. source: "./media/characters/moonlight/front.svg",
  31788. extra: 1044/908,
  31789. bottom: 56/1100
  31790. }
  31791. },
  31792. feral: {
  31793. height: math.unit(3 + 1/12, "feet"),
  31794. weight: math.unit(50, "kg"),
  31795. name: "Feral",
  31796. image: {
  31797. source: "./media/characters/moonlight/feral.svg",
  31798. extra: 3705/2791,
  31799. bottom: 145/3850
  31800. }
  31801. },
  31802. paw: {
  31803. height: math.unit(1, "feet"),
  31804. name: "Paw",
  31805. image: {
  31806. source: "./media/characters/moonlight/paw.svg"
  31807. }
  31808. },
  31809. paws: {
  31810. height: math.unit(0.98, "feet"),
  31811. name: "Paws",
  31812. image: {
  31813. source: "./media/characters/moonlight/paws.svg",
  31814. extra: 939/939,
  31815. bottom: 50/989
  31816. }
  31817. },
  31818. mouth: {
  31819. height: math.unit(0.48, "feet"),
  31820. name: "Mouth",
  31821. image: {
  31822. source: "./media/characters/moonlight/mouth.svg"
  31823. }
  31824. },
  31825. dick: {
  31826. height: math.unit(1.46, "feet"),
  31827. name: "Dick",
  31828. image: {
  31829. source: "./media/characters/moonlight/dick.svg"
  31830. }
  31831. },
  31832. },
  31833. [
  31834. {
  31835. name: "Normal",
  31836. height: math.unit(6 + 2/12, "feet"),
  31837. default: true
  31838. },
  31839. {
  31840. name: "Macro",
  31841. height: math.unit(300, "feet")
  31842. },
  31843. {
  31844. name: "Macro+",
  31845. height: math.unit(1, "mile")
  31846. },
  31847. {
  31848. name: "Mt. Moon",
  31849. height: math.unit(5, "miles")
  31850. },
  31851. {
  31852. name: "Megamacro",
  31853. height: math.unit(15, "miles")
  31854. },
  31855. ]
  31856. ))
  31857. characterMakers.push(() => makeCharacter(
  31858. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31859. {
  31860. back: {
  31861. height: math.unit(6, "feet"),
  31862. weight: math.unit(150, "lb"),
  31863. name: "Back",
  31864. image: {
  31865. source: "./media/characters/sylen/back.svg",
  31866. extra: 1335/1273,
  31867. bottom: 107/1442
  31868. }
  31869. },
  31870. },
  31871. [
  31872. {
  31873. name: "Normal",
  31874. height: math.unit(5 + 5/12, "feet")
  31875. },
  31876. {
  31877. name: "Megamacro",
  31878. height: math.unit(3, "miles"),
  31879. default: true
  31880. },
  31881. ]
  31882. ))
  31883. characterMakers.push(() => makeCharacter(
  31884. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31885. {
  31886. front: {
  31887. height: math.unit(6, "feet"),
  31888. weight: math.unit(190, "lb"),
  31889. name: "Front",
  31890. image: {
  31891. source: "./media/characters/huttser/front.svg",
  31892. extra: 1152/1058,
  31893. bottom: 23/1175
  31894. }
  31895. },
  31896. side: {
  31897. height: math.unit(6, "feet"),
  31898. weight: math.unit(190, "lb"),
  31899. name: "Side",
  31900. image: {
  31901. source: "./media/characters/huttser/side.svg",
  31902. extra: 1174/1065,
  31903. bottom: 18/1192
  31904. }
  31905. },
  31906. back: {
  31907. height: math.unit(6, "feet"),
  31908. weight: math.unit(190, "lb"),
  31909. name: "Back",
  31910. image: {
  31911. source: "./media/characters/huttser/back.svg",
  31912. extra: 1158/1056,
  31913. bottom: 12/1170
  31914. }
  31915. },
  31916. },
  31917. [
  31918. ]
  31919. ))
  31920. characterMakers.push(() => makeCharacter(
  31921. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31922. {
  31923. side: {
  31924. height: math.unit(12 + 9/12, "feet"),
  31925. weight: math.unit(15000, "lb"),
  31926. name: "Side",
  31927. image: {
  31928. source: "./media/characters/faan/side.svg",
  31929. extra: 2747/2697,
  31930. bottom: 0/2747
  31931. }
  31932. },
  31933. front: {
  31934. height: math.unit(12 + 9/12, "feet"),
  31935. weight: math.unit(15000, "lb"),
  31936. name: "Front",
  31937. image: {
  31938. source: "./media/characters/faan/front.svg",
  31939. extra: 607/571,
  31940. bottom: 24/631
  31941. }
  31942. },
  31943. head: {
  31944. height: math.unit(2.85, "feet"),
  31945. name: "Head",
  31946. image: {
  31947. source: "./media/characters/faan/head.svg"
  31948. }
  31949. },
  31950. headAlt: {
  31951. height: math.unit(3.13, "feet"),
  31952. name: "Head-alt",
  31953. image: {
  31954. source: "./media/characters/faan/head-alt.svg"
  31955. }
  31956. },
  31957. },
  31958. [
  31959. {
  31960. name: "Normal",
  31961. height: math.unit(12 + 9/12, "feet"),
  31962. default: true
  31963. },
  31964. ]
  31965. ))
  31966. characterMakers.push(() => makeCharacter(
  31967. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31968. {
  31969. front: {
  31970. height: math.unit(6, "feet"),
  31971. weight: math.unit(300, "lb"),
  31972. name: "Front",
  31973. image: {
  31974. source: "./media/characters/tanio/front.svg",
  31975. extra: 711/673,
  31976. bottom: 25/736
  31977. }
  31978. },
  31979. },
  31980. [
  31981. {
  31982. name: "Normal",
  31983. height: math.unit(6, "feet"),
  31984. default: true
  31985. },
  31986. ]
  31987. ))
  31988. characterMakers.push(() => makeCharacter(
  31989. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31990. {
  31991. front: {
  31992. height: math.unit(3, "inches"),
  31993. name: "Front",
  31994. image: {
  31995. source: "./media/characters/noboru/front.svg",
  31996. extra: 1039/932,
  31997. bottom: 18/1057
  31998. }
  31999. },
  32000. },
  32001. [
  32002. {
  32003. name: "Micro",
  32004. height: math.unit(3, "inches"),
  32005. default: true
  32006. },
  32007. ]
  32008. ))
  32009. characterMakers.push(() => makeCharacter(
  32010. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32011. {
  32012. front: {
  32013. height: math.unit(1.85, "meters"),
  32014. weight: math.unit(80, "kg"),
  32015. name: "Front",
  32016. image: {
  32017. source: "./media/characters/daniel-barrett/front.svg",
  32018. extra: 355/337,
  32019. bottom: 9/364
  32020. }
  32021. },
  32022. },
  32023. [
  32024. {
  32025. name: "Pico",
  32026. height: math.unit(0.0433, "mm")
  32027. },
  32028. {
  32029. name: "Nano",
  32030. height: math.unit(1.5, "mm")
  32031. },
  32032. {
  32033. name: "Micro",
  32034. height: math.unit(5.3, "cm"),
  32035. default: true
  32036. },
  32037. {
  32038. name: "Normal",
  32039. height: math.unit(1.85, "meters")
  32040. },
  32041. {
  32042. name: "Macro",
  32043. height: math.unit(64.7, "meters")
  32044. },
  32045. {
  32046. name: "Megamacro",
  32047. height: math.unit(2.26, "km")
  32048. },
  32049. {
  32050. name: "Gigamacro",
  32051. height: math.unit(79, "km")
  32052. },
  32053. {
  32054. name: "Teramacro",
  32055. height: math.unit(2765, "km")
  32056. },
  32057. {
  32058. name: "Petamacro",
  32059. height: math.unit(96678, "km")
  32060. },
  32061. ]
  32062. ))
  32063. characterMakers.push(() => makeCharacter(
  32064. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32065. {
  32066. front: {
  32067. height: math.unit(30, "meters"),
  32068. weight: math.unit(400, "tons"),
  32069. name: "Front",
  32070. image: {
  32071. source: "./media/characters/zeel/front.svg",
  32072. extra: 2599/2599,
  32073. bottom: 226/2825
  32074. }
  32075. },
  32076. },
  32077. [
  32078. {
  32079. name: "Macro",
  32080. height: math.unit(30, "meters"),
  32081. default: true
  32082. },
  32083. ]
  32084. ))
  32085. characterMakers.push(() => makeCharacter(
  32086. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32087. {
  32088. front: {
  32089. height: math.unit(6 + 7/12, "feet"),
  32090. weight: math.unit(210, "lb"),
  32091. name: "Front",
  32092. image: {
  32093. source: "./media/characters/tarn/front.svg",
  32094. extra: 3517/3220,
  32095. bottom: 91/3608
  32096. }
  32097. },
  32098. back: {
  32099. height: math.unit(6 + 7/12, "feet"),
  32100. weight: math.unit(210, "lb"),
  32101. name: "Back",
  32102. image: {
  32103. source: "./media/characters/tarn/back.svg",
  32104. extra: 3566/3241,
  32105. bottom: 34/3600
  32106. }
  32107. },
  32108. dick: {
  32109. height: math.unit(1.65, "feet"),
  32110. name: "Dick",
  32111. image: {
  32112. source: "./media/characters/tarn/dick.svg"
  32113. }
  32114. },
  32115. paw: {
  32116. height: math.unit(1.80, "feet"),
  32117. name: "Paw",
  32118. image: {
  32119. source: "./media/characters/tarn/paw.svg"
  32120. }
  32121. },
  32122. tongue: {
  32123. height: math.unit(0.97, "feet"),
  32124. name: "Tongue",
  32125. image: {
  32126. source: "./media/characters/tarn/tongue.svg"
  32127. }
  32128. },
  32129. },
  32130. [
  32131. {
  32132. name: "Micro",
  32133. height: math.unit(4, "inches")
  32134. },
  32135. {
  32136. name: "Normal",
  32137. height: math.unit(6 + 7/12, "feet"),
  32138. default: true
  32139. },
  32140. {
  32141. name: "Macro",
  32142. height: math.unit(300, "feet")
  32143. },
  32144. ]
  32145. ))
  32146. characterMakers.push(() => makeCharacter(
  32147. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32148. {
  32149. front: {
  32150. height: math.unit(5 + 7/12, "feet"),
  32151. weight: math.unit(80, "kg"),
  32152. name: "Front",
  32153. image: {
  32154. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32155. extra: 3023/2865,
  32156. bottom: 33/3056
  32157. }
  32158. },
  32159. back: {
  32160. height: math.unit(5 + 7/12, "feet"),
  32161. weight: math.unit(80, "kg"),
  32162. name: "Back",
  32163. image: {
  32164. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32165. extra: 3020/2886,
  32166. bottom: 30/3050
  32167. }
  32168. },
  32169. dick: {
  32170. height: math.unit(0.98, "feet"),
  32171. name: "Dick",
  32172. image: {
  32173. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32174. }
  32175. },
  32176. anatomy: {
  32177. height: math.unit(2.86, "feet"),
  32178. name: "Anatomy",
  32179. image: {
  32180. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32181. }
  32182. },
  32183. },
  32184. [
  32185. {
  32186. name: "Really Small",
  32187. height: math.unit(2, "inches")
  32188. },
  32189. {
  32190. name: "Micro",
  32191. height: math.unit(5.583, "inches")
  32192. },
  32193. {
  32194. name: "Normal",
  32195. height: math.unit(5 + 7/12, "feet"),
  32196. default: true
  32197. },
  32198. {
  32199. name: "Macro",
  32200. height: math.unit(67, "feet")
  32201. },
  32202. {
  32203. name: "Megamacro",
  32204. height: math.unit(134, "feet")
  32205. },
  32206. ]
  32207. ))
  32208. characterMakers.push(() => makeCharacter(
  32209. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32210. {
  32211. front: {
  32212. height: math.unit(9, "feet"),
  32213. weight: math.unit(120, "lb"),
  32214. name: "Front",
  32215. image: {
  32216. source: "./media/characters/sally/front.svg",
  32217. extra: 1506/1349,
  32218. bottom: 66/1572
  32219. }
  32220. },
  32221. },
  32222. [
  32223. {
  32224. name: "Normal",
  32225. height: math.unit(9, "feet"),
  32226. default: true
  32227. },
  32228. ]
  32229. ))
  32230. characterMakers.push(() => makeCharacter(
  32231. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32232. {
  32233. front: {
  32234. height: math.unit(8, "feet"),
  32235. weight: math.unit(900, "lb"),
  32236. name: "Front",
  32237. image: {
  32238. source: "./media/characters/owen/front.svg",
  32239. extra: 1761/1657,
  32240. bottom: 74/1835
  32241. }
  32242. },
  32243. side: {
  32244. height: math.unit(8, "feet"),
  32245. weight: math.unit(900, "lb"),
  32246. name: "Side",
  32247. image: {
  32248. source: "./media/characters/owen/side.svg",
  32249. extra: 1797/1734,
  32250. bottom: 30/1827
  32251. }
  32252. },
  32253. back: {
  32254. height: math.unit(8, "feet"),
  32255. weight: math.unit(900, "lb"),
  32256. name: "Back",
  32257. image: {
  32258. source: "./media/characters/owen/back.svg",
  32259. extra: 1796/1706,
  32260. bottom: 59/1855
  32261. }
  32262. },
  32263. maw: {
  32264. height: math.unit(1.76, "feet"),
  32265. name: "Maw",
  32266. image: {
  32267. source: "./media/characters/owen/maw.svg"
  32268. }
  32269. },
  32270. },
  32271. [
  32272. {
  32273. name: "Normal",
  32274. height: math.unit(8, "feet"),
  32275. default: true
  32276. },
  32277. ]
  32278. ))
  32279. characterMakers.push(() => makeCharacter(
  32280. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32281. {
  32282. front: {
  32283. height: math.unit(4, "feet"),
  32284. weight: math.unit(400, "lb"),
  32285. name: "Front",
  32286. image: {
  32287. source: "./media/characters/ryth/front.svg",
  32288. extra: 1920/1748,
  32289. bottom: 42/1962
  32290. }
  32291. },
  32292. back: {
  32293. height: math.unit(4, "feet"),
  32294. weight: math.unit(400, "lb"),
  32295. name: "Back",
  32296. image: {
  32297. source: "./media/characters/ryth/back.svg",
  32298. extra: 1897/1690,
  32299. bottom: 89/1986
  32300. }
  32301. },
  32302. mouth: {
  32303. height: math.unit(1.39, "feet"),
  32304. name: "Mouth",
  32305. image: {
  32306. source: "./media/characters/ryth/mouth.svg"
  32307. }
  32308. },
  32309. tailmaw: {
  32310. height: math.unit(1.23, "feet"),
  32311. name: "Tailmaw",
  32312. image: {
  32313. source: "./media/characters/ryth/tailmaw.svg"
  32314. }
  32315. },
  32316. goia: {
  32317. height: math.unit(4, "meters"),
  32318. weight: math.unit(10800, "lb"),
  32319. name: "Goia",
  32320. image: {
  32321. source: "./media/characters/ryth/goia.svg",
  32322. extra: 745/640,
  32323. bottom: 107/852
  32324. }
  32325. },
  32326. goiaFront: {
  32327. height: math.unit(4, "meters"),
  32328. weight: math.unit(10800, "lb"),
  32329. name: "Goia (Front)",
  32330. image: {
  32331. source: "./media/characters/ryth/goia-front.svg",
  32332. extra: 750/586,
  32333. bottom: 114/864
  32334. }
  32335. },
  32336. goiaMaw: {
  32337. height: math.unit(5.55, "feet"),
  32338. name: "Goia Maw",
  32339. image: {
  32340. source: "./media/characters/ryth/goia-maw.svg"
  32341. }
  32342. },
  32343. goiaForepaw: {
  32344. height: math.unit(3.5, "feet"),
  32345. name: "Goia Forepaw",
  32346. image: {
  32347. source: "./media/characters/ryth/goia-forepaw.svg"
  32348. }
  32349. },
  32350. goiaHindpaw: {
  32351. height: math.unit(5.55, "feet"),
  32352. name: "Goia Hindpaw",
  32353. image: {
  32354. source: "./media/characters/ryth/goia-hindpaw.svg"
  32355. }
  32356. },
  32357. },
  32358. [
  32359. {
  32360. name: "Normal",
  32361. height: math.unit(4, "feet"),
  32362. default: true
  32363. },
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32368. {
  32369. front: {
  32370. height: math.unit(7, "feet"),
  32371. weight: math.unit(180, "lb"),
  32372. name: "Front",
  32373. image: {
  32374. source: "./media/characters/necrolance/front.svg",
  32375. extra: 1062/947,
  32376. bottom: 41/1103
  32377. }
  32378. },
  32379. back: {
  32380. height: math.unit(7, "feet"),
  32381. weight: math.unit(180, "lb"),
  32382. name: "Back",
  32383. image: {
  32384. source: "./media/characters/necrolance/back.svg",
  32385. extra: 1045/984,
  32386. bottom: 14/1059
  32387. }
  32388. },
  32389. wing: {
  32390. height: math.unit(2.67, "feet"),
  32391. name: "Wing",
  32392. image: {
  32393. source: "./media/characters/necrolance/wing.svg"
  32394. }
  32395. },
  32396. },
  32397. [
  32398. {
  32399. name: "Normal",
  32400. height: math.unit(7, "feet"),
  32401. default: true
  32402. },
  32403. ]
  32404. ))
  32405. characterMakers.push(() => makeCharacter(
  32406. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32407. {
  32408. front: {
  32409. height: math.unit(76, "meters"),
  32410. weight: math.unit(30000, "tons"),
  32411. name: "Front",
  32412. image: {
  32413. source: "./media/characters/tyler/front.svg",
  32414. extra: 1640/1640,
  32415. bottom: 114/1754
  32416. }
  32417. },
  32418. },
  32419. [
  32420. {
  32421. name: "Macro",
  32422. height: math.unit(76, "meters"),
  32423. default: true
  32424. },
  32425. ]
  32426. ))
  32427. characterMakers.push(() => makeCharacter(
  32428. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32429. {
  32430. front: {
  32431. height: math.unit(4 + 11/12, "feet"),
  32432. weight: math.unit(132, "lb"),
  32433. name: "Front",
  32434. image: {
  32435. source: "./media/characters/icey/front.svg",
  32436. extra: 2750/2550,
  32437. bottom: 33/2783
  32438. }
  32439. },
  32440. back: {
  32441. height: math.unit(4 + 11/12, "feet"),
  32442. weight: math.unit(132, "lb"),
  32443. name: "Back",
  32444. image: {
  32445. source: "./media/characters/icey/back.svg",
  32446. extra: 2624/2481,
  32447. bottom: 35/2659
  32448. }
  32449. },
  32450. },
  32451. [
  32452. {
  32453. name: "Normal",
  32454. height: math.unit(4 + 11/12, "feet"),
  32455. default: true
  32456. },
  32457. ]
  32458. ))
  32459. characterMakers.push(() => makeCharacter(
  32460. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32461. {
  32462. front: {
  32463. height: math.unit(100, "feet"),
  32464. weight: math.unit(0, "lb"),
  32465. name: "Front",
  32466. image: {
  32467. source: "./media/characters/smile/front.svg",
  32468. extra: 2983/2912,
  32469. bottom: 162/3145
  32470. }
  32471. },
  32472. back: {
  32473. height: math.unit(100, "feet"),
  32474. weight: math.unit(0, "lb"),
  32475. name: "Back",
  32476. image: {
  32477. source: "./media/characters/smile/back.svg",
  32478. extra: 3143/3031,
  32479. bottom: 91/3234
  32480. }
  32481. },
  32482. head: {
  32483. height: math.unit(26.3, "feet"),
  32484. weight: math.unit(0, "lb"),
  32485. name: "Head",
  32486. image: {
  32487. source: "./media/characters/smile/head.svg"
  32488. }
  32489. },
  32490. collar: {
  32491. height: math.unit(5.3, "feet"),
  32492. weight: math.unit(0, "lb"),
  32493. name: "Collar",
  32494. image: {
  32495. source: "./media/characters/smile/collar.svg"
  32496. }
  32497. },
  32498. },
  32499. [
  32500. {
  32501. name: "Macro",
  32502. height: math.unit(100, "feet"),
  32503. default: true
  32504. },
  32505. ]
  32506. ))
  32507. characterMakers.push(() => makeCharacter(
  32508. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32509. {
  32510. dragon: {
  32511. height: math.unit(26, "feet"),
  32512. weight: math.unit(36, "tons"),
  32513. name: "Dragon",
  32514. image: {
  32515. source: "./media/characters/arimphae/dragon.svg",
  32516. extra: 1574/983,
  32517. bottom: 357/1931
  32518. }
  32519. },
  32520. drake: {
  32521. height: math.unit(9, "feet"),
  32522. weight: math.unit(1.5, "tons"),
  32523. name: "Drake",
  32524. image: {
  32525. source: "./media/characters/arimphae/drake.svg",
  32526. extra: 1120/925,
  32527. bottom: 435/1555
  32528. }
  32529. },
  32530. },
  32531. [
  32532. {
  32533. name: "Small",
  32534. height: math.unit(26*5/9, "feet")
  32535. },
  32536. {
  32537. name: "Normal",
  32538. height: math.unit(26, "feet"),
  32539. default: true
  32540. },
  32541. ]
  32542. ))
  32543. characterMakers.push(() => makeCharacter(
  32544. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32545. {
  32546. front: {
  32547. height: math.unit(8 + 9/12, "feet"),
  32548. name: "Front",
  32549. image: {
  32550. source: "./media/characters/xander/front.svg",
  32551. extra: 1237/974,
  32552. bottom: 94/1331
  32553. }
  32554. },
  32555. },
  32556. [
  32557. {
  32558. name: "Normal",
  32559. height: math.unit(8 + 9/12, "feet"),
  32560. default: true
  32561. },
  32562. {
  32563. name: "Gaze Grabber",
  32564. height: math.unit(13 + 8/12, "feet")
  32565. },
  32566. {
  32567. name: "Jaw Dropper",
  32568. height: math.unit(27, "feet")
  32569. },
  32570. {
  32571. name: "Show Stopper",
  32572. height: math.unit(136, "feet")
  32573. },
  32574. {
  32575. name: "Superstar",
  32576. height: math.unit(1.9e6, "miles")
  32577. },
  32578. ]
  32579. ))
  32580. characterMakers.push(() => makeCharacter(
  32581. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32582. {
  32583. side: {
  32584. height: math.unit(2100, "feet"),
  32585. name: "Side",
  32586. image: {
  32587. source: "./media/characters/osiris/side.svg",
  32588. extra: 1105/939,
  32589. bottom: 167/1272
  32590. }
  32591. },
  32592. },
  32593. [
  32594. {
  32595. name: "Macro",
  32596. height: math.unit(2100, "feet"),
  32597. default: true
  32598. },
  32599. ]
  32600. ))
  32601. characterMakers.push(() => makeCharacter(
  32602. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32603. {
  32604. front: {
  32605. height: math.unit(6 + 8/12, "feet"),
  32606. weight: math.unit(225, "lb"),
  32607. name: "Front",
  32608. image: {
  32609. source: "./media/characters/rhys-londe/front.svg",
  32610. extra: 2258/2141,
  32611. bottom: 188/2446
  32612. }
  32613. },
  32614. back: {
  32615. height: math.unit(6 + 8/12, "feet"),
  32616. weight: math.unit(225, "lb"),
  32617. name: "Back",
  32618. image: {
  32619. source: "./media/characters/rhys-londe/back.svg",
  32620. extra: 2237/2137,
  32621. bottom: 63/2300
  32622. }
  32623. },
  32624. frontNsfw: {
  32625. height: math.unit(6 + 8/12, "feet"),
  32626. weight: math.unit(225, "lb"),
  32627. name: "Front (NSFW)",
  32628. image: {
  32629. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32630. extra: 2258/2141,
  32631. bottom: 188/2446
  32632. }
  32633. },
  32634. backNsfw: {
  32635. height: math.unit(6 + 8/12, "feet"),
  32636. weight: math.unit(225, "lb"),
  32637. name: "Back (NSFW)",
  32638. image: {
  32639. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32640. extra: 2237/2137,
  32641. bottom: 63/2300
  32642. }
  32643. },
  32644. dick: {
  32645. height: math.unit(30, "inches"),
  32646. name: "Dick",
  32647. image: {
  32648. source: "./media/characters/rhys-londe/dick.svg"
  32649. }
  32650. },
  32651. maw: {
  32652. height: math.unit(1.6, "feet"),
  32653. name: "Maw",
  32654. image: {
  32655. source: "./media/characters/rhys-londe/maw.svg"
  32656. }
  32657. },
  32658. },
  32659. [
  32660. {
  32661. name: "Normal",
  32662. height: math.unit(6 + 8/12, "feet"),
  32663. default: true
  32664. },
  32665. ]
  32666. ))
  32667. characterMakers.push(() => makeCharacter(
  32668. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32669. {
  32670. front: {
  32671. height: math.unit(3 + 10/12, "feet"),
  32672. weight: math.unit(90, "lb"),
  32673. name: "Front",
  32674. image: {
  32675. source: "./media/characters/taivas-ensim/front.svg",
  32676. extra: 1327/1216,
  32677. bottom: 96/1423
  32678. }
  32679. },
  32680. back: {
  32681. height: math.unit(3 + 10/12, "feet"),
  32682. weight: math.unit(90, "lb"),
  32683. name: "Back",
  32684. image: {
  32685. source: "./media/characters/taivas-ensim/back.svg",
  32686. extra: 1355/1247,
  32687. bottom: 11/1366
  32688. }
  32689. },
  32690. frontNsfw: {
  32691. height: math.unit(3 + 10/12, "feet"),
  32692. weight: math.unit(90, "lb"),
  32693. name: "Front (NSFW)",
  32694. image: {
  32695. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32696. extra: 1327/1216,
  32697. bottom: 96/1423
  32698. }
  32699. },
  32700. backNsfw: {
  32701. height: math.unit(3 + 10/12, "feet"),
  32702. weight: math.unit(90, "lb"),
  32703. name: "Back (NSFW)",
  32704. image: {
  32705. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32706. extra: 1355/1247,
  32707. bottom: 11/1366
  32708. }
  32709. },
  32710. },
  32711. [
  32712. {
  32713. name: "Normal",
  32714. height: math.unit(3 + 10/12, "feet"),
  32715. default: true
  32716. },
  32717. ]
  32718. ))
  32719. characterMakers.push(() => makeCharacter(
  32720. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32721. {
  32722. front: {
  32723. height: math.unit(9 + 6/12, "feet"),
  32724. weight: math.unit(940, "lb"),
  32725. name: "Front",
  32726. image: {
  32727. source: "./media/characters/byliss/front.svg",
  32728. extra: 1327/1290,
  32729. bottom: 82/1409
  32730. }
  32731. },
  32732. back: {
  32733. height: math.unit(9 + 6/12, "feet"),
  32734. weight: math.unit(940, "lb"),
  32735. name: "Back",
  32736. image: {
  32737. source: "./media/characters/byliss/back.svg",
  32738. extra: 1376/1349,
  32739. bottom: 9/1385
  32740. }
  32741. },
  32742. frontNsfw: {
  32743. height: math.unit(9 + 6/12, "feet"),
  32744. weight: math.unit(940, "lb"),
  32745. name: "Front (NSFW)",
  32746. image: {
  32747. source: "./media/characters/byliss/front-nsfw.svg",
  32748. extra: 1327/1290,
  32749. bottom: 82/1409
  32750. }
  32751. },
  32752. backNsfw: {
  32753. height: math.unit(9 + 6/12, "feet"),
  32754. weight: math.unit(940, "lb"),
  32755. name: "Back (NSFW)",
  32756. image: {
  32757. source: "./media/characters/byliss/back-nsfw.svg",
  32758. extra: 1376/1349,
  32759. bottom: 9/1385
  32760. }
  32761. },
  32762. },
  32763. [
  32764. {
  32765. name: "Normal",
  32766. height: math.unit(9 + 6/12, "feet"),
  32767. default: true
  32768. },
  32769. ]
  32770. ))
  32771. characterMakers.push(() => makeCharacter(
  32772. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32773. {
  32774. front: {
  32775. height: math.unit(5 + 2/12, "feet"),
  32776. weight: math.unit(200, "lb"),
  32777. name: "Front",
  32778. image: {
  32779. source: "./media/characters/noraly/front.svg",
  32780. extra: 4985/4773,
  32781. bottom: 150/5135
  32782. }
  32783. },
  32784. full: {
  32785. height: math.unit(5 + 2/12, "feet"),
  32786. weight: math.unit(164, "lb"),
  32787. name: "Full",
  32788. image: {
  32789. source: "./media/characters/noraly/full.svg",
  32790. extra: 1114/1059,
  32791. bottom: 35/1149
  32792. }
  32793. },
  32794. fuller: {
  32795. height: math.unit(5 + 2/12, "feet"),
  32796. weight: math.unit(230, "lb"),
  32797. name: "Fuller",
  32798. image: {
  32799. source: "./media/characters/noraly/fuller.svg",
  32800. extra: 1114/1059,
  32801. bottom: 35/1149
  32802. }
  32803. },
  32804. fullest: {
  32805. height: math.unit(5 + 2/12, "feet"),
  32806. weight: math.unit(300, "lb"),
  32807. name: "Fullest",
  32808. image: {
  32809. source: "./media/characters/noraly/fullest.svg",
  32810. extra: 1114/1059,
  32811. bottom: 35/1149
  32812. }
  32813. },
  32814. },
  32815. [
  32816. {
  32817. name: "Normal",
  32818. height: math.unit(5 + 2/12, "feet"),
  32819. default: true
  32820. },
  32821. ]
  32822. ))
  32823. characterMakers.push(() => makeCharacter(
  32824. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32825. {
  32826. front: {
  32827. height: math.unit(5 + 2/12, "feet"),
  32828. weight: math.unit(210, "lb"),
  32829. name: "Front",
  32830. image: {
  32831. source: "./media/characters/pera/front.svg",
  32832. extra: 1560/1531,
  32833. bottom: 165/1725
  32834. }
  32835. },
  32836. back: {
  32837. height: math.unit(5 + 2/12, "feet"),
  32838. weight: math.unit(210, "lb"),
  32839. name: "Back",
  32840. image: {
  32841. source: "./media/characters/pera/back.svg",
  32842. extra: 1523/1493,
  32843. bottom: 152/1675
  32844. }
  32845. },
  32846. dick: {
  32847. height: math.unit(2.4, "feet"),
  32848. name: "Dick",
  32849. image: {
  32850. source: "./media/characters/pera/dick.svg"
  32851. }
  32852. },
  32853. },
  32854. [
  32855. {
  32856. name: "Normal",
  32857. height: math.unit(5 + 2/12, "feet"),
  32858. default: true
  32859. },
  32860. ]
  32861. ))
  32862. characterMakers.push(() => makeCharacter(
  32863. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32864. {
  32865. front: {
  32866. height: math.unit(12, "feet"),
  32867. weight: math.unit(3200, "lb"),
  32868. name: "Front",
  32869. image: {
  32870. source: "./media/characters/julian/front.svg",
  32871. extra: 2962/2701,
  32872. bottom: 184/3146
  32873. }
  32874. },
  32875. maw: {
  32876. height: math.unit(5.35, "feet"),
  32877. name: "Maw",
  32878. image: {
  32879. source: "./media/characters/julian/maw.svg"
  32880. }
  32881. },
  32882. paw: {
  32883. height: math.unit(3.07, "feet"),
  32884. name: "Paw",
  32885. image: {
  32886. source: "./media/characters/julian/paw.svg"
  32887. }
  32888. },
  32889. },
  32890. [
  32891. {
  32892. name: "Default",
  32893. height: math.unit(12, "feet"),
  32894. default: true
  32895. },
  32896. {
  32897. name: "Big",
  32898. height: math.unit(50, "feet")
  32899. },
  32900. {
  32901. name: "Really Big",
  32902. height: math.unit(1, "mile")
  32903. },
  32904. {
  32905. name: "Extremely Big",
  32906. height: math.unit(100, "miles")
  32907. },
  32908. {
  32909. name: "Planet Hugger",
  32910. height: math.unit(200, "megameters")
  32911. },
  32912. {
  32913. name: "Unreasonably Big",
  32914. height: math.unit(1e300, "meters")
  32915. },
  32916. ]
  32917. ))
  32918. characterMakers.push(() => makeCharacter(
  32919. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32920. {
  32921. solgooleo: {
  32922. height: math.unit(4, "meters"),
  32923. weight: math.unit(6000*1.5, "kg"),
  32924. volume: math.unit(6000, "liters"),
  32925. name: "Solgooleo",
  32926. image: {
  32927. source: "./media/characters/pi/solgooleo.svg",
  32928. extra: 388/331,
  32929. bottom: 29/417
  32930. }
  32931. },
  32932. },
  32933. [
  32934. {
  32935. name: "Normal",
  32936. height: math.unit(4, "meters"),
  32937. default: true
  32938. },
  32939. ]
  32940. ))
  32941. characterMakers.push(() => makeCharacter(
  32942. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32943. {
  32944. front: {
  32945. height: math.unit(8, "feet"),
  32946. weight: math.unit(4, "tons"),
  32947. name: "Front",
  32948. image: {
  32949. source: "./media/characters/shaun/front.svg",
  32950. extra: 503/495,
  32951. bottom: 20/523
  32952. }
  32953. },
  32954. back: {
  32955. height: math.unit(8, "feet"),
  32956. weight: math.unit(4, "tons"),
  32957. name: "Back",
  32958. image: {
  32959. source: "./media/characters/shaun/back.svg",
  32960. extra: 487/480,
  32961. bottom: 20/507
  32962. }
  32963. },
  32964. },
  32965. [
  32966. {
  32967. name: "Lorg",
  32968. height: math.unit(8, "feet"),
  32969. default: true
  32970. },
  32971. ]
  32972. ))
  32973. characterMakers.push(() => makeCharacter(
  32974. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32975. {
  32976. front: {
  32977. height: math.unit(7, "feet"),
  32978. name: "Front",
  32979. image: {
  32980. source: "./media/characters/sini/front.svg",
  32981. extra: 726/678,
  32982. bottom: 35/761
  32983. }
  32984. },
  32985. back: {
  32986. height: math.unit(7, "feet"),
  32987. name: "Back",
  32988. image: {
  32989. source: "./media/characters/sini/back.svg",
  32990. extra: 743/701,
  32991. bottom: 12/755
  32992. }
  32993. },
  32994. mawAnthro: {
  32995. height: math.unit(2.14, "feet"),
  32996. name: "Maw (Anthro)",
  32997. image: {
  32998. source: "./media/characters/sini/maw-anthro.svg"
  32999. }
  33000. },
  33001. dick: {
  33002. height: math.unit(1.45, "feet"),
  33003. name: "Dick (Anthro)",
  33004. image: {
  33005. source: "./media/characters/sini/dick-anthro.svg"
  33006. }
  33007. },
  33008. feral: {
  33009. height: math.unit(16, "feet"),
  33010. name: "Feral",
  33011. image: {
  33012. source: "./media/characters/sini/feral.svg",
  33013. extra: 814/605,
  33014. bottom: 11/825
  33015. }
  33016. },
  33017. mawFeral: {
  33018. height: math.unit(5.66, "feet"),
  33019. name: "Maw-feral",
  33020. image: {
  33021. source: "./media/characters/sini/maw-feral.svg"
  33022. }
  33023. },
  33024. footFeral: {
  33025. height: math.unit(5.17, "feet"),
  33026. name: "Foot-feral",
  33027. image: {
  33028. source: "./media/characters/sini/foot-feral.svg"
  33029. }
  33030. },
  33031. },
  33032. [
  33033. {
  33034. name: "Normal",
  33035. height: math.unit(7, "feet"),
  33036. default: true
  33037. },
  33038. ]
  33039. ))
  33040. characterMakers.push(() => makeCharacter(
  33041. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33042. {
  33043. side: {
  33044. height: math.unit(13, "meters"),
  33045. weight: math.unit(9072, "kg"),
  33046. name: "Side",
  33047. image: {
  33048. source: "./media/characters/raylldo/side.svg",
  33049. extra: 403/344,
  33050. bottom: 42/445
  33051. }
  33052. },
  33053. leaping: {
  33054. height: math.unit(12.3, "meters"),
  33055. weight: math.unit(9072, "kg"),
  33056. name: "Leaping",
  33057. image: {
  33058. source: "./media/characters/raylldo/leaping.svg",
  33059. extra: 470/249,
  33060. bottom: 13/483
  33061. }
  33062. },
  33063. flying: {
  33064. height: math.unit(18, "meters"),
  33065. weight: math.unit(9072, "kg"),
  33066. name: "Flying",
  33067. image: {
  33068. source: "./media/characters/raylldo/flying.svg"
  33069. }
  33070. },
  33071. head: {
  33072. height: math.unit(5.85, "meters"),
  33073. name: "Head",
  33074. image: {
  33075. source: "./media/characters/raylldo/head.svg"
  33076. }
  33077. },
  33078. maw: {
  33079. height: math.unit(5.32, "meters"),
  33080. name: "Maw",
  33081. image: {
  33082. source: "./media/characters/raylldo/maw.svg"
  33083. }
  33084. },
  33085. eye: {
  33086. height: math.unit(0.54, "meters"),
  33087. name: "Eye",
  33088. image: {
  33089. source: "./media/characters/raylldo/eye.svg"
  33090. }
  33091. },
  33092. },
  33093. [
  33094. {
  33095. name: "Normal",
  33096. height: math.unit(13, "meters"),
  33097. default: true
  33098. },
  33099. ]
  33100. ))
  33101. characterMakers.push(() => makeCharacter(
  33102. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33103. {
  33104. anthroFront: {
  33105. height: math.unit(9, "feet"),
  33106. weight: math.unit(600, "lb"),
  33107. name: "Anthro (Front)",
  33108. image: {
  33109. source: "./media/characters/glint/anthro-front.svg",
  33110. extra: 1097/1018,
  33111. bottom: 28/1125
  33112. }
  33113. },
  33114. anthroBack: {
  33115. height: math.unit(9, "feet"),
  33116. weight: math.unit(600, "lb"),
  33117. name: "Anthro (Back)",
  33118. image: {
  33119. source: "./media/characters/glint/anthro-back.svg",
  33120. extra: 1154/997,
  33121. bottom: 36/1190
  33122. }
  33123. },
  33124. feral: {
  33125. height: math.unit(11, "feet"),
  33126. weight: math.unit(50000, "lb"),
  33127. name: "Feral",
  33128. image: {
  33129. source: "./media/characters/glint/feral.svg",
  33130. extra: 3035/1585,
  33131. bottom: 1169/4204
  33132. }
  33133. },
  33134. dickAnthro: {
  33135. height: math.unit(0.7, "meters"),
  33136. name: "Dick (Anthro)",
  33137. image: {
  33138. source: "./media/characters/glint/dick-anthro.svg"
  33139. }
  33140. },
  33141. dickFeral: {
  33142. height: math.unit(2.65, "meters"),
  33143. name: "Dick (Feral)",
  33144. image: {
  33145. source: "./media/characters/glint/dick-feral.svg"
  33146. }
  33147. },
  33148. slitHidden: {
  33149. height: math.unit(5.85, "meters"),
  33150. name: "Slit (Hidden)",
  33151. image: {
  33152. source: "./media/characters/glint/slit-hidden.svg"
  33153. }
  33154. },
  33155. slitErect: {
  33156. height: math.unit(5.85, "meters"),
  33157. name: "Slit (Erect)",
  33158. image: {
  33159. source: "./media/characters/glint/slit-erect.svg"
  33160. }
  33161. },
  33162. mawAnthro: {
  33163. height: math.unit(0.63, "meters"),
  33164. name: "Maw (Anthro)",
  33165. image: {
  33166. source: "./media/characters/glint/maw.svg"
  33167. }
  33168. },
  33169. mawFeral: {
  33170. height: math.unit(2.89, "meters"),
  33171. name: "Maw (Feral)",
  33172. image: {
  33173. source: "./media/characters/glint/maw.svg"
  33174. }
  33175. },
  33176. },
  33177. [
  33178. {
  33179. name: "Normal",
  33180. height: math.unit(9, "feet"),
  33181. default: true
  33182. },
  33183. ]
  33184. ))
  33185. characterMakers.push(() => makeCharacter(
  33186. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33187. {
  33188. side: {
  33189. height: math.unit(15, "feet"),
  33190. weight: math.unit(5000, "kg"),
  33191. name: "Side",
  33192. image: {
  33193. source: "./media/characters/kairne/side.svg",
  33194. extra: 979/811,
  33195. bottom: 13/992
  33196. }
  33197. },
  33198. front: {
  33199. height: math.unit(15, "feet"),
  33200. weight: math.unit(5000, "kg"),
  33201. name: "Front",
  33202. image: {
  33203. source: "./media/characters/kairne/front.svg",
  33204. extra: 908/814,
  33205. bottom: 26/934
  33206. }
  33207. },
  33208. sideNsfw: {
  33209. height: math.unit(15, "feet"),
  33210. weight: math.unit(5000, "kg"),
  33211. name: "Side (NSFW)",
  33212. image: {
  33213. source: "./media/characters/kairne/side-nsfw.svg",
  33214. extra: 979/811,
  33215. bottom: 13/992
  33216. }
  33217. },
  33218. frontNsfw: {
  33219. height: math.unit(15, "feet"),
  33220. weight: math.unit(5000, "kg"),
  33221. name: "Front (NSFW)",
  33222. image: {
  33223. source: "./media/characters/kairne/front-nsfw.svg",
  33224. extra: 908/814,
  33225. bottom: 26/934
  33226. }
  33227. },
  33228. dickCaged: {
  33229. height: math.unit(0.65, "meters"),
  33230. name: "Dick-caged",
  33231. image: {
  33232. source: "./media/characters/kairne/dick-caged.svg"
  33233. }
  33234. },
  33235. dick: {
  33236. height: math.unit(0.79, "meters"),
  33237. name: "Dick",
  33238. image: {
  33239. source: "./media/characters/kairne/dick.svg"
  33240. }
  33241. },
  33242. genitals: {
  33243. height: math.unit(1.29, "meters"),
  33244. name: "Genitals",
  33245. image: {
  33246. source: "./media/characters/kairne/genitals.svg"
  33247. }
  33248. },
  33249. maw: {
  33250. height: math.unit(1.73, "meters"),
  33251. name: "Maw",
  33252. image: {
  33253. source: "./media/characters/kairne/maw.svg"
  33254. }
  33255. },
  33256. },
  33257. [
  33258. {
  33259. name: "Normal",
  33260. height: math.unit(15, "feet"),
  33261. default: true
  33262. },
  33263. ]
  33264. ))
  33265. characterMakers.push(() => makeCharacter(
  33266. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33267. {
  33268. front: {
  33269. height: math.unit(5 + 8/12, "feet"),
  33270. weight: math.unit(139, "lb"),
  33271. name: "Front",
  33272. image: {
  33273. source: "./media/characters/biscuit-jackal/front.svg",
  33274. extra: 2106/1961,
  33275. bottom: 58/2164
  33276. }
  33277. },
  33278. back: {
  33279. height: math.unit(5 + 8/12, "feet"),
  33280. weight: math.unit(139, "lb"),
  33281. name: "Back",
  33282. image: {
  33283. source: "./media/characters/biscuit-jackal/back.svg",
  33284. extra: 2132/1976,
  33285. bottom: 57/2189
  33286. }
  33287. },
  33288. werejackal: {
  33289. height: math.unit(6 + 3/12, "feet"),
  33290. weight: math.unit(188, "lb"),
  33291. name: "Werejackal",
  33292. image: {
  33293. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33294. extra: 2373/2178,
  33295. bottom: 53/2426
  33296. }
  33297. },
  33298. },
  33299. [
  33300. {
  33301. name: "Normal",
  33302. height: math.unit(5 + 8/12, "feet"),
  33303. default: true
  33304. },
  33305. ]
  33306. ))
  33307. characterMakers.push(() => makeCharacter(
  33308. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33309. {
  33310. front: {
  33311. height: math.unit(140, "cm"),
  33312. weight: math.unit(45, "kg"),
  33313. name: "Front",
  33314. image: {
  33315. source: "./media/characters/tayra-white/front.svg",
  33316. extra: 2229/2192,
  33317. bottom: 75/2304
  33318. }
  33319. },
  33320. },
  33321. [
  33322. {
  33323. name: "Normal",
  33324. height: math.unit(140, "cm"),
  33325. default: true
  33326. },
  33327. ]
  33328. ))
  33329. characterMakers.push(() => makeCharacter(
  33330. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33331. {
  33332. front: {
  33333. height: math.unit(4 + 5/12, "feet"),
  33334. name: "Front",
  33335. image: {
  33336. source: "./media/characters/scoop/front.svg",
  33337. extra: 1257/1136,
  33338. bottom: 69/1326
  33339. }
  33340. },
  33341. back: {
  33342. height: math.unit(4 + 5/12, "feet"),
  33343. name: "Back",
  33344. image: {
  33345. source: "./media/characters/scoop/back.svg",
  33346. extra: 1321/1152,
  33347. bottom: 32/1353
  33348. }
  33349. },
  33350. maw: {
  33351. height: math.unit(0.68, "feet"),
  33352. name: "Maw",
  33353. image: {
  33354. source: "./media/characters/scoop/maw.svg"
  33355. }
  33356. },
  33357. },
  33358. [
  33359. {
  33360. name: "Really Small",
  33361. height: math.unit(1, "mm")
  33362. },
  33363. {
  33364. name: "Micro",
  33365. height: math.unit(1, "inch")
  33366. },
  33367. {
  33368. name: "Normal",
  33369. height: math.unit(4 + 5/12, "feet"),
  33370. default: true
  33371. },
  33372. {
  33373. name: "Macro",
  33374. height: math.unit(200, "feet")
  33375. },
  33376. {
  33377. name: "Megamacro",
  33378. height: math.unit(3240, "feet")
  33379. },
  33380. {
  33381. name: "Teramacro",
  33382. height: math.unit(2500, "miles")
  33383. },
  33384. ]
  33385. ))
  33386. characterMakers.push(() => makeCharacter(
  33387. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33388. {
  33389. front: {
  33390. height: math.unit(15 + 7/12, "feet"),
  33391. name: "Front",
  33392. image: {
  33393. source: "./media/characters/saphinara/front.svg",
  33394. extra: 604/546,
  33395. bottom: 19/623
  33396. }
  33397. },
  33398. side: {
  33399. height: math.unit(15 + 7/12, "feet"),
  33400. name: "Side",
  33401. image: {
  33402. source: "./media/characters/saphinara/side.svg",
  33403. extra: 605/547,
  33404. bottom: 6/611
  33405. }
  33406. },
  33407. back: {
  33408. height: math.unit(15 + 7/12, "feet"),
  33409. name: "Back",
  33410. image: {
  33411. source: "./media/characters/saphinara/back.svg",
  33412. extra: 591/531,
  33413. bottom: 13/604
  33414. }
  33415. },
  33416. frontTail: {
  33417. height: math.unit(15 + 7/12, "feet"),
  33418. name: "Front (Full Tail)",
  33419. image: {
  33420. source: "./media/characters/saphinara/front-tail.svg",
  33421. extra: 748/547,
  33422. bottom: 66/814
  33423. }
  33424. },
  33425. },
  33426. [
  33427. {
  33428. name: "Normal",
  33429. height: math.unit(15 + 7/12, "feet"),
  33430. default: true
  33431. },
  33432. {
  33433. name: "Angry",
  33434. height: math.unit(30 + 6/12, "feet")
  33435. },
  33436. {
  33437. name: "Enraged",
  33438. height: math.unit(102 + 1/12, "feet")
  33439. },
  33440. ]
  33441. ))
  33442. characterMakers.push(() => makeCharacter(
  33443. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33444. {
  33445. front: {
  33446. height: math.unit(6 + 8/12, "feet"),
  33447. weight: math.unit(300, "lb"),
  33448. name: "Front",
  33449. image: {
  33450. source: "./media/characters/jrain/front.svg",
  33451. extra: 3039/2865,
  33452. bottom: 399/3438
  33453. }
  33454. },
  33455. back: {
  33456. height: math.unit(6 + 8/12, "feet"),
  33457. weight: math.unit(300, "lb"),
  33458. name: "Back",
  33459. image: {
  33460. source: "./media/characters/jrain/back.svg",
  33461. extra: 3089/2938,
  33462. bottom: 172/3261
  33463. }
  33464. },
  33465. head: {
  33466. height: math.unit(2.14, "feet"),
  33467. name: "Head",
  33468. image: {
  33469. source: "./media/characters/jrain/head.svg"
  33470. }
  33471. },
  33472. maw: {
  33473. height: math.unit(1.77, "feet"),
  33474. name: "Maw",
  33475. image: {
  33476. source: "./media/characters/jrain/maw.svg"
  33477. }
  33478. },
  33479. leftHand: {
  33480. height: math.unit(1.1, "feet"),
  33481. name: "Left Hand",
  33482. image: {
  33483. source: "./media/characters/jrain/left-hand.svg"
  33484. }
  33485. },
  33486. rightHand: {
  33487. height: math.unit(1.1, "feet"),
  33488. name: "Right Hand",
  33489. image: {
  33490. source: "./media/characters/jrain/right-hand.svg"
  33491. }
  33492. },
  33493. eye: {
  33494. height: math.unit(0.35, "feet"),
  33495. name: "Eye",
  33496. image: {
  33497. source: "./media/characters/jrain/eye.svg"
  33498. }
  33499. },
  33500. },
  33501. [
  33502. {
  33503. name: "Normal",
  33504. height: math.unit(6 + 8/12, "feet"),
  33505. default: true
  33506. },
  33507. {
  33508. name: "Casually Large",
  33509. height: math.unit(25, "feet")
  33510. },
  33511. {
  33512. name: "Giant",
  33513. height: math.unit(100, "feet")
  33514. },
  33515. {
  33516. name: "Kaiju",
  33517. height: math.unit(300, "feet")
  33518. },
  33519. ]
  33520. ))
  33521. characterMakers.push(() => makeCharacter(
  33522. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33523. {
  33524. dragon: {
  33525. height: math.unit(5, "meters"),
  33526. name: "Dragon",
  33527. image: {
  33528. source: "./media/characters/sabrina/dragon.svg",
  33529. extra: 3670 / 2365,
  33530. bottom: 333 / 4003
  33531. }
  33532. },
  33533. gryphon: {
  33534. height: math.unit(3, "meters"),
  33535. name: "Gryphon",
  33536. image: {
  33537. source: "./media/characters/sabrina/gryphon.svg",
  33538. extra: 1576 / 945,
  33539. bottom: 71 / 1647
  33540. }
  33541. },
  33542. snake: {
  33543. height: math.unit(12, "meters"),
  33544. name: "Snake",
  33545. image: {
  33546. source: "./media/characters/sabrina/snake.svg",
  33547. extra: 1758 / 1320,
  33548. bottom: 186 / 1944
  33549. }
  33550. },
  33551. collar: {
  33552. height: math.unit(1.86, "meters"),
  33553. name: "Collar",
  33554. image: {
  33555. source: "./media/characters/sabrina/collar.svg"
  33556. }
  33557. },
  33558. eye: {
  33559. height: math.unit(0.53, "meters"),
  33560. name: "Eye",
  33561. image: {
  33562. source: "./media/characters/sabrina/eye.svg"
  33563. }
  33564. },
  33565. foot: {
  33566. height: math.unit(1.86, "meters"),
  33567. name: "Foot",
  33568. image: {
  33569. source: "./media/characters/sabrina/foot.svg"
  33570. }
  33571. },
  33572. hand: {
  33573. height: math.unit(1.32, "meters"),
  33574. name: "Hand",
  33575. image: {
  33576. source: "./media/characters/sabrina/hand.svg"
  33577. }
  33578. },
  33579. head: {
  33580. height: math.unit(2.44, "meters"),
  33581. name: "Head",
  33582. image: {
  33583. source: "./media/characters/sabrina/head.svg"
  33584. }
  33585. },
  33586. headAngry: {
  33587. height: math.unit(2.44, "meters"),
  33588. name: "Head (Angry))",
  33589. image: {
  33590. source: "./media/characters/sabrina/head-angry.svg"
  33591. }
  33592. },
  33593. maw: {
  33594. height: math.unit(1.65, "meters"),
  33595. name: "Maw",
  33596. image: {
  33597. source: "./media/characters/sabrina/maw.svg"
  33598. }
  33599. },
  33600. spikes: {
  33601. height: math.unit(1.69, "meters"),
  33602. name: "Spikes",
  33603. image: {
  33604. source: "./media/characters/sabrina/spikes.svg"
  33605. }
  33606. },
  33607. stomach: {
  33608. height: math.unit(1.15, "meters"),
  33609. name: "Stomach",
  33610. image: {
  33611. source: "./media/characters/sabrina/stomach.svg"
  33612. }
  33613. },
  33614. tongue: {
  33615. height: math.unit(1.27, "meters"),
  33616. name: "Tongue",
  33617. image: {
  33618. source: "./media/characters/sabrina/tongue.svg"
  33619. }
  33620. },
  33621. wingDorsal: {
  33622. height: math.unit(4.85, "meters"),
  33623. name: "Wing (Dorsal)",
  33624. image: {
  33625. source: "./media/characters/sabrina/wing-dorsal.svg"
  33626. }
  33627. },
  33628. wingVentral: {
  33629. height: math.unit(4.85, "meters"),
  33630. name: "Wing (Ventral)",
  33631. image: {
  33632. source: "./media/characters/sabrina/wing-ventral.svg"
  33633. }
  33634. },
  33635. },
  33636. [
  33637. {
  33638. name: "Normal",
  33639. height: math.unit(5, "meters"),
  33640. default: true
  33641. },
  33642. ]
  33643. ))
  33644. characterMakers.push(() => makeCharacter(
  33645. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33646. {
  33647. frontMaid: {
  33648. height: math.unit(5 + 5/12, "feet"),
  33649. weight: math.unit(130, "lb"),
  33650. name: "Front (Maid)",
  33651. image: {
  33652. source: "./media/characters/midnight-tales/front-maid.svg",
  33653. extra: 489/454,
  33654. bottom: 61/550
  33655. }
  33656. },
  33657. frontFormal: {
  33658. height: math.unit(5 + 5/12, "feet"),
  33659. weight: math.unit(130, "lb"),
  33660. name: "Front (Formal)",
  33661. image: {
  33662. source: "./media/characters/midnight-tales/front-formal.svg",
  33663. extra: 489/454,
  33664. bottom: 61/550
  33665. }
  33666. },
  33667. back: {
  33668. height: math.unit(5 + 5/12, "feet"),
  33669. weight: math.unit(130, "lb"),
  33670. name: "Back",
  33671. image: {
  33672. source: "./media/characters/midnight-tales/back.svg",
  33673. extra: 498/456,
  33674. bottom: 33/531
  33675. }
  33676. },
  33677. frontBeast: {
  33678. height: math.unit(40, "feet"),
  33679. weight: math.unit(64000, "lb"),
  33680. name: "Front (Beast)",
  33681. image: {
  33682. source: "./media/characters/midnight-tales/front-beast.svg",
  33683. extra: 927/860,
  33684. bottom: 53/980
  33685. }
  33686. },
  33687. backBeast: {
  33688. height: math.unit(40, "feet"),
  33689. weight: math.unit(64000, "lb"),
  33690. name: "Back (Beast)",
  33691. image: {
  33692. source: "./media/characters/midnight-tales/back-beast.svg",
  33693. extra: 929/855,
  33694. bottom: 16/945
  33695. }
  33696. },
  33697. footBeast: {
  33698. height: math.unit(6.7, "feet"),
  33699. name: "Foot (Beast)",
  33700. image: {
  33701. source: "./media/characters/midnight-tales/foot-beast.svg"
  33702. }
  33703. },
  33704. headBeast: {
  33705. height: math.unit(8, "feet"),
  33706. name: "Head (Beast)",
  33707. image: {
  33708. source: "./media/characters/midnight-tales/head-beast.svg"
  33709. }
  33710. },
  33711. },
  33712. [
  33713. {
  33714. name: "Normal",
  33715. height: math.unit(5 + 5 / 12, "feet"),
  33716. default: true
  33717. },
  33718. {
  33719. name: "Macro",
  33720. height: math.unit(25, "feet")
  33721. },
  33722. ]
  33723. ))
  33724. characterMakers.push(() => makeCharacter(
  33725. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33726. {
  33727. front: {
  33728. height: math.unit(5 + 10/12, "feet"),
  33729. name: "Front",
  33730. image: {
  33731. source: "./media/characters/argon/front.svg",
  33732. extra: 2009/1935,
  33733. bottom: 118/2127
  33734. }
  33735. },
  33736. back: {
  33737. height: math.unit(5 + 10/12, "feet"),
  33738. name: "Back",
  33739. image: {
  33740. source: "./media/characters/argon/back.svg",
  33741. extra: 2047/1992,
  33742. bottom: 20/2067
  33743. }
  33744. },
  33745. frontDressed: {
  33746. height: math.unit(5 + 10/12, "feet"),
  33747. name: "Front (Dressed)",
  33748. image: {
  33749. source: "./media/characters/argon/front-dressed.svg",
  33750. extra: 2009/1935,
  33751. bottom: 118/2127
  33752. }
  33753. },
  33754. },
  33755. [
  33756. {
  33757. name: "Normal",
  33758. height: math.unit(5 + 10/12, "feet"),
  33759. default: true
  33760. },
  33761. ]
  33762. ))
  33763. characterMakers.push(() => makeCharacter(
  33764. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33765. {
  33766. front: {
  33767. height: math.unit(8 + 6/12, "feet"),
  33768. weight: math.unit(1150, "lb"),
  33769. name: "Front",
  33770. image: {
  33771. source: "./media/characters/kichi/front.svg",
  33772. extra: 1267/1164,
  33773. bottom: 61/1328
  33774. }
  33775. },
  33776. back: {
  33777. height: math.unit(8 + 6/12, "feet"),
  33778. weight: math.unit(1150, "lb"),
  33779. name: "Back",
  33780. image: {
  33781. source: "./media/characters/kichi/back.svg",
  33782. extra: 1273/1166,
  33783. bottom: 33/1306
  33784. }
  33785. },
  33786. },
  33787. [
  33788. {
  33789. name: "Normal",
  33790. height: math.unit(8 + 6/12, "feet"),
  33791. default: true
  33792. },
  33793. ]
  33794. ))
  33795. characterMakers.push(() => makeCharacter(
  33796. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33797. {
  33798. front: {
  33799. height: math.unit(6, "feet"),
  33800. weight: math.unit(210, "lb"),
  33801. name: "Front",
  33802. image: {
  33803. source: "./media/characters/manetel-greyscale/front.svg",
  33804. extra: 350/312,
  33805. bottom: 8/358
  33806. }
  33807. },
  33808. },
  33809. [
  33810. {
  33811. name: "Micro",
  33812. height: math.unit(2, "inches")
  33813. },
  33814. {
  33815. name: "Normal",
  33816. height: math.unit(6, "feet"),
  33817. default: true
  33818. },
  33819. {
  33820. name: "Minimacro",
  33821. height: math.unit(17, "feet")
  33822. },
  33823. {
  33824. name: "Macro",
  33825. height: math.unit(117, "feet")
  33826. },
  33827. ]
  33828. ))
  33829. characterMakers.push(() => makeCharacter(
  33830. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33831. {
  33832. side: {
  33833. height: math.unit(5 + 1/12, "feet"),
  33834. weight: math.unit(418, "lb"),
  33835. name: "Side",
  33836. image: {
  33837. source: "./media/characters/softpurr/side.svg",
  33838. extra: 1993/1945,
  33839. bottom: 134/2127
  33840. }
  33841. },
  33842. front: {
  33843. height: math.unit(5 + 1/12, "feet"),
  33844. weight: math.unit(418, "lb"),
  33845. name: "Front",
  33846. image: {
  33847. source: "./media/characters/softpurr/front.svg",
  33848. extra: 1950/1856,
  33849. bottom: 174/2124
  33850. }
  33851. },
  33852. paw: {
  33853. height: math.unit(1, "feet"),
  33854. name: "Paw",
  33855. image: {
  33856. source: "./media/characters/softpurr/paw.svg"
  33857. }
  33858. },
  33859. },
  33860. [
  33861. {
  33862. name: "Normal",
  33863. height: math.unit(5 + 1/12, "feet"),
  33864. default: true
  33865. },
  33866. ]
  33867. ))
  33868. characterMakers.push(() => makeCharacter(
  33869. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33870. {
  33871. front: {
  33872. height: math.unit(260, "meters"),
  33873. name: "Front",
  33874. image: {
  33875. source: "./media/characters/anahita/front.svg",
  33876. extra: 665/635,
  33877. bottom: 89/754
  33878. }
  33879. },
  33880. },
  33881. [
  33882. {
  33883. name: "Macro",
  33884. height: math.unit(260, "meters"),
  33885. default: true
  33886. },
  33887. ]
  33888. ))
  33889. characterMakers.push(() => makeCharacter(
  33890. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33891. {
  33892. front: {
  33893. height: math.unit(4 + 10/12, "feet"),
  33894. weight: math.unit(160, "lb"),
  33895. name: "Front",
  33896. image: {
  33897. source: "./media/characters/chip-mouse/front.svg",
  33898. extra: 3528/3408,
  33899. bottom: 0/3528
  33900. }
  33901. },
  33902. frontNsfw: {
  33903. height: math.unit(4 + 10/12, "feet"),
  33904. weight: math.unit(160, "lb"),
  33905. name: "Front (NSFW)",
  33906. image: {
  33907. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33908. extra: 3528/3408,
  33909. bottom: 0/3528
  33910. }
  33911. },
  33912. },
  33913. [
  33914. {
  33915. name: "Normal",
  33916. height: math.unit(4 + 10/12, "feet"),
  33917. default: true
  33918. },
  33919. ]
  33920. ))
  33921. characterMakers.push(() => makeCharacter(
  33922. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33923. {
  33924. side: {
  33925. height: math.unit(10, "feet"),
  33926. weight: math.unit(14000, "lb"),
  33927. name: "Side",
  33928. image: {
  33929. source: "./media/characters/kremm/side.svg",
  33930. extra: 1390/1053,
  33931. bottom: 90/1480
  33932. }
  33933. },
  33934. gut: {
  33935. height: math.unit(5.8, "feet"),
  33936. name: "Gut",
  33937. image: {
  33938. source: "./media/characters/kremm/gut.svg"
  33939. }
  33940. },
  33941. ass: {
  33942. height: math.unit(6.1, "feet"),
  33943. name: "Ass",
  33944. image: {
  33945. source: "./media/characters/kremm/ass.svg"
  33946. }
  33947. },
  33948. jaws: {
  33949. height: math.unit(2.2, "feet"),
  33950. name: "Jaws",
  33951. image: {
  33952. source: "./media/characters/kremm/jaws.svg"
  33953. }
  33954. },
  33955. dick: {
  33956. height: math.unit(4.26, "feet"),
  33957. name: "Dick",
  33958. image: {
  33959. source: "./media/characters/kremm/dick.svg"
  33960. }
  33961. },
  33962. },
  33963. [
  33964. {
  33965. name: "Normal",
  33966. height: math.unit(10, "feet"),
  33967. default: true
  33968. },
  33969. ]
  33970. ))
  33971. characterMakers.push(() => makeCharacter(
  33972. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33973. {
  33974. front: {
  33975. height: math.unit(30, "stories"),
  33976. name: "Front",
  33977. image: {
  33978. source: "./media/characters/kai/front.svg",
  33979. extra: 1892/1718,
  33980. bottom: 162/2054
  33981. }
  33982. },
  33983. },
  33984. [
  33985. {
  33986. name: "Macro",
  33987. height: math.unit(30, "stories"),
  33988. default: true
  33989. },
  33990. ]
  33991. ))
  33992. characterMakers.push(() => makeCharacter(
  33993. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33994. {
  33995. front: {
  33996. height: math.unit(6 + 4/12, "feet"),
  33997. weight: math.unit(145, "lb"),
  33998. name: "Front",
  33999. image: {
  34000. source: "./media/characters/sykes/front.svg",
  34001. extra: 1321 / 1187,
  34002. bottom: 66 / 1387
  34003. }
  34004. },
  34005. back: {
  34006. height: math.unit(6 + 4/12, "feet"),
  34007. weight: math.unit(145, "lb"),
  34008. name: "Back",
  34009. image: {
  34010. source: "./media/characters/sykes/back.svg",
  34011. extra: 1326/1181,
  34012. bottom: 31/1357
  34013. }
  34014. },
  34015. handBack: {
  34016. height: math.unit(0.9, "feet"),
  34017. name: "Hand (Back)",
  34018. image: {
  34019. source: "./media/characters/sykes/hand-back.svg"
  34020. }
  34021. },
  34022. handFront: {
  34023. height: math.unit(0.839, "feet"),
  34024. name: "Hand (Front)",
  34025. image: {
  34026. source: "./media/characters/sykes/hand-front.svg"
  34027. }
  34028. },
  34029. leftFoot: {
  34030. height: math.unit(1.2, "feet"),
  34031. name: "Foot (Left)",
  34032. image: {
  34033. source: "./media/characters/sykes/foot-left.svg"
  34034. }
  34035. },
  34036. rightFoot: {
  34037. height: math.unit(1.2, "feet"),
  34038. name: "Foot (Right)",
  34039. image: {
  34040. source: "./media/characters/sykes/foot-right.svg"
  34041. }
  34042. },
  34043. maw: {
  34044. height: math.unit(1.93, "feet"),
  34045. name: "Maw",
  34046. image: {
  34047. source: "./media/characters/sykes/maw.svg"
  34048. }
  34049. },
  34050. teeth: {
  34051. height: math.unit(0.51, "feet"),
  34052. name: "Teeth",
  34053. image: {
  34054. source: "./media/characters/sykes/teeth.svg"
  34055. }
  34056. },
  34057. tongue: {
  34058. height: math.unit(2.13, "feet"),
  34059. name: "Tongue",
  34060. image: {
  34061. source: "./media/characters/sykes/tongue.svg"
  34062. }
  34063. },
  34064. uvula: {
  34065. height: math.unit(0.16, "feet"),
  34066. name: "Uvula",
  34067. image: {
  34068. source: "./media/characters/sykes/uvula.svg"
  34069. }
  34070. },
  34071. collar: {
  34072. height: math.unit(0.287, "feet"),
  34073. name: "Collar",
  34074. image: {
  34075. source: "./media/characters/sykes/collar.svg"
  34076. }
  34077. },
  34078. },
  34079. [
  34080. {
  34081. name: "Shrunken",
  34082. height: math.unit(5, "inches")
  34083. },
  34084. {
  34085. name: "Normal",
  34086. height: math.unit(6 + 4 / 12, "feet"),
  34087. default: true
  34088. },
  34089. {
  34090. name: "Big",
  34091. height: math.unit(15, "feet")
  34092. },
  34093. ]
  34094. ))
  34095. characterMakers.push(() => makeCharacter(
  34096. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34097. {
  34098. front: {
  34099. height: math.unit(5 + 8/12, "feet"),
  34100. weight: math.unit(190, "lb"),
  34101. name: "Front",
  34102. image: {
  34103. source: "./media/characters/oven-otter/front.svg",
  34104. extra: 1809/1740,
  34105. bottom: 181/1990
  34106. }
  34107. },
  34108. back: {
  34109. height: math.unit(5 + 8/12, "feet"),
  34110. weight: math.unit(190, "lb"),
  34111. name: "Back",
  34112. image: {
  34113. source: "./media/characters/oven-otter/back.svg",
  34114. extra: 1709/1635,
  34115. bottom: 118/1827
  34116. }
  34117. },
  34118. hand: {
  34119. height: math.unit(1.07, "feet"),
  34120. name: "Hand",
  34121. image: {
  34122. source: "./media/characters/oven-otter/hand.svg"
  34123. }
  34124. },
  34125. beans: {
  34126. height: math.unit(1.74, "feet"),
  34127. name: "Beans",
  34128. image: {
  34129. source: "./media/characters/oven-otter/beans.svg"
  34130. }
  34131. },
  34132. },
  34133. [
  34134. {
  34135. name: "Micro",
  34136. height: math.unit(0.5, "inches")
  34137. },
  34138. {
  34139. name: "Normal",
  34140. height: math.unit(5 + 8/12, "feet"),
  34141. default: true
  34142. },
  34143. {
  34144. name: "Macro",
  34145. height: math.unit(250, "feet")
  34146. },
  34147. {
  34148. name: "Really High",
  34149. height: math.unit(420, "feet")
  34150. },
  34151. ]
  34152. ))
  34153. characterMakers.push(() => makeCharacter(
  34154. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34155. {
  34156. front: {
  34157. height: math.unit(5, "meters"),
  34158. weight: math.unit(292000000000000, "kg"),
  34159. name: "Front",
  34160. image: {
  34161. source: "./media/characters/devourer/front.svg",
  34162. extra: 1800/1733,
  34163. bottom: 211/2011
  34164. }
  34165. },
  34166. maw: {
  34167. height: math.unit(1.1, "meter"),
  34168. name: "Maw",
  34169. image: {
  34170. source: "./media/characters/devourer/maw.svg"
  34171. }
  34172. },
  34173. },
  34174. [
  34175. {
  34176. name: "Small",
  34177. height: math.unit(3, "meters")
  34178. },
  34179. {
  34180. name: "Large",
  34181. height: math.unit(5, "meters"),
  34182. default: true
  34183. },
  34184. ]
  34185. ))
  34186. characterMakers.push(() => makeCharacter(
  34187. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34188. {
  34189. front: {
  34190. height: math.unit(6, "feet"),
  34191. weight: math.unit(400, "lb"),
  34192. name: "Front",
  34193. image: {
  34194. source: "./media/characters/ellarby/front.svg",
  34195. extra: 1909/1763,
  34196. bottom: 80/1989
  34197. }
  34198. },
  34199. back: {
  34200. height: math.unit(6, "feet"),
  34201. weight: math.unit(400, "lb"),
  34202. name: "Back",
  34203. image: {
  34204. source: "./media/characters/ellarby/back.svg",
  34205. extra: 1914/1784,
  34206. bottom: 172/2086
  34207. }
  34208. },
  34209. },
  34210. [
  34211. {
  34212. name: "Mischief",
  34213. height: math.unit(18, "inches")
  34214. },
  34215. {
  34216. name: "Trouble",
  34217. height: math.unit(12, "feet")
  34218. },
  34219. {
  34220. name: "Havoc",
  34221. height: math.unit(200, "feet"),
  34222. default: true
  34223. },
  34224. {
  34225. name: "Pandemonium",
  34226. height: math.unit(1, "mile")
  34227. },
  34228. {
  34229. name: "Catastrophe",
  34230. height: math.unit(100, "miles")
  34231. },
  34232. ]
  34233. ))
  34234. characterMakers.push(() => makeCharacter(
  34235. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34236. {
  34237. front: {
  34238. height: math.unit(4.7, "meters"),
  34239. weight: math.unit(6500, "kg"),
  34240. name: "Front",
  34241. image: {
  34242. source: "./media/characters/vex/front.svg",
  34243. extra: 1288/1140,
  34244. bottom: 100/1388
  34245. }
  34246. },
  34247. },
  34248. [
  34249. {
  34250. name: "Normal",
  34251. height: math.unit(4.7, "meters"),
  34252. default: true
  34253. },
  34254. ]
  34255. ))
  34256. characterMakers.push(() => makeCharacter(
  34257. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34258. {
  34259. normal: {
  34260. height: math.unit(6, "feet"),
  34261. weight: math.unit(350, "lb"),
  34262. name: "Normal",
  34263. image: {
  34264. source: "./media/characters/teshy/normal.svg",
  34265. extra: 1795/1735,
  34266. bottom: 16/1811
  34267. }
  34268. },
  34269. monsterFront: {
  34270. height: math.unit(12, "feet"),
  34271. weight: math.unit(4700, "lb"),
  34272. name: "Monster (Front)",
  34273. image: {
  34274. source: "./media/characters/teshy/monster-front.svg",
  34275. extra: 2042/2034,
  34276. bottom: 128/2170
  34277. }
  34278. },
  34279. monsterSide: {
  34280. height: math.unit(12, "feet"),
  34281. weight: math.unit(4700, "lb"),
  34282. name: "Monster (Side)",
  34283. image: {
  34284. source: "./media/characters/teshy/monster-side.svg",
  34285. extra: 2067/2056,
  34286. bottom: 70/2137
  34287. }
  34288. },
  34289. monsterBack: {
  34290. height: math.unit(12, "feet"),
  34291. weight: math.unit(4700, "lb"),
  34292. name: "Monster (Back)",
  34293. image: {
  34294. source: "./media/characters/teshy/monster-back.svg",
  34295. extra: 1921/1914,
  34296. bottom: 171/2092
  34297. }
  34298. },
  34299. },
  34300. [
  34301. {
  34302. name: "Normal",
  34303. height: math.unit(6, "feet"),
  34304. default: true
  34305. },
  34306. ]
  34307. ))
  34308. characterMakers.push(() => makeCharacter(
  34309. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34310. {
  34311. front: {
  34312. height: math.unit(6, "feet"),
  34313. name: "Front",
  34314. image: {
  34315. source: "./media/characters/ramey/front.svg",
  34316. extra: 790/787,
  34317. bottom: 27/817
  34318. }
  34319. },
  34320. },
  34321. [
  34322. {
  34323. name: "Normal",
  34324. height: math.unit(6, "feet"),
  34325. default: true
  34326. },
  34327. ]
  34328. ))
  34329. characterMakers.push(() => makeCharacter(
  34330. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34331. {
  34332. front: {
  34333. height: math.unit(5 + 5/12, "feet"),
  34334. weight: math.unit(120, "lb"),
  34335. name: "Front",
  34336. image: {
  34337. source: "./media/characters/phirae/front.svg",
  34338. extra: 2491/2436,
  34339. bottom: 38/2529
  34340. }
  34341. },
  34342. },
  34343. [
  34344. {
  34345. name: "Normal",
  34346. height: math.unit(5 + 5/12, "feet"),
  34347. default: true
  34348. },
  34349. ]
  34350. ))
  34351. characterMakers.push(() => makeCharacter(
  34352. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34353. {
  34354. front: {
  34355. height: math.unit(5 + 3/12, "feet"),
  34356. name: "Front",
  34357. image: {
  34358. source: "./media/characters/stagglas/front.svg",
  34359. extra: 962/882,
  34360. bottom: 53/1015
  34361. }
  34362. },
  34363. feral: {
  34364. height: math.unit(335, "cm"),
  34365. name: "Feral",
  34366. image: {
  34367. source: "./media/characters/stagglas/feral.svg",
  34368. extra: 1732/1090,
  34369. bottom: 48/1780
  34370. }
  34371. },
  34372. },
  34373. [
  34374. {
  34375. name: "Normal",
  34376. height: math.unit(5 + 3/12, "feet"),
  34377. default: true
  34378. },
  34379. ]
  34380. ))
  34381. characterMakers.push(() => makeCharacter(
  34382. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34383. {
  34384. front: {
  34385. height: math.unit(5 + 4/12, "feet"),
  34386. weight: math.unit(145, "lb"),
  34387. name: "Front",
  34388. image: {
  34389. source: "./media/characters/starra/front.svg",
  34390. extra: 1790/1691,
  34391. bottom: 91/1881
  34392. }
  34393. },
  34394. },
  34395. [
  34396. {
  34397. name: "Normal",
  34398. height: math.unit(5 + 4/12, "feet"),
  34399. default: true
  34400. },
  34401. ]
  34402. ))
  34403. characterMakers.push(() => makeCharacter(
  34404. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34405. {
  34406. front: {
  34407. height: math.unit(2.2, "meters"),
  34408. name: "Front",
  34409. image: {
  34410. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34411. extra: 1194/1005,
  34412. bottom: 25/1219
  34413. }
  34414. },
  34415. },
  34416. [
  34417. {
  34418. name: "Normal",
  34419. height: math.unit(2.2, "meters"),
  34420. default: true
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34426. {
  34427. side: {
  34428. height: math.unit(8 + 2/12, "feet"),
  34429. weight: math.unit(1240, "lb"),
  34430. name: "Side",
  34431. image: {
  34432. source: "./media/characters/mika-valentine/side.svg",
  34433. extra: 2670/2501,
  34434. bottom: 250/2920
  34435. }
  34436. },
  34437. },
  34438. [
  34439. {
  34440. name: "Normal",
  34441. height: math.unit(8 + 2/12, "feet"),
  34442. default: true
  34443. },
  34444. ]
  34445. ))
  34446. characterMakers.push(() => makeCharacter(
  34447. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34448. {
  34449. front: {
  34450. height: math.unit(7 + 2/12, "feet"),
  34451. name: "Front",
  34452. image: {
  34453. source: "./media/characters/xoltol/front.svg",
  34454. extra: 2212/2124,
  34455. bottom: 84/2296
  34456. }
  34457. },
  34458. side: {
  34459. height: math.unit(7 + 2/12, "feet"),
  34460. name: "Side",
  34461. image: {
  34462. source: "./media/characters/xoltol/side.svg",
  34463. extra: 2273/2197,
  34464. bottom: 26/2299
  34465. }
  34466. },
  34467. hand: {
  34468. height: math.unit(2.5, "feet"),
  34469. name: "Hand",
  34470. image: {
  34471. source: "./media/characters/xoltol/hand.svg"
  34472. }
  34473. },
  34474. },
  34475. [
  34476. {
  34477. name: "Small-ish",
  34478. height: math.unit(5 + 11/12, "feet")
  34479. },
  34480. {
  34481. name: "Normal",
  34482. height: math.unit(7 + 2/12, "feet")
  34483. },
  34484. {
  34485. name: "\"Macro\"",
  34486. height: math.unit(14 + 9/12, "feet"),
  34487. default: true
  34488. },
  34489. {
  34490. name: "Alternate Height",
  34491. height: math.unit(20, "feet")
  34492. },
  34493. {
  34494. name: "Actually Macro",
  34495. height: math.unit(100, "feet")
  34496. },
  34497. ]
  34498. ))
  34499. characterMakers.push(() => makeCharacter(
  34500. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34501. {
  34502. front: {
  34503. height: math.unit(5 + 2/12, "feet"),
  34504. name: "Front",
  34505. image: {
  34506. source: "./media/characters/kotetsu-redwood/front.svg",
  34507. extra: 1053/942,
  34508. bottom: 60/1113
  34509. }
  34510. },
  34511. },
  34512. [
  34513. {
  34514. name: "Normal",
  34515. height: math.unit(5 + 2/12, "feet"),
  34516. default: true
  34517. },
  34518. ]
  34519. ))
  34520. characterMakers.push(() => makeCharacter(
  34521. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34522. {
  34523. front: {
  34524. height: math.unit(2.4, "meters"),
  34525. weight: math.unit(125, "kg"),
  34526. name: "Front",
  34527. image: {
  34528. source: "./media/characters/lilith/front.svg",
  34529. extra: 1590/1513,
  34530. bottom: 203/1793
  34531. }
  34532. },
  34533. },
  34534. [
  34535. {
  34536. name: "Humanoid",
  34537. height: math.unit(2.4, "meters")
  34538. },
  34539. {
  34540. name: "Normal",
  34541. height: math.unit(6, "meters"),
  34542. default: true
  34543. },
  34544. {
  34545. name: "Largest",
  34546. height: math.unit(55, "meters")
  34547. },
  34548. ]
  34549. ))
  34550. characterMakers.push(() => makeCharacter(
  34551. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34552. {
  34553. front: {
  34554. height: math.unit(8 + 4/12, "feet"),
  34555. weight: math.unit(535, "lb"),
  34556. name: "Front",
  34557. image: {
  34558. source: "./media/characters/beh'kah-bolger/front.svg",
  34559. extra: 1660/1603,
  34560. bottom: 37/1697
  34561. }
  34562. },
  34563. },
  34564. [
  34565. {
  34566. name: "Normal",
  34567. height: math.unit(8 + 4/12, "feet"),
  34568. default: true
  34569. },
  34570. {
  34571. name: "Kaiju",
  34572. height: math.unit(250, "feet")
  34573. },
  34574. {
  34575. name: "Still Growing",
  34576. height: math.unit(10, "miles")
  34577. },
  34578. {
  34579. name: "Continental",
  34580. height: math.unit(5000, "miles")
  34581. },
  34582. {
  34583. name: "Final Form",
  34584. height: math.unit(2500000, "miles")
  34585. },
  34586. ]
  34587. ))
  34588. characterMakers.push(() => makeCharacter(
  34589. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34590. {
  34591. front: {
  34592. height: math.unit(7 + 2/12, "feet"),
  34593. weight: math.unit(230, "kg"),
  34594. name: "Front",
  34595. image: {
  34596. source: "./media/characters/tatyana-milewska/front.svg",
  34597. extra: 1199/1150,
  34598. bottom: 86/1285
  34599. }
  34600. },
  34601. },
  34602. [
  34603. {
  34604. name: "Normal",
  34605. height: math.unit(7 + 2/12, "feet"),
  34606. default: true
  34607. },
  34608. {
  34609. name: "Big",
  34610. height: math.unit(12, "feet")
  34611. },
  34612. {
  34613. name: "Minimacro",
  34614. height: math.unit(20, "feet")
  34615. },
  34616. {
  34617. name: "Macro",
  34618. height: math.unit(120, "feet")
  34619. },
  34620. ]
  34621. ))
  34622. characterMakers.push(() => makeCharacter(
  34623. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34624. {
  34625. front: {
  34626. height: math.unit(7 + 8/12, "feet"),
  34627. weight: math.unit(152, "kg"),
  34628. name: "Front",
  34629. image: {
  34630. source: "./media/characters/helen-arri/front.svg",
  34631. extra: 440/423,
  34632. bottom: 14/454
  34633. }
  34634. },
  34635. back: {
  34636. height: math.unit(7 + 8/12, "feet"),
  34637. weight: math.unit(152, "kg"),
  34638. name: "Back",
  34639. image: {
  34640. source: "./media/characters/helen-arri/back.svg",
  34641. extra: 443/426,
  34642. bottom: 8/451
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Normal",
  34649. height: math.unit(7 + 8/12, "feet"),
  34650. default: true
  34651. },
  34652. {
  34653. name: "Big",
  34654. height: math.unit(14, "feet")
  34655. },
  34656. {
  34657. name: "Minimacro",
  34658. height: math.unit(24, "feet")
  34659. },
  34660. {
  34661. name: "Macro",
  34662. height: math.unit(140, "feet")
  34663. },
  34664. ]
  34665. ))
  34666. characterMakers.push(() => makeCharacter(
  34667. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34668. {
  34669. front: {
  34670. height: math.unit(6, "meters"),
  34671. name: "Front",
  34672. image: {
  34673. source: "./media/characters/ehanu-rehu/front.svg",
  34674. extra: 1800/1800,
  34675. bottom: 59/1859
  34676. }
  34677. },
  34678. },
  34679. [
  34680. {
  34681. name: "Normal",
  34682. height: math.unit(6, "meters"),
  34683. default: true
  34684. },
  34685. ]
  34686. ))
  34687. characterMakers.push(() => makeCharacter(
  34688. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34689. {
  34690. front: {
  34691. height: math.unit(7 + 3/12, "feet"),
  34692. name: "Front",
  34693. image: {
  34694. source: "./media/characters/renholder/front.svg",
  34695. extra: 3096/2960,
  34696. bottom: 250/3346
  34697. }
  34698. },
  34699. },
  34700. [
  34701. {
  34702. name: "Normal Bat",
  34703. height: math.unit(7 + 3/12, "feet"),
  34704. default: true
  34705. },
  34706. {
  34707. name: "Slightly Tall Bat",
  34708. height: math.unit(100, "feet")
  34709. },
  34710. {
  34711. name: "Big Bat",
  34712. height: math.unit(1000, "feet")
  34713. },
  34714. {
  34715. name: "City-Sized Bat",
  34716. height: math.unit(200000, "feet")
  34717. },
  34718. {
  34719. name: "Bigger Bat",
  34720. height: math.unit(10000, "miles")
  34721. },
  34722. {
  34723. name: "Solar Sized Bat",
  34724. height: math.unit(100, "AU")
  34725. },
  34726. {
  34727. name: "Galactic Bat",
  34728. height: math.unit(200000, "lightyears")
  34729. },
  34730. {
  34731. name: "Universally Known Bat",
  34732. height: math.unit(1, "universe")
  34733. },
  34734. ]
  34735. ))
  34736. characterMakers.push(() => makeCharacter(
  34737. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34738. {
  34739. front: {
  34740. height: math.unit(6 + 11/12, "feet"),
  34741. weight: math.unit(250, "lb"),
  34742. name: "Front",
  34743. image: {
  34744. source: "./media/characters/cookiecat/front.svg",
  34745. extra: 893/827,
  34746. bottom: 14/907
  34747. }
  34748. },
  34749. },
  34750. [
  34751. {
  34752. name: "Micro",
  34753. height: math.unit(3, "inches")
  34754. },
  34755. {
  34756. name: "Normal",
  34757. height: math.unit(6 + 11/12, "feet"),
  34758. default: true
  34759. },
  34760. {
  34761. name: "Macro",
  34762. height: math.unit(100, "feet")
  34763. },
  34764. {
  34765. name: "Macro+",
  34766. height: math.unit(404, "feet")
  34767. },
  34768. {
  34769. name: "Megamacro",
  34770. height: math.unit(165, "miles")
  34771. },
  34772. {
  34773. name: "Planetary",
  34774. height: math.unit(4600, "miles")
  34775. },
  34776. ]
  34777. ))
  34778. characterMakers.push(() => makeCharacter(
  34779. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34780. {
  34781. front: {
  34782. height: math.unit(10 + 3/12, "feet"),
  34783. weight: math.unit(1500, "lb"),
  34784. name: "Front",
  34785. image: {
  34786. source: "./media/characters/tux-kusanagi/front.svg",
  34787. extra: 944/840,
  34788. bottom: 39/983
  34789. }
  34790. },
  34791. back: {
  34792. height: math.unit(10 + 3/12, "feet"),
  34793. weight: math.unit(1500, "lb"),
  34794. name: "Back",
  34795. image: {
  34796. source: "./media/characters/tux-kusanagi/back.svg",
  34797. extra: 941/842,
  34798. bottom: 28/969
  34799. }
  34800. },
  34801. rump: {
  34802. height: math.unit(5.25, "feet"),
  34803. name: "Rump",
  34804. image: {
  34805. source: "./media/characters/tux-kusanagi/rump.svg"
  34806. }
  34807. },
  34808. beak: {
  34809. height: math.unit(1.54, "feet"),
  34810. name: "Beak",
  34811. image: {
  34812. source: "./media/characters/tux-kusanagi/beak.svg"
  34813. }
  34814. },
  34815. },
  34816. [
  34817. {
  34818. name: "Normal",
  34819. height: math.unit(10 + 3/12, "feet"),
  34820. default: true
  34821. },
  34822. ]
  34823. ))
  34824. characterMakers.push(() => makeCharacter(
  34825. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34826. {
  34827. front: {
  34828. height: math.unit(58, "feet"),
  34829. weight: math.unit(200, "tons"),
  34830. name: "Front",
  34831. image: {
  34832. source: "./media/characters/uzarmazari/front.svg",
  34833. extra: 1575/1455,
  34834. bottom: 152/1727
  34835. }
  34836. },
  34837. back: {
  34838. height: math.unit(58, "feet"),
  34839. weight: math.unit(200, "tons"),
  34840. name: "Back",
  34841. image: {
  34842. source: "./media/characters/uzarmazari/back.svg",
  34843. extra: 1585/1510,
  34844. bottom: 157/1742
  34845. }
  34846. },
  34847. head: {
  34848. height: math.unit(26, "feet"),
  34849. name: "Head",
  34850. image: {
  34851. source: "./media/characters/uzarmazari/head.svg"
  34852. }
  34853. },
  34854. },
  34855. [
  34856. {
  34857. name: "Normal",
  34858. height: math.unit(58, "feet"),
  34859. default: true
  34860. },
  34861. ]
  34862. ))
  34863. characterMakers.push(() => makeCharacter(
  34864. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34865. {
  34866. side: {
  34867. height: math.unit(15, "feet"),
  34868. name: "Side",
  34869. image: {
  34870. source: "./media/characters/akitu/side.svg",
  34871. extra: 1421/1321,
  34872. bottom: 157/1578
  34873. }
  34874. },
  34875. front: {
  34876. height: math.unit(15, "feet"),
  34877. name: "Front",
  34878. image: {
  34879. source: "./media/characters/akitu/front.svg",
  34880. extra: 1435/1326,
  34881. bottom: 232/1667
  34882. }
  34883. },
  34884. },
  34885. [
  34886. {
  34887. name: "Normal",
  34888. height: math.unit(15, "feet"),
  34889. default: true
  34890. },
  34891. ]
  34892. ))
  34893. characterMakers.push(() => makeCharacter(
  34894. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34895. {
  34896. front: {
  34897. height: math.unit(10 + 8/12, "feet"),
  34898. name: "Front",
  34899. image: {
  34900. source: "./media/characters/azalie-croixland/front.svg",
  34901. extra: 1972/1856,
  34902. bottom: 31/2003
  34903. }
  34904. },
  34905. },
  34906. [
  34907. {
  34908. name: "Original Height",
  34909. height: math.unit(5 + 4/12, "feet")
  34910. },
  34911. {
  34912. name: "Normal Height",
  34913. height: math.unit(10 + 8/12, "feet"),
  34914. default: true
  34915. },
  34916. ]
  34917. ))
  34918. characterMakers.push(() => makeCharacter(
  34919. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34920. {
  34921. side: {
  34922. height: math.unit(7 + 1/12, "feet"),
  34923. weight: math.unit(245, "lb"),
  34924. name: "Side",
  34925. image: {
  34926. source: "./media/characters/kavus-kazian/side.svg",
  34927. extra: 349/342,
  34928. bottom: 15/364
  34929. }
  34930. },
  34931. },
  34932. [
  34933. {
  34934. name: "Normal",
  34935. height: math.unit(7 + 1/12, "feet"),
  34936. default: true
  34937. },
  34938. ]
  34939. ))
  34940. characterMakers.push(() => makeCharacter(
  34941. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34942. {
  34943. normal: {
  34944. height: math.unit(5 + 11/12, "feet"),
  34945. name: "Normal",
  34946. image: {
  34947. source: "./media/characters/moonlight-rose/normal.svg",
  34948. extra: 1979/1835,
  34949. bottom: 14/1993
  34950. }
  34951. },
  34952. demon: {
  34953. height: math.unit(5, "km"),
  34954. name: "Demon",
  34955. image: {
  34956. source: "./media/characters/moonlight-rose/demon.svg",
  34957. extra: 986/916,
  34958. bottom: 28/1014
  34959. }
  34960. },
  34961. },
  34962. [
  34963. {
  34964. name: "\"Natural\" height",
  34965. height: math.unit(5 + 11/12, "feet")
  34966. },
  34967. {
  34968. name: "Comfortable Size",
  34969. height: math.unit(40, "meters")
  34970. },
  34971. {
  34972. name: "Common Size",
  34973. height: math.unit(50, "km"),
  34974. default: true
  34975. },
  34976. {
  34977. name: "Demonic",
  34978. height: math.unit(1.24415e+21, "meters")
  34979. },
  34980. ]
  34981. ))
  34982. characterMakers.push(() => makeCharacter(
  34983. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34984. {
  34985. front: {
  34986. height: math.unit(16, "feet"),
  34987. weight: math.unit(610, "kg"),
  34988. name: "Front",
  34989. image: {
  34990. source: "./media/characters/huckle/front.svg",
  34991. extra: 1731/1625,
  34992. bottom: 33/1764
  34993. }
  34994. },
  34995. back: {
  34996. height: math.unit(16, "feet"),
  34997. weight: math.unit(610, "kg"),
  34998. name: "Back",
  34999. image: {
  35000. source: "./media/characters/huckle/back.svg",
  35001. extra: 1738/1651,
  35002. bottom: 37/1775
  35003. }
  35004. },
  35005. laughing: {
  35006. height: math.unit(3.75, "feet"),
  35007. name: "Laughing",
  35008. image: {
  35009. source: "./media/characters/huckle/laughing.svg"
  35010. }
  35011. },
  35012. angry: {
  35013. height: math.unit(4.15, "feet"),
  35014. name: "Angry",
  35015. image: {
  35016. source: "./media/characters/huckle/angry.svg"
  35017. }
  35018. },
  35019. },
  35020. [
  35021. {
  35022. name: "Normal",
  35023. height: math.unit(16, "feet"),
  35024. default: true
  35025. },
  35026. {
  35027. name: "Mini Macro",
  35028. height: math.unit(463, "feet")
  35029. },
  35030. {
  35031. name: "Macro",
  35032. height: math.unit(1680, "meters")
  35033. },
  35034. {
  35035. name: "Mega Macro",
  35036. height: math.unit(175, "km")
  35037. },
  35038. {
  35039. name: "Terra Macro",
  35040. height: math.unit(32, "gigameters")
  35041. },
  35042. {
  35043. name: "Multiverse+",
  35044. height: math.unit(2.56e23, "yottameters")
  35045. },
  35046. ]
  35047. ))
  35048. characterMakers.push(() => makeCharacter(
  35049. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35050. {
  35051. front: {
  35052. height: math.unit(6 + 9/12, "feet"),
  35053. weight: math.unit(280, "lb"),
  35054. name: "Front",
  35055. image: {
  35056. source: "./media/characters/candy/front.svg",
  35057. extra: 234/217,
  35058. bottom: 11/245
  35059. }
  35060. },
  35061. },
  35062. [
  35063. {
  35064. name: "Really Small",
  35065. height: math.unit(0.1, "nm")
  35066. },
  35067. {
  35068. name: "Micro",
  35069. height: math.unit(2, "inches")
  35070. },
  35071. {
  35072. name: "Normal",
  35073. height: math.unit(6 + 9/12, "feet"),
  35074. default: true
  35075. },
  35076. {
  35077. name: "Small Macro",
  35078. height: math.unit(69, "feet")
  35079. },
  35080. {
  35081. name: "Macro",
  35082. height: math.unit(160, "feet")
  35083. },
  35084. {
  35085. name: "Megamacro",
  35086. height: math.unit(22000, "miles")
  35087. },
  35088. {
  35089. name: "Gigamacro",
  35090. height: math.unit(50000, "miles")
  35091. },
  35092. ]
  35093. ))
  35094. characterMakers.push(() => makeCharacter(
  35095. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35096. {
  35097. front: {
  35098. height: math.unit(4, "feet"),
  35099. weight: math.unit(90, "lb"),
  35100. name: "Front",
  35101. image: {
  35102. source: "./media/characters/joey-mcdonald/front.svg",
  35103. extra: 1059/852,
  35104. bottom: 33/1092
  35105. }
  35106. },
  35107. back: {
  35108. height: math.unit(4, "feet"),
  35109. weight: math.unit(90, "lb"),
  35110. name: "Back",
  35111. image: {
  35112. source: "./media/characters/joey-mcdonald/back.svg",
  35113. extra: 1077/879,
  35114. bottom: 5/1082
  35115. }
  35116. },
  35117. frontKobold: {
  35118. height: math.unit(4, "feet"),
  35119. weight: math.unit(100, "lb"),
  35120. name: "Front-kobold",
  35121. image: {
  35122. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35123. extra: 1480/1367,
  35124. bottom: 0/1480
  35125. }
  35126. },
  35127. backKobold: {
  35128. height: math.unit(4, "feet"),
  35129. weight: math.unit(100, "lb"),
  35130. name: "Back-kobold",
  35131. image: {
  35132. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35133. extra: 1449/1361,
  35134. bottom: 0/1449
  35135. }
  35136. },
  35137. },
  35138. [
  35139. {
  35140. name: "Normal",
  35141. height: math.unit(4, "feet"),
  35142. default: true
  35143. },
  35144. ]
  35145. ))
  35146. characterMakers.push(() => makeCharacter(
  35147. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35148. {
  35149. front: {
  35150. height: math.unit(12 + 6/12, "feet"),
  35151. name: "Front",
  35152. image: {
  35153. source: "./media/characters/kass-lockheed/front.svg",
  35154. extra: 354/343,
  35155. bottom: 9/363
  35156. }
  35157. },
  35158. back: {
  35159. height: math.unit(12 + 6/12, "feet"),
  35160. name: "Back",
  35161. image: {
  35162. source: "./media/characters/kass-lockheed/back.svg",
  35163. extra: 364/352,
  35164. bottom: 3/367
  35165. }
  35166. },
  35167. dick: {
  35168. height: math.unit(3.12, "feet"),
  35169. name: "Dick",
  35170. image: {
  35171. source: "./media/characters/kass-lockheed/dick.svg"
  35172. }
  35173. },
  35174. head: {
  35175. height: math.unit(2.6, "feet"),
  35176. name: "Head",
  35177. image: {
  35178. source: "./media/characters/kass-lockheed/head.svg"
  35179. }
  35180. },
  35181. bleh: {
  35182. height: math.unit(2.85, "feet"),
  35183. name: "Bleh",
  35184. image: {
  35185. source: "./media/characters/kass-lockheed/bleh.svg"
  35186. }
  35187. },
  35188. smug: {
  35189. height: math.unit(2.85, "feet"),
  35190. name: "Smug",
  35191. image: {
  35192. source: "./media/characters/kass-lockheed/smug.svg"
  35193. }
  35194. },
  35195. },
  35196. [
  35197. {
  35198. name: "Normal",
  35199. height: math.unit(12 + 6/12, "feet"),
  35200. default: true
  35201. },
  35202. ]
  35203. ))
  35204. characterMakers.push(() => makeCharacter(
  35205. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35206. {
  35207. front: {
  35208. height: math.unit(6 + 2/12, "feet"),
  35209. name: "Front",
  35210. image: {
  35211. source: "./media/characters/taylor/front.svg",
  35212. extra: 639/495,
  35213. bottom: 12/651
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Normal",
  35220. height: math.unit(6 + 2/12, "feet"),
  35221. default: true
  35222. },
  35223. {
  35224. name: "Big",
  35225. height: math.unit(15, "feet")
  35226. },
  35227. {
  35228. name: "Lorg",
  35229. height: math.unit(80, "feet")
  35230. },
  35231. {
  35232. name: "Too Lorg",
  35233. height: math.unit(120, "feet")
  35234. },
  35235. ]
  35236. ))
  35237. characterMakers.push(() => makeCharacter(
  35238. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35239. {
  35240. front: {
  35241. height: math.unit(15, "feet"),
  35242. name: "Front",
  35243. image: {
  35244. source: "./media/characters/kaizer/front.svg",
  35245. extra: 1612/1436,
  35246. bottom: 43/1655
  35247. }
  35248. },
  35249. },
  35250. [
  35251. {
  35252. name: "Normal",
  35253. height: math.unit(15, "feet"),
  35254. default: true
  35255. },
  35256. ]
  35257. ))
  35258. characterMakers.push(() => makeCharacter(
  35259. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35260. {
  35261. front: {
  35262. height: math.unit(2, "feet"),
  35263. weight: math.unit(30, "lb"),
  35264. name: "Front",
  35265. image: {
  35266. source: "./media/characters/sandy/front.svg",
  35267. extra: 1439/1307,
  35268. bottom: 194/1633
  35269. }
  35270. },
  35271. },
  35272. [
  35273. {
  35274. name: "Normal",
  35275. height: math.unit(2, "feet"),
  35276. default: true
  35277. },
  35278. ]
  35279. ))
  35280. characterMakers.push(() => makeCharacter(
  35281. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35282. {
  35283. front: {
  35284. height: math.unit(3, "feet"),
  35285. name: "Front",
  35286. image: {
  35287. source: "./media/characters/mellvi/front.svg",
  35288. extra: 1831/1630,
  35289. bottom: 58/1889
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Normal",
  35296. height: math.unit(3, "feet"),
  35297. default: true
  35298. },
  35299. ]
  35300. ))
  35301. characterMakers.push(() => makeCharacter(
  35302. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35303. {
  35304. front: {
  35305. height: math.unit(5 + 11/12, "feet"),
  35306. weight: math.unit(200, "lb"),
  35307. name: "Front",
  35308. image: {
  35309. source: "./media/characters/shirou/front.svg",
  35310. extra: 2491/2383,
  35311. bottom: 189/2680
  35312. }
  35313. },
  35314. back: {
  35315. height: math.unit(5 + 11/12, "feet"),
  35316. weight: math.unit(200, "lb"),
  35317. name: "Back",
  35318. image: {
  35319. source: "./media/characters/shirou/back.svg",
  35320. extra: 2554/2450,
  35321. bottom: 76/2630
  35322. }
  35323. },
  35324. },
  35325. [
  35326. {
  35327. name: "Normal",
  35328. height: math.unit(5 + 11/12, "feet"),
  35329. default: true
  35330. },
  35331. ]
  35332. ))
  35333. characterMakers.push(() => makeCharacter(
  35334. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35335. {
  35336. front: {
  35337. height: math.unit(6 + 3/12, "feet"),
  35338. weight: math.unit(177, "lb"),
  35339. name: "Front",
  35340. image: {
  35341. source: "./media/characters/noryu/front.svg",
  35342. extra: 973/885,
  35343. bottom: 10/983
  35344. }
  35345. },
  35346. },
  35347. [
  35348. {
  35349. name: "Normal",
  35350. height: math.unit(6 + 3/12, "feet"),
  35351. default: true
  35352. },
  35353. ]
  35354. ))
  35355. characterMakers.push(() => makeCharacter(
  35356. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35357. {
  35358. front: {
  35359. height: math.unit(5 + 6/12, "feet"),
  35360. weight: math.unit(170, "lb"),
  35361. name: "Front",
  35362. image: {
  35363. source: "./media/characters/mevolas-rubenido/front.svg",
  35364. extra: 2109/1901,
  35365. bottom: 96/2205
  35366. }
  35367. },
  35368. },
  35369. [
  35370. {
  35371. name: "Normal",
  35372. height: math.unit(5 + 6/12, "feet"),
  35373. default: true
  35374. },
  35375. ]
  35376. ))
  35377. characterMakers.push(() => makeCharacter(
  35378. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35379. {
  35380. front: {
  35381. height: math.unit(100, "feet"),
  35382. name: "Front",
  35383. image: {
  35384. source: "./media/characters/dee/front.svg",
  35385. extra: 2153/2036,
  35386. bottom: 59/2212
  35387. }
  35388. },
  35389. back: {
  35390. height: math.unit(100, "feet"),
  35391. name: "Back",
  35392. image: {
  35393. source: "./media/characters/dee/back.svg",
  35394. extra: 2183/2058,
  35395. bottom: 75/2258
  35396. }
  35397. },
  35398. foot: {
  35399. height: math.unit(19.43, "feet"),
  35400. name: "Foot",
  35401. image: {
  35402. source: "./media/characters/dee/foot.svg"
  35403. }
  35404. },
  35405. hoof: {
  35406. height: math.unit(20.6, "feet"),
  35407. name: "Hoof",
  35408. image: {
  35409. source: "./media/characters/dee/hoof.svg"
  35410. }
  35411. },
  35412. },
  35413. [
  35414. {
  35415. name: "Macro",
  35416. height: math.unit(100, "feet"),
  35417. default: true
  35418. },
  35419. ]
  35420. ))
  35421. characterMakers.push(() => makeCharacter(
  35422. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35423. {
  35424. front: {
  35425. height: math.unit(5 + 6/12, "feet"),
  35426. name: "Front",
  35427. image: {
  35428. source: "./media/characters/teh/front.svg",
  35429. extra: 1002/847,
  35430. bottom: 62/1064
  35431. }
  35432. },
  35433. },
  35434. [
  35435. {
  35436. name: "Normal",
  35437. height: math.unit(5 + 6/12, "feet"),
  35438. default: true
  35439. },
  35440. ]
  35441. ))
  35442. characterMakers.push(() => makeCharacter(
  35443. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35444. {
  35445. side: {
  35446. height: math.unit(6 + 1/12, "feet"),
  35447. weight: math.unit(204, "lb"),
  35448. name: "Side",
  35449. image: {
  35450. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35451. extra: 974/775,
  35452. bottom: 169/1143
  35453. }
  35454. },
  35455. sitting: {
  35456. height: math.unit(6 + 2/12, "feet"),
  35457. weight: math.unit(204, "lb"),
  35458. name: "Sitting",
  35459. image: {
  35460. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35461. extra: 1175/964,
  35462. bottom: 378/1553
  35463. }
  35464. },
  35465. },
  35466. [
  35467. {
  35468. name: "Normal",
  35469. height: math.unit(6 + 1/12, "feet"),
  35470. default: true
  35471. },
  35472. ]
  35473. ))
  35474. characterMakers.push(() => makeCharacter(
  35475. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35476. {
  35477. front: {
  35478. height: math.unit(6, "inches"),
  35479. name: "Front",
  35480. image: {
  35481. source: "./media/characters/tululi/front.svg",
  35482. extra: 1997/1876,
  35483. bottom: 20/2017
  35484. }
  35485. },
  35486. },
  35487. [
  35488. {
  35489. name: "Normal",
  35490. height: math.unit(6, "inches"),
  35491. default: true
  35492. },
  35493. ]
  35494. ))
  35495. characterMakers.push(() => makeCharacter(
  35496. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35497. {
  35498. front: {
  35499. height: math.unit(4 + 1/12, "feet"),
  35500. name: "Front",
  35501. image: {
  35502. source: "./media/characters/star/front.svg",
  35503. extra: 1493/1189,
  35504. bottom: 48/1541
  35505. }
  35506. },
  35507. },
  35508. [
  35509. {
  35510. name: "Normal",
  35511. height: math.unit(4 + 1/12, "feet"),
  35512. default: true
  35513. },
  35514. ]
  35515. ))
  35516. characterMakers.push(() => makeCharacter(
  35517. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35518. {
  35519. front: {
  35520. height: math.unit(6 + 3/12, "feet"),
  35521. name: "Front",
  35522. image: {
  35523. source: "./media/characters/comet/front.svg",
  35524. extra: 1681/1462,
  35525. bottom: 26/1707
  35526. }
  35527. },
  35528. },
  35529. [
  35530. {
  35531. name: "Normal",
  35532. height: math.unit(6 + 3/12, "feet"),
  35533. default: true
  35534. },
  35535. ]
  35536. ))
  35537. characterMakers.push(() => makeCharacter(
  35538. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35539. {
  35540. front: {
  35541. height: math.unit(950, "feet"),
  35542. name: "Front",
  35543. image: {
  35544. source: "./media/characters/vortex/front.svg",
  35545. extra: 1497/1434,
  35546. bottom: 56/1553
  35547. }
  35548. },
  35549. maw: {
  35550. height: math.unit(285, "feet"),
  35551. name: "Maw",
  35552. image: {
  35553. source: "./media/characters/vortex/maw.svg"
  35554. }
  35555. },
  35556. },
  35557. [
  35558. {
  35559. name: "Macro",
  35560. height: math.unit(950, "feet"),
  35561. default: true
  35562. },
  35563. ]
  35564. ))
  35565. characterMakers.push(() => makeCharacter(
  35566. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35567. {
  35568. front: {
  35569. height: math.unit(600, "feet"),
  35570. weight: math.unit(0.02, "grams"),
  35571. name: "Front",
  35572. image: {
  35573. source: "./media/characters/doodle/front.svg",
  35574. extra: 1578/1413,
  35575. bottom: 37/1615
  35576. }
  35577. },
  35578. },
  35579. [
  35580. {
  35581. name: "Macro",
  35582. height: math.unit(600, "feet"),
  35583. default: true
  35584. },
  35585. ]
  35586. ))
  35587. characterMakers.push(() => makeCharacter(
  35588. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35589. {
  35590. front: {
  35591. height: math.unit(6 + 6/12, "feet"),
  35592. name: "Front",
  35593. image: {
  35594. source: "./media/characters/jai/front.svg",
  35595. extra: 1645/1534,
  35596. bottom: 115/1760
  35597. }
  35598. },
  35599. },
  35600. [
  35601. {
  35602. name: "Normal",
  35603. height: math.unit(6 + 6/12, "feet"),
  35604. default: true
  35605. },
  35606. ]
  35607. ))
  35608. characterMakers.push(() => makeCharacter(
  35609. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35610. {
  35611. front: {
  35612. height: math.unit(6 + 8/12, "feet"),
  35613. name: "Front",
  35614. image: {
  35615. source: "./media/characters/pixel/front.svg",
  35616. extra: 1900/1735,
  35617. bottom: 63/1963
  35618. }
  35619. },
  35620. },
  35621. [
  35622. {
  35623. name: "Normal",
  35624. height: math.unit(6 + 8/12, "feet"),
  35625. default: true
  35626. },
  35627. ]
  35628. ))
  35629. characterMakers.push(() => makeCharacter(
  35630. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35631. {
  35632. back: {
  35633. height: math.unit(4 + 1/12, "feet"),
  35634. weight: math.unit(75, "lb"),
  35635. name: "Back",
  35636. image: {
  35637. source: "./media/characters/rhett/back.svg",
  35638. extra: 930/878,
  35639. bottom: 25/955
  35640. }
  35641. },
  35642. front: {
  35643. height: math.unit(4 + 1/12, "feet"),
  35644. weight: math.unit(75, "lb"),
  35645. name: "Front",
  35646. image: {
  35647. source: "./media/characters/rhett/front.svg",
  35648. extra: 1682/1586,
  35649. bottom: 92/1774
  35650. }
  35651. },
  35652. },
  35653. [
  35654. {
  35655. name: "Micro",
  35656. height: math.unit(8, "inches")
  35657. },
  35658. {
  35659. name: "Tiny",
  35660. height: math.unit(2, "feet")
  35661. },
  35662. {
  35663. name: "Normal",
  35664. height: math.unit(4 + 1/12, "feet"),
  35665. default: true
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35671. {
  35672. front: {
  35673. height: math.unit(3 + 3/12, "feet"),
  35674. name: "Front",
  35675. image: {
  35676. source: "./media/characters/penny/front.svg",
  35677. extra: 1406/1311,
  35678. bottom: 26/1432
  35679. }
  35680. },
  35681. },
  35682. [
  35683. {
  35684. name: "Normal",
  35685. height: math.unit(3 + 3/12, "feet"),
  35686. default: true
  35687. },
  35688. ]
  35689. ))
  35690. characterMakers.push(() => makeCharacter(
  35691. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35692. {
  35693. front: {
  35694. height: math.unit(4 + 11/12, "feet"),
  35695. name: "Front",
  35696. image: {
  35697. source: "./media/characters/monty/front.svg",
  35698. extra: 1479/1209,
  35699. bottom: 0/1479
  35700. }
  35701. },
  35702. },
  35703. [
  35704. {
  35705. name: "Normal",
  35706. height: math.unit(4 + 11/12, "feet"),
  35707. default: true
  35708. },
  35709. ]
  35710. ))
  35711. characterMakers.push(() => makeCharacter(
  35712. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35713. {
  35714. front: {
  35715. height: math.unit(8 + 4/12, "feet"),
  35716. name: "Front",
  35717. image: {
  35718. source: "./media/characters/sterling/front.svg",
  35719. extra: 1420/1236,
  35720. bottom: 27/1447
  35721. }
  35722. },
  35723. },
  35724. [
  35725. {
  35726. name: "Normal",
  35727. height: math.unit(8 + 4/12, "feet"),
  35728. default: true
  35729. },
  35730. ]
  35731. ))
  35732. characterMakers.push(() => makeCharacter(
  35733. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35734. {
  35735. front: {
  35736. height: math.unit(15, "feet"),
  35737. name: "Front",
  35738. image: {
  35739. source: "./media/characters/marble/front.svg",
  35740. extra: 973/937,
  35741. bottom: 32/1005
  35742. }
  35743. },
  35744. },
  35745. [
  35746. {
  35747. name: "Normal",
  35748. height: math.unit(15, "feet"),
  35749. default: true
  35750. },
  35751. ]
  35752. ))
  35753. characterMakers.push(() => makeCharacter(
  35754. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35755. {
  35756. front: {
  35757. height: math.unit(3, "inches"),
  35758. name: "Front",
  35759. image: {
  35760. source: "./media/characters/powder/front.svg",
  35761. extra: 1504/1334,
  35762. bottom: 518/2022
  35763. }
  35764. },
  35765. },
  35766. [
  35767. {
  35768. name: "Normal",
  35769. height: math.unit(3, "inches"),
  35770. default: true
  35771. },
  35772. ]
  35773. ))
  35774. characterMakers.push(() => makeCharacter(
  35775. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35776. {
  35777. front: {
  35778. height: math.unit(4 + 5/12, "feet"),
  35779. name: "Front",
  35780. image: {
  35781. source: "./media/characters/joey-raccoon/front.svg",
  35782. extra: 1273/1197,
  35783. bottom: 0/1273
  35784. }
  35785. },
  35786. },
  35787. [
  35788. {
  35789. name: "Normal",
  35790. height: math.unit(4 + 5/12, "feet"),
  35791. default: true
  35792. },
  35793. ]
  35794. ))
  35795. characterMakers.push(() => makeCharacter(
  35796. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35797. {
  35798. front: {
  35799. height: math.unit(8 + 4/12, "feet"),
  35800. name: "Front",
  35801. image: {
  35802. source: "./media/characters/vick/front.svg",
  35803. extra: 2187/2118,
  35804. bottom: 47/2234
  35805. }
  35806. },
  35807. },
  35808. [
  35809. {
  35810. name: "Normal",
  35811. height: math.unit(8 + 4/12, "feet"),
  35812. default: true
  35813. },
  35814. ]
  35815. ))
  35816. characterMakers.push(() => makeCharacter(
  35817. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35818. {
  35819. front: {
  35820. height: math.unit(5 + 5/12, "feet"),
  35821. name: "Front",
  35822. image: {
  35823. source: "./media/characters/mitsy/front.svg",
  35824. extra: 1842/1695,
  35825. bottom: 0/1842
  35826. }
  35827. },
  35828. },
  35829. [
  35830. {
  35831. name: "Normal",
  35832. height: math.unit(5 + 5/12, "feet"),
  35833. default: true
  35834. },
  35835. ]
  35836. ))
  35837. characterMakers.push(() => makeCharacter(
  35838. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35839. {
  35840. front: {
  35841. height: math.unit(6 + 3/12, "feet"),
  35842. name: "Front",
  35843. image: {
  35844. source: "./media/characters/silvy/front.svg",
  35845. extra: 1995/1836,
  35846. bottom: 225/2220
  35847. }
  35848. },
  35849. },
  35850. [
  35851. {
  35852. name: "Normal",
  35853. height: math.unit(6 + 3/12, "feet"),
  35854. default: true
  35855. },
  35856. ]
  35857. ))
  35858. characterMakers.push(() => makeCharacter(
  35859. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35860. {
  35861. front: {
  35862. height: math.unit(3 + 8/12, "feet"),
  35863. name: "Front",
  35864. image: {
  35865. source: "./media/characters/rodney/front.svg",
  35866. extra: 1956/1747,
  35867. bottom: 31/1987
  35868. }
  35869. },
  35870. frontDressed: {
  35871. height: math.unit(2.9, "feet"),
  35872. name: "Front (Dressed)",
  35873. image: {
  35874. source: "./media/characters/rodney/front-dressed.svg",
  35875. extra: 1382/1241,
  35876. bottom: 385/1767
  35877. }
  35878. },
  35879. },
  35880. [
  35881. {
  35882. name: "Normal",
  35883. height: math.unit(3 + 8/12, "feet"),
  35884. default: true
  35885. },
  35886. ]
  35887. ))
  35888. characterMakers.push(() => makeCharacter(
  35889. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35890. {
  35891. front: {
  35892. height: math.unit(5 + 9/12, "feet"),
  35893. weight: math.unit(194, "lbs"),
  35894. name: "Front",
  35895. image: {
  35896. source: "./media/characters/zakail-sudekai/front.svg",
  35897. extra: 2696/2533,
  35898. bottom: 248/2944
  35899. }
  35900. },
  35901. maw: {
  35902. height: math.unit(1.35, "feet"),
  35903. name: "Maw",
  35904. image: {
  35905. source: "./media/characters/zakail-sudekai/maw.svg"
  35906. }
  35907. },
  35908. },
  35909. [
  35910. {
  35911. name: "Normal",
  35912. height: math.unit(5 + 9/12, "feet"),
  35913. default: true
  35914. },
  35915. ]
  35916. ))
  35917. characterMakers.push(() => makeCharacter(
  35918. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35919. {
  35920. front: {
  35921. height: math.unit(8 + 4/12, "feet"),
  35922. weight: math.unit(1200, "lb"),
  35923. name: "Front",
  35924. image: {
  35925. source: "./media/characters/eleanor/front.svg",
  35926. extra: 1226/1192,
  35927. bottom: 52/1278
  35928. }
  35929. },
  35930. back: {
  35931. height: math.unit(8 + 4/12, "feet"),
  35932. weight: math.unit(1200, "lb"),
  35933. name: "Back",
  35934. image: {
  35935. source: "./media/characters/eleanor/back.svg",
  35936. extra: 1242/1184,
  35937. bottom: 60/1302
  35938. }
  35939. },
  35940. head: {
  35941. height: math.unit(2.62, "feet"),
  35942. name: "Head",
  35943. image: {
  35944. source: "./media/characters/eleanor/head.svg"
  35945. }
  35946. },
  35947. },
  35948. [
  35949. {
  35950. name: "Normal",
  35951. height: math.unit(8 + 4/12, "feet"),
  35952. default: true
  35953. },
  35954. ]
  35955. ))
  35956. characterMakers.push(() => makeCharacter(
  35957. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35958. {
  35959. front: {
  35960. height: math.unit(8 + 4/12, "feet"),
  35961. weight: math.unit(750, "lb"),
  35962. name: "Front",
  35963. image: {
  35964. source: "./media/characters/tanya/front.svg",
  35965. extra: 1749/1615,
  35966. bottom: 33/1782
  35967. }
  35968. },
  35969. },
  35970. [
  35971. {
  35972. name: "Normal",
  35973. height: math.unit(8 + 4/12, "feet"),
  35974. default: true
  35975. },
  35976. ]
  35977. ))
  35978. characterMakers.push(() => makeCharacter(
  35979. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35980. {
  35981. front: {
  35982. height: math.unit(5, "feet"),
  35983. weight: math.unit(225, "lb"),
  35984. name: "Front",
  35985. image: {
  35986. source: "./media/characters/cindy/front.svg",
  35987. extra: 1320/1250,
  35988. bottom: 42/1362
  35989. }
  35990. },
  35991. frontDressed: {
  35992. height: math.unit(5, "feet"),
  35993. weight: math.unit(225, "lb"),
  35994. name: "Front (Dressed)",
  35995. image: {
  35996. source: "./media/characters/cindy/front-dressed.svg",
  35997. extra: 1320/1250,
  35998. bottom: 42/1362
  35999. }
  36000. },
  36001. back: {
  36002. height: math.unit(5, "feet"),
  36003. weight: math.unit(225, "lb"),
  36004. name: "Back",
  36005. image: {
  36006. source: "./media/characters/cindy/back.svg",
  36007. extra: 1384/1346,
  36008. bottom: 14/1398
  36009. }
  36010. },
  36011. },
  36012. [
  36013. {
  36014. name: "Normal",
  36015. height: math.unit(5, "feet"),
  36016. default: true
  36017. },
  36018. ]
  36019. ))
  36020. characterMakers.push(() => makeCharacter(
  36021. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36022. {
  36023. front: {
  36024. height: math.unit(6 + 9/12, "feet"),
  36025. weight: math.unit(440, "lb"),
  36026. name: "Front",
  36027. image: {
  36028. source: "./media/characters/wilbur-owen/front.svg",
  36029. extra: 1575/1448,
  36030. bottom: 72/1647
  36031. }
  36032. },
  36033. back: {
  36034. height: math.unit(6 + 9/12, "feet"),
  36035. weight: math.unit(440, "lb"),
  36036. name: "Back",
  36037. image: {
  36038. source: "./media/characters/wilbur-owen/back.svg",
  36039. extra: 1578/1445,
  36040. bottom: 36/1614
  36041. }
  36042. },
  36043. },
  36044. [
  36045. {
  36046. name: "Normal",
  36047. height: math.unit(6 + 9/12, "feet"),
  36048. default: true
  36049. },
  36050. ]
  36051. ))
  36052. characterMakers.push(() => makeCharacter(
  36053. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36054. {
  36055. front: {
  36056. height: math.unit(6 + 5/12, "feet"),
  36057. weight: math.unit(650, "lb"),
  36058. name: "Front",
  36059. image: {
  36060. source: "./media/characters/keegan/front.svg",
  36061. extra: 2387/2198,
  36062. bottom: 33/2420
  36063. }
  36064. },
  36065. side: {
  36066. height: math.unit(6 + 5/12, "feet"),
  36067. weight: math.unit(650, "lb"),
  36068. name: "Side",
  36069. image: {
  36070. source: "./media/characters/keegan/side.svg",
  36071. extra: 2390/2202,
  36072. bottom: 47/2437
  36073. }
  36074. },
  36075. back: {
  36076. height: math.unit(6 + 5/12, "feet"),
  36077. weight: math.unit(650, "lb"),
  36078. name: "Back",
  36079. image: {
  36080. source: "./media/characters/keegan/back.svg",
  36081. extra: 2418/2268,
  36082. bottom: 15/2433
  36083. }
  36084. },
  36085. frontSfw: {
  36086. height: math.unit(6 + 5/12, "feet"),
  36087. weight: math.unit(650, "lb"),
  36088. name: "Front (SFW)",
  36089. image: {
  36090. source: "./media/characters/keegan/front-sfw.svg",
  36091. extra: 2387/2198,
  36092. bottom: 33/2420
  36093. }
  36094. },
  36095. beans: {
  36096. height: math.unit(1.85, "feet"),
  36097. name: "Beans",
  36098. image: {
  36099. source: "./media/characters/keegan/beans.svg"
  36100. }
  36101. },
  36102. },
  36103. [
  36104. {
  36105. name: "Normal",
  36106. height: math.unit(6 + 5/12, "feet"),
  36107. default: true
  36108. },
  36109. ]
  36110. ))
  36111. characterMakers.push(() => makeCharacter(
  36112. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36113. {
  36114. front: {
  36115. height: math.unit(9, "feet"),
  36116. name: "Front",
  36117. image: {
  36118. source: "./media/characters/colton/front.svg",
  36119. extra: 1589/1326,
  36120. bottom: 139/1728
  36121. }
  36122. },
  36123. },
  36124. [
  36125. {
  36126. name: "Normal",
  36127. height: math.unit(9, "feet"),
  36128. default: true
  36129. },
  36130. ]
  36131. ))
  36132. characterMakers.push(() => makeCharacter(
  36133. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36134. {
  36135. front: {
  36136. height: math.unit(2 + 9/12, "feet"),
  36137. name: "Front",
  36138. image: {
  36139. source: "./media/characters/bora/front.svg",
  36140. extra: 1265/1250,
  36141. bottom: 24/1289
  36142. }
  36143. },
  36144. },
  36145. [
  36146. {
  36147. name: "Normal",
  36148. height: math.unit(2 + 9/12, "feet"),
  36149. default: true
  36150. },
  36151. ]
  36152. ))
  36153. characterMakers.push(() => makeCharacter(
  36154. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36155. {
  36156. front: {
  36157. height: math.unit(8, "feet"),
  36158. name: "Front",
  36159. image: {
  36160. source: "./media/characters/myu-myu/front.svg",
  36161. extra: 1949/1857,
  36162. bottom: 90/2039
  36163. }
  36164. },
  36165. },
  36166. [
  36167. {
  36168. name: "Normal",
  36169. height: math.unit(8, "feet"),
  36170. default: true
  36171. },
  36172. {
  36173. name: "Big",
  36174. height: math.unit(15, "feet")
  36175. },
  36176. {
  36177. name: "BIG",
  36178. height: math.unit(25, "feet")
  36179. },
  36180. ]
  36181. ))
  36182. characterMakers.push(() => makeCharacter(
  36183. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36184. {
  36185. side: {
  36186. height: math.unit(7 + 5/12, "feet"),
  36187. weight: math.unit(2800, "lb"),
  36188. name: "Side",
  36189. image: {
  36190. source: "./media/characters/haloren/side.svg",
  36191. extra: 1793/409,
  36192. bottom: 59/1852
  36193. }
  36194. },
  36195. frontPaw: {
  36196. height: math.unit(2.36, "feet"),
  36197. name: "Front paw",
  36198. image: {
  36199. source: "./media/characters/haloren/front-paw.svg"
  36200. }
  36201. },
  36202. hindPaw: {
  36203. height: math.unit(3.18, "feet"),
  36204. name: "Hind paw",
  36205. image: {
  36206. source: "./media/characters/haloren/hind-paw.svg"
  36207. }
  36208. },
  36209. maw: {
  36210. height: math.unit(5.05, "feet"),
  36211. name: "Maw",
  36212. image: {
  36213. source: "./media/characters/haloren/maw.svg"
  36214. }
  36215. },
  36216. dick: {
  36217. height: math.unit(2.90, "feet"),
  36218. name: "Dick",
  36219. image: {
  36220. source: "./media/characters/haloren/dick.svg"
  36221. }
  36222. },
  36223. },
  36224. [
  36225. {
  36226. name: "Normal",
  36227. height: math.unit(7 + 5/12, "feet"),
  36228. default: true
  36229. },
  36230. {
  36231. name: "Enhanced",
  36232. height: math.unit(14 + 3/12, "feet")
  36233. },
  36234. ]
  36235. ))
  36236. characterMakers.push(() => makeCharacter(
  36237. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36238. {
  36239. front: {
  36240. height: math.unit(171, "cm"),
  36241. name: "Front",
  36242. image: {
  36243. source: "./media/characters/kimmy/front.svg",
  36244. extra: 1491/1435,
  36245. bottom: 53/1544
  36246. }
  36247. },
  36248. },
  36249. [
  36250. {
  36251. name: "Small",
  36252. height: math.unit(9, "cm")
  36253. },
  36254. {
  36255. name: "Normal",
  36256. height: math.unit(171, "cm"),
  36257. default: true
  36258. },
  36259. ]
  36260. ))
  36261. characterMakers.push(() => makeCharacter(
  36262. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36263. {
  36264. front: {
  36265. height: math.unit(8, "feet"),
  36266. weight: math.unit(300, "lb"),
  36267. name: "Front",
  36268. image: {
  36269. source: "./media/characters/galeboomer/front.svg",
  36270. extra: 4651/4415,
  36271. bottom: 162/4813
  36272. }
  36273. },
  36274. back: {
  36275. height: math.unit(8, "feet"),
  36276. weight: math.unit(300, "lb"),
  36277. name: "Back",
  36278. image: {
  36279. source: "./media/characters/galeboomer/back.svg",
  36280. extra: 4544/4314,
  36281. bottom: 16/4560
  36282. }
  36283. },
  36284. frontAlt: {
  36285. height: math.unit(8, "feet"),
  36286. weight: math.unit(300, "lb"),
  36287. name: "Front (Alt)",
  36288. image: {
  36289. source: "./media/characters/galeboomer/front-alt.svg",
  36290. extra: 4458/4228,
  36291. bottom: 68/4526
  36292. }
  36293. },
  36294. maw: {
  36295. height: math.unit(1.2, "feet"),
  36296. name: "Maw",
  36297. image: {
  36298. source: "./media/characters/galeboomer/maw.svg"
  36299. }
  36300. },
  36301. },
  36302. [
  36303. {
  36304. name: "Normal",
  36305. height: math.unit(8, "feet"),
  36306. default: true
  36307. },
  36308. ]
  36309. ))
  36310. characterMakers.push(() => makeCharacter(
  36311. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36312. {
  36313. front: {
  36314. height: math.unit(5 + 9/12, "feet"),
  36315. weight: math.unit(120, "lb"),
  36316. name: "Front",
  36317. image: {
  36318. source: "./media/characters/chyr/front.svg",
  36319. extra: 1323/1254,
  36320. bottom: 63/1386
  36321. }
  36322. },
  36323. back: {
  36324. height: math.unit(5 + 9/12, "feet"),
  36325. weight: math.unit(120, "lb"),
  36326. name: "Back",
  36327. image: {
  36328. source: "./media/characters/chyr/back.svg",
  36329. extra: 1323/1252,
  36330. bottom: 48/1371
  36331. }
  36332. },
  36333. },
  36334. [
  36335. {
  36336. name: "Normal",
  36337. height: math.unit(5 + 9/12, "feet"),
  36338. default: true
  36339. },
  36340. ]
  36341. ))
  36342. characterMakers.push(() => makeCharacter(
  36343. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36344. {
  36345. front: {
  36346. height: math.unit(7, "feet"),
  36347. weight: math.unit(310, "lb"),
  36348. name: "Front",
  36349. image: {
  36350. source: "./media/characters/solarus/front.svg",
  36351. extra: 2415/2021,
  36352. bottom: 103/2518
  36353. }
  36354. },
  36355. back: {
  36356. height: math.unit(7, "feet"),
  36357. weight: math.unit(310, "lb"),
  36358. name: "Back",
  36359. image: {
  36360. source: "./media/characters/solarus/back.svg",
  36361. extra: 2463/2089,
  36362. bottom: 79/2542
  36363. }
  36364. },
  36365. },
  36366. [
  36367. {
  36368. name: "Normal",
  36369. height: math.unit(7, "feet"),
  36370. default: true
  36371. },
  36372. ]
  36373. ))
  36374. characterMakers.push(() => makeCharacter(
  36375. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36376. {
  36377. front: {
  36378. height: math.unit(16, "feet"),
  36379. name: "Front",
  36380. image: {
  36381. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36382. extra: 1844/1780,
  36383. bottom: 58/1902
  36384. }
  36385. },
  36386. winterCoat: {
  36387. height: math.unit(16, "feet"),
  36388. name: "Winter Coat",
  36389. image: {
  36390. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36391. extra: 1807/1775,
  36392. bottom: 69/1876
  36393. }
  36394. },
  36395. },
  36396. [
  36397. {
  36398. name: "Normal",
  36399. height: math.unit(16, "feet"),
  36400. default: true
  36401. },
  36402. {
  36403. name: "Chicago Size",
  36404. height: math.unit(560, "feet")
  36405. },
  36406. ]
  36407. ))
  36408. characterMakers.push(() => makeCharacter(
  36409. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36410. {
  36411. front: {
  36412. height: math.unit(11 + 6/12, "feet"),
  36413. weight: math.unit(1366, "lb"),
  36414. name: "Front",
  36415. image: {
  36416. source: "./media/characters/lexor/front.svg",
  36417. extra: 1560/1481,
  36418. bottom: 211/1771
  36419. }
  36420. },
  36421. back: {
  36422. height: math.unit(11 + 6/12, "feet"),
  36423. weight: math.unit(1366, "lb"),
  36424. name: "Back",
  36425. image: {
  36426. source: "./media/characters/lexor/back.svg",
  36427. extra: 1614/1533,
  36428. bottom: 76/1690
  36429. }
  36430. },
  36431. maw: {
  36432. height: math.unit(3, "feet"),
  36433. name: "Maw",
  36434. image: {
  36435. source: "./media/characters/lexor/maw.svg"
  36436. }
  36437. },
  36438. dick: {
  36439. height: math.unit(2.59, "feet"),
  36440. name: "Dick",
  36441. image: {
  36442. source: "./media/characters/lexor/dick.svg"
  36443. }
  36444. },
  36445. },
  36446. [
  36447. {
  36448. name: "Normal",
  36449. height: math.unit(11 + 6/12, "feet"),
  36450. default: true
  36451. },
  36452. ]
  36453. ))
  36454. characterMakers.push(() => makeCharacter(
  36455. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36456. {
  36457. front: {
  36458. height: math.unit(5 + 8/12, "feet"),
  36459. name: "Front",
  36460. image: {
  36461. source: "./media/characters/magnum/front.svg",
  36462. extra: 942/855,
  36463. bottom: 26/968
  36464. }
  36465. },
  36466. },
  36467. [
  36468. {
  36469. name: "Normal",
  36470. height: math.unit(5 + 8/12, "feet"),
  36471. default: true
  36472. },
  36473. ]
  36474. ))
  36475. characterMakers.push(() => makeCharacter(
  36476. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36477. {
  36478. front: {
  36479. height: math.unit(18 + 4/12, "feet"),
  36480. weight: math.unit(1500, "kg"),
  36481. name: "Front",
  36482. image: {
  36483. source: "./media/characters/solas-sharpsman/front.svg",
  36484. extra: 1698/1589,
  36485. bottom: 0/1698
  36486. }
  36487. },
  36488. },
  36489. [
  36490. {
  36491. name: "Normal",
  36492. height: math.unit(18 + 4/12, "feet"),
  36493. default: true
  36494. },
  36495. ]
  36496. ))
  36497. characterMakers.push(() => makeCharacter(
  36498. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36499. {
  36500. front: {
  36501. height: math.unit(5 + 5/12, "feet"),
  36502. weight: math.unit(180, "lb"),
  36503. name: "Front",
  36504. image: {
  36505. source: "./media/characters/october/front.svg",
  36506. extra: 1800/1650,
  36507. bottom: 0/1800
  36508. }
  36509. },
  36510. frontNsfw: {
  36511. height: math.unit(5 + 5/12, "feet"),
  36512. weight: math.unit(180, "lb"),
  36513. name: "Front (NSFW)",
  36514. image: {
  36515. source: "./media/characters/october/front-nsfw.svg",
  36516. extra: 1392/1307,
  36517. bottom: 42/1434
  36518. }
  36519. },
  36520. },
  36521. [
  36522. {
  36523. name: "Normal",
  36524. height: math.unit(5 + 5/12, "feet"),
  36525. default: true
  36526. },
  36527. ]
  36528. ))
  36529. characterMakers.push(() => makeCharacter(
  36530. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36531. {
  36532. front: {
  36533. height: math.unit(8 + 6/12, "feet"),
  36534. name: "Front",
  36535. image: {
  36536. source: "./media/characters/essynkardi/front.svg",
  36537. extra: 1914/1846,
  36538. bottom: 22/1936
  36539. }
  36540. },
  36541. },
  36542. [
  36543. {
  36544. name: "Normal",
  36545. height: math.unit(8 + 6/12, "feet"),
  36546. default: true
  36547. },
  36548. ]
  36549. ))
  36550. characterMakers.push(() => makeCharacter(
  36551. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36552. {
  36553. front: {
  36554. height: math.unit(6 + 6/12, "feet"),
  36555. weight: math.unit(7, "lb"),
  36556. name: "Front",
  36557. image: {
  36558. source: "./media/characters/icky/front.svg",
  36559. extra: 813/782,
  36560. bottom: 66/879
  36561. }
  36562. },
  36563. back: {
  36564. height: math.unit(6 + 6/12, "feet"),
  36565. weight: math.unit(7, "lb"),
  36566. name: "Back",
  36567. image: {
  36568. source: "./media/characters/icky/back.svg",
  36569. extra: 754/735,
  36570. bottom: 56/810
  36571. }
  36572. },
  36573. },
  36574. [
  36575. {
  36576. name: "Normal",
  36577. height: math.unit(6 + 6/12, "feet"),
  36578. default: true
  36579. },
  36580. ]
  36581. ))
  36582. characterMakers.push(() => makeCharacter(
  36583. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36584. {
  36585. front: {
  36586. height: math.unit(15, "feet"),
  36587. name: "Front",
  36588. image: {
  36589. source: "./media/characters/rojas/front.svg",
  36590. extra: 1462/1408,
  36591. bottom: 95/1557
  36592. }
  36593. },
  36594. back: {
  36595. height: math.unit(15, "feet"),
  36596. name: "Back",
  36597. image: {
  36598. source: "./media/characters/rojas/back.svg",
  36599. extra: 1023/954,
  36600. bottom: 28/1051
  36601. }
  36602. },
  36603. },
  36604. [
  36605. {
  36606. name: "Normal",
  36607. height: math.unit(15, "feet"),
  36608. default: true
  36609. },
  36610. ]
  36611. ))
  36612. characterMakers.push(() => makeCharacter(
  36613. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36614. {
  36615. frontHuman: {
  36616. height: math.unit(5 + 7/12, "feet"),
  36617. name: "Front (Human)",
  36618. image: {
  36619. source: "./media/characters/alek-dryagan/front-human.svg",
  36620. extra: 1687/1667,
  36621. bottom: 69/1756
  36622. }
  36623. },
  36624. backHuman: {
  36625. height: math.unit(5 + 7/12, "feet"),
  36626. name: "Back (Human)",
  36627. image: {
  36628. source: "./media/characters/alek-dryagan/back-human.svg",
  36629. extra: 1670/1649,
  36630. bottom: 65/1735
  36631. }
  36632. },
  36633. frontDemi: {
  36634. height: math.unit(65, "feet"),
  36635. name: "Front (Demi)",
  36636. image: {
  36637. source: "./media/characters/alek-dryagan/front-demi.svg",
  36638. extra: 1669/1642,
  36639. bottom: 49/1718
  36640. }
  36641. },
  36642. backDemi: {
  36643. height: math.unit(65, "feet"),
  36644. name: "Back (Demi)",
  36645. image: {
  36646. source: "./media/characters/alek-dryagan/back-demi.svg",
  36647. extra: 1658/1637,
  36648. bottom: 40/1698
  36649. }
  36650. },
  36651. mawHuman: {
  36652. height: math.unit(0.3, "feet"),
  36653. name: "Maw (Human)",
  36654. image: {
  36655. source: "./media/characters/alek-dryagan/maw-human.svg"
  36656. }
  36657. },
  36658. mawDemi: {
  36659. height: math.unit(3.8, "feet"),
  36660. name: "Maw (Demi)",
  36661. image: {
  36662. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36663. }
  36664. },
  36665. },
  36666. [
  36667. {
  36668. name: "Normal",
  36669. height: math.unit(5 + 7/12, "feet"),
  36670. default: true
  36671. },
  36672. ]
  36673. ))
  36674. characterMakers.push(() => makeCharacter(
  36675. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36676. {
  36677. frontHuman: {
  36678. height: math.unit(5 + 2/12, "feet"),
  36679. name: "Front (Human)",
  36680. image: {
  36681. source: "./media/characters/gen/front-human.svg",
  36682. extra: 1627/1538,
  36683. bottom: 71/1698
  36684. }
  36685. },
  36686. backHuman: {
  36687. height: math.unit(5 + 2/12, "feet"),
  36688. name: "Back (Human)",
  36689. image: {
  36690. source: "./media/characters/gen/back-human.svg",
  36691. extra: 1638/1548,
  36692. bottom: 69/1707
  36693. }
  36694. },
  36695. frontDemi: {
  36696. height: math.unit(5 + 2/12, "feet"),
  36697. name: "Front (Demi)",
  36698. image: {
  36699. source: "./media/characters/gen/front-demi.svg",
  36700. extra: 1627/1538,
  36701. bottom: 71/1698
  36702. }
  36703. },
  36704. backDemi: {
  36705. height: math.unit(5 + 2/12, "feet"),
  36706. name: "Back (Demi)",
  36707. image: {
  36708. source: "./media/characters/gen/back-demi.svg",
  36709. extra: 1638/1548,
  36710. bottom: 69/1707
  36711. }
  36712. },
  36713. },
  36714. [
  36715. {
  36716. name: "Normal",
  36717. height: math.unit(5 + 2/12, "feet"),
  36718. default: true
  36719. },
  36720. ]
  36721. ))
  36722. characterMakers.push(() => makeCharacter(
  36723. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36724. {
  36725. frontImp: {
  36726. height: math.unit(1 + 11/12, "feet"),
  36727. name: "Front (Imp)",
  36728. image: {
  36729. source: "./media/characters/max-kobold/front-imp.svg",
  36730. extra: 1238/1134,
  36731. bottom: 81/1319
  36732. }
  36733. },
  36734. backImp: {
  36735. height: math.unit(1 + 11/12, "feet"),
  36736. name: "Back (Imp)",
  36737. image: {
  36738. source: "./media/characters/max-kobold/back-imp.svg",
  36739. extra: 1334/1175,
  36740. bottom: 34/1368
  36741. }
  36742. },
  36743. frontDemi: {
  36744. height: math.unit(5 + 9/12, "feet"),
  36745. name: "Front (Demi)",
  36746. image: {
  36747. source: "./media/characters/max-kobold/front-demi.svg",
  36748. extra: 1715/1685,
  36749. bottom: 54/1769
  36750. }
  36751. },
  36752. backDemi: {
  36753. height: math.unit(5 + 9/12, "feet"),
  36754. name: "Back (Demi)",
  36755. image: {
  36756. source: "./media/characters/max-kobold/back-demi.svg",
  36757. extra: 1752/1729,
  36758. bottom: 41/1793
  36759. }
  36760. },
  36761. handImp: {
  36762. height: math.unit(0.45, "feet"),
  36763. name: "Hand (Imp)",
  36764. image: {
  36765. source: "./media/characters/max-kobold/hand.svg"
  36766. }
  36767. },
  36768. pawImp: {
  36769. height: math.unit(0.46, "feet"),
  36770. name: "Paw (Imp)",
  36771. image: {
  36772. source: "./media/characters/max-kobold/paw.svg"
  36773. }
  36774. },
  36775. handDemi: {
  36776. height: math.unit(0.80, "feet"),
  36777. name: "Hand (Demi)",
  36778. image: {
  36779. source: "./media/characters/max-kobold/hand.svg"
  36780. }
  36781. },
  36782. pawDemi: {
  36783. height: math.unit(1.1, "feet"),
  36784. name: "Paw (Demi)",
  36785. image: {
  36786. source: "./media/characters/max-kobold/paw.svg"
  36787. }
  36788. },
  36789. headImp: {
  36790. height: math.unit(1.33, "feet"),
  36791. name: "Head (Imp)",
  36792. image: {
  36793. source: "./media/characters/max-kobold/head-imp.svg"
  36794. }
  36795. },
  36796. mawImp: {
  36797. height: math.unit(0.75, "feet"),
  36798. name: "Maw (Imp)",
  36799. image: {
  36800. source: "./media/characters/max-kobold/maw-imp.svg"
  36801. }
  36802. },
  36803. mawDemi: {
  36804. height: math.unit(0.42, "feet"),
  36805. name: "Maw (Demi)",
  36806. image: {
  36807. source: "./media/characters/max-kobold/maw-demi.svg"
  36808. }
  36809. },
  36810. },
  36811. [
  36812. {
  36813. name: "Normal",
  36814. height: math.unit(1 + 11/12, "feet"),
  36815. default: true
  36816. },
  36817. ]
  36818. ))
  36819. characterMakers.push(() => makeCharacter(
  36820. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36821. {
  36822. front: {
  36823. height: math.unit(7 + 5/12, "feet"),
  36824. name: "Front",
  36825. image: {
  36826. source: "./media/characters/carbon/front.svg",
  36827. extra: 1754/1689,
  36828. bottom: 65/1819
  36829. }
  36830. },
  36831. back: {
  36832. height: math.unit(7 + 5/12, "feet"),
  36833. name: "Back",
  36834. image: {
  36835. source: "./media/characters/carbon/back.svg",
  36836. extra: 1762/1695,
  36837. bottom: 24/1786
  36838. }
  36839. },
  36840. frontGigantamax: {
  36841. height: math.unit(150, "feet"),
  36842. name: "Front (Gigantamax)",
  36843. image: {
  36844. source: "./media/characters/carbon/front-gigantamax.svg",
  36845. extra: 1826/1669,
  36846. bottom: 59/1885
  36847. }
  36848. },
  36849. backGigantamax: {
  36850. height: math.unit(150, "feet"),
  36851. name: "Back (Gigantamax)",
  36852. image: {
  36853. source: "./media/characters/carbon/back-gigantamax.svg",
  36854. extra: 1796/1653,
  36855. bottom: 53/1849
  36856. }
  36857. },
  36858. maw: {
  36859. height: math.unit(0.48, "feet"),
  36860. name: "Maw",
  36861. image: {
  36862. source: "./media/characters/carbon/maw.svg"
  36863. }
  36864. },
  36865. mawGigantamax: {
  36866. height: math.unit(7.5, "feet"),
  36867. name: "Maw (Gigantamax)",
  36868. image: {
  36869. source: "./media/characters/carbon/maw-gigantamax.svg"
  36870. }
  36871. },
  36872. },
  36873. [
  36874. {
  36875. name: "Normal",
  36876. height: math.unit(7 + 5/12, "feet"),
  36877. default: true
  36878. },
  36879. ]
  36880. ))
  36881. characterMakers.push(() => makeCharacter(
  36882. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36883. {
  36884. front: {
  36885. height: math.unit(6, "feet"),
  36886. name: "Front",
  36887. image: {
  36888. source: "./media/characters/maverick/front.svg",
  36889. extra: 1672/1661,
  36890. bottom: 85/1757
  36891. }
  36892. },
  36893. back: {
  36894. height: math.unit(6, "feet"),
  36895. name: "Back",
  36896. image: {
  36897. source: "./media/characters/maverick/back.svg",
  36898. extra: 1642/1631,
  36899. bottom: 38/1680
  36900. }
  36901. },
  36902. },
  36903. [
  36904. {
  36905. name: "Normal",
  36906. height: math.unit(6, "feet"),
  36907. default: true
  36908. },
  36909. ]
  36910. ))
  36911. characterMakers.push(() => makeCharacter(
  36912. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36913. {
  36914. front: {
  36915. height: math.unit(15, "feet"),
  36916. weight: math.unit(615, "lb"),
  36917. name: "Front",
  36918. image: {
  36919. source: "./media/characters/grockle/front.svg",
  36920. extra: 1535/1427,
  36921. bottom: 56/1591
  36922. }
  36923. },
  36924. },
  36925. [
  36926. {
  36927. name: "Normal",
  36928. height: math.unit(15, "feet"),
  36929. default: true
  36930. },
  36931. {
  36932. name: "Large",
  36933. height: math.unit(150, "feet")
  36934. },
  36935. {
  36936. name: "Macro",
  36937. height: math.unit(1876, "feet")
  36938. },
  36939. {
  36940. name: "Mega Macro",
  36941. height: math.unit(121940, "feet")
  36942. },
  36943. {
  36944. name: "Giga Macro",
  36945. height: math.unit(750, "km")
  36946. },
  36947. {
  36948. name: "Tera Macro",
  36949. height: math.unit(750000, "km")
  36950. },
  36951. {
  36952. name: "Galactic",
  36953. height: math.unit(1.4e5, "km")
  36954. },
  36955. {
  36956. name: "Godlike",
  36957. height: math.unit(9.8e280, "galaxies")
  36958. },
  36959. ]
  36960. ))
  36961. characterMakers.push(() => makeCharacter(
  36962. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36963. {
  36964. front: {
  36965. height: math.unit(11, "meters"),
  36966. weight: math.unit(20, "tonnes"),
  36967. name: "Front",
  36968. image: {
  36969. source: "./media/characters/alistair/front.svg",
  36970. extra: 1265/1009,
  36971. bottom: 93/1358
  36972. }
  36973. },
  36974. },
  36975. [
  36976. {
  36977. name: "Normal",
  36978. height: math.unit(11, "meters"),
  36979. default: true
  36980. },
  36981. ]
  36982. ))
  36983. characterMakers.push(() => makeCharacter(
  36984. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36985. {
  36986. front: {
  36987. height: math.unit(5 + 8/12, "feet"),
  36988. name: "Front",
  36989. image: {
  36990. source: "./media/characters/haruka/front.svg",
  36991. extra: 2012/1952,
  36992. bottom: 0/2012
  36993. }
  36994. },
  36995. },
  36996. [
  36997. {
  36998. name: "Normal",
  36999. height: math.unit(5 + 8/12, "feet"),
  37000. default: true
  37001. },
  37002. ]
  37003. ))
  37004. characterMakers.push(() => makeCharacter(
  37005. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37006. {
  37007. back: {
  37008. height: math.unit(9, "feet"),
  37009. name: "Back",
  37010. image: {
  37011. source: "./media/characters/vivian-sylveon/back.svg",
  37012. extra: 1853/1714,
  37013. bottom: 0/1853
  37014. }
  37015. },
  37016. },
  37017. [
  37018. {
  37019. name: "Normal",
  37020. height: math.unit(9, "feet"),
  37021. default: true
  37022. },
  37023. {
  37024. name: "Macro",
  37025. height: math.unit(500, "feet")
  37026. },
  37027. {
  37028. name: "Megamacro",
  37029. height: math.unit(600, "miles")
  37030. },
  37031. {
  37032. name: "Gigamacro",
  37033. height: math.unit(30000, "miles")
  37034. },
  37035. ]
  37036. ))
  37037. characterMakers.push(() => makeCharacter(
  37038. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37039. {
  37040. anthro: {
  37041. height: math.unit(5 + 10/12, "feet"),
  37042. weight: math.unit(100, "lb"),
  37043. name: "Anthro",
  37044. image: {
  37045. source: "./media/characters/daiki/anthro.svg",
  37046. extra: 1115/1027,
  37047. bottom: 69/1184
  37048. }
  37049. },
  37050. feral: {
  37051. height: math.unit(200, "feet"),
  37052. name: "Feral",
  37053. image: {
  37054. source: "./media/characters/daiki/feral.svg",
  37055. extra: 1256/313,
  37056. bottom: 39/1295
  37057. }
  37058. },
  37059. feralHead: {
  37060. height: math.unit(171, "feet"),
  37061. name: "Feral Head",
  37062. image: {
  37063. source: "./media/characters/daiki/feral-head.svg"
  37064. }
  37065. },
  37066. manaDragon: {
  37067. height: math.unit(170, "meters"),
  37068. name: "Mana-dragon",
  37069. image: {
  37070. source: "./media/characters/daiki/mana-dragon.svg",
  37071. extra: 763/420,
  37072. bottom: 97/860
  37073. }
  37074. },
  37075. },
  37076. [
  37077. {
  37078. name: "Normal",
  37079. height: math.unit(5 + 10/12, "feet"),
  37080. default: true
  37081. },
  37082. ]
  37083. ))
  37084. characterMakers.push(() => makeCharacter(
  37085. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37086. {
  37087. fullyEquippedFront: {
  37088. height: math.unit(3 + 1/12, "feet"),
  37089. weight: math.unit(24, "lb"),
  37090. name: "Fully Equipped (Front)",
  37091. image: {
  37092. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37093. extra: 687/605,
  37094. bottom: 18/705
  37095. }
  37096. },
  37097. fullyEquippedBack: {
  37098. height: math.unit(3 + 1/12, "feet"),
  37099. weight: math.unit(24, "lb"),
  37100. name: "Fully Equipped (Back)",
  37101. image: {
  37102. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37103. extra: 689/590,
  37104. bottom: 18/707
  37105. }
  37106. },
  37107. dailyWear: {
  37108. height: math.unit(3 + 1/12, "feet"),
  37109. weight: math.unit(24, "lb"),
  37110. name: "Daily Wear",
  37111. image: {
  37112. source: "./media/characters/tea-spot/daily-wear.svg",
  37113. extra: 701/620,
  37114. bottom: 21/722
  37115. }
  37116. },
  37117. maidWork: {
  37118. height: math.unit(3 + 1/12, "feet"),
  37119. weight: math.unit(24, "lb"),
  37120. name: "Maid Work",
  37121. image: {
  37122. source: "./media/characters/tea-spot/maid-work.svg",
  37123. extra: 693/609,
  37124. bottom: 15/708
  37125. }
  37126. },
  37127. },
  37128. [
  37129. {
  37130. name: "Normal",
  37131. height: math.unit(3 + 1/12, "feet"),
  37132. default: true
  37133. },
  37134. ]
  37135. ))
  37136. characterMakers.push(() => makeCharacter(
  37137. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37138. {
  37139. front: {
  37140. height: math.unit(175, "cm"),
  37141. weight: math.unit(75, "kg"),
  37142. name: "Front",
  37143. image: {
  37144. source: "./media/characters/chee/front.svg",
  37145. extra: 1796/1740,
  37146. bottom: 40/1836
  37147. }
  37148. },
  37149. },
  37150. [
  37151. {
  37152. name: "Micro-Micro",
  37153. height: math.unit(1, "nm")
  37154. },
  37155. {
  37156. name: "Micro-erst",
  37157. height: math.unit(1, "micrometer")
  37158. },
  37159. {
  37160. name: "Micro-er",
  37161. height: math.unit(1, "cm")
  37162. },
  37163. {
  37164. name: "Normal",
  37165. height: math.unit(175, "cm"),
  37166. default: true
  37167. },
  37168. {
  37169. name: "Macro",
  37170. height: math.unit(100, "m")
  37171. },
  37172. {
  37173. name: "Macro-er",
  37174. height: math.unit(1, "km")
  37175. },
  37176. {
  37177. name: "Macro-erst",
  37178. height: math.unit(10, "km")
  37179. },
  37180. {
  37181. name: "Macro-Macro",
  37182. height: math.unit(100, "km")
  37183. },
  37184. ]
  37185. ))
  37186. characterMakers.push(() => makeCharacter(
  37187. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37188. {
  37189. front: {
  37190. height: math.unit(11 + 9/12, "feet"),
  37191. weight: math.unit(935, "lb"),
  37192. name: "Front",
  37193. image: {
  37194. source: "./media/characters/kingsley/front.svg",
  37195. extra: 1803/1674,
  37196. bottom: 127/1930
  37197. }
  37198. },
  37199. frontNude: {
  37200. height: math.unit(11 + 9/12, "feet"),
  37201. weight: math.unit(935, "lb"),
  37202. name: "Front (Nude)",
  37203. image: {
  37204. source: "./media/characters/kingsley/front-nude.svg",
  37205. extra: 1803/1674,
  37206. bottom: 127/1930
  37207. }
  37208. },
  37209. },
  37210. [
  37211. {
  37212. name: "Normal",
  37213. height: math.unit(11 + 9/12, "feet"),
  37214. default: true
  37215. },
  37216. ]
  37217. ))
  37218. characterMakers.push(() => makeCharacter(
  37219. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37220. {
  37221. side: {
  37222. height: math.unit(9, "feet"),
  37223. name: "Side",
  37224. image: {
  37225. source: "./media/characters/rymel/side.svg",
  37226. extra: 792/469,
  37227. bottom: 121/913
  37228. }
  37229. },
  37230. maw: {
  37231. height: math.unit(2.4, "meters"),
  37232. name: "Maw",
  37233. image: {
  37234. source: "./media/characters/rymel/maw.svg"
  37235. }
  37236. },
  37237. },
  37238. [
  37239. {
  37240. name: "House Drake",
  37241. height: math.unit(2, "feet")
  37242. },
  37243. {
  37244. name: "Reduced",
  37245. height: math.unit(4.5, "feet")
  37246. },
  37247. {
  37248. name: "Normal",
  37249. height: math.unit(9, "feet"),
  37250. default: true
  37251. },
  37252. ]
  37253. ))
  37254. characterMakers.push(() => makeCharacter(
  37255. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37256. {
  37257. front: {
  37258. height: math.unit(1.74, "meters"),
  37259. weight: math.unit(55, "kg"),
  37260. name: "Front",
  37261. image: {
  37262. source: "./media/characters/rubus/front.svg",
  37263. extra: 1894/1742,
  37264. bottom: 44/1938
  37265. }
  37266. },
  37267. },
  37268. [
  37269. {
  37270. name: "Normal",
  37271. height: math.unit(1.74, "meters"),
  37272. default: true
  37273. },
  37274. ]
  37275. ))
  37276. characterMakers.push(() => makeCharacter(
  37277. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37278. {
  37279. front: {
  37280. height: math.unit(5 + 2/12, "feet"),
  37281. weight: math.unit(112, "lb"),
  37282. name: "Front",
  37283. image: {
  37284. source: "./media/characters/cassie-kingston/front.svg",
  37285. extra: 1438/1390,
  37286. bottom: 47/1485
  37287. }
  37288. },
  37289. },
  37290. [
  37291. {
  37292. name: "Normal",
  37293. height: math.unit(5 + 2/12, "feet"),
  37294. default: true
  37295. },
  37296. {
  37297. name: "Macro",
  37298. height: math.unit(128, "feet")
  37299. },
  37300. {
  37301. name: "Megamacro",
  37302. height: math.unit(2.56, "miles")
  37303. },
  37304. ]
  37305. ))
  37306. characterMakers.push(() => makeCharacter(
  37307. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37308. {
  37309. front: {
  37310. height: math.unit(7, "feet"),
  37311. name: "Front",
  37312. image: {
  37313. source: "./media/characters/fox/front.svg",
  37314. extra: 1798/1703,
  37315. bottom: 55/1853
  37316. }
  37317. },
  37318. back: {
  37319. height: math.unit(7, "feet"),
  37320. name: "Back",
  37321. image: {
  37322. source: "./media/characters/fox/back.svg",
  37323. extra: 1748/1649,
  37324. bottom: 32/1780
  37325. }
  37326. },
  37327. head: {
  37328. height: math.unit(1.95, "feet"),
  37329. name: "Head",
  37330. image: {
  37331. source: "./media/characters/fox/head.svg"
  37332. }
  37333. },
  37334. dick: {
  37335. height: math.unit(1.33, "feet"),
  37336. name: "Dick",
  37337. image: {
  37338. source: "./media/characters/fox/dick.svg"
  37339. }
  37340. },
  37341. foot: {
  37342. height: math.unit(1, "feet"),
  37343. name: "Foot",
  37344. image: {
  37345. source: "./media/characters/fox/foot.svg"
  37346. }
  37347. },
  37348. paw: {
  37349. height: math.unit(0.92, "feet"),
  37350. name: "Paw",
  37351. image: {
  37352. source: "./media/characters/fox/paw.svg"
  37353. }
  37354. },
  37355. },
  37356. [
  37357. {
  37358. name: "Small",
  37359. height: math.unit(3, "inches")
  37360. },
  37361. {
  37362. name: "\"Realistic\"",
  37363. height: math.unit(7, "feet")
  37364. },
  37365. {
  37366. name: "Normal",
  37367. height: math.unit(150, "feet"),
  37368. default: true
  37369. },
  37370. {
  37371. name: "BIG",
  37372. height: math.unit(1200, "feet")
  37373. },
  37374. {
  37375. name: "👀",
  37376. height: math.unit(5, "miles")
  37377. },
  37378. {
  37379. name: "👀👀👀",
  37380. height: math.unit(64, "miles")
  37381. },
  37382. ]
  37383. ))
  37384. characterMakers.push(() => makeCharacter(
  37385. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37386. {
  37387. front: {
  37388. height: math.unit(625, "feet"),
  37389. name: "Front",
  37390. image: {
  37391. source: "./media/characters/asonja-rossa/front.svg",
  37392. extra: 1833/1686,
  37393. bottom: 24/1857
  37394. }
  37395. },
  37396. back: {
  37397. height: math.unit(625, "feet"),
  37398. name: "Back",
  37399. image: {
  37400. source: "./media/characters/asonja-rossa/back.svg",
  37401. extra: 1852/1753,
  37402. bottom: 26/1878
  37403. }
  37404. },
  37405. },
  37406. [
  37407. {
  37408. name: "Macro",
  37409. height: math.unit(625, "feet"),
  37410. default: true
  37411. },
  37412. ]
  37413. ))
  37414. characterMakers.push(() => makeCharacter(
  37415. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37416. {
  37417. side: {
  37418. height: math.unit(8, "feet"),
  37419. name: "Side",
  37420. image: {
  37421. source: "./media/characters/rezukii/side.svg",
  37422. extra: 979/542,
  37423. bottom: 87/1066
  37424. }
  37425. },
  37426. sitting: {
  37427. height: math.unit(14.6, "feet"),
  37428. name: "Sitting",
  37429. image: {
  37430. source: "./media/characters/rezukii/sitting.svg",
  37431. extra: 1023/813,
  37432. bottom: 45/1068
  37433. }
  37434. },
  37435. },
  37436. [
  37437. {
  37438. name: "Tiny",
  37439. height: math.unit(2, "feet")
  37440. },
  37441. {
  37442. name: "Smol",
  37443. height: math.unit(4, "feet")
  37444. },
  37445. {
  37446. name: "Normal",
  37447. height: math.unit(8, "feet"),
  37448. default: true
  37449. },
  37450. {
  37451. name: "Big",
  37452. height: math.unit(12, "feet")
  37453. },
  37454. {
  37455. name: "Macro",
  37456. height: math.unit(30, "feet")
  37457. },
  37458. ]
  37459. ))
  37460. characterMakers.push(() => makeCharacter(
  37461. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37462. {
  37463. front: {
  37464. height: math.unit(14, "feet"),
  37465. weight: math.unit(9.5, "tonnes"),
  37466. name: "Front",
  37467. image: {
  37468. source: "./media/characters/dawnheart/front.svg",
  37469. extra: 2792/2675,
  37470. bottom: 64/2856
  37471. }
  37472. },
  37473. },
  37474. [
  37475. {
  37476. name: "Normal",
  37477. height: math.unit(14, "feet"),
  37478. default: true
  37479. },
  37480. ]
  37481. ))
  37482. characterMakers.push(() => makeCharacter(
  37483. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37484. {
  37485. front: {
  37486. height: math.unit(1.7, "m"),
  37487. name: "Front",
  37488. image: {
  37489. source: "./media/characters/gladi/front.svg",
  37490. extra: 1460/1362,
  37491. bottom: 19/1479
  37492. }
  37493. },
  37494. back: {
  37495. height: math.unit(1.7, "m"),
  37496. name: "Back",
  37497. image: {
  37498. source: "./media/characters/gladi/back.svg",
  37499. extra: 1459/1357,
  37500. bottom: 12/1471
  37501. }
  37502. },
  37503. feral: {
  37504. height: math.unit(2.05, "m"),
  37505. name: "Feral",
  37506. image: {
  37507. source: "./media/characters/gladi/feral.svg",
  37508. extra: 821/557,
  37509. bottom: 91/912
  37510. }
  37511. },
  37512. },
  37513. [
  37514. {
  37515. name: "Shortest",
  37516. height: math.unit(70, "cm")
  37517. },
  37518. {
  37519. name: "Normal",
  37520. height: math.unit(1.7, "m")
  37521. },
  37522. {
  37523. name: "Macro",
  37524. height: math.unit(10, "m"),
  37525. default: true
  37526. },
  37527. {
  37528. name: "Tallest",
  37529. height: math.unit(200, "m")
  37530. },
  37531. ]
  37532. ))
  37533. characterMakers.push(() => makeCharacter(
  37534. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37535. {
  37536. front: {
  37537. height: math.unit(5 + 7/12, "feet"),
  37538. weight: math.unit(2, "tons"),
  37539. name: "Front",
  37540. image: {
  37541. source: "./media/characters/erdno/front.svg",
  37542. extra: 1234/1129,
  37543. bottom: 35/1269
  37544. }
  37545. },
  37546. angled: {
  37547. height: math.unit(5 + 7/12, "feet"),
  37548. weight: math.unit(2, "tons"),
  37549. name: "Angled",
  37550. image: {
  37551. source: "./media/characters/erdno/angled.svg",
  37552. extra: 1185/1139,
  37553. bottom: 36/1221
  37554. }
  37555. },
  37556. side: {
  37557. height: math.unit(5 + 7/12, "feet"),
  37558. weight: math.unit(2, "tons"),
  37559. name: "Side",
  37560. image: {
  37561. source: "./media/characters/erdno/side.svg",
  37562. extra: 1191/1144,
  37563. bottom: 40/1231
  37564. }
  37565. },
  37566. back: {
  37567. height: math.unit(5 + 7/12, "feet"),
  37568. weight: math.unit(2, "tons"),
  37569. name: "Back",
  37570. image: {
  37571. source: "./media/characters/erdno/back.svg",
  37572. extra: 1202/1146,
  37573. bottom: 17/1219
  37574. }
  37575. },
  37576. frontNsfw: {
  37577. height: math.unit(5 + 7/12, "feet"),
  37578. weight: math.unit(2, "tons"),
  37579. name: "Front (NSFW)",
  37580. image: {
  37581. source: "./media/characters/erdno/front-nsfw.svg",
  37582. extra: 1234/1129,
  37583. bottom: 35/1269
  37584. }
  37585. },
  37586. angledNsfw: {
  37587. height: math.unit(5 + 7/12, "feet"),
  37588. weight: math.unit(2, "tons"),
  37589. name: "Angled (NSFW)",
  37590. image: {
  37591. source: "./media/characters/erdno/angled-nsfw.svg",
  37592. extra: 1185/1139,
  37593. bottom: 36/1221
  37594. }
  37595. },
  37596. sideNsfw: {
  37597. height: math.unit(5 + 7/12, "feet"),
  37598. weight: math.unit(2, "tons"),
  37599. name: "Side (NSFW)",
  37600. image: {
  37601. source: "./media/characters/erdno/side-nsfw.svg",
  37602. extra: 1191/1144,
  37603. bottom: 40/1231
  37604. }
  37605. },
  37606. backNsfw: {
  37607. height: math.unit(5 + 7/12, "feet"),
  37608. weight: math.unit(2, "tons"),
  37609. name: "Back (NSFW)",
  37610. image: {
  37611. source: "./media/characters/erdno/back-nsfw.svg",
  37612. extra: 1202/1146,
  37613. bottom: 17/1219
  37614. }
  37615. },
  37616. frontHyper: {
  37617. height: math.unit(5 + 7/12, "feet"),
  37618. weight: math.unit(2, "tons"),
  37619. name: "Front (Hyper)",
  37620. image: {
  37621. source: "./media/characters/erdno/front-hyper.svg",
  37622. extra: 1298/1136,
  37623. bottom: 35/1333
  37624. }
  37625. },
  37626. },
  37627. [
  37628. {
  37629. name: "Normal",
  37630. height: math.unit(5 + 7/12, "feet"),
  37631. default: true
  37632. },
  37633. {
  37634. name: "Big",
  37635. height: math.unit(5.7, "meters")
  37636. },
  37637. {
  37638. name: "Macro",
  37639. height: math.unit(5.7, "kilometers")
  37640. },
  37641. {
  37642. name: "Megamacro",
  37643. height: math.unit(5.7, "earths")
  37644. },
  37645. ]
  37646. ))
  37647. characterMakers.push(() => makeCharacter(
  37648. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37649. {
  37650. front: {
  37651. height: math.unit(5 + 10/12, "feet"),
  37652. weight: math.unit(150, "lb"),
  37653. name: "Front",
  37654. image: {
  37655. source: "./media/characters/jamie/front.svg",
  37656. extra: 1908/1768,
  37657. bottom: 19/1927
  37658. }
  37659. },
  37660. },
  37661. [
  37662. {
  37663. name: "Minimum",
  37664. height: math.unit(2, "cm")
  37665. },
  37666. {
  37667. name: "Micro",
  37668. height: math.unit(3, "inches")
  37669. },
  37670. {
  37671. name: "Normal",
  37672. height: math.unit(5 + 10/12, "feet"),
  37673. default: true
  37674. },
  37675. {
  37676. name: "Macro",
  37677. height: math.unit(150, "feet")
  37678. },
  37679. {
  37680. name: "Megamacro",
  37681. height: math.unit(10000, "m")
  37682. },
  37683. ]
  37684. ))
  37685. characterMakers.push(() => makeCharacter(
  37686. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37687. {
  37688. front: {
  37689. height: math.unit(2, "meters"),
  37690. weight: math.unit(100, "kg"),
  37691. name: "Front",
  37692. image: {
  37693. source: "./media/characters/shiron/front.svg",
  37694. extra: 2103/1985,
  37695. bottom: 98/2201
  37696. }
  37697. },
  37698. back: {
  37699. height: math.unit(2, "meters"),
  37700. weight: math.unit(100, "kg"),
  37701. name: "Back",
  37702. image: {
  37703. source: "./media/characters/shiron/back.svg",
  37704. extra: 2110/2015,
  37705. bottom: 89/2199
  37706. }
  37707. },
  37708. hand: {
  37709. height: math.unit(0.96, "feet"),
  37710. name: "Hand",
  37711. image: {
  37712. source: "./media/characters/shiron/hand.svg"
  37713. }
  37714. },
  37715. foot: {
  37716. height: math.unit(1.464, "feet"),
  37717. name: "Foot",
  37718. image: {
  37719. source: "./media/characters/shiron/foot.svg"
  37720. }
  37721. },
  37722. },
  37723. [
  37724. {
  37725. name: "Normal",
  37726. height: math.unit(2, "meters")
  37727. },
  37728. {
  37729. name: "Macro",
  37730. height: math.unit(500, "meters"),
  37731. default: true
  37732. },
  37733. {
  37734. name: "Megamacro",
  37735. height: math.unit(20, "km")
  37736. },
  37737. ]
  37738. ))
  37739. characterMakers.push(() => makeCharacter(
  37740. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37741. {
  37742. front: {
  37743. height: math.unit(6, "feet"),
  37744. name: "Front",
  37745. image: {
  37746. source: "./media/characters/sam/front.svg",
  37747. extra: 849/826,
  37748. bottom: 19/868
  37749. }
  37750. },
  37751. },
  37752. [
  37753. {
  37754. name: "Normal",
  37755. height: math.unit(6, "feet"),
  37756. default: true
  37757. },
  37758. ]
  37759. ))
  37760. characterMakers.push(() => makeCharacter(
  37761. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37762. {
  37763. front: {
  37764. height: math.unit(8 + 4/12, "feet"),
  37765. weight: math.unit(122, "kg"),
  37766. name: "Front",
  37767. image: {
  37768. source: "./media/characters/namori-kurogawa/front.svg",
  37769. extra: 1894/1576,
  37770. bottom: 34/1928
  37771. }
  37772. },
  37773. },
  37774. [
  37775. {
  37776. name: "Normal",
  37777. height: math.unit(8 + 4/12, "feet"),
  37778. default: true
  37779. },
  37780. ]
  37781. ))
  37782. characterMakers.push(() => makeCharacter(
  37783. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37784. {
  37785. front: {
  37786. height: math.unit(9, "feet"),
  37787. weight: math.unit(621, "lb"),
  37788. name: "Front",
  37789. image: {
  37790. source: "./media/characters/unmru/front.svg",
  37791. extra: 1853/1747,
  37792. bottom: 73/1926
  37793. }
  37794. },
  37795. side: {
  37796. height: math.unit(9, "feet"),
  37797. weight: math.unit(621, "lb"),
  37798. name: "Side",
  37799. image: {
  37800. source: "./media/characters/unmru/side.svg",
  37801. extra: 1781/1671,
  37802. bottom: 127/1908
  37803. }
  37804. },
  37805. back: {
  37806. height: math.unit(9, "feet"),
  37807. weight: math.unit(621, "lb"),
  37808. name: "Back",
  37809. image: {
  37810. source: "./media/characters/unmru/back.svg",
  37811. extra: 1894/1765,
  37812. bottom: 75/1969
  37813. }
  37814. },
  37815. dick: {
  37816. height: math.unit(3, "feet"),
  37817. weight: math.unit(35, "lb"),
  37818. name: "Dick",
  37819. image: {
  37820. source: "./media/characters/unmru/dick.svg"
  37821. }
  37822. },
  37823. },
  37824. [
  37825. {
  37826. name: "Normal",
  37827. height: math.unit(9, "feet")
  37828. },
  37829. {
  37830. name: "Natural",
  37831. height: math.unit(27, "feet"),
  37832. default: true
  37833. },
  37834. {
  37835. name: "Giant",
  37836. height: math.unit(90, "feet")
  37837. },
  37838. {
  37839. name: "Kaiju",
  37840. height: math.unit(270, "feet")
  37841. },
  37842. {
  37843. name: "Macro",
  37844. height: math.unit(900, "feet")
  37845. },
  37846. {
  37847. name: "Macro+",
  37848. height: math.unit(2700, "feet")
  37849. },
  37850. {
  37851. name: "Megamacro",
  37852. height: math.unit(9000, "feet")
  37853. },
  37854. {
  37855. name: "City-Crushing",
  37856. height: math.unit(27000, "feet")
  37857. },
  37858. {
  37859. name: "Mountain-Mashing",
  37860. height: math.unit(90000, "feet")
  37861. },
  37862. {
  37863. name: "Earth-Eclipsing",
  37864. height: math.unit(2.7e8, "feet")
  37865. },
  37866. {
  37867. name: "Sol-Swallowing",
  37868. height: math.unit(9e10, "feet")
  37869. },
  37870. {
  37871. name: "Majoris-Munching",
  37872. height: math.unit(2.7e13, "feet")
  37873. },
  37874. ]
  37875. ))
  37876. characterMakers.push(() => makeCharacter(
  37877. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37878. {
  37879. front: {
  37880. height: math.unit(1, "inch"),
  37881. name: "Front",
  37882. image: {
  37883. source: "./media/characters/squeaks-mouse/front.svg",
  37884. extra: 352/308,
  37885. bottom: 25/377
  37886. }
  37887. },
  37888. },
  37889. [
  37890. {
  37891. name: "Micro",
  37892. height: math.unit(1, "inch"),
  37893. default: true
  37894. },
  37895. ]
  37896. ))
  37897. characterMakers.push(() => makeCharacter(
  37898. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37899. {
  37900. side: {
  37901. height: math.unit(35, "feet"),
  37902. name: "Side",
  37903. image: {
  37904. source: "./media/characters/sayko/side.svg",
  37905. extra: 1697/1021,
  37906. bottom: 82/1779
  37907. }
  37908. },
  37909. head: {
  37910. height: math.unit(16, "feet"),
  37911. name: "Head",
  37912. image: {
  37913. source: "./media/characters/sayko/head.svg"
  37914. }
  37915. },
  37916. forepaw: {
  37917. height: math.unit(7.85, "feet"),
  37918. name: "Forepaw",
  37919. image: {
  37920. source: "./media/characters/sayko/forepaw.svg"
  37921. }
  37922. },
  37923. hindpaw: {
  37924. height: math.unit(8.8, "feet"),
  37925. name: "Hindpaw",
  37926. image: {
  37927. source: "./media/characters/sayko/hindpaw.svg"
  37928. }
  37929. },
  37930. },
  37931. [
  37932. {
  37933. name: "Normal",
  37934. height: math.unit(35, "feet"),
  37935. default: true
  37936. },
  37937. {
  37938. name: "Colossus",
  37939. height: math.unit(100, "meters")
  37940. },
  37941. {
  37942. name: "\"Small\" Deity",
  37943. height: math.unit(1, "km")
  37944. },
  37945. {
  37946. name: "\"Large\" Deity",
  37947. height: math.unit(15, "km")
  37948. },
  37949. ]
  37950. ))
  37951. characterMakers.push(() => makeCharacter(
  37952. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37953. {
  37954. front: {
  37955. height: math.unit(6, "feet"),
  37956. weight: math.unit(250, "lb"),
  37957. name: "Front",
  37958. image: {
  37959. source: "./media/characters/mukiro/front.svg",
  37960. extra: 1368/1310,
  37961. bottom: 34/1402
  37962. }
  37963. },
  37964. },
  37965. [
  37966. {
  37967. name: "Normal",
  37968. height: math.unit(6, "feet"),
  37969. default: true
  37970. },
  37971. ]
  37972. ))
  37973. characterMakers.push(() => makeCharacter(
  37974. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37975. {
  37976. front: {
  37977. height: math.unit(12 + 4/12, "feet"),
  37978. name: "Front",
  37979. image: {
  37980. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37981. extra: 1346/1311,
  37982. bottom: 65/1411
  37983. }
  37984. },
  37985. },
  37986. [
  37987. {
  37988. name: "Base",
  37989. height: math.unit(12 + 4/12, "feet"),
  37990. default: true
  37991. },
  37992. {
  37993. name: "Macro",
  37994. height: math.unit(150, "feet")
  37995. },
  37996. {
  37997. name: "Mega",
  37998. height: math.unit(2, "miles")
  37999. },
  38000. {
  38001. name: "Demi God",
  38002. height: math.unit(4, "AU")
  38003. },
  38004. {
  38005. name: "God Size",
  38006. height: math.unit(1, "universe")
  38007. },
  38008. ]
  38009. ))
  38010. characterMakers.push(() => makeCharacter(
  38011. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38012. {
  38013. front: {
  38014. height: math.unit(3 + 3/12, "feet"),
  38015. weight: math.unit(88, "lb"),
  38016. name: "Front",
  38017. image: {
  38018. source: "./media/characters/trey/front.svg",
  38019. extra: 1815/1509,
  38020. bottom: 60/1875
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "Normal",
  38027. height: math.unit(3 + 3/12, "feet"),
  38028. default: true
  38029. },
  38030. ]
  38031. ))
  38032. characterMakers.push(() => makeCharacter(
  38033. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38034. {
  38035. front: {
  38036. height: math.unit(4, "meters"),
  38037. name: "Front",
  38038. image: {
  38039. source: "./media/characters/adelonda/front.svg",
  38040. extra: 1077/982,
  38041. bottom: 39/1116
  38042. }
  38043. },
  38044. back: {
  38045. height: math.unit(4, "meters"),
  38046. name: "Back",
  38047. image: {
  38048. source: "./media/characters/adelonda/back.svg",
  38049. extra: 1105/1003,
  38050. bottom: 25/1130
  38051. }
  38052. },
  38053. feral: {
  38054. height: math.unit(40/1.5, "meters"),
  38055. name: "Feral",
  38056. image: {
  38057. source: "./media/characters/adelonda/feral.svg",
  38058. extra: 597/271,
  38059. bottom: 387/984
  38060. }
  38061. },
  38062. },
  38063. [
  38064. {
  38065. name: "Normal",
  38066. height: math.unit(4, "meters"),
  38067. default: true
  38068. },
  38069. ]
  38070. ))
  38071. characterMakers.push(() => makeCharacter(
  38072. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38073. {
  38074. front: {
  38075. height: math.unit(8 + 4/12, "feet"),
  38076. weight: math.unit(670, "lb"),
  38077. name: "Front",
  38078. image: {
  38079. source: "./media/characters/acadiel/front.svg",
  38080. extra: 1901/1595,
  38081. bottom: 142/2043
  38082. }
  38083. },
  38084. },
  38085. [
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(8 + 4/12, "feet"),
  38089. default: true
  38090. },
  38091. {
  38092. name: "Macro",
  38093. height: math.unit(200, "feet")
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38099. {
  38100. front: {
  38101. height: math.unit(6 + 2/12, "feet"),
  38102. weight: math.unit(185, "lb"),
  38103. name: "Front",
  38104. image: {
  38105. source: "./media/characters/kayne-ein/front.svg",
  38106. extra: 1780/1560,
  38107. bottom: 81/1861
  38108. }
  38109. },
  38110. },
  38111. [
  38112. {
  38113. name: "Normal",
  38114. height: math.unit(6 + 2/12, "feet"),
  38115. default: true
  38116. },
  38117. {
  38118. name: "Transformation Stage",
  38119. height: math.unit(15, "feet")
  38120. },
  38121. {
  38122. name: "Macro",
  38123. height: math.unit(150, "feet")
  38124. },
  38125. {
  38126. name: "Earth's Shadow",
  38127. height: math.unit(6200, "miles")
  38128. },
  38129. {
  38130. name: "Universal Demon",
  38131. height: math.unit(28e9, "parsecs")
  38132. },
  38133. {
  38134. name: "Multiverse God",
  38135. height: math.unit(3, "multiverses")
  38136. },
  38137. ]
  38138. ))
  38139. characterMakers.push(() => makeCharacter(
  38140. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38141. {
  38142. front: {
  38143. height: math.unit(5 + 5/12, "feet"),
  38144. name: "Front",
  38145. image: {
  38146. source: "./media/characters/fawn/front.svg",
  38147. extra: 1873/1731,
  38148. bottom: 95/1968
  38149. }
  38150. },
  38151. back: {
  38152. height: math.unit(5 + 5/12, "feet"),
  38153. name: "Back",
  38154. image: {
  38155. source: "./media/characters/fawn/back.svg",
  38156. extra: 1813/1700,
  38157. bottom: 14/1827
  38158. }
  38159. },
  38160. hoof: {
  38161. height: math.unit(1.45, "feet"),
  38162. name: "Hoof",
  38163. image: {
  38164. source: "./media/characters/fawn/hoof.svg"
  38165. }
  38166. },
  38167. },
  38168. [
  38169. {
  38170. name: "Normal",
  38171. height: math.unit(5 + 5/12, "feet"),
  38172. default: true
  38173. },
  38174. ]
  38175. ))
  38176. characterMakers.push(() => makeCharacter(
  38177. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38178. {
  38179. front: {
  38180. height: math.unit(2 + 5/12, "feet"),
  38181. name: "Front",
  38182. image: {
  38183. source: "./media/characters/orion/front.svg",
  38184. extra: 1366/1304,
  38185. bottom: 43/1409
  38186. }
  38187. },
  38188. paw: {
  38189. height: math.unit(0.52, "feet"),
  38190. name: "Paw",
  38191. image: {
  38192. source: "./media/characters/orion/paw.svg"
  38193. }
  38194. },
  38195. },
  38196. [
  38197. {
  38198. name: "Normal",
  38199. height: math.unit(2 + 5/12, "feet"),
  38200. default: true
  38201. },
  38202. ]
  38203. ))
  38204. characterMakers.push(() => makeCharacter(
  38205. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38206. {
  38207. front: {
  38208. height: math.unit(5 + 10/12, "feet"),
  38209. name: "Front",
  38210. image: {
  38211. source: "./media/characters/vera/front.svg",
  38212. extra: 1680/1575,
  38213. bottom: 49/1729
  38214. }
  38215. },
  38216. back: {
  38217. height: math.unit(5 + 10/12, "feet"),
  38218. name: "Back",
  38219. image: {
  38220. source: "./media/characters/vera/back.svg",
  38221. extra: 1700/1588,
  38222. bottom: 18/1718
  38223. }
  38224. },
  38225. arcanine: {
  38226. height: math.unit(6 + 8/12, "feet"),
  38227. name: "Arcanine",
  38228. image: {
  38229. source: "./media/characters/vera/arcanine.svg",
  38230. extra: 1590/1511,
  38231. bottom: 71/1661
  38232. }
  38233. },
  38234. maw: {
  38235. height: math.unit(0.82, "feet"),
  38236. name: "Maw",
  38237. image: {
  38238. source: "./media/characters/vera/maw.svg"
  38239. }
  38240. },
  38241. mawArcanine: {
  38242. height: math.unit(0.97, "feet"),
  38243. name: "Maw (Arcanine)",
  38244. image: {
  38245. source: "./media/characters/vera/maw-arcanine.svg"
  38246. }
  38247. },
  38248. paw: {
  38249. height: math.unit(0.75, "feet"),
  38250. name: "Paw",
  38251. image: {
  38252. source: "./media/characters/vera/paw.svg"
  38253. }
  38254. },
  38255. pawprint: {
  38256. height: math.unit(0.52, "feet"),
  38257. name: "Pawprint",
  38258. image: {
  38259. source: "./media/characters/vera/pawprint.svg"
  38260. }
  38261. },
  38262. },
  38263. [
  38264. {
  38265. name: "Normal",
  38266. height: math.unit(5 + 10/12, "feet"),
  38267. default: true
  38268. },
  38269. {
  38270. name: "Macro",
  38271. height: math.unit(75, "feet")
  38272. },
  38273. ]
  38274. ))
  38275. characterMakers.push(() => makeCharacter(
  38276. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38277. {
  38278. front: {
  38279. height: math.unit(4, "feet"),
  38280. weight: math.unit(40, "lb"),
  38281. name: "Front",
  38282. image: {
  38283. source: "./media/characters/orvan-rabbit/front.svg",
  38284. extra: 1896/1642,
  38285. bottom: 29/1925
  38286. }
  38287. },
  38288. },
  38289. [
  38290. {
  38291. name: "Normal",
  38292. height: math.unit(4, "feet"),
  38293. default: true
  38294. },
  38295. ]
  38296. ))
  38297. characterMakers.push(() => makeCharacter(
  38298. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38299. {
  38300. front: {
  38301. height: math.unit(6, "feet"),
  38302. weight: math.unit(168, "lb"),
  38303. name: "Front",
  38304. image: {
  38305. source: "./media/characters/lisa/front.svg",
  38306. extra: 2065/1867,
  38307. bottom: 46/2111
  38308. }
  38309. },
  38310. back: {
  38311. height: math.unit(6, "feet"),
  38312. weight: math.unit(168, "lb"),
  38313. name: "Back",
  38314. image: {
  38315. source: "./media/characters/lisa/back.svg",
  38316. extra: 1982/1838,
  38317. bottom: 29/2011
  38318. }
  38319. },
  38320. maw: {
  38321. height: math.unit(0.81, "feet"),
  38322. name: "Maw",
  38323. image: {
  38324. source: "./media/characters/lisa/maw.svg"
  38325. }
  38326. },
  38327. paw: {
  38328. height: math.unit(0.9, "feet"),
  38329. name: "Paw",
  38330. image: {
  38331. source: "./media/characters/lisa/paw.svg"
  38332. }
  38333. },
  38334. caribousune: {
  38335. height: math.unit(7 + 2/12, "feet"),
  38336. weight: math.unit(268, "lb"),
  38337. name: "Caribousune",
  38338. image: {
  38339. source: "./media/characters/lisa/caribousune.svg",
  38340. extra: 1843/1633,
  38341. bottom: 29/1872
  38342. }
  38343. },
  38344. frontCaribousune: {
  38345. height: math.unit(7 + 2/12, "feet"),
  38346. weight: math.unit(268, "lb"),
  38347. name: "Front (Caribousune)",
  38348. image: {
  38349. source: "./media/characters/lisa/front-caribousune.svg",
  38350. extra: 1818/1638,
  38351. bottom: 52/1870
  38352. }
  38353. },
  38354. sideCaribousune: {
  38355. height: math.unit(7 + 2/12, "feet"),
  38356. weight: math.unit(268, "lb"),
  38357. name: "Side (Caribousune)",
  38358. image: {
  38359. source: "./media/characters/lisa/side-caribousune.svg",
  38360. extra: 1851/1635,
  38361. bottom: 16/1867
  38362. }
  38363. },
  38364. backCaribousune: {
  38365. height: math.unit(7 + 2/12, "feet"),
  38366. weight: math.unit(268, "lb"),
  38367. name: "Back (Caribousune)",
  38368. image: {
  38369. source: "./media/characters/lisa/back-caribousune.svg",
  38370. extra: 1801/1604,
  38371. bottom: 44/1845
  38372. }
  38373. },
  38374. caribou: {
  38375. height: math.unit(7 + 2/12, "feet"),
  38376. weight: math.unit(268, "lb"),
  38377. name: "Caribou",
  38378. image: {
  38379. source: "./media/characters/lisa/caribou.svg",
  38380. extra: 1843/1633,
  38381. bottom: 29/1872
  38382. }
  38383. },
  38384. frontCaribou: {
  38385. height: math.unit(7 + 2/12, "feet"),
  38386. weight: math.unit(268, "lb"),
  38387. name: "Front (Caribou)",
  38388. image: {
  38389. source: "./media/characters/lisa/front-caribou.svg",
  38390. extra: 1818/1638,
  38391. bottom: 52/1870
  38392. }
  38393. },
  38394. sideCaribou: {
  38395. height: math.unit(7 + 2/12, "feet"),
  38396. weight: math.unit(268, "lb"),
  38397. name: "Side (Caribou)",
  38398. image: {
  38399. source: "./media/characters/lisa/side-caribou.svg",
  38400. extra: 1851/1635,
  38401. bottom: 16/1867
  38402. }
  38403. },
  38404. backCaribou: {
  38405. height: math.unit(7 + 2/12, "feet"),
  38406. weight: math.unit(268, "lb"),
  38407. name: "Back (Caribou)",
  38408. image: {
  38409. source: "./media/characters/lisa/back-caribou.svg",
  38410. extra: 1801/1604,
  38411. bottom: 44/1845
  38412. }
  38413. },
  38414. mawCaribou: {
  38415. height: math.unit(1.45, "feet"),
  38416. name: "Maw (Caribou)",
  38417. image: {
  38418. source: "./media/characters/lisa/maw-caribou.svg"
  38419. }
  38420. },
  38421. mawCaribousune: {
  38422. height: math.unit(1.45, "feet"),
  38423. name: "Maw (Caribousune)",
  38424. image: {
  38425. source: "./media/characters/lisa/maw-caribousune.svg"
  38426. }
  38427. },
  38428. pawCaribousune: {
  38429. height: math.unit(1.61, "feet"),
  38430. name: "Paw (Caribou)",
  38431. image: {
  38432. source: "./media/characters/lisa/paw-caribousune.svg"
  38433. }
  38434. },
  38435. },
  38436. [
  38437. {
  38438. name: "Normal",
  38439. height: math.unit(6, "feet")
  38440. },
  38441. {
  38442. name: "God Size",
  38443. height: math.unit(72, "feet"),
  38444. default: true
  38445. },
  38446. {
  38447. name: "Towering",
  38448. height: math.unit(288, "feet")
  38449. },
  38450. {
  38451. name: "City Size",
  38452. height: math.unit(48384, "feet")
  38453. },
  38454. {
  38455. name: "Continental",
  38456. height: math.unit(4200, "miles")
  38457. },
  38458. {
  38459. name: "Planet Eater",
  38460. height: math.unit(42, "earths")
  38461. },
  38462. {
  38463. name: "Star Swallower",
  38464. height: math.unit(42, "solarradii")
  38465. },
  38466. {
  38467. name: "System Swallower",
  38468. height: math.unit(84000, "AU")
  38469. },
  38470. {
  38471. name: "Galaxy Gobbler",
  38472. height: math.unit(42, "galaxies")
  38473. },
  38474. {
  38475. name: "Universe Devourer",
  38476. height: math.unit(42, "universes")
  38477. },
  38478. {
  38479. name: "Multiverse Muncher",
  38480. height: math.unit(42, "multiverses")
  38481. },
  38482. ]
  38483. ))
  38484. characterMakers.push(() => makeCharacter(
  38485. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38486. {
  38487. front: {
  38488. height: math.unit(36, "feet"),
  38489. name: "Front",
  38490. image: {
  38491. source: "./media/characters/shadow-rat/front.svg",
  38492. extra: 1845/1758,
  38493. bottom: 83/1928
  38494. }
  38495. },
  38496. },
  38497. [
  38498. {
  38499. name: "Macro",
  38500. height: math.unit(36, "feet"),
  38501. default: true
  38502. },
  38503. ]
  38504. ))
  38505. characterMakers.push(() => makeCharacter(
  38506. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38507. {
  38508. side: {
  38509. height: math.unit(8, "feet"),
  38510. weight: math.unit(2630, "lb"),
  38511. name: "Side",
  38512. image: {
  38513. source: "./media/characters/torallia/side.svg",
  38514. extra: 2164/2021,
  38515. bottom: 371/2535
  38516. }
  38517. },
  38518. },
  38519. [
  38520. {
  38521. name: "Mortal Interaction",
  38522. height: math.unit(8, "feet")
  38523. },
  38524. {
  38525. name: "Natural",
  38526. height: math.unit(24, "feet"),
  38527. default: true
  38528. },
  38529. {
  38530. name: "Giant",
  38531. height: math.unit(80, "feet")
  38532. },
  38533. {
  38534. name: "Kaiju",
  38535. height: math.unit(240, "feet")
  38536. },
  38537. {
  38538. name: "Macro",
  38539. height: math.unit(800, "feet")
  38540. },
  38541. {
  38542. name: "Macro+",
  38543. height: math.unit(2400, "feet")
  38544. },
  38545. {
  38546. name: "Macro++",
  38547. height: math.unit(8000, "feet")
  38548. },
  38549. {
  38550. name: "City-Crushing",
  38551. height: math.unit(24000, "feet")
  38552. },
  38553. {
  38554. name: "Mountain-Mashing",
  38555. height: math.unit(80000, "feet")
  38556. },
  38557. {
  38558. name: "District Demolisher",
  38559. height: math.unit(240000, "feet")
  38560. },
  38561. {
  38562. name: "Tri-County Terror",
  38563. height: math.unit(800000, "feet")
  38564. },
  38565. {
  38566. name: "State Smasher",
  38567. height: math.unit(2.4e6, "feet")
  38568. },
  38569. {
  38570. name: "Nation Nemesis",
  38571. height: math.unit(8e6, "feet")
  38572. },
  38573. {
  38574. name: "Continent Cracker",
  38575. height: math.unit(2.4e7, "feet")
  38576. },
  38577. {
  38578. name: "Planet-Pillaging",
  38579. height: math.unit(8e7, "feet")
  38580. },
  38581. {
  38582. name: "Earth-Eclipsing",
  38583. height: math.unit(2.4e8, "feet")
  38584. },
  38585. {
  38586. name: "Jovian-Jostling",
  38587. height: math.unit(8e8, "feet")
  38588. },
  38589. {
  38590. name: "Gas Giant Gulper",
  38591. height: math.unit(2.4e9, "feet")
  38592. },
  38593. {
  38594. name: "Astral Annihilator",
  38595. height: math.unit(8e9, "feet")
  38596. },
  38597. {
  38598. name: "Celestial Conqueror",
  38599. height: math.unit(2.4e10, "feet")
  38600. },
  38601. {
  38602. name: "Sol-Swallowing",
  38603. height: math.unit(8e10, "feet")
  38604. },
  38605. {
  38606. name: "Hunter of the Heavens",
  38607. height: math.unit(2.4e13, "feet")
  38608. },
  38609. ]
  38610. ))
  38611. characterMakers.push(() => makeCharacter(
  38612. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38613. {
  38614. front: {
  38615. height: math.unit(6 + 8/12, "feet"),
  38616. name: "Front",
  38617. image: {
  38618. source: "./media/characters/rebecca-pawlson/front.svg",
  38619. extra: 1737/1596,
  38620. bottom: 107/1844
  38621. }
  38622. },
  38623. back: {
  38624. height: math.unit(6 + 8/12, "feet"),
  38625. name: "Back",
  38626. image: {
  38627. source: "./media/characters/rebecca-pawlson/back.svg",
  38628. extra: 1702/1523,
  38629. bottom: 86/1788
  38630. }
  38631. },
  38632. },
  38633. [
  38634. {
  38635. name: "Normal",
  38636. height: math.unit(6 + 8/12, "feet")
  38637. },
  38638. {
  38639. name: "Mini Macro",
  38640. height: math.unit(10, "feet"),
  38641. default: true
  38642. },
  38643. {
  38644. name: "Macro",
  38645. height: math.unit(100, "feet")
  38646. },
  38647. {
  38648. name: "Mega Macro",
  38649. height: math.unit(2500, "feet")
  38650. },
  38651. {
  38652. name: "Giga Macro",
  38653. height: math.unit(50, "miles")
  38654. },
  38655. ]
  38656. ))
  38657. characterMakers.push(() => makeCharacter(
  38658. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38659. {
  38660. front: {
  38661. height: math.unit(7 + 6/12, "feet"),
  38662. weight: math.unit(600, "lb"),
  38663. name: "Front",
  38664. image: {
  38665. source: "./media/characters/moxie-nova/front.svg",
  38666. extra: 1734/1652,
  38667. bottom: 41/1775
  38668. }
  38669. },
  38670. },
  38671. [
  38672. {
  38673. name: "Normal",
  38674. height: math.unit(7 + 6/12, "feet"),
  38675. default: true
  38676. },
  38677. ]
  38678. ))
  38679. characterMakers.push(() => makeCharacter(
  38680. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38681. {
  38682. goat: {
  38683. height: math.unit(4, "feet"),
  38684. weight: math.unit(180, "lb"),
  38685. name: "Goat",
  38686. image: {
  38687. source: "./media/characters/tiffany/goat.svg",
  38688. extra: 1845/1595,
  38689. bottom: 106/1951
  38690. }
  38691. },
  38692. front: {
  38693. height: math.unit(5, "feet"),
  38694. weight: math.unit(150, "lb"),
  38695. name: "Foxcoon",
  38696. image: {
  38697. source: "./media/characters/tiffany/foxcoon.svg",
  38698. extra: 1941/1845,
  38699. bottom: 58/1999
  38700. }
  38701. },
  38702. },
  38703. [
  38704. {
  38705. name: "Normal",
  38706. height: math.unit(5, "feet"),
  38707. default: true
  38708. },
  38709. ]
  38710. ))
  38711. characterMakers.push(() => makeCharacter(
  38712. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38713. {
  38714. front: {
  38715. height: math.unit(8, "feet"),
  38716. weight: math.unit(300, "lb"),
  38717. name: "Front",
  38718. image: {
  38719. source: "./media/characters/raxinath/front.svg",
  38720. extra: 1407/1309,
  38721. bottom: 39/1446
  38722. }
  38723. },
  38724. back: {
  38725. height: math.unit(8, "feet"),
  38726. weight: math.unit(300, "lb"),
  38727. name: "Back",
  38728. image: {
  38729. source: "./media/characters/raxinath/back.svg",
  38730. extra: 1405/1315,
  38731. bottom: 9/1414
  38732. }
  38733. },
  38734. },
  38735. [
  38736. {
  38737. name: "Speck",
  38738. height: math.unit(0.5, "nm")
  38739. },
  38740. {
  38741. name: "Micro",
  38742. height: math.unit(3, "inches")
  38743. },
  38744. {
  38745. name: "Kobold",
  38746. height: math.unit(3, "feet")
  38747. },
  38748. {
  38749. name: "Normal",
  38750. height: math.unit(8, "feet"),
  38751. default: true
  38752. },
  38753. {
  38754. name: "Giant",
  38755. height: math.unit(50, "feet")
  38756. },
  38757. {
  38758. name: "Macro",
  38759. height: math.unit(1000, "feet")
  38760. },
  38761. {
  38762. name: "Megamacro",
  38763. height: math.unit(1, "mile")
  38764. },
  38765. ]
  38766. ))
  38767. characterMakers.push(() => makeCharacter(
  38768. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38769. {
  38770. front: {
  38771. height: math.unit(10, "feet"),
  38772. weight: math.unit(1442, "lb"),
  38773. name: "Front",
  38774. image: {
  38775. source: "./media/characters/mal-dragon/front.svg",
  38776. extra: 1515/1444,
  38777. bottom: 113/1628
  38778. }
  38779. },
  38780. back: {
  38781. height: math.unit(10, "feet"),
  38782. weight: math.unit(1442, "lb"),
  38783. name: "Back",
  38784. image: {
  38785. source: "./media/characters/mal-dragon/back.svg",
  38786. extra: 1527/1434,
  38787. bottom: 25/1552
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Mortal Interaction",
  38794. height: math.unit(10, "feet"),
  38795. default: true
  38796. },
  38797. {
  38798. name: "Large",
  38799. height: math.unit(30, "feet")
  38800. },
  38801. {
  38802. name: "Kaiju",
  38803. height: math.unit(300, "feet")
  38804. },
  38805. {
  38806. name: "Megamacro",
  38807. height: math.unit(10000, "feet")
  38808. },
  38809. {
  38810. name: "Continent Cracker",
  38811. height: math.unit(30000000, "feet")
  38812. },
  38813. {
  38814. name: "Sol-Swallowing",
  38815. height: math.unit(1e11, "feet")
  38816. },
  38817. {
  38818. name: "Light Universal",
  38819. height: math.unit(5, "universes")
  38820. },
  38821. {
  38822. name: "Universe Atoms",
  38823. height: math.unit(1.829e9, "universes")
  38824. },
  38825. {
  38826. name: "Light Multiversal",
  38827. height: math.unit(5, "multiverses")
  38828. },
  38829. {
  38830. name: "Multiverse Atoms",
  38831. height: math.unit(1.829e9, "multiverses")
  38832. },
  38833. {
  38834. name: "Fabric of Time",
  38835. height: math.unit(1e262, "multiverses")
  38836. },
  38837. ]
  38838. ))
  38839. characterMakers.push(() => makeCharacter(
  38840. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38841. {
  38842. front: {
  38843. height: math.unit(9, "feet"),
  38844. weight: math.unit(1050, "lb"),
  38845. name: "Front",
  38846. image: {
  38847. source: "./media/characters/tabitha/front.svg",
  38848. extra: 2083/1994,
  38849. bottom: 68/2151
  38850. }
  38851. },
  38852. },
  38853. [
  38854. {
  38855. name: "Baseline",
  38856. height: math.unit(9, "feet"),
  38857. default: true
  38858. },
  38859. {
  38860. name: "Giant",
  38861. height: math.unit(90, "feet")
  38862. },
  38863. {
  38864. name: "Macro",
  38865. height: math.unit(900, "feet")
  38866. },
  38867. {
  38868. name: "Megamacro",
  38869. height: math.unit(9000, "feet")
  38870. },
  38871. {
  38872. name: "City-Crushing",
  38873. height: math.unit(27000, "feet")
  38874. },
  38875. {
  38876. name: "Mountain-Mashing",
  38877. height: math.unit(90000, "feet")
  38878. },
  38879. {
  38880. name: "Nation Nemesis",
  38881. height: math.unit(9e6, "feet")
  38882. },
  38883. {
  38884. name: "Continent Cracker",
  38885. height: math.unit(27e6, "feet")
  38886. },
  38887. {
  38888. name: "Earth-Eclipsing",
  38889. height: math.unit(2.7e8, "feet")
  38890. },
  38891. {
  38892. name: "Gas Giant Gulper",
  38893. height: math.unit(2.7e9, "feet")
  38894. },
  38895. {
  38896. name: "Sol-Swallowing",
  38897. height: math.unit(9e10, "feet")
  38898. },
  38899. {
  38900. name: "Galaxy Gulper",
  38901. height: math.unit(9, "galaxies")
  38902. },
  38903. {
  38904. name: "Cosmos Churner",
  38905. height: math.unit(9, "universes")
  38906. },
  38907. ]
  38908. ))
  38909. characterMakers.push(() => makeCharacter(
  38910. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38911. {
  38912. front: {
  38913. height: math.unit(160, "cm"),
  38914. weight: math.unit(55, "kg"),
  38915. name: "Front",
  38916. image: {
  38917. source: "./media/characters/tow/front.svg",
  38918. extra: 1751/1722,
  38919. bottom: 74/1825
  38920. }
  38921. },
  38922. },
  38923. [
  38924. {
  38925. name: "Norm",
  38926. height: math.unit(160, "cm")
  38927. },
  38928. {
  38929. name: "Casual",
  38930. height: math.unit(3200, "m"),
  38931. default: true
  38932. },
  38933. {
  38934. name: "Show-Off",
  38935. height: math.unit(160, "km")
  38936. },
  38937. ]
  38938. ))
  38939. characterMakers.push(() => makeCharacter(
  38940. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38941. {
  38942. front: {
  38943. height: math.unit(7 + 11/12, "feet"),
  38944. weight: math.unit(342.8, "lb"),
  38945. name: "Front",
  38946. image: {
  38947. source: "./media/characters/vivian-orca-dragon/front.svg",
  38948. extra: 1890/1865,
  38949. bottom: 28/1918
  38950. }
  38951. },
  38952. },
  38953. [
  38954. {
  38955. name: "Micro",
  38956. height: math.unit(5, "inches")
  38957. },
  38958. {
  38959. name: "Normal",
  38960. height: math.unit(7 + 11/12, "feet"),
  38961. default: true
  38962. },
  38963. {
  38964. name: "Macro",
  38965. height: math.unit(395 + 7/12, "feet")
  38966. },
  38967. ]
  38968. ))
  38969. characterMakers.push(() => makeCharacter(
  38970. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38971. {
  38972. side: {
  38973. height: math.unit(10, "feet"),
  38974. weight: math.unit(1442, "lb"),
  38975. name: "Side",
  38976. image: {
  38977. source: "./media/characters/lotherakon/side.svg",
  38978. extra: 1604/1497,
  38979. bottom: 89/1693
  38980. }
  38981. },
  38982. },
  38983. [
  38984. {
  38985. name: "Mortal Interaction",
  38986. height: math.unit(10, "feet")
  38987. },
  38988. {
  38989. name: "Large",
  38990. height: math.unit(30, "feet"),
  38991. default: true
  38992. },
  38993. {
  38994. name: "Giant",
  38995. height: math.unit(100, "feet")
  38996. },
  38997. {
  38998. name: "Kaiju",
  38999. height: math.unit(300, "feet")
  39000. },
  39001. {
  39002. name: "Macro",
  39003. height: math.unit(1000, "feet")
  39004. },
  39005. {
  39006. name: "Macro+",
  39007. height: math.unit(3000, "feet")
  39008. },
  39009. {
  39010. name: "Megamacro",
  39011. height: math.unit(10000, "feet")
  39012. },
  39013. {
  39014. name: "City-Crushing",
  39015. height: math.unit(30000, "feet")
  39016. },
  39017. {
  39018. name: "Continent Cracker",
  39019. height: math.unit(30e6, "feet")
  39020. },
  39021. {
  39022. name: "Earth Eclipsing",
  39023. height: math.unit(3e8, "feet")
  39024. },
  39025. {
  39026. name: "Gas Giant Gulper",
  39027. height: math.unit(3e9, "feet")
  39028. },
  39029. {
  39030. name: "Sol-Swallowing",
  39031. height: math.unit(1e11, "feet")
  39032. },
  39033. {
  39034. name: "System Swallower",
  39035. height: math.unit(3e14, "feet")
  39036. },
  39037. {
  39038. name: "Galaxy Gulper",
  39039. height: math.unit(10, "galaxies")
  39040. },
  39041. {
  39042. name: "Light Universal",
  39043. height: math.unit(5, "universes")
  39044. },
  39045. {
  39046. name: "Universe Palm",
  39047. height: math.unit(20, "universes")
  39048. },
  39049. {
  39050. name: "Light Multiversal",
  39051. height: math.unit(5, "multiverses")
  39052. },
  39053. {
  39054. name: "Multiverse Palm",
  39055. height: math.unit(20, "multiverses")
  39056. },
  39057. {
  39058. name: "Inferno Incarnate",
  39059. height: math.unit(1e7, "multiverses")
  39060. },
  39061. ]
  39062. ))
  39063. characterMakers.push(() => makeCharacter(
  39064. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39065. {
  39066. front: {
  39067. height: math.unit(8, "feet"),
  39068. weight: math.unit(1200, "lb"),
  39069. name: "Front",
  39070. image: {
  39071. source: "./media/characters/malithee/front.svg",
  39072. extra: 1675/1640,
  39073. bottom: 162/1837
  39074. }
  39075. },
  39076. },
  39077. [
  39078. {
  39079. name: "Mortal Interaction",
  39080. height: math.unit(8, "feet"),
  39081. default: true
  39082. },
  39083. {
  39084. name: "Large",
  39085. height: math.unit(24, "feet")
  39086. },
  39087. {
  39088. name: "Kaiju",
  39089. height: math.unit(240, "feet")
  39090. },
  39091. {
  39092. name: "Megamacro",
  39093. height: math.unit(8000, "feet")
  39094. },
  39095. {
  39096. name: "Continent Cracker",
  39097. height: math.unit(24e6, "feet")
  39098. },
  39099. {
  39100. name: "Earth-Eclipsing",
  39101. height: math.unit(2.4e8, "feet")
  39102. },
  39103. {
  39104. name: "Sol-Swallowing",
  39105. height: math.unit(8e10, "feet")
  39106. },
  39107. {
  39108. name: "Galaxy Gulper",
  39109. height: math.unit(8, "galaxies")
  39110. },
  39111. {
  39112. name: "Light Universal",
  39113. height: math.unit(4, "universes")
  39114. },
  39115. {
  39116. name: "Universe Atoms",
  39117. height: math.unit(1.829e9, "universes")
  39118. },
  39119. {
  39120. name: "Light Multiversal",
  39121. height: math.unit(4, "multiverses")
  39122. },
  39123. {
  39124. name: "Multiverse Atoms",
  39125. height: math.unit(1.829e9, "multiverses")
  39126. },
  39127. {
  39128. name: "Nigh-Omnipresence",
  39129. height: math.unit(8e261, "multiverses")
  39130. },
  39131. ]
  39132. ))
  39133. characterMakers.push(() => makeCharacter(
  39134. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39135. {
  39136. front: {
  39137. height: math.unit(10, "feet"),
  39138. weight: math.unit(1500, "lb"),
  39139. name: "Front",
  39140. image: {
  39141. source: "./media/characters/miles-thestia/front.svg",
  39142. extra: 1812/1727,
  39143. bottom: 86/1898
  39144. }
  39145. },
  39146. back: {
  39147. height: math.unit(10, "feet"),
  39148. weight: math.unit(1500, "lb"),
  39149. name: "Back",
  39150. image: {
  39151. source: "./media/characters/miles-thestia/back.svg",
  39152. extra: 1799/1690,
  39153. bottom: 47/1846
  39154. }
  39155. },
  39156. frontNsfw: {
  39157. height: math.unit(10, "feet"),
  39158. weight: math.unit(1500, "lb"),
  39159. name: "Front (NSFW)",
  39160. image: {
  39161. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39162. extra: 1812/1727,
  39163. bottom: 86/1898
  39164. }
  39165. },
  39166. },
  39167. [
  39168. {
  39169. name: "Mini-Macro",
  39170. height: math.unit(10, "feet"),
  39171. default: true
  39172. },
  39173. ]
  39174. ))
  39175. characterMakers.push(() => makeCharacter(
  39176. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39177. {
  39178. front: {
  39179. height: math.unit(25, "feet"),
  39180. name: "Front",
  39181. image: {
  39182. source: "./media/characters/titan-s-wulf/front.svg",
  39183. extra: 1560/1484,
  39184. bottom: 76/1636
  39185. }
  39186. },
  39187. },
  39188. [
  39189. {
  39190. name: "Smallest",
  39191. height: math.unit(25, "feet"),
  39192. default: true
  39193. },
  39194. {
  39195. name: "Normal",
  39196. height: math.unit(200, "feet")
  39197. },
  39198. {
  39199. name: "Macro",
  39200. height: math.unit(200000, "feet")
  39201. },
  39202. {
  39203. name: "Multiversal Original",
  39204. height: math.unit(10000, "multiverses")
  39205. },
  39206. ]
  39207. ))
  39208. characterMakers.push(() => makeCharacter(
  39209. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39210. {
  39211. front: {
  39212. height: math.unit(8, "feet"),
  39213. weight: math.unit(553, "lb"),
  39214. name: "Front",
  39215. image: {
  39216. source: "./media/characters/tawendeh/front.svg",
  39217. extra: 2365/2268,
  39218. bottom: 83/2448
  39219. }
  39220. },
  39221. frontClothed: {
  39222. height: math.unit(8, "feet"),
  39223. weight: math.unit(553, "lb"),
  39224. name: "Front (Clothed)",
  39225. image: {
  39226. source: "./media/characters/tawendeh/front-clothed.svg",
  39227. extra: 2365/2268,
  39228. bottom: 83/2448
  39229. }
  39230. },
  39231. back: {
  39232. height: math.unit(8, "feet"),
  39233. weight: math.unit(553, "lb"),
  39234. name: "Back",
  39235. image: {
  39236. source: "./media/characters/tawendeh/back.svg",
  39237. extra: 2397/2294,
  39238. bottom: 42/2439
  39239. }
  39240. },
  39241. },
  39242. [
  39243. {
  39244. name: "Mortal Interaction",
  39245. height: math.unit(8, "feet"),
  39246. default: true
  39247. },
  39248. {
  39249. name: "Giant",
  39250. height: math.unit(80, "feet")
  39251. },
  39252. {
  39253. name: "Macro",
  39254. height: math.unit(800, "feet")
  39255. },
  39256. {
  39257. name: "Megamacro",
  39258. height: math.unit(8000, "feet")
  39259. },
  39260. {
  39261. name: "City-Crushing",
  39262. height: math.unit(24000, "feet")
  39263. },
  39264. {
  39265. name: "Mountain-Mashing",
  39266. height: math.unit(80000, "feet")
  39267. },
  39268. {
  39269. name: "Nation Nemesis",
  39270. height: math.unit(8e6, "feet")
  39271. },
  39272. {
  39273. name: "Continent Cracker",
  39274. height: math.unit(24e6, "feet")
  39275. },
  39276. {
  39277. name: "Earth-Eclipsing",
  39278. height: math.unit(2.4e8, "feet")
  39279. },
  39280. {
  39281. name: "Gas Giant Gulper",
  39282. height: math.unit(2.4e9, "feet")
  39283. },
  39284. {
  39285. name: "Sol-Swallowing",
  39286. height: math.unit(8e10, "feet")
  39287. },
  39288. {
  39289. name: "Galaxy Gulper",
  39290. height: math.unit(8, "galaxies")
  39291. },
  39292. {
  39293. name: "Cosmos Churner",
  39294. height: math.unit(8, "universes")
  39295. },
  39296. {
  39297. name: "Omnipotent Otter",
  39298. height: math.unit(80, "universes")
  39299. },
  39300. ]
  39301. ))
  39302. characterMakers.push(() => makeCharacter(
  39303. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39304. {
  39305. front: {
  39306. height: math.unit(2.6, "meters"),
  39307. weight: math.unit(900, "kg"),
  39308. name: "Front",
  39309. image: {
  39310. source: "./media/characters/neesha/front.svg",
  39311. extra: 1803/1653,
  39312. bottom: 128/1931
  39313. }
  39314. },
  39315. },
  39316. [
  39317. {
  39318. name: "Normal",
  39319. height: math.unit(2.6, "meters"),
  39320. default: true
  39321. },
  39322. {
  39323. name: "Macro",
  39324. height: math.unit(50, "meters")
  39325. },
  39326. ]
  39327. ))
  39328. characterMakers.push(() => makeCharacter(
  39329. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39330. {
  39331. front: {
  39332. height: math.unit(5, "feet"),
  39333. weight: math.unit(185, "lb"),
  39334. name: "Front",
  39335. image: {
  39336. source: "./media/characters/kyera/front.svg",
  39337. extra: 1875/1790,
  39338. bottom: 96/1971
  39339. }
  39340. },
  39341. },
  39342. [
  39343. {
  39344. name: "Normal",
  39345. height: math.unit(5, "feet"),
  39346. default: true
  39347. },
  39348. ]
  39349. ))
  39350. characterMakers.push(() => makeCharacter(
  39351. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39352. {
  39353. front: {
  39354. height: math.unit(7 + 6/12, "feet"),
  39355. weight: math.unit(540, "lb"),
  39356. name: "Front",
  39357. image: {
  39358. source: "./media/characters/yuko/front.svg",
  39359. extra: 1282/1222,
  39360. bottom: 101/1383
  39361. }
  39362. },
  39363. frontClothed: {
  39364. height: math.unit(7 + 6/12, "feet"),
  39365. weight: math.unit(540, "lb"),
  39366. name: "Front (Clothed)",
  39367. image: {
  39368. source: "./media/characters/yuko/front-clothed.svg",
  39369. extra: 1282/1222,
  39370. bottom: 101/1383
  39371. }
  39372. },
  39373. },
  39374. [
  39375. {
  39376. name: "Normal",
  39377. height: math.unit(7 + 6/12, "feet"),
  39378. default: true
  39379. },
  39380. {
  39381. name: "Macro",
  39382. height: math.unit(26 + 9/12, "feet")
  39383. },
  39384. {
  39385. name: "Megamacro",
  39386. height: math.unit(300, "feet")
  39387. },
  39388. {
  39389. name: "Gigamacro",
  39390. height: math.unit(5000, "feet")
  39391. },
  39392. {
  39393. name: "Planetary",
  39394. height: math.unit(10000, "miles")
  39395. },
  39396. ]
  39397. ))
  39398. characterMakers.push(() => makeCharacter(
  39399. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39400. {
  39401. front: {
  39402. height: math.unit(8 + 2/12, "feet"),
  39403. weight: math.unit(600, "lb"),
  39404. name: "Front",
  39405. image: {
  39406. source: "./media/characters/deam-nitrel/front.svg",
  39407. extra: 1308/1234,
  39408. bottom: 125/1433
  39409. }
  39410. },
  39411. },
  39412. [
  39413. {
  39414. name: "Normal",
  39415. height: math.unit(8 + 2/12, "feet"),
  39416. default: true
  39417. },
  39418. ]
  39419. ))
  39420. characterMakers.push(() => makeCharacter(
  39421. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39422. {
  39423. front: {
  39424. height: math.unit(6.1, "feet"),
  39425. weight: math.unit(180, "lb"),
  39426. name: "Front",
  39427. image: {
  39428. source: "./media/characters/skyress/front.svg",
  39429. extra: 1045/915,
  39430. bottom: 28/1073
  39431. }
  39432. },
  39433. maw: {
  39434. height: math.unit(1, "feet"),
  39435. name: "Maw",
  39436. image: {
  39437. source: "./media/characters/skyress/maw.svg"
  39438. }
  39439. },
  39440. },
  39441. [
  39442. {
  39443. name: "Normal",
  39444. height: math.unit(6.1, "feet"),
  39445. default: true
  39446. },
  39447. {
  39448. name: "Macro",
  39449. height: math.unit(200, "feet")
  39450. },
  39451. ]
  39452. ))
  39453. characterMakers.push(() => makeCharacter(
  39454. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39455. {
  39456. front: {
  39457. height: math.unit(4 + 2/12, "feet"),
  39458. weight: math.unit(40, "kg"),
  39459. name: "Front",
  39460. image: {
  39461. source: "./media/characters/amethyst-jones/front.svg",
  39462. extra: 1220/1150,
  39463. bottom: 101/1321
  39464. }
  39465. },
  39466. },
  39467. [
  39468. {
  39469. name: "Normal",
  39470. height: math.unit(4 + 2/12, "feet"),
  39471. default: true
  39472. },
  39473. ]
  39474. ))
  39475. characterMakers.push(() => makeCharacter(
  39476. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39477. {
  39478. front: {
  39479. height: math.unit(1.7, "m"),
  39480. weight: math.unit(135, "lb"),
  39481. name: "Front",
  39482. image: {
  39483. source: "./media/characters/jade/front.svg",
  39484. extra: 1818/1767,
  39485. bottom: 32/1850
  39486. }
  39487. },
  39488. back: {
  39489. height: math.unit(1.7, "m"),
  39490. weight: math.unit(135, "lb"),
  39491. name: "Back",
  39492. image: {
  39493. source: "./media/characters/jade/back.svg",
  39494. extra: 1869/1809,
  39495. bottom: 35/1904
  39496. }
  39497. },
  39498. hand: {
  39499. height: math.unit(0.24, "m"),
  39500. name: "Hand",
  39501. image: {
  39502. source: "./media/characters/jade/hand.svg"
  39503. }
  39504. },
  39505. foot: {
  39506. height: math.unit(0.263, "m"),
  39507. name: "Foot",
  39508. image: {
  39509. source: "./media/characters/jade/foot.svg"
  39510. }
  39511. },
  39512. dick: {
  39513. height: math.unit(0.47, "m"),
  39514. name: "Dick",
  39515. image: {
  39516. source: "./media/characters/jade/dick.svg"
  39517. }
  39518. },
  39519. },
  39520. [
  39521. {
  39522. name: "Micro",
  39523. height: math.unit(22, "cm")
  39524. },
  39525. {
  39526. name: "Normal",
  39527. height: math.unit(1.7, "m"),
  39528. default: true
  39529. },
  39530. {
  39531. name: "Macro",
  39532. height: math.unit(152, "m")
  39533. },
  39534. ]
  39535. ))
  39536. characterMakers.push(() => makeCharacter(
  39537. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39538. {
  39539. front: {
  39540. height: math.unit(100, "miles"),
  39541. weight: math.unit(20000, "tons"),
  39542. name: "Front",
  39543. image: {
  39544. source: "./media/characters/cookie/front.svg",
  39545. extra: 1125/1070,
  39546. bottom: 30/1155
  39547. }
  39548. },
  39549. },
  39550. [
  39551. {
  39552. name: "Big",
  39553. height: math.unit(50, "feet")
  39554. },
  39555. {
  39556. name: "Macro",
  39557. height: math.unit(100, "miles"),
  39558. default: true
  39559. },
  39560. {
  39561. name: "Megamacro",
  39562. height: math.unit(90000, "miles")
  39563. },
  39564. ]
  39565. ))
  39566. characterMakers.push(() => makeCharacter(
  39567. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39568. {
  39569. front: {
  39570. height: math.unit(6, "feet"),
  39571. weight: math.unit(145, "lb"),
  39572. name: "Front",
  39573. image: {
  39574. source: "./media/characters/farzian/front.svg",
  39575. extra: 1902/1693,
  39576. bottom: 108/2010
  39577. }
  39578. },
  39579. },
  39580. [
  39581. {
  39582. name: "Macro",
  39583. height: math.unit(500, "feet"),
  39584. default: true
  39585. },
  39586. ]
  39587. ))
  39588. characterMakers.push(() => makeCharacter(
  39589. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39590. {
  39591. front: {
  39592. height: math.unit(3 + 6/12, "feet"),
  39593. weight: math.unit(50, "lb"),
  39594. name: "Front",
  39595. image: {
  39596. source: "./media/characters/kimberly-tilson/front.svg",
  39597. extra: 1400/1322,
  39598. bottom: 36/1436
  39599. }
  39600. },
  39601. back: {
  39602. height: math.unit(3 + 6/12, "feet"),
  39603. weight: math.unit(50, "lb"),
  39604. name: "Back",
  39605. image: {
  39606. source: "./media/characters/kimberly-tilson/back.svg",
  39607. extra: 1370/1307,
  39608. bottom: 20/1390
  39609. }
  39610. },
  39611. },
  39612. [
  39613. {
  39614. name: "Normal",
  39615. height: math.unit(3 + 6/12, "feet"),
  39616. default: true
  39617. },
  39618. ]
  39619. ))
  39620. characterMakers.push(() => makeCharacter(
  39621. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39622. {
  39623. front: {
  39624. height: math.unit(1148, "feet"),
  39625. weight: math.unit(34057, "lb"),
  39626. name: "Front",
  39627. image: {
  39628. source: "./media/characters/harthos/front.svg",
  39629. extra: 1391/1339,
  39630. bottom: 13/1404
  39631. }
  39632. },
  39633. },
  39634. [
  39635. {
  39636. name: "Macro",
  39637. height: math.unit(1148, "feet"),
  39638. default: true
  39639. },
  39640. ]
  39641. ))
  39642. characterMakers.push(() => makeCharacter(
  39643. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39644. {
  39645. front: {
  39646. height: math.unit(15, "feet"),
  39647. name: "Front",
  39648. image: {
  39649. source: "./media/characters/hypatia/front.svg",
  39650. extra: 1653/1591,
  39651. bottom: 79/1732
  39652. }
  39653. },
  39654. },
  39655. [
  39656. {
  39657. name: "Normal",
  39658. height: math.unit(15, "feet")
  39659. },
  39660. {
  39661. name: "Small",
  39662. height: math.unit(300, "feet")
  39663. },
  39664. {
  39665. name: "Macro",
  39666. height: math.unit(2500, "feet"),
  39667. default: true
  39668. },
  39669. {
  39670. name: "Mega Macro",
  39671. height: math.unit(1500, "miles")
  39672. },
  39673. {
  39674. name: "Giga Macro",
  39675. height: math.unit(1.5e6, "miles")
  39676. },
  39677. ]
  39678. ))
  39679. characterMakers.push(() => makeCharacter(
  39680. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39681. {
  39682. front: {
  39683. height: math.unit(6, "feet"),
  39684. weight: math.unit(200, "lb"),
  39685. name: "Front",
  39686. image: {
  39687. source: "./media/characters/wulver/front.svg",
  39688. extra: 1724/1632,
  39689. bottom: 130/1854
  39690. }
  39691. },
  39692. frontNsfw: {
  39693. height: math.unit(6, "feet"),
  39694. weight: math.unit(200, "lb"),
  39695. name: "Front (NSFW)",
  39696. image: {
  39697. source: "./media/characters/wulver/front-nsfw.svg",
  39698. extra: 1724/1632,
  39699. bottom: 130/1854
  39700. }
  39701. },
  39702. },
  39703. [
  39704. {
  39705. name: "Human-Sized",
  39706. height: math.unit(6, "feet")
  39707. },
  39708. {
  39709. name: "Normal",
  39710. height: math.unit(4, "meters"),
  39711. default: true
  39712. },
  39713. {
  39714. name: "Large",
  39715. height: math.unit(6, "m")
  39716. },
  39717. ]
  39718. ))
  39719. characterMakers.push(() => makeCharacter(
  39720. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39721. {
  39722. front: {
  39723. height: math.unit(7, "feet"),
  39724. name: "Front",
  39725. image: {
  39726. source: "./media/characters/maru/front.svg",
  39727. extra: 1595/1570,
  39728. bottom: 0/1595
  39729. }
  39730. },
  39731. },
  39732. [
  39733. {
  39734. name: "Normal",
  39735. height: math.unit(7, "feet"),
  39736. default: true
  39737. },
  39738. {
  39739. name: "Macro",
  39740. height: math.unit(700, "feet")
  39741. },
  39742. {
  39743. name: "Mega Macro",
  39744. height: math.unit(25, "miles")
  39745. },
  39746. ]
  39747. ))
  39748. characterMakers.push(() => makeCharacter(
  39749. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39750. {
  39751. front: {
  39752. height: math.unit(6, "feet"),
  39753. weight: math.unit(170, "lb"),
  39754. name: "Front",
  39755. image: {
  39756. source: "./media/characters/xenon/front.svg",
  39757. extra: 1376/1305,
  39758. bottom: 56/1432
  39759. }
  39760. },
  39761. back: {
  39762. height: math.unit(6, "feet"),
  39763. weight: math.unit(170, "lb"),
  39764. name: "Back",
  39765. image: {
  39766. source: "./media/characters/xenon/back.svg",
  39767. extra: 1328/1259,
  39768. bottom: 95/1423
  39769. }
  39770. },
  39771. maw: {
  39772. height: math.unit(0.52, "feet"),
  39773. name: "Maw",
  39774. image: {
  39775. source: "./media/characters/xenon/maw.svg"
  39776. }
  39777. },
  39778. hand: {
  39779. height: math.unit(0.82, "feet"),
  39780. name: "Hand",
  39781. image: {
  39782. source: "./media/characters/xenon/hand.svg"
  39783. }
  39784. },
  39785. foot: {
  39786. height: math.unit(1.13, "feet"),
  39787. name: "Foot",
  39788. image: {
  39789. source: "./media/characters/xenon/foot.svg"
  39790. }
  39791. },
  39792. },
  39793. [
  39794. {
  39795. name: "Micro",
  39796. height: math.unit(0.8, "inches")
  39797. },
  39798. {
  39799. name: "Normal",
  39800. height: math.unit(6, "feet")
  39801. },
  39802. {
  39803. name: "Macro",
  39804. height: math.unit(50, "feet"),
  39805. default: true
  39806. },
  39807. {
  39808. name: "Macro+",
  39809. height: math.unit(250, "feet")
  39810. },
  39811. {
  39812. name: "Megamacro",
  39813. height: math.unit(1500, "feet")
  39814. },
  39815. ]
  39816. ))
  39817. characterMakers.push(() => makeCharacter(
  39818. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39819. {
  39820. front: {
  39821. height: math.unit(7 + 5/12, "feet"),
  39822. name: "Front",
  39823. image: {
  39824. source: "./media/characters/zane/front.svg",
  39825. extra: 1260/1203,
  39826. bottom: 94/1354
  39827. }
  39828. },
  39829. back: {
  39830. height: math.unit(5.05, "feet"),
  39831. name: "Back",
  39832. image: {
  39833. source: "./media/characters/zane/back.svg",
  39834. extra: 893/829,
  39835. bottom: 30/923
  39836. }
  39837. },
  39838. werewolf: {
  39839. height: math.unit(11, "feet"),
  39840. name: "Werewolf",
  39841. image: {
  39842. source: "./media/characters/zane/werewolf.svg",
  39843. extra: 1383/1323,
  39844. bottom: 89/1472
  39845. }
  39846. },
  39847. foot: {
  39848. height: math.unit(1.46, "feet"),
  39849. name: "Foot",
  39850. image: {
  39851. source: "./media/characters/zane/foot.svg"
  39852. }
  39853. },
  39854. footFront: {
  39855. height: math.unit(0.784, "feet"),
  39856. name: "Foot (Front)",
  39857. image: {
  39858. source: "./media/characters/zane/foot-front.svg"
  39859. }
  39860. },
  39861. dick: {
  39862. height: math.unit(1.95, "feet"),
  39863. name: "Dick",
  39864. image: {
  39865. source: "./media/characters/zane/dick.svg"
  39866. }
  39867. },
  39868. dickWerewolf: {
  39869. height: math.unit(3.77, "feet"),
  39870. name: "Dick (Werewolf)",
  39871. image: {
  39872. source: "./media/characters/zane/dick.svg"
  39873. }
  39874. },
  39875. },
  39876. [
  39877. {
  39878. name: "Normal",
  39879. height: math.unit(7 + 5/12, "feet"),
  39880. default: true
  39881. },
  39882. ]
  39883. ))
  39884. characterMakers.push(() => makeCharacter(
  39885. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39886. {
  39887. front: {
  39888. height: math.unit(6 + 2/12, "feet"),
  39889. weight: math.unit(284, "lb"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/benni-desparque/front.svg",
  39893. extra: 1353/1126,
  39894. bottom: 69/1422
  39895. }
  39896. },
  39897. },
  39898. [
  39899. {
  39900. name: "Civilian",
  39901. height: math.unit(6 + 2/12, "feet")
  39902. },
  39903. {
  39904. name: "Normal",
  39905. height: math.unit(98, "feet"),
  39906. default: true
  39907. },
  39908. {
  39909. name: "Kaiju Fighter",
  39910. height: math.unit(268, "feet")
  39911. },
  39912. ]
  39913. ))
  39914. characterMakers.push(() => makeCharacter(
  39915. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39916. {
  39917. front: {
  39918. height: math.unit(5, "feet"),
  39919. weight: math.unit(105, "lb"),
  39920. name: "Front",
  39921. image: {
  39922. source: "./media/characters/maxine/front.svg",
  39923. extra: 1386/1250,
  39924. bottom: 71/1457
  39925. }
  39926. },
  39927. },
  39928. [
  39929. {
  39930. name: "Normal",
  39931. height: math.unit(5, "feet"),
  39932. default: true
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(11 + 7/12, "feet"),
  39941. weight: math.unit(9576, "lb"),
  39942. name: "Front",
  39943. image: {
  39944. source: "./media/characters/scaly/front.svg",
  39945. extra: 888/867,
  39946. bottom: 36/924
  39947. }
  39948. },
  39949. },
  39950. [
  39951. {
  39952. name: "Normal",
  39953. height: math.unit(11 + 7/12, "feet"),
  39954. default: true
  39955. },
  39956. ]
  39957. ))
  39958. characterMakers.push(() => makeCharacter(
  39959. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  39960. {
  39961. front: {
  39962. height: math.unit(6 + 3/12, "feet"),
  39963. name: "Front",
  39964. image: {
  39965. source: "./media/characters/saelria/front.svg",
  39966. extra: 1243/1138,
  39967. bottom: 46/1289
  39968. }
  39969. },
  39970. },
  39971. [
  39972. {
  39973. name: "Micro",
  39974. height: math.unit(6, "inches"),
  39975. },
  39976. {
  39977. name: "Normal",
  39978. height: math.unit(6 + 3/12, "feet"),
  39979. default: true
  39980. },
  39981. {
  39982. name: "Macro",
  39983. height: math.unit(25, "feet")
  39984. },
  39985. ]
  39986. ))
  39987. characterMakers.push(() => makeCharacter(
  39988. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39989. {
  39990. front: {
  39991. height: math.unit(80, "meters"),
  39992. weight: math.unit(7000, "tonnes"),
  39993. name: "Front",
  39994. image: {
  39995. source: "./media/characters/tef/front.svg",
  39996. extra: 2036/1991,
  39997. bottom: 54/2090
  39998. }
  39999. },
  40000. back: {
  40001. height: math.unit(80, "meters"),
  40002. weight: math.unit(7000, "tonnes"),
  40003. name: "Back",
  40004. image: {
  40005. source: "./media/characters/tef/back.svg",
  40006. extra: 2036/1991,
  40007. bottom: 54/2090
  40008. }
  40009. },
  40010. },
  40011. [
  40012. {
  40013. name: "Macro",
  40014. height: math.unit(80, "meters"),
  40015. default: true
  40016. },
  40017. ]
  40018. ))
  40019. characterMakers.push(() => makeCharacter(
  40020. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40021. {
  40022. front: {
  40023. height: math.unit(13, "feet"),
  40024. weight: math.unit(6, "tons"),
  40025. name: "Front",
  40026. image: {
  40027. source: "./media/characters/rover/front.svg",
  40028. extra: 1233/1156,
  40029. bottom: 50/1283
  40030. }
  40031. },
  40032. back: {
  40033. height: math.unit(13, "feet"),
  40034. weight: math.unit(6, "tons"),
  40035. name: "Back",
  40036. image: {
  40037. source: "./media/characters/rover/back.svg",
  40038. extra: 1327/1258,
  40039. bottom: 39/1366
  40040. }
  40041. },
  40042. },
  40043. [
  40044. {
  40045. name: "Normal",
  40046. height: math.unit(13, "feet"),
  40047. default: true
  40048. },
  40049. {
  40050. name: "Macro",
  40051. height: math.unit(1300, "feet")
  40052. },
  40053. {
  40054. name: "Megamacro",
  40055. height: math.unit(1300, "miles")
  40056. },
  40057. {
  40058. name: "Gigamacro",
  40059. height: math.unit(1300000, "miles")
  40060. },
  40061. ]
  40062. ))
  40063. characterMakers.push(() => makeCharacter(
  40064. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40065. {
  40066. front: {
  40067. height: math.unit(6, "feet"),
  40068. weight: math.unit(150, "lb"),
  40069. name: "Front",
  40070. image: {
  40071. source: "./media/characters/ariz/front.svg",
  40072. extra: 1401/1346,
  40073. bottom: 5/1406
  40074. }
  40075. },
  40076. },
  40077. [
  40078. {
  40079. name: "Normal",
  40080. height: math.unit(10, "feet"),
  40081. default: true
  40082. },
  40083. ]
  40084. ))
  40085. characterMakers.push(() => makeCharacter(
  40086. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40087. {
  40088. front: {
  40089. height: math.unit(6, "feet"),
  40090. weight: math.unit(140, "lb"),
  40091. name: "Front",
  40092. image: {
  40093. source: "./media/characters/sigrun/front.svg",
  40094. extra: 1418/1359,
  40095. bottom: 27/1445
  40096. }
  40097. },
  40098. },
  40099. [
  40100. {
  40101. name: "Macro",
  40102. height: math.unit(35, "feet"),
  40103. default: true
  40104. },
  40105. ]
  40106. ))
  40107. characterMakers.push(() => makeCharacter(
  40108. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40109. {
  40110. front: {
  40111. height: math.unit(6, "feet"),
  40112. weight: math.unit(150, "lb"),
  40113. name: "Front",
  40114. image: {
  40115. source: "./media/characters/numin/front.svg",
  40116. extra: 1433/1388,
  40117. bottom: 12/1445
  40118. }
  40119. },
  40120. },
  40121. [
  40122. {
  40123. name: "Macro",
  40124. height: math.unit(21.5, "km"),
  40125. default: true
  40126. },
  40127. ]
  40128. ))
  40129. characterMakers.push(() => makeCharacter(
  40130. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40131. {
  40132. front: {
  40133. height: math.unit(6, "feet"),
  40134. weight: math.unit(463, "lb"),
  40135. name: "Front",
  40136. image: {
  40137. source: "./media/characters/melwa/front.svg",
  40138. extra: 1307/1248,
  40139. bottom: 93/1400
  40140. }
  40141. },
  40142. },
  40143. [
  40144. {
  40145. name: "Macro",
  40146. height: math.unit(50, "meters"),
  40147. default: true
  40148. },
  40149. ]
  40150. ))
  40151. characterMakers.push(() => makeCharacter(
  40152. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40153. {
  40154. front: {
  40155. height: math.unit(325, "feet"),
  40156. name: "Front",
  40157. image: {
  40158. source: "./media/characters/zorkaiju/front.svg",
  40159. extra: 1955/1814,
  40160. bottom: 40/1995
  40161. }
  40162. },
  40163. frontExtended: {
  40164. height: math.unit(325, "feet"),
  40165. name: "Front (Extended)",
  40166. image: {
  40167. source: "./media/characters/zorkaiju/front-extended.svg",
  40168. extra: 1955/1814,
  40169. bottom: 40/1995
  40170. }
  40171. },
  40172. side: {
  40173. height: math.unit(325, "feet"),
  40174. name: "Side",
  40175. image: {
  40176. source: "./media/characters/zorkaiju/side.svg",
  40177. extra: 1495/1396,
  40178. bottom: 17/1512
  40179. }
  40180. },
  40181. sideExtended: {
  40182. height: math.unit(325, "feet"),
  40183. name: "Side (Extended)",
  40184. image: {
  40185. source: "./media/characters/zorkaiju/side-extended.svg",
  40186. extra: 1495/1396,
  40187. bottom: 17/1512
  40188. }
  40189. },
  40190. back: {
  40191. height: math.unit(325, "feet"),
  40192. name: "Back",
  40193. image: {
  40194. source: "./media/characters/zorkaiju/back.svg",
  40195. extra: 1959/1821,
  40196. bottom: 31/1990
  40197. }
  40198. },
  40199. backExtended: {
  40200. height: math.unit(325, "feet"),
  40201. name: "Back (Extended)",
  40202. image: {
  40203. source: "./media/characters/zorkaiju/back-extended.svg",
  40204. extra: 1959/1821,
  40205. bottom: 31/1990
  40206. }
  40207. },
  40208. hand: {
  40209. height: math.unit(58.4, "feet"),
  40210. name: "Hand",
  40211. image: {
  40212. source: "./media/characters/zorkaiju/hand.svg"
  40213. }
  40214. },
  40215. handExtended: {
  40216. height: math.unit(61.4, "feet"),
  40217. name: "Hand (Extended)",
  40218. image: {
  40219. source: "./media/characters/zorkaiju/hand-extended.svg"
  40220. }
  40221. },
  40222. foot: {
  40223. height: math.unit(95, "feet"),
  40224. name: "Foot",
  40225. image: {
  40226. source: "./media/characters/zorkaiju/foot.svg"
  40227. }
  40228. },
  40229. leftArm: {
  40230. height: math.unit(59, "feet"),
  40231. name: "Left Arm",
  40232. image: {
  40233. source: "./media/characters/zorkaiju/left-arm.svg"
  40234. }
  40235. },
  40236. rightArm: {
  40237. height: math.unit(59, "feet"),
  40238. name: "Right Arm",
  40239. image: {
  40240. source: "./media/characters/zorkaiju/right-arm.svg"
  40241. }
  40242. },
  40243. tail: {
  40244. height: math.unit(104, "feet"),
  40245. name: "Tail",
  40246. image: {
  40247. source: "./media/characters/zorkaiju/tail.svg"
  40248. }
  40249. },
  40250. tailExtended: {
  40251. height: math.unit(104, "feet"),
  40252. name: "Tail (Extended)",
  40253. image: {
  40254. source: "./media/characters/zorkaiju/tail-extended.svg"
  40255. }
  40256. },
  40257. tailBottom: {
  40258. height: math.unit(104, "feet"),
  40259. name: "Tail Bottom",
  40260. image: {
  40261. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40262. }
  40263. },
  40264. crystal: {
  40265. height: math.unit(27.54, "feet"),
  40266. name: "Crystal",
  40267. image: {
  40268. source: "./media/characters/zorkaiju/crystal.svg"
  40269. }
  40270. },
  40271. },
  40272. [
  40273. {
  40274. name: "Kaiju",
  40275. height: math.unit(325, "feet"),
  40276. default: true
  40277. },
  40278. ]
  40279. ))
  40280. characterMakers.push(() => makeCharacter(
  40281. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40282. {
  40283. front: {
  40284. height: math.unit(6 + 1/12, "feet"),
  40285. weight: math.unit(115, "lb"),
  40286. name: "Front",
  40287. image: {
  40288. source: "./media/characters/bailey-belfry/front.svg",
  40289. extra: 1240/1121,
  40290. bottom: 101/1341
  40291. }
  40292. },
  40293. },
  40294. [
  40295. {
  40296. name: "Normal",
  40297. height: math.unit(6 + 1/12, "feet"),
  40298. default: true
  40299. },
  40300. ]
  40301. ))
  40302. characterMakers.push(() => makeCharacter(
  40303. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40304. {
  40305. side: {
  40306. height: math.unit(4, "meters"),
  40307. weight: math.unit(250, "kg"),
  40308. name: "Side",
  40309. image: {
  40310. source: "./media/characters/blacky/side.svg",
  40311. extra: 1027/919,
  40312. bottom: 43/1070
  40313. }
  40314. },
  40315. maw: {
  40316. height: math.unit(1, "meters"),
  40317. name: "Maw",
  40318. image: {
  40319. source: "./media/characters/blacky/maw.svg"
  40320. }
  40321. },
  40322. paw: {
  40323. height: math.unit(1, "meters"),
  40324. name: "Paw",
  40325. image: {
  40326. source: "./media/characters/blacky/paw.svg"
  40327. }
  40328. },
  40329. },
  40330. [
  40331. {
  40332. name: "Normal",
  40333. height: math.unit(4, "meters"),
  40334. default: true
  40335. },
  40336. ]
  40337. ))
  40338. characterMakers.push(() => makeCharacter(
  40339. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40340. {
  40341. front: {
  40342. height: math.unit(170, "cm"),
  40343. weight: math.unit(66, "kg"),
  40344. name: "Front",
  40345. image: {
  40346. source: "./media/characters/thux-ei/front.svg",
  40347. extra: 1109/1011,
  40348. bottom: 8/1117
  40349. }
  40350. },
  40351. },
  40352. [
  40353. {
  40354. name: "Normal",
  40355. height: math.unit(170, "cm"),
  40356. default: true
  40357. },
  40358. ]
  40359. ))
  40360. characterMakers.push(() => makeCharacter(
  40361. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40362. {
  40363. front: {
  40364. height: math.unit(5, "feet"),
  40365. weight: math.unit(120, "lb"),
  40366. name: "Front",
  40367. image: {
  40368. source: "./media/characters/roxanne-voltaire/front.svg",
  40369. extra: 1901/1779,
  40370. bottom: 53/1954
  40371. }
  40372. },
  40373. },
  40374. [
  40375. {
  40376. name: "Normal",
  40377. height: math.unit(5, "feet"),
  40378. default: true
  40379. },
  40380. {
  40381. name: "Giant",
  40382. height: math.unit(50, "feet")
  40383. },
  40384. {
  40385. name: "Titan",
  40386. height: math.unit(500, "feet")
  40387. },
  40388. {
  40389. name: "Macro",
  40390. height: math.unit(5000, "feet")
  40391. },
  40392. {
  40393. name: "Megamacro",
  40394. height: math.unit(50000, "feet")
  40395. },
  40396. {
  40397. name: "Gigamacro",
  40398. height: math.unit(500000, "feet")
  40399. },
  40400. {
  40401. name: "Teramacro",
  40402. height: math.unit(5e6, "feet")
  40403. },
  40404. ]
  40405. ))
  40406. characterMakers.push(() => makeCharacter(
  40407. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40408. {
  40409. front: {
  40410. height: math.unit(6 + 2/12, "feet"),
  40411. name: "Front",
  40412. image: {
  40413. source: "./media/characters/squeaks/front.svg",
  40414. extra: 1823/1768,
  40415. bottom: 138/1961
  40416. }
  40417. },
  40418. },
  40419. [
  40420. {
  40421. name: "Micro",
  40422. height: math.unit(0.5, "inches")
  40423. },
  40424. {
  40425. name: "Normal",
  40426. height: math.unit(6 + 2/12, "feet"),
  40427. default: true
  40428. },
  40429. {
  40430. name: "Macro",
  40431. height: math.unit(600, "feet")
  40432. },
  40433. ]
  40434. ))
  40435. characterMakers.push(() => makeCharacter(
  40436. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40437. {
  40438. front: {
  40439. height: math.unit(1.72, "meters"),
  40440. name: "Front",
  40441. image: {
  40442. source: "./media/characters/archinger/front.svg",
  40443. extra: 1861/1675,
  40444. bottom: 125/1986
  40445. }
  40446. },
  40447. back: {
  40448. height: math.unit(1.72, "meters"),
  40449. name: "Back",
  40450. image: {
  40451. source: "./media/characters/archinger/back.svg",
  40452. extra: 1844/1701,
  40453. bottom: 104/1948
  40454. }
  40455. },
  40456. cock: {
  40457. height: math.unit(0.59, "feet"),
  40458. name: "Cock",
  40459. image: {
  40460. source: "./media/characters/archinger/cock.svg"
  40461. }
  40462. },
  40463. },
  40464. [
  40465. {
  40466. name: "Normal",
  40467. height: math.unit(1.72, "meters"),
  40468. default: true
  40469. },
  40470. {
  40471. name: "Macro",
  40472. height: math.unit(84, "meters")
  40473. },
  40474. {
  40475. name: "Macro+",
  40476. height: math.unit(112, "meters")
  40477. },
  40478. {
  40479. name: "Macro++",
  40480. height: math.unit(960, "meters")
  40481. },
  40482. {
  40483. name: "Macro+++",
  40484. height: math.unit(4, "km")
  40485. },
  40486. {
  40487. name: "Macro++++",
  40488. height: math.unit(48, "km")
  40489. },
  40490. {
  40491. name: "Macro+++++",
  40492. height: math.unit(4500, "km")
  40493. },
  40494. ]
  40495. ))
  40496. characterMakers.push(() => makeCharacter(
  40497. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40498. {
  40499. front: {
  40500. height: math.unit(5 + 5/12, "feet"),
  40501. name: "Front",
  40502. image: {
  40503. source: "./media/characters/alsnapz/front.svg",
  40504. extra: 1157/1065,
  40505. bottom: 42/1199
  40506. }
  40507. },
  40508. },
  40509. [
  40510. {
  40511. name: "Normal",
  40512. height: math.unit(5 + 5/12, "feet"),
  40513. default: true
  40514. },
  40515. ]
  40516. ))
  40517. characterMakers.push(() => makeCharacter(
  40518. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40519. {
  40520. side: {
  40521. height: math.unit(3.2, "earths"),
  40522. name: "Side",
  40523. image: {
  40524. source: "./media/characters/mag/side.svg",
  40525. extra: 1331/1008,
  40526. bottom: 52/1383
  40527. }
  40528. },
  40529. wing: {
  40530. height: math.unit(1.94, "earths"),
  40531. name: "Wing",
  40532. image: {
  40533. source: "./media/characters/mag/wing.svg"
  40534. }
  40535. },
  40536. dick: {
  40537. height: math.unit(1.8, "earths"),
  40538. name: "Dick",
  40539. image: {
  40540. source: "./media/characters/mag/dick.svg"
  40541. }
  40542. },
  40543. ass: {
  40544. height: math.unit(1.33, "earths"),
  40545. name: "Ass",
  40546. image: {
  40547. source: "./media/characters/mag/ass.svg"
  40548. }
  40549. },
  40550. head: {
  40551. height: math.unit(1.1, "earths"),
  40552. name: "Head",
  40553. image: {
  40554. source: "./media/characters/mag/head.svg"
  40555. }
  40556. },
  40557. maw: {
  40558. height: math.unit(1.62, "earths"),
  40559. name: "Maw",
  40560. image: {
  40561. source: "./media/characters/mag/maw.svg"
  40562. }
  40563. },
  40564. },
  40565. [
  40566. {
  40567. name: "Small",
  40568. height: math.unit(162, "feet")
  40569. },
  40570. {
  40571. name: "Normal",
  40572. height: math.unit(3.2, "earths"),
  40573. default: true
  40574. },
  40575. ]
  40576. ))
  40577. characterMakers.push(() => makeCharacter(
  40578. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40579. {
  40580. front: {
  40581. height: math.unit(512, "feet"),
  40582. weight: math.unit(63509, "tonnes"),
  40583. name: "Front",
  40584. image: {
  40585. source: "./media/characters/vorrel-harroc/front.svg",
  40586. extra: 1075/1063,
  40587. bottom: 62/1137
  40588. }
  40589. },
  40590. },
  40591. [
  40592. {
  40593. name: "Normal",
  40594. height: math.unit(10, "feet")
  40595. },
  40596. {
  40597. name: "Macro",
  40598. height: math.unit(512, "feet"),
  40599. default: true
  40600. },
  40601. {
  40602. name: "Megamacro",
  40603. height: math.unit(256, "miles")
  40604. },
  40605. {
  40606. name: "Gigamacro",
  40607. height: math.unit(4096, "miles")
  40608. },
  40609. ]
  40610. ))
  40611. characterMakers.push(() => makeCharacter(
  40612. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40613. {
  40614. side: {
  40615. height: math.unit(50, "feet"),
  40616. name: "Side",
  40617. image: {
  40618. source: "./media/characters/froimar/side.svg",
  40619. extra: 855/638,
  40620. bottom: 99/954
  40621. }
  40622. },
  40623. },
  40624. [
  40625. {
  40626. name: "Macro",
  40627. height: math.unit(50, "feet"),
  40628. default: true
  40629. },
  40630. ]
  40631. ))
  40632. characterMakers.push(() => makeCharacter(
  40633. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40634. {
  40635. front: {
  40636. height: math.unit(210, "miles"),
  40637. name: "Front",
  40638. image: {
  40639. source: "./media/characters/timothy/front.svg",
  40640. extra: 1007/943,
  40641. bottom: 62/1069
  40642. }
  40643. },
  40644. frontSkirt: {
  40645. height: math.unit(210, "miles"),
  40646. name: "Front (Skirt)",
  40647. image: {
  40648. source: "./media/characters/timothy/front-skirt.svg",
  40649. extra: 1007/943,
  40650. bottom: 62/1069
  40651. }
  40652. },
  40653. frontCoat: {
  40654. height: math.unit(210, "miles"),
  40655. name: "Front (Coat)",
  40656. image: {
  40657. source: "./media/characters/timothy/front-coat.svg",
  40658. extra: 1007/943,
  40659. bottom: 62/1069
  40660. }
  40661. },
  40662. },
  40663. [
  40664. {
  40665. name: "Macro",
  40666. height: math.unit(210, "miles"),
  40667. default: true
  40668. },
  40669. {
  40670. name: "Megamacro",
  40671. height: math.unit(210000, "miles")
  40672. },
  40673. ]
  40674. ))
  40675. characterMakers.push(() => makeCharacter(
  40676. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40677. {
  40678. front: {
  40679. height: math.unit(188, "feet"),
  40680. name: "Front",
  40681. image: {
  40682. source: "./media/characters/pyotr/front.svg",
  40683. extra: 1912/1826,
  40684. bottom: 18/1930
  40685. }
  40686. },
  40687. },
  40688. [
  40689. {
  40690. name: "Macro",
  40691. height: math.unit(188, "feet"),
  40692. default: true
  40693. },
  40694. {
  40695. name: "Megamacro",
  40696. height: math.unit(8, "miles")
  40697. },
  40698. ]
  40699. ))
  40700. characterMakers.push(() => makeCharacter(
  40701. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40702. {
  40703. side: {
  40704. height: math.unit(10, "feet"),
  40705. weight: math.unit(4500, "lb"),
  40706. name: "Side",
  40707. image: {
  40708. source: "./media/characters/ackart/side.svg",
  40709. extra: 1776/1668,
  40710. bottom: 116/1892
  40711. }
  40712. },
  40713. },
  40714. [
  40715. {
  40716. name: "Normal",
  40717. height: math.unit(10, "feet"),
  40718. default: true
  40719. },
  40720. ]
  40721. ))
  40722. characterMakers.push(() => makeCharacter(
  40723. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40724. {
  40725. side: {
  40726. height: math.unit(21, "feet"),
  40727. name: "Side",
  40728. image: {
  40729. source: "./media/characters/nolow/side.svg",
  40730. extra: 1484/1434,
  40731. bottom: 85/1569
  40732. }
  40733. },
  40734. sideErect: {
  40735. height: math.unit(21, "feet"),
  40736. name: "Side-erect",
  40737. image: {
  40738. source: "./media/characters/nolow/side-erect.svg",
  40739. extra: 1484/1434,
  40740. bottom: 85/1569
  40741. }
  40742. },
  40743. },
  40744. [
  40745. {
  40746. name: "Regular",
  40747. height: math.unit(12, "feet")
  40748. },
  40749. {
  40750. name: "Big Chee",
  40751. height: math.unit(21, "feet"),
  40752. default: true
  40753. },
  40754. ]
  40755. ))
  40756. characterMakers.push(() => makeCharacter(
  40757. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40758. {
  40759. front: {
  40760. height: math.unit(7, "feet"),
  40761. weight: math.unit(250, "lb"),
  40762. name: "Front",
  40763. image: {
  40764. source: "./media/characters/nines/front.svg",
  40765. extra: 1741/1607,
  40766. bottom: 41/1782
  40767. }
  40768. },
  40769. side: {
  40770. height: math.unit(7, "feet"),
  40771. weight: math.unit(250, "lb"),
  40772. name: "Side",
  40773. image: {
  40774. source: "./media/characters/nines/side.svg",
  40775. extra: 1854/1735,
  40776. bottom: 93/1947
  40777. }
  40778. },
  40779. back: {
  40780. height: math.unit(7, "feet"),
  40781. weight: math.unit(250, "lb"),
  40782. name: "Back",
  40783. image: {
  40784. source: "./media/characters/nines/back.svg",
  40785. extra: 1748/1615,
  40786. bottom: 20/1768
  40787. }
  40788. },
  40789. },
  40790. [
  40791. {
  40792. name: "Megamacro",
  40793. height: math.unit(99, "km"),
  40794. default: true
  40795. },
  40796. ]
  40797. ))
  40798. characterMakers.push(() => makeCharacter(
  40799. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40800. {
  40801. front: {
  40802. height: math.unit(5 + 10/12, "feet"),
  40803. weight: math.unit(210, "lb"),
  40804. name: "Front",
  40805. image: {
  40806. source: "./media/characters/zenith/front.svg",
  40807. extra: 1531/1452,
  40808. bottom: 198/1729
  40809. }
  40810. },
  40811. back: {
  40812. height: math.unit(5 + 10/12, "feet"),
  40813. weight: math.unit(210, "lb"),
  40814. name: "Back",
  40815. image: {
  40816. source: "./media/characters/zenith/back.svg",
  40817. extra: 1571/1487,
  40818. bottom: 75/1646
  40819. }
  40820. },
  40821. },
  40822. [
  40823. {
  40824. name: "Normal",
  40825. height: math.unit(5 + 10/12, "feet"),
  40826. default: true
  40827. }
  40828. ]
  40829. ))
  40830. characterMakers.push(() => makeCharacter(
  40831. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40832. {
  40833. front: {
  40834. height: math.unit(4, "feet"),
  40835. weight: math.unit(60, "lb"),
  40836. name: "Front",
  40837. image: {
  40838. source: "./media/characters/jasper/front.svg",
  40839. extra: 1450/1379,
  40840. bottom: 19/1469
  40841. }
  40842. },
  40843. },
  40844. [
  40845. {
  40846. name: "Normal",
  40847. height: math.unit(4, "feet"),
  40848. default: true
  40849. },
  40850. ]
  40851. ))
  40852. characterMakers.push(() => makeCharacter(
  40853. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40854. {
  40855. front: {
  40856. height: math.unit(6 + 5/12, "feet"),
  40857. weight: math.unit(290, "lb"),
  40858. name: "Front",
  40859. image: {
  40860. source: "./media/characters/tiberius-thyben/front.svg",
  40861. extra: 757/739,
  40862. bottom: 39/796
  40863. }
  40864. },
  40865. },
  40866. [
  40867. {
  40868. name: "Micro",
  40869. height: math.unit(1.5, "inches")
  40870. },
  40871. {
  40872. name: "Normal",
  40873. height: math.unit(6 + 5/12, "feet"),
  40874. default: true
  40875. },
  40876. {
  40877. name: "Macro",
  40878. height: math.unit(300, "feet")
  40879. },
  40880. ]
  40881. ))
  40882. characterMakers.push(() => makeCharacter(
  40883. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40884. {
  40885. front: {
  40886. height: math.unit(5 + 6/12, "feet"),
  40887. weight: math.unit(60, "kg"),
  40888. name: "Front",
  40889. image: {
  40890. source: "./media/characters/sabre/front.svg",
  40891. extra: 738/671,
  40892. bottom: 27/765
  40893. }
  40894. },
  40895. },
  40896. [
  40897. {
  40898. name: "Teeny",
  40899. height: math.unit(2, "inches")
  40900. },
  40901. {
  40902. name: "Smol",
  40903. height: math.unit(8, "inches")
  40904. },
  40905. {
  40906. name: "Normal",
  40907. height: math.unit(5 + 6/12, "feet"),
  40908. default: true
  40909. },
  40910. {
  40911. name: "Mini-Macro",
  40912. height: math.unit(15, "feet")
  40913. },
  40914. {
  40915. name: "Macro",
  40916. height: math.unit(50, "feet")
  40917. },
  40918. ]
  40919. ))
  40920. characterMakers.push(() => makeCharacter(
  40921. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40922. {
  40923. front: {
  40924. height: math.unit(6 + 4/12, "feet"),
  40925. weight: math.unit(170, "lb"),
  40926. name: "Front",
  40927. image: {
  40928. source: "./media/characters/charlie/front.svg",
  40929. extra: 1348/1228,
  40930. bottom: 15/1363
  40931. }
  40932. },
  40933. },
  40934. [
  40935. {
  40936. name: "Macro",
  40937. height: math.unit(1700, "meters"),
  40938. default: true
  40939. },
  40940. {
  40941. name: "MegaMacro",
  40942. height: math.unit(20400, "meters")
  40943. },
  40944. ]
  40945. ))
  40946. characterMakers.push(() => makeCharacter(
  40947. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40948. {
  40949. front: {
  40950. height: math.unit(6 + 3/12, "feet"),
  40951. weight: math.unit(185, "lb"),
  40952. name: "Front",
  40953. image: {
  40954. source: "./media/characters/susan-grant/front.svg",
  40955. extra: 1351/1327,
  40956. bottom: 26/1377
  40957. }
  40958. },
  40959. },
  40960. [
  40961. {
  40962. name: "Normal",
  40963. height: math.unit(6 + 3/12, "feet"),
  40964. default: true
  40965. },
  40966. {
  40967. name: "Macro",
  40968. height: math.unit(225, "feet")
  40969. },
  40970. {
  40971. name: "Macro+",
  40972. height: math.unit(900, "feet")
  40973. },
  40974. {
  40975. name: "MegaMacro",
  40976. height: math.unit(14400, "feet")
  40977. },
  40978. ]
  40979. ))
  40980. characterMakers.push(() => makeCharacter(
  40981. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40982. {
  40983. front: {
  40984. height: math.unit(5 + 4/12, "feet"),
  40985. weight: math.unit(110, "lb"),
  40986. name: "Front",
  40987. image: {
  40988. source: "./media/characters/axel-isanov/front.svg",
  40989. extra: 1096/1065,
  40990. bottom: 13/1109
  40991. }
  40992. },
  40993. },
  40994. [
  40995. {
  40996. name: "Normal",
  40997. height: math.unit(5 + 4/12, "feet"),
  40998. default: true
  40999. },
  41000. ]
  41001. ))
  41002. characterMakers.push(() => makeCharacter(
  41003. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41004. {
  41005. front: {
  41006. height: math.unit(9, "feet"),
  41007. weight: math.unit(467, "lb"),
  41008. name: "Front",
  41009. image: {
  41010. source: "./media/characters/necahual/front.svg",
  41011. extra: 920/873,
  41012. bottom: 26/946
  41013. }
  41014. },
  41015. back: {
  41016. height: math.unit(9, "feet"),
  41017. weight: math.unit(467, "lb"),
  41018. name: "Back",
  41019. image: {
  41020. source: "./media/characters/necahual/back.svg",
  41021. extra: 930/884,
  41022. bottom: 16/946
  41023. }
  41024. },
  41025. frontUnderwear: {
  41026. height: math.unit(9, "feet"),
  41027. weight: math.unit(467, "lb"),
  41028. name: "Front (Underwear)",
  41029. image: {
  41030. source: "./media/characters/necahual/front-underwear.svg",
  41031. extra: 920/873,
  41032. bottom: 26/946
  41033. }
  41034. },
  41035. frontDressed: {
  41036. height: math.unit(9, "feet"),
  41037. weight: math.unit(467, "lb"),
  41038. name: "Front (Dressed)",
  41039. image: {
  41040. source: "./media/characters/necahual/front-dressed.svg",
  41041. extra: 920/873,
  41042. bottom: 26/946
  41043. }
  41044. },
  41045. },
  41046. [
  41047. {
  41048. name: "Comprsesed",
  41049. height: math.unit(9, "feet")
  41050. },
  41051. {
  41052. name: "Natural",
  41053. height: math.unit(15, "feet"),
  41054. default: true
  41055. },
  41056. {
  41057. name: "Boosted",
  41058. height: math.unit(50, "feet")
  41059. },
  41060. {
  41061. name: "Boosted+",
  41062. height: math.unit(150, "feet")
  41063. },
  41064. {
  41065. name: "Max",
  41066. height: math.unit(500, "feet")
  41067. },
  41068. ]
  41069. ))
  41070. characterMakers.push(() => makeCharacter(
  41071. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41072. {
  41073. front: {
  41074. height: math.unit(22 + 1/12, "feet"),
  41075. weight: math.unit(3200, "lb"),
  41076. name: "Front",
  41077. image: {
  41078. source: "./media/characters/theo-acacia/front.svg",
  41079. extra: 1796/1741,
  41080. bottom: 83/1879
  41081. }
  41082. },
  41083. frontUnderwear: {
  41084. height: math.unit(22 + 1/12, "feet"),
  41085. weight: math.unit(3200, "lb"),
  41086. name: "Front (Underwear)",
  41087. image: {
  41088. source: "./media/characters/theo-acacia/front-underwear.svg",
  41089. extra: 1796/1741,
  41090. bottom: 83/1879
  41091. }
  41092. },
  41093. frontNude: {
  41094. height: math.unit(22 + 1/12, "feet"),
  41095. weight: math.unit(3200, "lb"),
  41096. name: "Front (Nude)",
  41097. image: {
  41098. source: "./media/characters/theo-acacia/front-nude.svg",
  41099. extra: 1796/1741,
  41100. bottom: 83/1879
  41101. }
  41102. },
  41103. },
  41104. [
  41105. {
  41106. name: "Normal",
  41107. height: math.unit(22 + 1/12, "feet"),
  41108. default: true
  41109. },
  41110. ]
  41111. ))
  41112. characterMakers.push(() => makeCharacter(
  41113. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41114. {
  41115. front: {
  41116. height: math.unit(20, "feet"),
  41117. name: "Front",
  41118. image: {
  41119. source: "./media/characters/astra/front.svg",
  41120. extra: 1850/1714,
  41121. bottom: 106/1956
  41122. }
  41123. },
  41124. frontUndressed: {
  41125. height: math.unit(20, "feet"),
  41126. name: "Front (Undressed)",
  41127. image: {
  41128. source: "./media/characters/astra/front-undressed.svg",
  41129. extra: 1926/1749,
  41130. bottom: 0/1926
  41131. }
  41132. },
  41133. hand: {
  41134. height: math.unit(1.53, "feet"),
  41135. name: "Hand",
  41136. image: {
  41137. source: "./media/characters/astra/hand.svg"
  41138. }
  41139. },
  41140. paw: {
  41141. height: math.unit(1.53, "feet"),
  41142. name: "Paw",
  41143. image: {
  41144. source: "./media/characters/astra/paw.svg"
  41145. }
  41146. },
  41147. },
  41148. [
  41149. {
  41150. name: "Smallest",
  41151. height: math.unit(20, "feet")
  41152. },
  41153. {
  41154. name: "Normal",
  41155. height: math.unit(1e9, "miles"),
  41156. default: true
  41157. },
  41158. {
  41159. name: "Larger",
  41160. height: math.unit(5, "multiverses")
  41161. },
  41162. {
  41163. name: "Largest",
  41164. height: math.unit(1e9, "multiverses")
  41165. },
  41166. ]
  41167. ))
  41168. characterMakers.push(() => makeCharacter(
  41169. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41170. {
  41171. front: {
  41172. height: math.unit(8, "feet"),
  41173. name: "Front",
  41174. image: {
  41175. source: "./media/characters/breanna/front.svg",
  41176. extra: 1912/1632,
  41177. bottom: 33/1945
  41178. }
  41179. },
  41180. },
  41181. [
  41182. {
  41183. name: "Smallest",
  41184. height: math.unit(8, "feet")
  41185. },
  41186. {
  41187. name: "Normal",
  41188. height: math.unit(1, "mile"),
  41189. default: true
  41190. },
  41191. {
  41192. name: "Maximum",
  41193. height: math.unit(1500000000000, "lightyears")
  41194. },
  41195. ]
  41196. ))
  41197. characterMakers.push(() => makeCharacter(
  41198. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41199. {
  41200. front: {
  41201. height: math.unit(5 + 11/12, "feet"),
  41202. weight: math.unit(155, "lb"),
  41203. name: "Front",
  41204. image: {
  41205. source: "./media/characters/cai/front.svg",
  41206. extra: 1823/1702,
  41207. bottom: 32/1855
  41208. }
  41209. },
  41210. back: {
  41211. height: math.unit(5 + 11/12, "feet"),
  41212. weight: math.unit(155, "lb"),
  41213. name: "Back",
  41214. image: {
  41215. source: "./media/characters/cai/back.svg",
  41216. extra: 1809/1708,
  41217. bottom: 31/1840
  41218. }
  41219. },
  41220. },
  41221. [
  41222. {
  41223. name: "Normal",
  41224. height: math.unit(5 + 11/12, "feet"),
  41225. default: true
  41226. },
  41227. {
  41228. name: "Big",
  41229. height: math.unit(15, "feet")
  41230. },
  41231. {
  41232. name: "Macro",
  41233. height: math.unit(200, "feet")
  41234. },
  41235. ]
  41236. ))
  41237. characterMakers.push(() => makeCharacter(
  41238. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41239. {
  41240. front: {
  41241. height: math.unit(5 + 6/12, "feet"),
  41242. weight: math.unit(160, "lb"),
  41243. name: "Front",
  41244. image: {
  41245. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41246. extra: 1227/1174,
  41247. bottom: 37/1264
  41248. }
  41249. },
  41250. },
  41251. [
  41252. {
  41253. name: "Macro",
  41254. height: math.unit(444, "meters"),
  41255. default: true
  41256. },
  41257. ]
  41258. ))
  41259. characterMakers.push(() => makeCharacter(
  41260. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41261. {
  41262. front: {
  41263. height: math.unit(18 + 7/12, "feet"),
  41264. name: "Front",
  41265. image: {
  41266. source: "./media/characters/rex/front.svg",
  41267. extra: 1941/1807,
  41268. bottom: 66/2007
  41269. }
  41270. },
  41271. back: {
  41272. height: math.unit(18 + 7/12, "feet"),
  41273. name: "Back",
  41274. image: {
  41275. source: "./media/characters/rex/back.svg",
  41276. extra: 1937/1822,
  41277. bottom: 42/1979
  41278. }
  41279. },
  41280. boot: {
  41281. height: math.unit(3.45, "feet"),
  41282. name: "Boot",
  41283. image: {
  41284. source: "./media/characters/rex/boot.svg"
  41285. }
  41286. },
  41287. paw: {
  41288. height: math.unit(4.17, "feet"),
  41289. name: "Paw",
  41290. image: {
  41291. source: "./media/characters/rex/paw.svg"
  41292. }
  41293. },
  41294. head: {
  41295. height: math.unit(6.728, "feet"),
  41296. name: "Head",
  41297. image: {
  41298. source: "./media/characters/rex/head.svg"
  41299. }
  41300. },
  41301. },
  41302. [
  41303. {
  41304. name: "Nano",
  41305. height: math.unit(18 + 7/12, "feet")
  41306. },
  41307. {
  41308. name: "Micro",
  41309. height: math.unit(1.5, "megameters")
  41310. },
  41311. {
  41312. name: "Normal",
  41313. height: math.unit(440, "megameters"),
  41314. default: true
  41315. },
  41316. {
  41317. name: "Macro",
  41318. height: math.unit(2.5, "gigameters")
  41319. },
  41320. {
  41321. name: "Gigamacro",
  41322. height: math.unit(2, "galaxies")
  41323. },
  41324. ]
  41325. ))
  41326. characterMakers.push(() => makeCharacter(
  41327. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41328. {
  41329. side: {
  41330. height: math.unit(32, "feet"),
  41331. weight: math.unit(250000, "lb"),
  41332. name: "Side",
  41333. image: {
  41334. source: "./media/characters/silverwing/side.svg",
  41335. extra: 1100/1019,
  41336. bottom: 204/1304
  41337. }
  41338. },
  41339. },
  41340. [
  41341. {
  41342. name: "Normal",
  41343. height: math.unit(32, "feet"),
  41344. default: true
  41345. },
  41346. ]
  41347. ))
  41348. characterMakers.push(() => makeCharacter(
  41349. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41350. {
  41351. front: {
  41352. height: math.unit(6 + 6/12, "feet"),
  41353. weight: math.unit(350, "lb"),
  41354. name: "Front",
  41355. image: {
  41356. source: "./media/characters/tristan-hawthorne/front.svg",
  41357. extra: 1159/1124,
  41358. bottom: 37/1196
  41359. }
  41360. },
  41361. },
  41362. [
  41363. {
  41364. name: "Normal",
  41365. height: math.unit(6 + 6/12, "feet"),
  41366. default: true
  41367. },
  41368. ]
  41369. ))
  41370. characterMakers.push(() => makeCharacter(
  41371. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41372. {
  41373. front: {
  41374. height: math.unit(5 + 11/12, "feet"),
  41375. weight: math.unit(190, "lb"),
  41376. name: "Front",
  41377. image: {
  41378. source: "./media/characters/mizu/front.svg",
  41379. extra: 1988/1788,
  41380. bottom: 14/2002
  41381. }
  41382. },
  41383. },
  41384. [
  41385. {
  41386. name: "Normal",
  41387. height: math.unit(5 + 11/12, "feet"),
  41388. default: true
  41389. },
  41390. ]
  41391. ))
  41392. characterMakers.push(() => makeCharacter(
  41393. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41394. {
  41395. front: {
  41396. height: math.unit(6, "feet"),
  41397. name: "Front",
  41398. image: {
  41399. source: "./media/characters/moonlight-rose-terra/front.svg",
  41400. extra: 1434/1252,
  41401. bottom: 48/1482
  41402. }
  41403. },
  41404. },
  41405. [
  41406. {
  41407. name: "TRAPPIST-1D",
  41408. height: math.unit(4992*2, "km")
  41409. },
  41410. {
  41411. name: "Earth",
  41412. height: math.unit(6367*2, "km"),
  41413. default: true
  41414. },
  41415. {
  41416. name: "Kepler-22b",
  41417. height: math.unit(15282*2, "km")
  41418. },
  41419. ]
  41420. ))
  41421. characterMakers.push(() => makeCharacter(
  41422. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41423. {
  41424. front: {
  41425. height: math.unit(6, "feet"),
  41426. name: "Front",
  41427. image: {
  41428. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41429. extra: 1851/1712,
  41430. bottom: 0/1851
  41431. }
  41432. },
  41433. },
  41434. [
  41435. {
  41436. name: "Enceladus",
  41437. height: math.unit(513*2, "km")
  41438. },
  41439. {
  41440. name: "Europe",
  41441. height: math.unit(1560*2, "km")
  41442. },
  41443. {
  41444. name: "Neptune",
  41445. height: math.unit(24622*2, "km"),
  41446. default: true
  41447. },
  41448. {
  41449. name: "CoRoT-9b",
  41450. height: math.unit(75067*2, "km")
  41451. },
  41452. ]
  41453. ))
  41454. characterMakers.push(() => makeCharacter(
  41455. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41456. {
  41457. front: {
  41458. height: math.unit(6, "feet"),
  41459. name: "Front",
  41460. image: {
  41461. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41462. extra: 1367/1286,
  41463. bottom: 55/1422
  41464. }
  41465. },
  41466. },
  41467. [
  41468. {
  41469. name: "Saturn",
  41470. height: math.unit(58232*2, "km")
  41471. },
  41472. {
  41473. name: "Jupiter",
  41474. height: math.unit(69911*2, "km"),
  41475. default: true
  41476. },
  41477. {
  41478. name: "HD 100546 b",
  41479. height: math.unit(482938, "km")
  41480. },
  41481. ]
  41482. ))
  41483. characterMakers.push(() => makeCharacter(
  41484. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41485. {
  41486. front: {
  41487. height: math.unit(1.7, "feet"),
  41488. weight: math.unit(50, "lb"),
  41489. name: "Front",
  41490. image: {
  41491. source: "./media/characters/dechroma/front.svg",
  41492. extra: 1095/859,
  41493. bottom: 64/1159
  41494. }
  41495. },
  41496. },
  41497. [
  41498. {
  41499. name: "Normal",
  41500. height: math.unit(1.7, "feet"),
  41501. default: true
  41502. },
  41503. ]
  41504. ))
  41505. characterMakers.push(() => makeCharacter(
  41506. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41507. {
  41508. side: {
  41509. height: math.unit(30, "feet"),
  41510. name: "Side",
  41511. image: {
  41512. source: "./media/characters/veluren-thanazel/side.svg",
  41513. extra: 1611/633,
  41514. bottom: 118/1729
  41515. }
  41516. },
  41517. front: {
  41518. height: math.unit(30, "feet"),
  41519. name: "Front",
  41520. image: {
  41521. source: "./media/characters/veluren-thanazel/front.svg",
  41522. extra: 1486/636,
  41523. bottom: 238/1724
  41524. }
  41525. },
  41526. head: {
  41527. height: math.unit(21.4, "feet"),
  41528. name: "Head",
  41529. image: {
  41530. source: "./media/characters/veluren-thanazel/head.svg"
  41531. }
  41532. },
  41533. genitals: {
  41534. height: math.unit(19.4, "feet"),
  41535. name: "Genitals",
  41536. image: {
  41537. source: "./media/characters/veluren-thanazel/genitals.svg"
  41538. }
  41539. },
  41540. },
  41541. [
  41542. {
  41543. name: "Social",
  41544. height: math.unit(6, "feet")
  41545. },
  41546. {
  41547. name: "Play",
  41548. height: math.unit(12, "feet")
  41549. },
  41550. {
  41551. name: "True",
  41552. height: math.unit(30, "feet"),
  41553. default: true
  41554. },
  41555. ]
  41556. ))
  41557. characterMakers.push(() => makeCharacter(
  41558. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41559. {
  41560. front: {
  41561. height: math.unit(7 + 6/12, "feet"),
  41562. weight: math.unit(500, "kg"),
  41563. name: "Front",
  41564. image: {
  41565. source: "./media/characters/arcturas/front.svg",
  41566. extra: 1700/1500,
  41567. bottom: 145/1845
  41568. }
  41569. },
  41570. },
  41571. [
  41572. {
  41573. name: "Normal",
  41574. height: math.unit(7 + 6/12, "feet"),
  41575. default: true
  41576. },
  41577. ]
  41578. ))
  41579. characterMakers.push(() => makeCharacter(
  41580. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41581. {
  41582. side: {
  41583. height: math.unit(6, "feet"),
  41584. weight: math.unit(2, "tons"),
  41585. name: "Side",
  41586. image: {
  41587. source: "./media/characters/vitaen/side.svg",
  41588. extra: 1157/617,
  41589. bottom: 122/1279
  41590. }
  41591. },
  41592. },
  41593. [
  41594. {
  41595. name: "Normal",
  41596. height: math.unit(6, "feet"),
  41597. default: true
  41598. },
  41599. ]
  41600. ))
  41601. characterMakers.push(() => makeCharacter(
  41602. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41603. {
  41604. front: {
  41605. height: math.unit(19, "feet"),
  41606. name: "Front",
  41607. image: {
  41608. source: "./media/characters/fia-dreamweaver/front.svg",
  41609. extra: 1630/1504,
  41610. bottom: 25/1655
  41611. }
  41612. },
  41613. },
  41614. [
  41615. {
  41616. name: "Normal",
  41617. height: math.unit(19, "feet"),
  41618. default: true
  41619. },
  41620. ]
  41621. ))
  41622. characterMakers.push(() => makeCharacter(
  41623. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41624. {
  41625. front: {
  41626. height: math.unit(5 + 4/12, "feet"),
  41627. name: "Front",
  41628. image: {
  41629. source: "./media/characters/artan/front.svg",
  41630. extra: 1618/1535,
  41631. bottom: 46/1664
  41632. }
  41633. },
  41634. back: {
  41635. height: math.unit(5 + 4/12, "feet"),
  41636. name: "Back",
  41637. image: {
  41638. source: "./media/characters/artan/back.svg",
  41639. extra: 1618/1543,
  41640. bottom: 31/1649
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "Normal",
  41647. height: math.unit(5 + 4/12, "feet"),
  41648. default: true
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41654. {
  41655. side: {
  41656. height: math.unit(182, "cm"),
  41657. weight: math.unit(1000, "lb"),
  41658. name: "Side",
  41659. image: {
  41660. source: "./media/characters/silver-dragon/side.svg",
  41661. extra: 710/287,
  41662. bottom: 88/798
  41663. }
  41664. },
  41665. },
  41666. [
  41667. {
  41668. name: "Normal",
  41669. height: math.unit(182, "cm"),
  41670. default: true
  41671. },
  41672. ]
  41673. ))
  41674. characterMakers.push(() => makeCharacter(
  41675. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41676. {
  41677. side: {
  41678. height: math.unit(6 + 6/12, "feet"),
  41679. weight: math.unit(1.5, "tons"),
  41680. name: "Side",
  41681. image: {
  41682. source: "./media/characters/zephyr/side.svg",
  41683. extra: 1433/586,
  41684. bottom: 109/1542
  41685. }
  41686. },
  41687. },
  41688. [
  41689. {
  41690. name: "Normal",
  41691. height: math.unit(6 + 6/12, "feet"),
  41692. default: true
  41693. },
  41694. ]
  41695. ))
  41696. characterMakers.push(() => makeCharacter(
  41697. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41698. {
  41699. side: {
  41700. height: math.unit(1, "feet"),
  41701. name: "Side",
  41702. image: {
  41703. source: "./media/characters/vixye/side.svg",
  41704. extra: 632/541,
  41705. bottom: 0/632
  41706. }
  41707. },
  41708. },
  41709. [
  41710. {
  41711. name: "Normal",
  41712. height: math.unit(1, "feet"),
  41713. default: true
  41714. },
  41715. {
  41716. name: "True",
  41717. height: math.unit(1e15, "multiverses")
  41718. },
  41719. ]
  41720. ))
  41721. characterMakers.push(() => makeCharacter(
  41722. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41723. {
  41724. front: {
  41725. height: math.unit(8 + 2/12, "feet"),
  41726. weight: math.unit(650, "lb"),
  41727. name: "Front",
  41728. image: {
  41729. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41730. extra: 1174/1137,
  41731. bottom: 82/1256
  41732. }
  41733. },
  41734. back: {
  41735. height: math.unit(8 + 2/12, "feet"),
  41736. weight: math.unit(650, "lb"),
  41737. name: "Back",
  41738. image: {
  41739. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41740. extra: 1204/1157,
  41741. bottom: 46/1250
  41742. }
  41743. },
  41744. },
  41745. [
  41746. {
  41747. name: "Wildform",
  41748. height: math.unit(8 + 2/12, "feet"),
  41749. default: true
  41750. },
  41751. ]
  41752. ))
  41753. characterMakers.push(() => makeCharacter(
  41754. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41755. {
  41756. front: {
  41757. height: math.unit(18, "feet"),
  41758. name: "Front",
  41759. image: {
  41760. source: "./media/characters/cyphin/front.svg",
  41761. extra: 970/886,
  41762. bottom: 42/1012
  41763. }
  41764. },
  41765. back: {
  41766. height: math.unit(18, "feet"),
  41767. name: "Back",
  41768. image: {
  41769. source: "./media/characters/cyphin/back.svg",
  41770. extra: 1009/894,
  41771. bottom: 24/1033
  41772. }
  41773. },
  41774. head: {
  41775. height: math.unit(5.05, "feet"),
  41776. name: "Head",
  41777. image: {
  41778. source: "./media/characters/cyphin/head.svg"
  41779. }
  41780. },
  41781. tailbud: {
  41782. height: math.unit(5, "feet"),
  41783. name: "Tailbud",
  41784. image: {
  41785. source: "./media/characters/cyphin/tailbud.svg"
  41786. }
  41787. },
  41788. },
  41789. [
  41790. ]
  41791. ))
  41792. characterMakers.push(() => makeCharacter(
  41793. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41794. {
  41795. side: {
  41796. height: math.unit(10, "feet"),
  41797. weight: math.unit(6, "tons"),
  41798. name: "Side",
  41799. image: {
  41800. source: "./media/characters/raijin/side.svg",
  41801. extra: 1529/613,
  41802. bottom: 337/1866
  41803. }
  41804. },
  41805. },
  41806. [
  41807. {
  41808. name: "Normal",
  41809. height: math.unit(10, "feet"),
  41810. default: true
  41811. },
  41812. ]
  41813. ))
  41814. characterMakers.push(() => makeCharacter(
  41815. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41816. {
  41817. side: {
  41818. height: math.unit(9, "feet"),
  41819. name: "Side",
  41820. image: {
  41821. source: "./media/characters/nilghais/side.svg",
  41822. extra: 1047/744,
  41823. bottom: 91/1138
  41824. }
  41825. },
  41826. head: {
  41827. height: math.unit(3.14, "feet"),
  41828. name: "Head",
  41829. image: {
  41830. source: "./media/characters/nilghais/head.svg"
  41831. }
  41832. },
  41833. mouth: {
  41834. height: math.unit(4.6, "feet"),
  41835. name: "Mouth",
  41836. image: {
  41837. source: "./media/characters/nilghais/mouth.svg"
  41838. }
  41839. },
  41840. wings: {
  41841. height: math.unit(24, "feet"),
  41842. name: "Wings",
  41843. image: {
  41844. source: "./media/characters/nilghais/wings.svg"
  41845. }
  41846. },
  41847. ass: {
  41848. height: math.unit(6.12, "feet"),
  41849. name: "Ass",
  41850. image: {
  41851. source: "./media/characters/nilghais/ass.svg"
  41852. }
  41853. },
  41854. },
  41855. [
  41856. {
  41857. name: "Normal",
  41858. height: math.unit(9, "feet"),
  41859. default: true
  41860. },
  41861. ]
  41862. ))
  41863. characterMakers.push(() => makeCharacter(
  41864. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41865. {
  41866. regular: {
  41867. height: math.unit(16 + 2/12, "feet"),
  41868. weight: math.unit(2300, "lb"),
  41869. name: "Regular",
  41870. image: {
  41871. source: "./media/characters/zolgar/regular.svg",
  41872. extra: 1246/1004,
  41873. bottom: 124/1370
  41874. }
  41875. },
  41876. boxers: {
  41877. height: math.unit(16 + 2/12, "feet"),
  41878. weight: math.unit(2300, "lb"),
  41879. name: "Boxers",
  41880. image: {
  41881. source: "./media/characters/zolgar/boxers.svg",
  41882. extra: 1246/1004,
  41883. bottom: 124/1370
  41884. }
  41885. },
  41886. armored: {
  41887. height: math.unit(16 + 2/12, "feet"),
  41888. weight: math.unit(2300, "lb"),
  41889. name: "Armored",
  41890. image: {
  41891. source: "./media/characters/zolgar/armored.svg",
  41892. extra: 1246/1004,
  41893. bottom: 124/1370
  41894. }
  41895. },
  41896. goth: {
  41897. height: math.unit(16 + 2/12, "feet"),
  41898. weight: math.unit(2300, "lb"),
  41899. name: "Goth",
  41900. image: {
  41901. source: "./media/characters/zolgar/goth.svg",
  41902. extra: 1246/1004,
  41903. bottom: 124/1370
  41904. }
  41905. },
  41906. },
  41907. [
  41908. {
  41909. name: "Shrunken Down",
  41910. height: math.unit(9 + 2/12, "feet")
  41911. },
  41912. {
  41913. name: "Normal",
  41914. height: math.unit(16 + 2/12, "feet"),
  41915. default: true
  41916. },
  41917. ]
  41918. ))
  41919. characterMakers.push(() => makeCharacter(
  41920. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41921. {
  41922. front: {
  41923. height: math.unit(6, "feet"),
  41924. weight: math.unit(168, "lb"),
  41925. name: "Front",
  41926. image: {
  41927. source: "./media/characters/luca/front.svg",
  41928. extra: 841/667,
  41929. bottom: 102/943
  41930. }
  41931. },
  41932. },
  41933. [
  41934. {
  41935. name: "Normal",
  41936. height: math.unit(6, "feet"),
  41937. default: true
  41938. },
  41939. ]
  41940. ))
  41941. characterMakers.push(() => makeCharacter(
  41942. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41943. {
  41944. side: {
  41945. height: math.unit(7 + 3/12, "feet"),
  41946. weight: math.unit(312, "lb"),
  41947. name: "Side",
  41948. image: {
  41949. source: "./media/characters/zezo/side.svg",
  41950. extra: 1192/1067,
  41951. bottom: 63/1255
  41952. }
  41953. },
  41954. },
  41955. [
  41956. {
  41957. name: "Normal",
  41958. height: math.unit(7 + 3/12, "feet"),
  41959. default: true
  41960. },
  41961. ]
  41962. ))
  41963. characterMakers.push(() => makeCharacter(
  41964. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41965. {
  41966. front: {
  41967. height: math.unit(5 + 5/12, "feet"),
  41968. weight: math.unit(170, "lb"),
  41969. name: "Front",
  41970. image: {
  41971. source: "./media/characters/mayso/front.svg",
  41972. extra: 1215/1108,
  41973. bottom: 16/1231
  41974. }
  41975. },
  41976. },
  41977. [
  41978. {
  41979. name: "Normal",
  41980. height: math.unit(5 + 5/12, "feet"),
  41981. default: true
  41982. },
  41983. ]
  41984. ))
  41985. characterMakers.push(() => makeCharacter(
  41986. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41987. {
  41988. front: {
  41989. height: math.unit(4 + 3/12, "feet"),
  41990. weight: math.unit(80, "lb"),
  41991. name: "Front",
  41992. image: {
  41993. source: "./media/characters/hess/front.svg",
  41994. extra: 1200/1123,
  41995. bottom: 16/1216
  41996. }
  41997. },
  41998. },
  41999. [
  42000. {
  42001. name: "Normal",
  42002. height: math.unit(4 + 3/12, "feet"),
  42003. default: true
  42004. },
  42005. ]
  42006. ))
  42007. characterMakers.push(() => makeCharacter(
  42008. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42009. {
  42010. front: {
  42011. height: math.unit(1.9, "meters"),
  42012. name: "Front",
  42013. image: {
  42014. source: "./media/characters/ashgar/front.svg",
  42015. extra: 1177/1146,
  42016. bottom: 99/1276
  42017. }
  42018. },
  42019. back: {
  42020. height: math.unit(1.9, "meters"),
  42021. name: "Back",
  42022. image: {
  42023. source: "./media/characters/ashgar/back.svg",
  42024. extra: 1201/1183,
  42025. bottom: 53/1254
  42026. }
  42027. },
  42028. feral: {
  42029. height: math.unit(1.4, "meters"),
  42030. name: "Feral",
  42031. image: {
  42032. source: "./media/characters/ashgar/feral.svg",
  42033. extra: 370/345,
  42034. bottom: 45/415
  42035. }
  42036. },
  42037. },
  42038. [
  42039. {
  42040. name: "Normal",
  42041. height: math.unit(1.9, "meters"),
  42042. default: true
  42043. },
  42044. ]
  42045. ))
  42046. characterMakers.push(() => makeCharacter(
  42047. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42048. {
  42049. regular: {
  42050. height: math.unit(6, "feet"),
  42051. weight: math.unit(220, "lb"),
  42052. name: "Regular",
  42053. image: {
  42054. source: "./media/characters/phillip/regular.svg",
  42055. extra: 1373/1277,
  42056. bottom: 75/1448
  42057. }
  42058. },
  42059. dressed: {
  42060. height: math.unit(6, "feet"),
  42061. weight: math.unit(220, "lb"),
  42062. name: "Dressed",
  42063. image: {
  42064. source: "./media/characters/phillip/dressed.svg",
  42065. extra: 1373/1277,
  42066. bottom: 75/1448
  42067. }
  42068. },
  42069. paw: {
  42070. height: math.unit(1.44, "feet"),
  42071. name: "Paw",
  42072. image: {
  42073. source: "./media/characters/phillip/paw.svg"
  42074. }
  42075. },
  42076. },
  42077. [
  42078. {
  42079. name: "Normal",
  42080. height: math.unit(6, "feet"),
  42081. default: true
  42082. },
  42083. ]
  42084. ))
  42085. characterMakers.push(() => makeCharacter(
  42086. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42087. {
  42088. side: {
  42089. height: math.unit(42, "feet"),
  42090. name: "Side",
  42091. image: {
  42092. source: "./media/characters/uvula/side.svg",
  42093. extra: 683/586,
  42094. bottom: 60/743
  42095. }
  42096. },
  42097. front: {
  42098. height: math.unit(42, "feet"),
  42099. name: "Front",
  42100. image: {
  42101. source: "./media/characters/uvula/front.svg",
  42102. extra: 705/613,
  42103. bottom: 54/759
  42104. }
  42105. },
  42106. maw: {
  42107. height: math.unit(23.5, "feet"),
  42108. name: "Maw",
  42109. image: {
  42110. source: "./media/characters/uvula/maw.svg"
  42111. }
  42112. },
  42113. },
  42114. [
  42115. {
  42116. name: "Original Size",
  42117. height: math.unit(14, "inches")
  42118. },
  42119. {
  42120. name: "Human Size",
  42121. height: math.unit(6, "feet")
  42122. },
  42123. {
  42124. name: "Big",
  42125. height: math.unit(42, "feet"),
  42126. default: true
  42127. },
  42128. {
  42129. name: "Bigger",
  42130. height: math.unit(100, "feet")
  42131. },
  42132. ]
  42133. ))
  42134. characterMakers.push(() => makeCharacter(
  42135. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42136. {
  42137. front: {
  42138. height: math.unit(5 + 11/12, "feet"),
  42139. name: "Front",
  42140. image: {
  42141. source: "./media/characters/lannah/front.svg",
  42142. extra: 1208/1113,
  42143. bottom: 97/1305
  42144. }
  42145. },
  42146. },
  42147. [
  42148. {
  42149. name: "Normal",
  42150. height: math.unit(5 + 11/12, "feet"),
  42151. default: true
  42152. },
  42153. ]
  42154. ))
  42155. characterMakers.push(() => makeCharacter(
  42156. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42157. {
  42158. front: {
  42159. height: math.unit(6 + 3/12, "feet"),
  42160. weight: math.unit(3.5, "tons"),
  42161. name: "Front",
  42162. image: {
  42163. source: "./media/characters/emberflame/front.svg",
  42164. extra: 1198/672,
  42165. bottom: 82/1280
  42166. }
  42167. },
  42168. side: {
  42169. height: math.unit(6 + 3/12, "feet"),
  42170. weight: math.unit(3.5, "tons"),
  42171. name: "Side",
  42172. image: {
  42173. source: "./media/characters/emberflame/side.svg",
  42174. extra: 938/527,
  42175. bottom: 56/994
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Normal",
  42182. height: math.unit(6 + 3/12, "feet"),
  42183. default: true
  42184. },
  42185. ]
  42186. ))
  42187. characterMakers.push(() => makeCharacter(
  42188. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42189. {
  42190. side: {
  42191. height: math.unit(17.5, "feet"),
  42192. weight: math.unit(35, "tons"),
  42193. name: "Side",
  42194. image: {
  42195. source: "./media/characters/sophie-ambrose/side.svg",
  42196. extra: 1573/1242,
  42197. bottom: 71/1644
  42198. }
  42199. },
  42200. maw: {
  42201. height: math.unit(7.4, "feet"),
  42202. name: "Maw",
  42203. image: {
  42204. source: "./media/characters/sophie-ambrose/maw.svg"
  42205. }
  42206. },
  42207. },
  42208. [
  42209. {
  42210. name: "Normal",
  42211. height: math.unit(17.5, "feet"),
  42212. default: true
  42213. },
  42214. ]
  42215. ))
  42216. characterMakers.push(() => makeCharacter(
  42217. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42218. {
  42219. front: {
  42220. height: math.unit(280, "feet"),
  42221. weight: math.unit(550, "tons"),
  42222. name: "Front",
  42223. image: {
  42224. source: "./media/characters/king-mugi/front.svg",
  42225. extra: 1102/947,
  42226. bottom: 104/1206
  42227. }
  42228. },
  42229. },
  42230. [
  42231. {
  42232. name: "King Mugi",
  42233. height: math.unit(280, "feet"),
  42234. default: true
  42235. },
  42236. ]
  42237. ))
  42238. characterMakers.push(() => makeCharacter(
  42239. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42240. {
  42241. front: {
  42242. height: math.unit(64, "meters"),
  42243. name: "Front",
  42244. image: {
  42245. source: "./media/characters/nova-fox/front.svg",
  42246. extra: 1310/1246,
  42247. bottom: 65/1375
  42248. }
  42249. },
  42250. },
  42251. [
  42252. {
  42253. name: "Macro",
  42254. height: math.unit(64, "meters"),
  42255. default: true
  42256. },
  42257. ]
  42258. ))
  42259. characterMakers.push(() => makeCharacter(
  42260. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42261. {
  42262. front: {
  42263. height: math.unit(6 + 3/12, "feet"),
  42264. weight: math.unit(170, "lb"),
  42265. name: "Front",
  42266. image: {
  42267. source: "./media/characters/sam-bat/front.svg",
  42268. extra: 1601/1411,
  42269. bottom: 125/1726
  42270. }
  42271. },
  42272. back: {
  42273. height: math.unit(6 + 3/12, "feet"),
  42274. weight: math.unit(170, "lb"),
  42275. name: "Back",
  42276. image: {
  42277. source: "./media/characters/sam-bat/back.svg",
  42278. extra: 1577/1405,
  42279. bottom: 58/1635
  42280. }
  42281. },
  42282. },
  42283. [
  42284. {
  42285. name: "Normal",
  42286. height: math.unit(6 + 3/12, "feet"),
  42287. default: true
  42288. },
  42289. ]
  42290. ))
  42291. characterMakers.push(() => makeCharacter(
  42292. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42293. {
  42294. front: {
  42295. height: math.unit(59, "feet"),
  42296. weight: math.unit(40000, "lb"),
  42297. name: "Front",
  42298. image: {
  42299. source: "./media/characters/inari/front.svg",
  42300. extra: 1884/1350,
  42301. bottom: 95/1979
  42302. }
  42303. },
  42304. },
  42305. [
  42306. {
  42307. name: "Gigantamax",
  42308. height: math.unit(59, "feet"),
  42309. default: true
  42310. },
  42311. ]
  42312. ))
  42313. characterMakers.push(() => makeCharacter(
  42314. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42315. {
  42316. front: {
  42317. height: math.unit(5 + 8/12, "feet"),
  42318. name: "Front",
  42319. image: {
  42320. source: "./media/characters/elizabeth/front.svg",
  42321. extra: 1395/1298,
  42322. bottom: 54/1449
  42323. }
  42324. },
  42325. mouth: {
  42326. height: math.unit(1.97, "feet"),
  42327. name: "Mouth",
  42328. image: {
  42329. source: "./media/characters/elizabeth/mouth.svg"
  42330. }
  42331. },
  42332. foot: {
  42333. height: math.unit(1.17, "feet"),
  42334. name: "Foot",
  42335. image: {
  42336. source: "./media/characters/elizabeth/foot.svg"
  42337. }
  42338. },
  42339. },
  42340. [
  42341. {
  42342. name: "Normal",
  42343. height: math.unit(5 + 8/12, "feet"),
  42344. default: true
  42345. },
  42346. {
  42347. name: "Minimacro",
  42348. height: math.unit(18, "feet")
  42349. },
  42350. {
  42351. name: "Macro",
  42352. height: math.unit(180, "feet")
  42353. },
  42354. ]
  42355. ))
  42356. characterMakers.push(() => makeCharacter(
  42357. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42358. {
  42359. front: {
  42360. height: math.unit(5 + 2/12, "feet"),
  42361. name: "Front",
  42362. image: {
  42363. source: "./media/characters/october-gossamer/front.svg",
  42364. extra: 505/454,
  42365. bottom: 7/512
  42366. }
  42367. },
  42368. back: {
  42369. height: math.unit(5 + 2/12, "feet"),
  42370. name: "Back",
  42371. image: {
  42372. source: "./media/characters/october-gossamer/back.svg",
  42373. extra: 501/454,
  42374. bottom: 11/512
  42375. }
  42376. },
  42377. },
  42378. [
  42379. {
  42380. name: "Normal",
  42381. height: math.unit(5 + 2/12, "feet"),
  42382. default: true
  42383. },
  42384. ]
  42385. ))
  42386. characterMakers.push(() => makeCharacter(
  42387. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42388. {
  42389. front: {
  42390. height: math.unit(5, "feet"),
  42391. name: "Front",
  42392. image: {
  42393. source: "./media/characters/epiglottis/front.svg",
  42394. extra: 923/849,
  42395. bottom: 17/940
  42396. }
  42397. },
  42398. },
  42399. [
  42400. {
  42401. name: "Original Size",
  42402. height: math.unit(10, "inches")
  42403. },
  42404. {
  42405. name: "Human Size",
  42406. height: math.unit(5, "feet"),
  42407. default: true
  42408. },
  42409. {
  42410. name: "Big",
  42411. height: math.unit(25, "feet")
  42412. },
  42413. {
  42414. name: "Bigger",
  42415. height: math.unit(50, "feet")
  42416. },
  42417. {
  42418. name: "oh lawd",
  42419. height: math.unit(75, "feet")
  42420. },
  42421. ]
  42422. ))
  42423. characterMakers.push(() => makeCharacter(
  42424. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42425. {
  42426. front: {
  42427. height: math.unit(2 + 4/12, "feet"),
  42428. weight: math.unit(60, "lb"),
  42429. name: "Front",
  42430. image: {
  42431. source: "./media/characters/lerm/front.svg",
  42432. extra: 796/790,
  42433. bottom: 79/875
  42434. }
  42435. },
  42436. },
  42437. [
  42438. {
  42439. name: "Normal",
  42440. height: math.unit(2 + 4/12, "feet"),
  42441. default: true
  42442. },
  42443. ]
  42444. ))
  42445. characterMakers.push(() => makeCharacter(
  42446. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42447. {
  42448. front: {
  42449. height: math.unit(5.5, "feet"),
  42450. weight: math.unit(130, "lb"),
  42451. name: "Front",
  42452. image: {
  42453. source: "./media/characters/xena-nebadon/front.svg",
  42454. extra: 1828/1730,
  42455. bottom: 79/1907
  42456. }
  42457. },
  42458. },
  42459. [
  42460. {
  42461. name: "Tiny Puppy",
  42462. height: math.unit(3, "inches")
  42463. },
  42464. {
  42465. name: "Normal",
  42466. height: math.unit(5.5, "feet"),
  42467. default: true
  42468. },
  42469. {
  42470. name: "Lotta Lady",
  42471. height: math.unit(12, "feet")
  42472. },
  42473. {
  42474. name: "Pretty Big",
  42475. height: math.unit(100, "feet")
  42476. },
  42477. {
  42478. name: "Big",
  42479. height: math.unit(500, "feet")
  42480. },
  42481. {
  42482. name: "Skyscraper Toys",
  42483. height: math.unit(2500, "feet")
  42484. },
  42485. {
  42486. name: "Plane Catcher",
  42487. height: math.unit(8, "miles")
  42488. },
  42489. {
  42490. name: "Planet Toys",
  42491. height: math.unit(15, "earths")
  42492. },
  42493. {
  42494. name: "Stardust",
  42495. height: math.unit(0.25, "galaxies")
  42496. },
  42497. {
  42498. name: "Snacks",
  42499. height: math.unit(70, "universes")
  42500. },
  42501. ]
  42502. ))
  42503. characterMakers.push(() => makeCharacter(
  42504. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42505. {
  42506. front: {
  42507. height: math.unit(1.6, "meters"),
  42508. weight: math.unit(60, "kg"),
  42509. name: "Front",
  42510. image: {
  42511. source: "./media/characters/bounty/front.svg",
  42512. extra: 1426/1308,
  42513. bottom: 15/1441
  42514. }
  42515. },
  42516. back: {
  42517. height: math.unit(1.6, "meters"),
  42518. weight: math.unit(60, "kg"),
  42519. name: "Back",
  42520. image: {
  42521. source: "./media/characters/bounty/back.svg",
  42522. extra: 1417/1307,
  42523. bottom: 8/1425
  42524. }
  42525. },
  42526. },
  42527. [
  42528. {
  42529. name: "Normal",
  42530. height: math.unit(1.6, "meters"),
  42531. default: true
  42532. },
  42533. {
  42534. name: "Macro",
  42535. height: math.unit(300, "meters")
  42536. },
  42537. ]
  42538. ))
  42539. characterMakers.push(() => makeCharacter(
  42540. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42541. {
  42542. front: {
  42543. height: math.unit(2 + 8/12, "feet"),
  42544. weight: math.unit(15, "lb"),
  42545. name: "Front",
  42546. image: {
  42547. source: "./media/characters/mochi/front.svg",
  42548. extra: 1022/852,
  42549. bottom: 435/1457
  42550. }
  42551. },
  42552. back: {
  42553. height: math.unit(2 + 8/12, "feet"),
  42554. weight: math.unit(15, "lb"),
  42555. name: "Back",
  42556. image: {
  42557. source: "./media/characters/mochi/back.svg",
  42558. extra: 1335/1119,
  42559. bottom: 39/1374
  42560. }
  42561. },
  42562. bird: {
  42563. height: math.unit(2 + 8/12, "feet"),
  42564. weight: math.unit(15, "lb"),
  42565. name: "Bird",
  42566. image: {
  42567. source: "./media/characters/mochi/bird.svg",
  42568. extra: 1251/1113,
  42569. bottom: 178/1429
  42570. }
  42571. },
  42572. kaiju: {
  42573. height: math.unit(154, "feet"),
  42574. weight: math.unit(1e7, "lb"),
  42575. name: "Kaiju",
  42576. image: {
  42577. source: "./media/characters/mochi/kaiju.svg",
  42578. extra: 460/324,
  42579. bottom: 40/500
  42580. }
  42581. },
  42582. head: {
  42583. height: math.unit(1.21, "feet"),
  42584. name: "Head",
  42585. image: {
  42586. source: "./media/characters/mochi/head.svg"
  42587. }
  42588. },
  42589. alternateTail: {
  42590. height: math.unit(2 + 8/12, "feet"),
  42591. weight: math.unit(45, "lb"),
  42592. name: "Alternate Tail",
  42593. image: {
  42594. source: "./media/characters/mochi/alternate-tail.svg",
  42595. extra: 139/76,
  42596. bottom: 45/184
  42597. }
  42598. },
  42599. },
  42600. [
  42601. {
  42602. name: "Micro",
  42603. height: math.unit(2, "inches")
  42604. },
  42605. {
  42606. name: "Normal",
  42607. height: math.unit(2 + 8/12, "feet"),
  42608. default: true
  42609. },
  42610. {
  42611. name: "Macro",
  42612. height: math.unit(106, "feet")
  42613. },
  42614. ]
  42615. ))
  42616. characterMakers.push(() => makeCharacter(
  42617. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42618. {
  42619. front: {
  42620. height: math.unit(5.67, "feet"),
  42621. weight: math.unit(135, "lb"),
  42622. name: "Front",
  42623. image: {
  42624. source: "./media/characters/sarel/front.svg",
  42625. extra: 865/788,
  42626. bottom: 97/962
  42627. }
  42628. },
  42629. back: {
  42630. height: math.unit(5.67, "feet"),
  42631. weight: math.unit(135, "lb"),
  42632. name: "Back",
  42633. image: {
  42634. source: "./media/characters/sarel/back.svg",
  42635. extra: 857/777,
  42636. bottom: 32/889
  42637. }
  42638. },
  42639. chozoan: {
  42640. height: math.unit(5.67, "feet"),
  42641. weight: math.unit(135, "lb"),
  42642. name: "Chozoan",
  42643. image: {
  42644. source: "./media/characters/sarel/chozoan.svg",
  42645. extra: 865/788,
  42646. bottom: 97/962
  42647. }
  42648. },
  42649. current: {
  42650. height: math.unit(5.67, "feet"),
  42651. weight: math.unit(135, "lb"),
  42652. name: "Current",
  42653. image: {
  42654. source: "./media/characters/sarel/current.svg",
  42655. extra: 865/788,
  42656. bottom: 97/962
  42657. }
  42658. },
  42659. head: {
  42660. height: math.unit(1.77, "feet"),
  42661. name: "Head",
  42662. image: {
  42663. source: "./media/characters/sarel/head.svg"
  42664. }
  42665. },
  42666. claws: {
  42667. height: math.unit(1.8, "feet"),
  42668. name: "Claws",
  42669. image: {
  42670. source: "./media/characters/sarel/claws.svg"
  42671. }
  42672. },
  42673. clawsAlt: {
  42674. height: math.unit(1.8, "feet"),
  42675. name: "Claws-alt",
  42676. image: {
  42677. source: "./media/characters/sarel/claws-alt.svg"
  42678. }
  42679. },
  42680. },
  42681. [
  42682. {
  42683. name: "Normal",
  42684. height: math.unit(5.67, "feet"),
  42685. default: true
  42686. },
  42687. ]
  42688. ))
  42689. characterMakers.push(() => makeCharacter(
  42690. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42691. {
  42692. front: {
  42693. height: math.unit(5500, "feet"),
  42694. name: "Front",
  42695. image: {
  42696. source: "./media/characters/alyonia/front.svg",
  42697. extra: 1200/1135,
  42698. bottom: 29/1229
  42699. }
  42700. },
  42701. back: {
  42702. height: math.unit(5500, "feet"),
  42703. name: "Back",
  42704. image: {
  42705. source: "./media/characters/alyonia/back.svg",
  42706. extra: 1205/1138,
  42707. bottom: 10/1215
  42708. }
  42709. },
  42710. },
  42711. [
  42712. {
  42713. name: "Small",
  42714. height: math.unit(10, "feet")
  42715. },
  42716. {
  42717. name: "Macro",
  42718. height: math.unit(500, "feet")
  42719. },
  42720. {
  42721. name: "Mega Macro",
  42722. height: math.unit(5500, "feet"),
  42723. default: true
  42724. },
  42725. {
  42726. name: "Mega Macro+",
  42727. height: math.unit(500000, "feet")
  42728. },
  42729. {
  42730. name: "Giga Macro",
  42731. height: math.unit(3000, "miles")
  42732. },
  42733. {
  42734. name: "Tera Macro",
  42735. height: math.unit(2.8e6, "miles")
  42736. },
  42737. {
  42738. name: "Galactic",
  42739. height: math.unit(120000, "lightyears")
  42740. },
  42741. ]
  42742. ))
  42743. characterMakers.push(() => makeCharacter(
  42744. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42745. {
  42746. werewolf: {
  42747. height: math.unit(8, "feet"),
  42748. weight: math.unit(425, "lb"),
  42749. name: "Werewolf",
  42750. image: {
  42751. source: "./media/characters/autumn/werewolf.svg",
  42752. extra: 2154/2031,
  42753. bottom: 160/2314
  42754. }
  42755. },
  42756. human: {
  42757. height: math.unit(5 + 8/12, "feet"),
  42758. weight: math.unit(150, "lb"),
  42759. name: "Human",
  42760. image: {
  42761. source: "./media/characters/autumn/human.svg",
  42762. extra: 1200/1149,
  42763. bottom: 30/1230
  42764. }
  42765. },
  42766. },
  42767. [
  42768. {
  42769. name: "Normal",
  42770. height: math.unit(8, "feet"),
  42771. default: true
  42772. },
  42773. ]
  42774. ))
  42775. characterMakers.push(() => makeCharacter(
  42776. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42777. {
  42778. front: {
  42779. height: math.unit(8 + 5/12, "feet"),
  42780. weight: math.unit(825, "lb"),
  42781. name: "Front",
  42782. image: {
  42783. source: "./media/characters/cobalt-charizard/front.svg",
  42784. extra: 1268/1155,
  42785. bottom: 122/1390
  42786. }
  42787. },
  42788. side: {
  42789. height: math.unit(8 + 5/12, "feet"),
  42790. weight: math.unit(825, "lb"),
  42791. name: "Side",
  42792. image: {
  42793. source: "./media/characters/cobalt-charizard/side.svg",
  42794. extra: 1348/1257,
  42795. bottom: 58/1406
  42796. }
  42797. },
  42798. gMax: {
  42799. height: math.unit(134 + 11/12, "feet"),
  42800. name: "G-Max",
  42801. image: {
  42802. source: "./media/characters/cobalt-charizard/g-max.svg",
  42803. extra: 1835/1541,
  42804. bottom: 151/1986
  42805. }
  42806. },
  42807. },
  42808. [
  42809. {
  42810. name: "Normal",
  42811. height: math.unit(8 + 5/12, "feet"),
  42812. default: true
  42813. },
  42814. ]
  42815. ))
  42816. characterMakers.push(() => makeCharacter(
  42817. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42818. {
  42819. front: {
  42820. height: math.unit(6 + 3/12, "feet"),
  42821. weight: math.unit(210, "lb"),
  42822. name: "Front",
  42823. image: {
  42824. source: "./media/characters/stella/front.svg",
  42825. extra: 3549/3335,
  42826. bottom: 51/3600
  42827. }
  42828. },
  42829. },
  42830. [
  42831. {
  42832. name: "Normal",
  42833. height: math.unit(6 + 3/12, "feet"),
  42834. default: true
  42835. },
  42836. ]
  42837. ))
  42838. characterMakers.push(() => makeCharacter(
  42839. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42840. {
  42841. front: {
  42842. height: math.unit(5, "feet"),
  42843. weight: math.unit(90, "lb"),
  42844. name: "Front",
  42845. image: {
  42846. source: "./media/characters/riley-bishop/front.svg",
  42847. extra: 1450/1428,
  42848. bottom: 152/1602
  42849. }
  42850. },
  42851. },
  42852. [
  42853. {
  42854. name: "Normal",
  42855. height: math.unit(5, "feet"),
  42856. default: true
  42857. },
  42858. ]
  42859. ))
  42860. characterMakers.push(() => makeCharacter(
  42861. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42862. {
  42863. side: {
  42864. height: math.unit(8 + 2/12, "feet"),
  42865. weight: math.unit(500, "kg"),
  42866. name: "Side",
  42867. image: {
  42868. source: "./media/characters/theo-arcanine/side.svg",
  42869. extra: 1342/1074,
  42870. bottom: 111/1453
  42871. }
  42872. },
  42873. },
  42874. [
  42875. {
  42876. name: "Normal",
  42877. height: math.unit(8 + 2/12, "feet"),
  42878. default: true
  42879. },
  42880. ]
  42881. ))
  42882. characterMakers.push(() => makeCharacter(
  42883. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42884. {
  42885. front: {
  42886. height: math.unit(4, "feet"),
  42887. name: "Front",
  42888. image: {
  42889. source: "./media/characters/kali/front.svg",
  42890. extra: 1921/1357,
  42891. bottom: 70/1991
  42892. }
  42893. },
  42894. },
  42895. [
  42896. {
  42897. name: "Normal",
  42898. height: math.unit(4, "feet"),
  42899. default: true
  42900. },
  42901. {
  42902. name: "Macro",
  42903. height: math.unit(32, "meters")
  42904. },
  42905. {
  42906. name: "Macro+",
  42907. height: math.unit(150, "meters")
  42908. },
  42909. {
  42910. name: "Megamacro",
  42911. height: math.unit(7500, "meters")
  42912. },
  42913. {
  42914. name: "Megamacro+",
  42915. height: math.unit(80, "kilometers")
  42916. },
  42917. ]
  42918. ))
  42919. characterMakers.push(() => makeCharacter(
  42920. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42921. {
  42922. side: {
  42923. height: math.unit(5 + 11/12, "feet"),
  42924. weight: math.unit(236, "lb"),
  42925. name: "Side",
  42926. image: {
  42927. source: "./media/characters/gapp/side.svg",
  42928. extra: 775/340,
  42929. bottom: 58/833
  42930. }
  42931. },
  42932. mouth: {
  42933. height: math.unit(2.98, "feet"),
  42934. name: "Mouth",
  42935. image: {
  42936. source: "./media/characters/gapp/mouth.svg"
  42937. }
  42938. },
  42939. },
  42940. [
  42941. {
  42942. name: "Normal",
  42943. height: math.unit(5 + 1/12, "feet"),
  42944. default: true
  42945. },
  42946. ]
  42947. ))
  42948. characterMakers.push(() => makeCharacter(
  42949. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42950. {
  42951. front: {
  42952. height: math.unit(6, "feet"),
  42953. name: "Front",
  42954. image: {
  42955. source: "./media/characters/persephone/front.svg",
  42956. extra: 1895/1717,
  42957. bottom: 96/1991
  42958. }
  42959. },
  42960. back: {
  42961. height: math.unit(6, "feet"),
  42962. name: "Back",
  42963. image: {
  42964. source: "./media/characters/persephone/back.svg",
  42965. extra: 1868/1679,
  42966. bottom: 26/1894
  42967. }
  42968. },
  42969. casual: {
  42970. height: math.unit(6, "feet"),
  42971. name: "Casual",
  42972. image: {
  42973. source: "./media/characters/persephone/casual.svg",
  42974. extra: 1713/1541,
  42975. bottom: 76/1789
  42976. }
  42977. },
  42978. },
  42979. [
  42980. {
  42981. name: "Human Size",
  42982. height: math.unit(6, "feet")
  42983. },
  42984. {
  42985. name: "Big Steppy",
  42986. height: math.unit(600, "meters"),
  42987. default: true
  42988. },
  42989. {
  42990. name: "Galaxy Brain",
  42991. height: math.unit(1, "zettameter")
  42992. },
  42993. ]
  42994. ))
  42995. characterMakers.push(() => makeCharacter(
  42996. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42997. {
  42998. front: {
  42999. height: math.unit(1.85, "meters"),
  43000. name: "Front",
  43001. image: {
  43002. source: "./media/characters/riley-foxthing/front.svg",
  43003. extra: 1495/1354,
  43004. bottom: 122/1617
  43005. }
  43006. },
  43007. frontAlt: {
  43008. height: math.unit(1.85, "meters"),
  43009. name: "Front (Alt)",
  43010. image: {
  43011. source: "./media/characters/riley-foxthing/front-alt.svg",
  43012. extra: 1572/1389,
  43013. bottom: 116/1688
  43014. }
  43015. },
  43016. },
  43017. [
  43018. {
  43019. name: "Normal Sized",
  43020. height: math.unit(1.85, "meters"),
  43021. default: true
  43022. },
  43023. {
  43024. name: "Quite Sizable",
  43025. height: math.unit(5, "meters")
  43026. },
  43027. {
  43028. name: "Rather Large",
  43029. height: math.unit(20, "meters")
  43030. },
  43031. {
  43032. name: "Macro",
  43033. height: math.unit(450, "meters")
  43034. },
  43035. {
  43036. name: "Giga",
  43037. height: math.unit(5, "km")
  43038. },
  43039. ]
  43040. ))
  43041. characterMakers.push(() => makeCharacter(
  43042. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43043. {
  43044. front: {
  43045. height: math.unit(6, "feet"),
  43046. weight: math.unit(200, "lb"),
  43047. name: "Front",
  43048. image: {
  43049. source: "./media/characters/blizzard/front.svg",
  43050. extra: 1136/990,
  43051. bottom: 136/1272
  43052. }
  43053. },
  43054. back: {
  43055. height: math.unit(6, "feet"),
  43056. weight: math.unit(200, "lb"),
  43057. name: "Back",
  43058. image: {
  43059. source: "./media/characters/blizzard/back.svg",
  43060. extra: 1175/1034,
  43061. bottom: 97/1272
  43062. }
  43063. },
  43064. sitting: {
  43065. height: math.unit(3.725, "feet"),
  43066. weight: math.unit(200, "lb"),
  43067. name: "Sitting",
  43068. image: {
  43069. source: "./media/characters/blizzard/sitting.svg",
  43070. extra: 581/485,
  43071. bottom: 90/671
  43072. }
  43073. },
  43074. frontWizard: {
  43075. height: math.unit(7.9, "feet"),
  43076. weight: math.unit(200, "lb"),
  43077. name: "Front (Wizard)",
  43078. image: {
  43079. source: "./media/characters/blizzard/front-wizard.svg"
  43080. }
  43081. },
  43082. backWizard: {
  43083. height: math.unit(7.9, "feet"),
  43084. weight: math.unit(200, "lb"),
  43085. name: "Back (Wizard)",
  43086. image: {
  43087. source: "./media/characters/blizzard/back-wizard.svg"
  43088. }
  43089. },
  43090. frontNsfw: {
  43091. height: math.unit(6, "feet"),
  43092. weight: math.unit(200, "lb"),
  43093. name: "Front (NSFW)",
  43094. image: {
  43095. source: "./media/characters/blizzard/front-nsfw.svg",
  43096. extra: 1136/990,
  43097. bottom: 136/1272
  43098. }
  43099. },
  43100. backNsfw: {
  43101. height: math.unit(6, "feet"),
  43102. weight: math.unit(200, "lb"),
  43103. name: "Back (NSFW)",
  43104. image: {
  43105. source: "./media/characters/blizzard/back-nsfw.svg",
  43106. extra: 1175/1034,
  43107. bottom: 97/1272
  43108. }
  43109. },
  43110. sittingNsfw: {
  43111. height: math.unit(3.725, "feet"),
  43112. weight: math.unit(200, "lb"),
  43113. name: "Sitting (NSFW)",
  43114. image: {
  43115. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43116. extra: 581/485,
  43117. bottom: 90/671
  43118. }
  43119. },
  43120. wizardFrontNsfw: {
  43121. height: math.unit(7.9, "feet"),
  43122. weight: math.unit(200, "lb"),
  43123. name: "Wizard (Front, NSFW)",
  43124. image: {
  43125. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43126. }
  43127. },
  43128. },
  43129. [
  43130. {
  43131. name: "Normal",
  43132. height: math.unit(6, "feet"),
  43133. default: true
  43134. },
  43135. ]
  43136. ))
  43137. characterMakers.push(() => makeCharacter(
  43138. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43139. {
  43140. front: {
  43141. height: math.unit(5 + 2/12, "feet"),
  43142. name: "Front",
  43143. image: {
  43144. source: "./media/characters/lumi/front.svg",
  43145. extra: 1328/1268,
  43146. bottom: 103/1431
  43147. }
  43148. },
  43149. back: {
  43150. height: math.unit(5 + 2/12, "feet"),
  43151. name: "Back",
  43152. image: {
  43153. source: "./media/characters/lumi/back.svg",
  43154. extra: 1381/1327,
  43155. bottom: 43/1424
  43156. }
  43157. },
  43158. },
  43159. [
  43160. {
  43161. name: "Normal",
  43162. height: math.unit(5 + 2/12, "feet"),
  43163. default: true
  43164. },
  43165. ]
  43166. ))
  43167. characterMakers.push(() => makeCharacter(
  43168. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43169. {
  43170. front: {
  43171. height: math.unit(5 + 9/12, "feet"),
  43172. name: "Front",
  43173. image: {
  43174. source: "./media/characters/aliya-cotton/front.svg",
  43175. extra: 577/564,
  43176. bottom: 29/606
  43177. }
  43178. },
  43179. },
  43180. [
  43181. {
  43182. name: "Normal",
  43183. height: math.unit(5 + 9/12, "feet"),
  43184. default: true
  43185. },
  43186. ]
  43187. ))
  43188. characterMakers.push(() => makeCharacter(
  43189. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43190. {
  43191. front: {
  43192. height: math.unit(2.7, "meters"),
  43193. weight: math.unit(25000, "lb"),
  43194. name: "Front",
  43195. image: {
  43196. source: "./media/characters/noah-luxray/front.svg",
  43197. extra: 1644/825,
  43198. bottom: 339/1983
  43199. }
  43200. },
  43201. side: {
  43202. height: math.unit(2.97, "meters"),
  43203. weight: math.unit(25000, "lb"),
  43204. name: "Side",
  43205. image: {
  43206. source: "./media/characters/noah-luxray/side.svg",
  43207. extra: 1319/650,
  43208. bottom: 163/1482
  43209. }
  43210. },
  43211. dick: {
  43212. height: math.unit(7.4, "feet"),
  43213. weight: math.unit(2500, "lb"),
  43214. name: "Dick",
  43215. image: {
  43216. source: "./media/characters/noah-luxray/dick.svg"
  43217. }
  43218. },
  43219. dickAlt: {
  43220. height: math.unit(10.83, "feet"),
  43221. weight: math.unit(2500, "lb"),
  43222. name: "Dick-alt",
  43223. image: {
  43224. source: "./media/characters/noah-luxray/dick-alt.svg"
  43225. }
  43226. },
  43227. },
  43228. [
  43229. {
  43230. name: "BIG",
  43231. height: math.unit(2.7, "meters"),
  43232. default: true
  43233. },
  43234. ]
  43235. ))
  43236. characterMakers.push(() => makeCharacter(
  43237. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43238. {
  43239. standing: {
  43240. height: math.unit(183, "cm"),
  43241. weight: math.unit(68, "kg"),
  43242. name: "Standing",
  43243. image: {
  43244. source: "./media/characters/arion/standing.svg",
  43245. extra: 1869/1807,
  43246. bottom: 93/1962
  43247. }
  43248. },
  43249. reclining: {
  43250. height: math.unit(70.5, "cm"),
  43251. weight: math.unit(68, "lb"),
  43252. name: "Reclining",
  43253. image: {
  43254. source: "./media/characters/arion/reclining.svg",
  43255. extra: 937/870,
  43256. bottom: 63/1000
  43257. }
  43258. },
  43259. },
  43260. [
  43261. {
  43262. name: "Colossus Size, Low",
  43263. height: math.unit(33, "meters"),
  43264. default: true
  43265. },
  43266. {
  43267. name: "Colossus Size, Mid",
  43268. height: math.unit(52, "meters")
  43269. },
  43270. {
  43271. name: "Colossus Size, High",
  43272. height: math.unit(60, "meters")
  43273. },
  43274. {
  43275. name: "Titan Size, Low",
  43276. height: math.unit(91, "meters"),
  43277. },
  43278. {
  43279. name: "Titan Size, Mid",
  43280. height: math.unit(122, "meters")
  43281. },
  43282. {
  43283. name: "Titan Size, High",
  43284. height: math.unit(162, "meters")
  43285. },
  43286. ]
  43287. ))
  43288. characterMakers.push(() => makeCharacter(
  43289. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43290. {
  43291. front: {
  43292. height: math.unit(53, "meters"),
  43293. name: "Front",
  43294. image: {
  43295. source: "./media/characters/stellar-marbey/front.svg",
  43296. extra: 1913/1805,
  43297. bottom: 92/2005
  43298. }
  43299. },
  43300. back: {
  43301. height: math.unit(53, "meters"),
  43302. name: "Back",
  43303. image: {
  43304. source: "./media/characters/stellar-marbey/back.svg",
  43305. extra: 1960/1851,
  43306. bottom: 28/1988
  43307. }
  43308. },
  43309. mouth: {
  43310. height: math.unit(3.5, "meters"),
  43311. name: "Mouth",
  43312. image: {
  43313. source: "./media/characters/stellar-marbey/mouth.svg"
  43314. }
  43315. },
  43316. },
  43317. [
  43318. {
  43319. name: "Macro",
  43320. height: math.unit(53, "meters"),
  43321. default: true
  43322. },
  43323. ]
  43324. ))
  43325. characterMakers.push(() => makeCharacter(
  43326. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43327. {
  43328. front: {
  43329. height: math.unit(8 + 1/12, "feet"),
  43330. weight: math.unit(233, "lb"),
  43331. name: "Front",
  43332. image: {
  43333. source: "./media/characters/matsu/front.svg",
  43334. extra: 832/772,
  43335. bottom: 40/872
  43336. }
  43337. },
  43338. back: {
  43339. height: math.unit(8 + 1/12, "feet"),
  43340. weight: math.unit(233, "lb"),
  43341. name: "Back",
  43342. image: {
  43343. source: "./media/characters/matsu/back.svg",
  43344. extra: 839/780,
  43345. bottom: 47/886
  43346. }
  43347. },
  43348. },
  43349. [
  43350. {
  43351. name: "Normal",
  43352. height: math.unit(8 + 1/12, "feet"),
  43353. default: true
  43354. },
  43355. ]
  43356. ))
  43357. characterMakers.push(() => makeCharacter(
  43358. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43359. {
  43360. front: {
  43361. height: math.unit(4, "feet"),
  43362. weight: math.unit(148, "lb"),
  43363. name: "Front",
  43364. image: {
  43365. source: "./media/characters/thiz/front.svg",
  43366. extra: 1913/1748,
  43367. bottom: 62/1975
  43368. }
  43369. },
  43370. },
  43371. [
  43372. {
  43373. name: "Normal",
  43374. height: math.unit(4, "feet"),
  43375. default: true
  43376. },
  43377. ]
  43378. ))
  43379. characterMakers.push(() => makeCharacter(
  43380. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43381. {
  43382. front: {
  43383. height: math.unit(7 + 6/12, "feet"),
  43384. weight: math.unit(267, "lb"),
  43385. name: "Front",
  43386. image: {
  43387. source: "./media/characters/marcel/front.svg",
  43388. extra: 1221/1096,
  43389. bottom: 76/1297
  43390. }
  43391. },
  43392. },
  43393. [
  43394. {
  43395. name: "Normal",
  43396. height: math.unit(7 + 6/12, "feet"),
  43397. default: true
  43398. },
  43399. ]
  43400. ))
  43401. characterMakers.push(() => makeCharacter(
  43402. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43403. {
  43404. side: {
  43405. height: math.unit(42, "meters"),
  43406. name: "Side",
  43407. image: {
  43408. source: "./media/characters/flake/side.svg",
  43409. extra: 1525/1306,
  43410. bottom: 209/1734
  43411. }
  43412. },
  43413. },
  43414. [
  43415. {
  43416. name: "Normal",
  43417. height: math.unit(42, "meters"),
  43418. default: true
  43419. },
  43420. ]
  43421. ))
  43422. characterMakers.push(() => makeCharacter(
  43423. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43424. {
  43425. dressed: {
  43426. height: math.unit(6 + 4/12, "feet"),
  43427. weight: math.unit(520, "lb"),
  43428. name: "Dressed",
  43429. image: {
  43430. source: "./media/characters/someonne/dressed.svg",
  43431. extra: 1020/1010,
  43432. bottom: 178/1198
  43433. }
  43434. },
  43435. undressed: {
  43436. height: math.unit(6 + 4/12, "feet"),
  43437. weight: math.unit(520, "lb"),
  43438. name: "Undressed",
  43439. image: {
  43440. source: "./media/characters/someonne/undressed.svg",
  43441. extra: 1019/1014,
  43442. bottom: 169/1188
  43443. }
  43444. },
  43445. },
  43446. [
  43447. {
  43448. name: "Normal",
  43449. height: math.unit(6 + 4/12, "feet"),
  43450. default: true
  43451. },
  43452. ]
  43453. ))
  43454. characterMakers.push(() => makeCharacter(
  43455. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43456. {
  43457. front: {
  43458. height: math.unit(3, "feet"),
  43459. weight: math.unit(30, "lb"),
  43460. name: "Front",
  43461. image: {
  43462. source: "./media/characters/till/front.svg",
  43463. extra: 892/823,
  43464. bottom: 55/947
  43465. }
  43466. },
  43467. },
  43468. [
  43469. {
  43470. name: "Normal",
  43471. height: math.unit(3, "feet"),
  43472. default: true
  43473. },
  43474. ]
  43475. ))
  43476. characterMakers.push(() => makeCharacter(
  43477. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43478. {
  43479. front: {
  43480. height: math.unit(9 + 8/12, "feet"),
  43481. weight: math.unit(800, "lb"),
  43482. name: "Front",
  43483. image: {
  43484. source: "./media/characters/sydney-heki/front.svg",
  43485. extra: 1360/1300,
  43486. bottom: 22/1382
  43487. }
  43488. },
  43489. back: {
  43490. height: math.unit(9 + 8/12, "feet"),
  43491. weight: math.unit(800, "lb"),
  43492. name: "Back",
  43493. image: {
  43494. source: "./media/characters/sydney-heki/back.svg",
  43495. extra: 1356/1293,
  43496. bottom: 12/1368
  43497. }
  43498. },
  43499. frontDressed: {
  43500. height: math.unit(9 + 8/12, "feet"),
  43501. weight: math.unit(800, "lb"),
  43502. name: "Front-dressed",
  43503. image: {
  43504. source: "./media/characters/sydney-heki/front-dressed.svg",
  43505. extra: 1360/1300,
  43506. bottom: 22/1382
  43507. }
  43508. },
  43509. },
  43510. [
  43511. {
  43512. name: "Normal",
  43513. height: math.unit(9 + 8/12, "feet"),
  43514. default: true
  43515. },
  43516. {
  43517. name: "Macro",
  43518. height: math.unit(500, "feet")
  43519. },
  43520. {
  43521. name: "Megamacro",
  43522. height: math.unit(3.6, "miles")
  43523. },
  43524. ]
  43525. ))
  43526. characterMakers.push(() => makeCharacter(
  43527. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43528. {
  43529. front: {
  43530. height: math.unit(200, "cm"),
  43531. weight: math.unit(250, "lb"),
  43532. name: "Front",
  43533. image: {
  43534. source: "./media/characters/fowler-karlsson/front.svg",
  43535. extra: 897/845,
  43536. bottom: 123/1020
  43537. }
  43538. },
  43539. back: {
  43540. height: math.unit(200, "cm"),
  43541. weight: math.unit(250, "lb"),
  43542. name: "Back",
  43543. image: {
  43544. source: "./media/characters/fowler-karlsson/back.svg",
  43545. extra: 999/944,
  43546. bottom: 26/1025
  43547. }
  43548. },
  43549. dick: {
  43550. height: math.unit(1.92, "feet"),
  43551. weight: math.unit(150, "lb"),
  43552. name: "Dick",
  43553. image: {
  43554. source: "./media/characters/fowler-karlsson/dick.svg"
  43555. }
  43556. },
  43557. },
  43558. [
  43559. {
  43560. name: "Normal",
  43561. height: math.unit(200, "cm"),
  43562. default: true
  43563. },
  43564. {
  43565. name: "Smaller Macro",
  43566. height: math.unit(90, "m")
  43567. },
  43568. {
  43569. name: "Macro",
  43570. height: math.unit(150, "m")
  43571. },
  43572. {
  43573. name: "Bigger Macro",
  43574. height: math.unit(300, "m")
  43575. },
  43576. ]
  43577. ))
  43578. characterMakers.push(() => makeCharacter(
  43579. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43580. {
  43581. side: {
  43582. height: math.unit(8 + 2/12, "feet"),
  43583. weight: math.unit(1, "tonne"),
  43584. name: "Side",
  43585. image: {
  43586. source: "./media/characters/rylide/side.svg",
  43587. extra: 1318/1034,
  43588. bottom: 106/1424
  43589. }
  43590. },
  43591. sitting: {
  43592. height: math.unit(303, "cm"),
  43593. weight: math.unit(1, "tonne"),
  43594. name: "Sitting",
  43595. image: {
  43596. source: "./media/characters/rylide/sitting.svg",
  43597. extra: 1303/1103,
  43598. bottom: 36/1339
  43599. }
  43600. },
  43601. },
  43602. [
  43603. {
  43604. name: "Normal",
  43605. height: math.unit(8 + 2/12, "feet"),
  43606. default: true
  43607. },
  43608. ]
  43609. ))
  43610. characterMakers.push(() => makeCharacter(
  43611. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43612. {
  43613. front: {
  43614. height: math.unit(5 + 10/12, "feet"),
  43615. weight: math.unit(160, "lb"),
  43616. name: "Front",
  43617. image: {
  43618. source: "./media/characters/pudask/front.svg",
  43619. extra: 1616/1590,
  43620. bottom: 161/1777
  43621. }
  43622. },
  43623. },
  43624. [
  43625. {
  43626. name: "Ferret Height",
  43627. height: math.unit(2 + 5/12, "feet")
  43628. },
  43629. {
  43630. name: "Canon Height",
  43631. height: math.unit(5 + 10/12, "feet"),
  43632. default: true
  43633. },
  43634. ]
  43635. ))
  43636. characterMakers.push(() => makeCharacter(
  43637. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43638. {
  43639. front: {
  43640. height: math.unit(3 + 6/12, "feet"),
  43641. weight: math.unit(60, "lb"),
  43642. name: "Front",
  43643. image: {
  43644. source: "./media/characters/ramita/front.svg",
  43645. extra: 1402/1232,
  43646. bottom: 62/1464
  43647. }
  43648. },
  43649. dressed: {
  43650. height: math.unit(3 + 6/12, "feet"),
  43651. weight: math.unit(60, "lb"),
  43652. name: "Dressed",
  43653. image: {
  43654. source: "./media/characters/ramita/dressed.svg",
  43655. extra: 1534/1249,
  43656. bottom: 50/1584
  43657. }
  43658. },
  43659. },
  43660. [
  43661. {
  43662. name: "Normal",
  43663. height: math.unit(3 + 6/12, "feet"),
  43664. default: true
  43665. },
  43666. ]
  43667. ))
  43668. characterMakers.push(() => makeCharacter(
  43669. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43670. {
  43671. front: {
  43672. height: math.unit(8, "feet"),
  43673. name: "Front",
  43674. image: {
  43675. source: "./media/characters/ark/front.svg",
  43676. extra: 772/693,
  43677. bottom: 45/817
  43678. }
  43679. },
  43680. },
  43681. [
  43682. {
  43683. name: "Normal",
  43684. height: math.unit(8, "feet"),
  43685. default: true
  43686. },
  43687. ]
  43688. ))
  43689. characterMakers.push(() => makeCharacter(
  43690. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43691. {
  43692. front: {
  43693. height: math.unit(6, "feet"),
  43694. weight: math.unit(250, "lb"),
  43695. volume: math.unit(5/8, "gallons"),
  43696. name: "Front",
  43697. image: {
  43698. source: "./media/characters/ludwig-horn/front.svg",
  43699. extra: 1782/1635,
  43700. bottom: 96/1878
  43701. }
  43702. },
  43703. back: {
  43704. height: math.unit(6, "feet"),
  43705. weight: math.unit(250, "lb"),
  43706. volume: math.unit(5/8, "gallons"),
  43707. name: "Back",
  43708. image: {
  43709. source: "./media/characters/ludwig-horn/back.svg",
  43710. extra: 1874/1729,
  43711. bottom: 27/1901
  43712. }
  43713. },
  43714. dick: {
  43715. height: math.unit(1.05, "feet"),
  43716. weight: math.unit(15, "lb"),
  43717. volume: math.unit(5/8, "gallons"),
  43718. name: "Dick",
  43719. image: {
  43720. source: "./media/characters/ludwig-horn/dick.svg"
  43721. }
  43722. },
  43723. },
  43724. [
  43725. {
  43726. name: "Small",
  43727. height: math.unit(6, "feet")
  43728. },
  43729. {
  43730. name: "Typical",
  43731. height: math.unit(12, "feet"),
  43732. default: true
  43733. },
  43734. {
  43735. name: "Building",
  43736. height: math.unit(80, "feet")
  43737. },
  43738. {
  43739. name: "Town",
  43740. height: math.unit(800, "feet")
  43741. },
  43742. {
  43743. name: "Kingdom",
  43744. height: math.unit(80000, "feet")
  43745. },
  43746. {
  43747. name: "Planet",
  43748. height: math.unit(8000000, "feet")
  43749. },
  43750. {
  43751. name: "Universe",
  43752. height: math.unit(8000000000, "feet")
  43753. },
  43754. {
  43755. name: "Transcended",
  43756. height: math.unit(8e27, "feet")
  43757. },
  43758. ]
  43759. ))
  43760. characterMakers.push(() => makeCharacter(
  43761. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43762. {
  43763. front: {
  43764. height: math.unit(5, "feet"),
  43765. weight: math.unit(50, "kg"),
  43766. name: "Front",
  43767. image: {
  43768. source: "./media/characters/biot-avery/front.svg",
  43769. extra: 1295/1232,
  43770. bottom: 86/1381
  43771. }
  43772. },
  43773. },
  43774. [
  43775. {
  43776. name: "Normal",
  43777. height: math.unit(5, "feet"),
  43778. default: true
  43779. },
  43780. ]
  43781. ))
  43782. characterMakers.push(() => makeCharacter(
  43783. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43784. {
  43785. front: {
  43786. height: math.unit(6, "feet"),
  43787. name: "Front",
  43788. image: {
  43789. source: "./media/characters/kitsune-kiro/front.svg",
  43790. extra: 1270/1158,
  43791. bottom: 42/1312
  43792. }
  43793. },
  43794. frontAlt: {
  43795. height: math.unit(6, "feet"),
  43796. name: "Front-alt",
  43797. image: {
  43798. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43799. extra: 1130/1081,
  43800. bottom: 36/1166
  43801. }
  43802. },
  43803. },
  43804. [
  43805. {
  43806. name: "Smol",
  43807. height: math.unit(3, "feet")
  43808. },
  43809. {
  43810. name: "Normal",
  43811. height: math.unit(6, "feet"),
  43812. default: true
  43813. },
  43814. ]
  43815. ))
  43816. characterMakers.push(() => makeCharacter(
  43817. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43818. {
  43819. front: {
  43820. height: math.unit(6, "feet"),
  43821. weight: math.unit(125, "lb"),
  43822. name: "Front",
  43823. image: {
  43824. source: "./media/characters/jack-thatcher/front.svg",
  43825. extra: 1474/1370,
  43826. bottom: 26/1500
  43827. }
  43828. },
  43829. back: {
  43830. height: math.unit(6, "feet"),
  43831. weight: math.unit(125, "lb"),
  43832. name: "Back",
  43833. image: {
  43834. source: "./media/characters/jack-thatcher/back.svg",
  43835. extra: 1489/1384,
  43836. bottom: 18/1507
  43837. }
  43838. },
  43839. },
  43840. [
  43841. {
  43842. name: "Normal",
  43843. height: math.unit(6, "feet"),
  43844. default: true
  43845. },
  43846. {
  43847. name: "Macro",
  43848. height: math.unit(75, "feet")
  43849. },
  43850. {
  43851. name: "Macro-er",
  43852. height: math.unit(250, "feet")
  43853. },
  43854. ]
  43855. ))
  43856. characterMakers.push(() => makeCharacter(
  43857. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43858. {
  43859. front: {
  43860. height: math.unit(7, "feet"),
  43861. weight: math.unit(110, "kg"),
  43862. name: "Front",
  43863. image: {
  43864. source: "./media/characters/max-hyper/front.svg",
  43865. extra: 1969/1881,
  43866. bottom: 49/2018
  43867. }
  43868. },
  43869. },
  43870. [
  43871. {
  43872. name: "Normal",
  43873. height: math.unit(7, "feet"),
  43874. default: true
  43875. },
  43876. ]
  43877. ))
  43878. characterMakers.push(() => makeCharacter(
  43879. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43880. {
  43881. front: {
  43882. height: math.unit(5 + 5/12, "feet"),
  43883. weight: math.unit(160, "lb"),
  43884. name: "Front",
  43885. image: {
  43886. source: "./media/characters/spook/front.svg",
  43887. extra: 794/791,
  43888. bottom: 54/848
  43889. }
  43890. },
  43891. back: {
  43892. height: math.unit(5 + 5/12, "feet"),
  43893. weight: math.unit(160, "lb"),
  43894. name: "Back",
  43895. image: {
  43896. source: "./media/characters/spook/back.svg",
  43897. extra: 812/798,
  43898. bottom: 32/844
  43899. }
  43900. },
  43901. },
  43902. [
  43903. {
  43904. name: "Normal",
  43905. height: math.unit(5 + 5/12, "feet"),
  43906. default: true
  43907. },
  43908. ]
  43909. ))
  43910. characterMakers.push(() => makeCharacter(
  43911. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43912. {
  43913. front: {
  43914. height: math.unit(18, "feet"),
  43915. name: "Front",
  43916. image: {
  43917. source: "./media/characters/xeaduulix/front.svg",
  43918. extra: 1380/1166,
  43919. bottom: 110/1490
  43920. }
  43921. },
  43922. back: {
  43923. height: math.unit(18, "feet"),
  43924. name: "Back",
  43925. image: {
  43926. source: "./media/characters/xeaduulix/back.svg",
  43927. extra: 1592/1170,
  43928. bottom: 128/1720
  43929. }
  43930. },
  43931. frontNsfw: {
  43932. height: math.unit(18, "feet"),
  43933. name: "Front (NSFW)",
  43934. image: {
  43935. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43936. extra: 1380/1166,
  43937. bottom: 110/1490
  43938. }
  43939. },
  43940. backNsfw: {
  43941. height: math.unit(18, "feet"),
  43942. name: "Back (NSFW)",
  43943. image: {
  43944. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43945. extra: 1592/1170,
  43946. bottom: 128/1720
  43947. }
  43948. },
  43949. },
  43950. [
  43951. {
  43952. name: "Normal",
  43953. height: math.unit(18, "feet"),
  43954. default: true
  43955. },
  43956. ]
  43957. ))
  43958. characterMakers.push(() => makeCharacter(
  43959. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43960. {
  43961. spreadWings: {
  43962. height: math.unit(20, "feet"),
  43963. name: "Spread Wings",
  43964. image: {
  43965. source: "./media/characters/fledge/spread-wings.svg",
  43966. extra: 693/635,
  43967. bottom: 26/719
  43968. }
  43969. },
  43970. front: {
  43971. height: math.unit(20, "feet"),
  43972. name: "Front",
  43973. image: {
  43974. source: "./media/characters/fledge/front.svg",
  43975. extra: 684/637,
  43976. bottom: 18/702
  43977. }
  43978. },
  43979. frontAlt: {
  43980. height: math.unit(20, "feet"),
  43981. name: "Front (Alt)",
  43982. image: {
  43983. source: "./media/characters/fledge/front-alt.svg",
  43984. extra: 708/664,
  43985. bottom: 13/721
  43986. }
  43987. },
  43988. back: {
  43989. height: math.unit(20, "feet"),
  43990. name: "Back",
  43991. image: {
  43992. source: "./media/characters/fledge/back.svg",
  43993. extra: 718/634,
  43994. bottom: 22/740
  43995. }
  43996. },
  43997. head: {
  43998. height: math.unit(5.55, "feet"),
  43999. name: "Head",
  44000. image: {
  44001. source: "./media/characters/fledge/head.svg"
  44002. }
  44003. },
  44004. headAlt: {
  44005. height: math.unit(5.1, "feet"),
  44006. name: "Head (Alt)",
  44007. image: {
  44008. source: "./media/characters/fledge/head-alt.svg"
  44009. }
  44010. },
  44011. },
  44012. [
  44013. {
  44014. name: "Small",
  44015. height: math.unit(6 + 2/12, "feet")
  44016. },
  44017. {
  44018. name: "Big",
  44019. height: math.unit(20, "feet"),
  44020. default: true
  44021. },
  44022. {
  44023. name: "Giant",
  44024. height: math.unit(100, "feet")
  44025. },
  44026. {
  44027. name: "Macro",
  44028. height: math.unit(200, "feet")
  44029. },
  44030. ]
  44031. ))
  44032. characterMakers.push(() => makeCharacter(
  44033. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44034. {
  44035. front: {
  44036. height: math.unit(1, "meter"),
  44037. name: "Front",
  44038. image: {
  44039. source: "./media/characters/atlas-morenai/front.svg",
  44040. extra: 1275/1043,
  44041. bottom: 19/1294
  44042. }
  44043. },
  44044. back: {
  44045. height: math.unit(1, "meter"),
  44046. name: "Back",
  44047. image: {
  44048. source: "./media/characters/atlas-morenai/back.svg",
  44049. extra: 1141/1001,
  44050. bottom: 25/1166
  44051. }
  44052. },
  44053. },
  44054. [
  44055. {
  44056. name: "Normal",
  44057. height: math.unit(1, "meter"),
  44058. default: true
  44059. },
  44060. {
  44061. name: "Magic-Infused",
  44062. height: math.unit(5, "meters")
  44063. },
  44064. ]
  44065. ))
  44066. characterMakers.push(() => makeCharacter(
  44067. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44068. {
  44069. front: {
  44070. height: math.unit(5, "meters"),
  44071. name: "Front",
  44072. image: {
  44073. source: "./media/characters/cintia/front.svg",
  44074. extra: 1312/1228,
  44075. bottom: 38/1350
  44076. }
  44077. },
  44078. back: {
  44079. height: math.unit(5, "meters"),
  44080. name: "Back",
  44081. image: {
  44082. source: "./media/characters/cintia/back.svg",
  44083. extra: 1260/1166,
  44084. bottom: 98/1358
  44085. }
  44086. },
  44087. frontDick: {
  44088. height: math.unit(5, "meters"),
  44089. name: "Front (Dick)",
  44090. image: {
  44091. source: "./media/characters/cintia/front-dick.svg",
  44092. extra: 1312/1228,
  44093. bottom: 38/1350
  44094. }
  44095. },
  44096. backDick: {
  44097. height: math.unit(5, "meters"),
  44098. name: "Back (Dick)",
  44099. image: {
  44100. source: "./media/characters/cintia/back-dick.svg",
  44101. extra: 1260/1166,
  44102. bottom: 98/1358
  44103. }
  44104. },
  44105. bust: {
  44106. height: math.unit(1.97, "meters"),
  44107. name: "Bust",
  44108. image: {
  44109. source: "./media/characters/cintia/bust.svg",
  44110. extra: 617/565,
  44111. bottom: 0/617
  44112. }
  44113. },
  44114. },
  44115. [
  44116. {
  44117. name: "Normal",
  44118. height: math.unit(5, "meters"),
  44119. default: true
  44120. },
  44121. ]
  44122. ))
  44123. characterMakers.push(() => makeCharacter(
  44124. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44125. {
  44126. side: {
  44127. height: math.unit(100, "feet"),
  44128. name: "Side",
  44129. image: {
  44130. source: "./media/characters/denora/side.svg",
  44131. extra: 875/803,
  44132. bottom: 9/884
  44133. }
  44134. },
  44135. },
  44136. [
  44137. {
  44138. name: "Standard",
  44139. height: math.unit(100, "feet"),
  44140. default: true
  44141. },
  44142. {
  44143. name: "Grand",
  44144. height: math.unit(1000, "feet")
  44145. },
  44146. {
  44147. name: "Conquering",
  44148. height: math.unit(10000, "feet")
  44149. },
  44150. ]
  44151. ))
  44152. characterMakers.push(() => makeCharacter(
  44153. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44154. {
  44155. dressed: {
  44156. height: math.unit(8 + 5/12, "feet"),
  44157. weight: math.unit(700, "lb"),
  44158. name: "Dressed",
  44159. image: {
  44160. source: "./media/characters/kiva/dressed.svg",
  44161. extra: 1102/1055,
  44162. bottom: 60/1162
  44163. }
  44164. },
  44165. nude: {
  44166. height: math.unit(8 + 5/12, "feet"),
  44167. weight: math.unit(700, "lb"),
  44168. name: "Nude",
  44169. image: {
  44170. source: "./media/characters/kiva/nude.svg",
  44171. extra: 1102/1055,
  44172. bottom: 60/1162
  44173. }
  44174. },
  44175. },
  44176. [
  44177. {
  44178. name: "Base Height",
  44179. height: math.unit(8 + 5/12, "feet"),
  44180. default: true
  44181. },
  44182. {
  44183. name: "Macro",
  44184. height: math.unit(100, "feet")
  44185. },
  44186. {
  44187. name: "Max",
  44188. height: math.unit(3280, "feet")
  44189. },
  44190. ]
  44191. ))
  44192. characterMakers.push(() => makeCharacter(
  44193. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44194. {
  44195. front: {
  44196. height: math.unit(6 + 8/12, "feet"),
  44197. weight: math.unit(250, "lb"),
  44198. name: "Front",
  44199. image: {
  44200. source: "./media/characters/ztragon/front.svg",
  44201. extra: 1825/1684,
  44202. bottom: 98/1923
  44203. }
  44204. },
  44205. },
  44206. [
  44207. {
  44208. name: "Normal",
  44209. height: math.unit(6 + 8/12, "feet"),
  44210. default: true
  44211. },
  44212. {
  44213. name: "Macro",
  44214. height: math.unit(80, "feet")
  44215. },
  44216. ]
  44217. ))
  44218. characterMakers.push(() => makeCharacter(
  44219. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44220. {
  44221. front: {
  44222. height: math.unit(10.4, "feet"),
  44223. weight: math.unit(2, "tons"),
  44224. name: "Front",
  44225. image: {
  44226. source: "./media/characters/yesenia/front.svg",
  44227. extra: 1479/1474,
  44228. bottom: 233/1712
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(10.4, "feet"),
  44236. default: true
  44237. },
  44238. ]
  44239. ))
  44240. characterMakers.push(() => makeCharacter(
  44241. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44242. {
  44243. normal: {
  44244. height: math.unit(6 + 1/12, "feet"),
  44245. weight: math.unit(180, "lb"),
  44246. name: "Normal",
  44247. image: {
  44248. source: "./media/characters/leanne-lycheborne/normal.svg",
  44249. extra: 1748/1660,
  44250. bottom: 98/1846
  44251. }
  44252. },
  44253. were: {
  44254. height: math.unit(12, "feet"),
  44255. weight: math.unit(1600, "lb"),
  44256. name: "Were",
  44257. image: {
  44258. source: "./media/characters/leanne-lycheborne/were.svg",
  44259. extra: 1485/1432,
  44260. bottom: 66/1551
  44261. }
  44262. },
  44263. },
  44264. [
  44265. {
  44266. name: "Normal",
  44267. height: math.unit(6 + 1/12, "feet"),
  44268. default: true
  44269. },
  44270. ]
  44271. ))
  44272. characterMakers.push(() => makeCharacter(
  44273. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44274. {
  44275. side: {
  44276. height: math.unit(13, "feet"),
  44277. name: "Side",
  44278. image: {
  44279. source: "./media/characters/kira-tyler/side.svg",
  44280. extra: 693/393,
  44281. bottom: 58/751
  44282. }
  44283. },
  44284. },
  44285. [
  44286. {
  44287. name: "Normal",
  44288. height: math.unit(13, "feet"),
  44289. default: true
  44290. },
  44291. ]
  44292. ))
  44293. characterMakers.push(() => makeCharacter(
  44294. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44295. {
  44296. front: {
  44297. height: math.unit(10.3, "feet"),
  44298. weight: math.unit(150, "lb"),
  44299. name: "Front",
  44300. image: {
  44301. source: "./media/characters/blaze/front.svg",
  44302. extra: 1378/1286,
  44303. bottom: 172/1550
  44304. }
  44305. },
  44306. },
  44307. [
  44308. {
  44309. name: "Normal",
  44310. height: math.unit(10.3, "feet"),
  44311. default: true
  44312. },
  44313. ]
  44314. ))
  44315. characterMakers.push(() => makeCharacter(
  44316. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44317. {
  44318. side: {
  44319. height: math.unit(2, "meters"),
  44320. weight: math.unit(400, "kg"),
  44321. name: "Side",
  44322. image: {
  44323. source: "./media/characters/anu/side.svg",
  44324. extra: 506/394,
  44325. bottom: 18/524
  44326. }
  44327. },
  44328. },
  44329. [
  44330. {
  44331. name: "Humanoid",
  44332. height: math.unit(2, "meters")
  44333. },
  44334. {
  44335. name: "Normal",
  44336. height: math.unit(5, "meters"),
  44337. default: true
  44338. },
  44339. ]
  44340. ))
  44341. characterMakers.push(() => makeCharacter(
  44342. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44343. {
  44344. front: {
  44345. height: math.unit(5 + 5/12, "feet"),
  44346. weight: math.unit(170, "lb"),
  44347. name: "Front",
  44348. image: {
  44349. source: "./media/characters/synx-the-lynx/front.svg",
  44350. extra: 1893/1745,
  44351. bottom: 17/1910
  44352. }
  44353. },
  44354. side: {
  44355. height: math.unit(5 + 5/12, "feet"),
  44356. weight: math.unit(170, "lb"),
  44357. name: "Side",
  44358. image: {
  44359. source: "./media/characters/synx-the-lynx/side.svg",
  44360. extra: 1884/1740,
  44361. bottom: 39/1923
  44362. }
  44363. },
  44364. back: {
  44365. height: math.unit(5 + 5/12, "feet"),
  44366. weight: math.unit(170, "lb"),
  44367. name: "Back",
  44368. image: {
  44369. source: "./media/characters/synx-the-lynx/back.svg",
  44370. extra: 1903/1755,
  44371. bottom: 14/1917
  44372. }
  44373. },
  44374. },
  44375. [
  44376. {
  44377. name: "Normal",
  44378. height: math.unit(5 + 5/12, "feet"),
  44379. default: true
  44380. },
  44381. ]
  44382. ))
  44383. characterMakers.push(() => makeCharacter(
  44384. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44385. {
  44386. back: {
  44387. height: math.unit(15, "feet"),
  44388. name: "Back",
  44389. image: {
  44390. source: "./media/characters/nadezda-fex/back.svg",
  44391. extra: 1695/1481,
  44392. bottom: 25/1720
  44393. }
  44394. },
  44395. },
  44396. [
  44397. {
  44398. name: "Normal",
  44399. height: math.unit(15, "feet"),
  44400. default: true
  44401. },
  44402. {
  44403. name: "Macro",
  44404. height: math.unit(2.5, "miles")
  44405. },
  44406. {
  44407. name: "Goddess",
  44408. height: math.unit(2, "multiverses")
  44409. },
  44410. ]
  44411. ))
  44412. characterMakers.push(() => makeCharacter(
  44413. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44414. {
  44415. front: {
  44416. height: math.unit(216, "cm"),
  44417. name: "Front",
  44418. image: {
  44419. source: "./media/characters/lev/front.svg",
  44420. extra: 1728/1670,
  44421. bottom: 82/1810
  44422. }
  44423. },
  44424. back: {
  44425. height: math.unit(216, "cm"),
  44426. name: "Back",
  44427. image: {
  44428. source: "./media/characters/lev/back.svg",
  44429. extra: 1738/1675,
  44430. bottom: 24/1762
  44431. }
  44432. },
  44433. dressed: {
  44434. height: math.unit(216, "cm"),
  44435. name: "Dressed",
  44436. image: {
  44437. source: "./media/characters/lev/dressed.svg",
  44438. extra: 1397/1351,
  44439. bottom: 73/1470
  44440. }
  44441. },
  44442. head: {
  44443. height: math.unit(0.51, "meter"),
  44444. name: "Head",
  44445. image: {
  44446. source: "./media/characters/lev/head.svg"
  44447. }
  44448. },
  44449. },
  44450. [
  44451. {
  44452. name: "Normal",
  44453. height: math.unit(216, "cm"),
  44454. default: true
  44455. },
  44456. {
  44457. name: "Relatively Macro",
  44458. height: math.unit(80, "meters")
  44459. },
  44460. {
  44461. name: "Megamacro",
  44462. height: math.unit(21600, "meters")
  44463. },
  44464. {
  44465. name: "Megamacro+",
  44466. height: math.unit(64800, "meters")
  44467. },
  44468. ]
  44469. ))
  44470. characterMakers.push(() => makeCharacter(
  44471. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44472. {
  44473. front: {
  44474. height: math.unit(2, "meters"),
  44475. weight: math.unit(80, "kg"),
  44476. name: "Front",
  44477. image: {
  44478. source: "./media/characters/moka/front.svg",
  44479. extra: 1337/1255,
  44480. bottom: 58/1395
  44481. }
  44482. },
  44483. },
  44484. [
  44485. {
  44486. name: "Micro",
  44487. height: math.unit(15, "cm")
  44488. },
  44489. {
  44490. name: "Normal",
  44491. height: math.unit(2, "meters"),
  44492. default: true
  44493. },
  44494. {
  44495. name: "Macro",
  44496. height: math.unit(20, "meters"),
  44497. },
  44498. ]
  44499. ))
  44500. characterMakers.push(() => makeCharacter(
  44501. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44502. {
  44503. front: {
  44504. height: math.unit(9, "feet"),
  44505. weight: math.unit(240, "lb"),
  44506. name: "Front",
  44507. image: {
  44508. source: "./media/characters/kuzco/front.svg",
  44509. extra: 1593/1487,
  44510. bottom: 32/1625
  44511. }
  44512. },
  44513. side: {
  44514. height: math.unit(9, "feet"),
  44515. weight: math.unit(240, "lb"),
  44516. name: "Side",
  44517. image: {
  44518. source: "./media/characters/kuzco/side.svg",
  44519. extra: 1575/1485,
  44520. bottom: 30/1605
  44521. }
  44522. },
  44523. back: {
  44524. height: math.unit(9, "feet"),
  44525. weight: math.unit(240, "lb"),
  44526. name: "Back",
  44527. image: {
  44528. source: "./media/characters/kuzco/back.svg",
  44529. extra: 1603/1514,
  44530. bottom: 14/1617
  44531. }
  44532. },
  44533. },
  44534. [
  44535. {
  44536. name: "Normal",
  44537. height: math.unit(9, "feet"),
  44538. default: true
  44539. },
  44540. ]
  44541. ))
  44542. characterMakers.push(() => makeCharacter(
  44543. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44544. {
  44545. side: {
  44546. height: math.unit(2, "meters"),
  44547. weight: math.unit(300, "kg"),
  44548. name: "Side",
  44549. image: {
  44550. source: "./media/characters/ceruleus/side.svg",
  44551. extra: 1068/974,
  44552. bottom: 126/1194
  44553. }
  44554. },
  44555. },
  44556. [
  44557. {
  44558. name: "Normal",
  44559. height: math.unit(16, "meters"),
  44560. default: true
  44561. },
  44562. ]
  44563. ))
  44564. characterMakers.push(() => makeCharacter(
  44565. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44566. {
  44567. front: {
  44568. height: math.unit(9, "feet"),
  44569. weight: math.unit(500, "kg"),
  44570. name: "Front",
  44571. image: {
  44572. source: "./media/characters/acouya/front.svg",
  44573. extra: 1660/1473,
  44574. bottom: 28/1688
  44575. }
  44576. },
  44577. },
  44578. [
  44579. {
  44580. name: "Normal",
  44581. height: math.unit(9, "feet"),
  44582. default: true
  44583. },
  44584. ]
  44585. ))
  44586. characterMakers.push(() => makeCharacter(
  44587. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44588. {
  44589. front: {
  44590. height: math.unit(5 + 6/12, "feet"),
  44591. weight: math.unit(195, "lb"),
  44592. name: "Front",
  44593. image: {
  44594. source: "./media/characters/vant/front.svg",
  44595. extra: 1396/1320,
  44596. bottom: 20/1416
  44597. }
  44598. },
  44599. back: {
  44600. height: math.unit(5 + 6/12, "feet"),
  44601. weight: math.unit(195, "lb"),
  44602. name: "Back",
  44603. image: {
  44604. source: "./media/characters/vant/back.svg",
  44605. extra: 1396/1320,
  44606. bottom: 20/1416
  44607. }
  44608. },
  44609. maw: {
  44610. height: math.unit(0.75, "feet"),
  44611. name: "Maw",
  44612. image: {
  44613. source: "./media/characters/vant/maw.svg"
  44614. }
  44615. },
  44616. paw: {
  44617. height: math.unit(1.07, "feet"),
  44618. name: "Paw",
  44619. image: {
  44620. source: "./media/characters/vant/paw.svg"
  44621. }
  44622. },
  44623. },
  44624. [
  44625. {
  44626. name: "Micro",
  44627. height: math.unit(0.25, "inches")
  44628. },
  44629. {
  44630. name: "Normal",
  44631. height: math.unit(5 + 6/12, "feet"),
  44632. default: true
  44633. },
  44634. {
  44635. name: "Macro",
  44636. height: math.unit(75, "feet")
  44637. },
  44638. ]
  44639. ))
  44640. characterMakers.push(() => makeCharacter(
  44641. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44642. {
  44643. front: {
  44644. height: math.unit(30, "meters"),
  44645. weight: math.unit(363, "tons"),
  44646. name: "Front",
  44647. image: {
  44648. source: "./media/characters/ahra/front.svg",
  44649. extra: 1914/1814,
  44650. bottom: 46/1960
  44651. }
  44652. },
  44653. },
  44654. [
  44655. {
  44656. name: "Macro",
  44657. height: math.unit(30, "meters"),
  44658. default: true
  44659. },
  44660. ]
  44661. ))
  44662. characterMakers.push(() => makeCharacter(
  44663. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44664. {
  44665. undressed: {
  44666. height: math.unit(2, "m"),
  44667. weight: math.unit(250, "kg"),
  44668. name: "Undressed",
  44669. image: {
  44670. source: "./media/characters/coriander/undressed.svg",
  44671. extra: 1757/1606,
  44672. bottom: 107/1864
  44673. }
  44674. },
  44675. dressed: {
  44676. height: math.unit(2, "m"),
  44677. weight: math.unit(250, "kg"),
  44678. name: "Dressed",
  44679. image: {
  44680. source: "./media/characters/coriander/dressed.svg",
  44681. extra: 1757/1606,
  44682. bottom: 107/1864
  44683. }
  44684. },
  44685. },
  44686. [
  44687. {
  44688. name: "Normal",
  44689. height: math.unit(4, "meters"),
  44690. default: true
  44691. },
  44692. {
  44693. name: "XL",
  44694. height: math.unit(6, "meters")
  44695. },
  44696. {
  44697. name: "XXL",
  44698. height: math.unit(8, "meters")
  44699. },
  44700. ]
  44701. ))
  44702. characterMakers.push(() => makeCharacter(
  44703. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44704. {
  44705. front: {
  44706. height: math.unit(6, "feet"),
  44707. name: "Front",
  44708. image: {
  44709. source: "./media/characters/syrinx/front.svg",
  44710. extra: 1557/1259,
  44711. bottom: 171/1728
  44712. }
  44713. },
  44714. },
  44715. [
  44716. {
  44717. name: "Normal",
  44718. height: math.unit(6 + 3/12, "feet"),
  44719. default: true
  44720. },
  44721. ]
  44722. ))
  44723. characterMakers.push(() => makeCharacter(
  44724. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44725. {
  44726. front: {
  44727. height: math.unit(11 + 6/12, "feet"),
  44728. weight: math.unit(1.5, "tons"),
  44729. name: "Front",
  44730. image: {
  44731. source: "./media/characters/bor/front.svg",
  44732. extra: 1189/1109,
  44733. bottom: 170/1359
  44734. }
  44735. },
  44736. },
  44737. [
  44738. {
  44739. name: "Normal",
  44740. height: math.unit(11 + 6/12, "feet"),
  44741. default: true
  44742. },
  44743. {
  44744. name: "Macro",
  44745. height: math.unit(32 + 9/12, "feet")
  44746. },
  44747. ]
  44748. ))
  44749. characterMakers.push(() => makeCharacter(
  44750. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44751. {
  44752. anthro: {
  44753. height: math.unit(9, "feet"),
  44754. weight: math.unit(2076, "lb"),
  44755. name: "Anthro",
  44756. image: {
  44757. source: "./media/characters/abacus/anthro.svg",
  44758. extra: 1540/1494,
  44759. bottom: 233/1773
  44760. }
  44761. },
  44762. pigeon: {
  44763. height: math.unit(1, "feet"),
  44764. name: "Pigeon",
  44765. image: {
  44766. source: "./media/characters/abacus/pigeon.svg",
  44767. extra: 528/525,
  44768. bottom: 46/574
  44769. }
  44770. },
  44771. },
  44772. [
  44773. {
  44774. name: "Normal",
  44775. height: math.unit(9, "feet"),
  44776. default: true
  44777. },
  44778. ]
  44779. ))
  44780. characterMakers.push(() => makeCharacter(
  44781. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44782. {
  44783. side: {
  44784. height: math.unit(6, "feet"),
  44785. name: "Side",
  44786. image: {
  44787. source: "./media/characters/delkhan/side.svg",
  44788. extra: 1884/1786,
  44789. bottom: 308/2192
  44790. }
  44791. },
  44792. head: {
  44793. height: math.unit(3.38, "feet"),
  44794. name: "Head",
  44795. image: {
  44796. source: "./media/characters/delkhan/head.svg"
  44797. }
  44798. },
  44799. },
  44800. [
  44801. {
  44802. name: "Normal",
  44803. height: math.unit(72, "feet"),
  44804. default: true
  44805. },
  44806. {
  44807. name: "Giant",
  44808. height: math.unit(172, "feet")
  44809. },
  44810. ]
  44811. ))
  44812. characterMakers.push(() => makeCharacter(
  44813. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44814. {
  44815. standing: {
  44816. height: math.unit(6, "feet"),
  44817. name: "Standing",
  44818. image: {
  44819. source: "./media/characters/euchidat/standing.svg",
  44820. extra: 1612/1553,
  44821. bottom: 116/1728
  44822. }
  44823. },
  44824. leaning: {
  44825. height: math.unit(6, "feet"),
  44826. name: "Leaning",
  44827. image: {
  44828. source: "./media/characters/euchidat/leaning.svg",
  44829. extra: 1719/1674,
  44830. bottom: 27/1746
  44831. }
  44832. },
  44833. },
  44834. [
  44835. {
  44836. name: "Normal",
  44837. height: math.unit(175, "feet"),
  44838. default: true
  44839. },
  44840. {
  44841. name: "Megamacro",
  44842. height: math.unit(190, "miles")
  44843. },
  44844. {
  44845. name: "Gigamacro",
  44846. height: math.unit(190000, "miles")
  44847. },
  44848. ]
  44849. ))
  44850. characterMakers.push(() => makeCharacter(
  44851. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44852. {
  44853. front: {
  44854. height: math.unit(6, "feet"),
  44855. weight: math.unit(150, "lb"),
  44856. name: "Front",
  44857. image: {
  44858. source: "./media/characters/rebecca-stack/front.svg",
  44859. extra: 1256/1201,
  44860. bottom: 18/1274
  44861. }
  44862. },
  44863. },
  44864. [
  44865. {
  44866. name: "Normal",
  44867. height: math.unit(5 + 8/12, "feet"),
  44868. default: true
  44869. },
  44870. {
  44871. name: "Demolitionist",
  44872. height: math.unit(200, "feet")
  44873. },
  44874. {
  44875. name: "Out of Control",
  44876. height: math.unit(2, "miles")
  44877. },
  44878. {
  44879. name: "Giga",
  44880. height: math.unit(7200, "miles")
  44881. },
  44882. ]
  44883. ))
  44884. characterMakers.push(() => makeCharacter(
  44885. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44886. {
  44887. front: {
  44888. height: math.unit(6, "feet"),
  44889. weight: math.unit(150, "lb"),
  44890. name: "Front",
  44891. image: {
  44892. source: "./media/characters/jenny-cartwright/front.svg",
  44893. extra: 1384/1376,
  44894. bottom: 58/1442
  44895. }
  44896. },
  44897. },
  44898. [
  44899. {
  44900. name: "Normal",
  44901. height: math.unit(6 + 7/12, "feet"),
  44902. default: true
  44903. },
  44904. {
  44905. name: "Librarian",
  44906. height: math.unit(55, "feet")
  44907. },
  44908. {
  44909. name: "Sightseer",
  44910. height: math.unit(50, "miles")
  44911. },
  44912. {
  44913. name: "Giga",
  44914. height: math.unit(30000, "miles")
  44915. },
  44916. ]
  44917. ))
  44918. characterMakers.push(() => makeCharacter(
  44919. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44920. {
  44921. nude: {
  44922. height: math.unit(8, "feet"),
  44923. weight: math.unit(225, "lb"),
  44924. name: "Nude",
  44925. image: {
  44926. source: "./media/characters/marvy/nude.svg",
  44927. extra: 1900/1683,
  44928. bottom: 89/1989
  44929. }
  44930. },
  44931. dressed: {
  44932. height: math.unit(8, "feet"),
  44933. weight: math.unit(225, "lb"),
  44934. name: "Dressed",
  44935. image: {
  44936. source: "./media/characters/marvy/dressed.svg",
  44937. extra: 1900/1683,
  44938. bottom: 89/1989
  44939. }
  44940. },
  44941. head: {
  44942. height: math.unit(2.85, "feet"),
  44943. name: "Head",
  44944. image: {
  44945. source: "./media/characters/marvy/head.svg"
  44946. }
  44947. },
  44948. },
  44949. [
  44950. {
  44951. name: "Normal",
  44952. height: math.unit(8, "feet"),
  44953. default: true
  44954. },
  44955. ]
  44956. ))
  44957. characterMakers.push(() => makeCharacter(
  44958. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44959. {
  44960. front: {
  44961. height: math.unit(8, "feet"),
  44962. weight: math.unit(250, "lb"),
  44963. name: "Front",
  44964. image: {
  44965. source: "./media/characters/leah/front.svg",
  44966. extra: 1257/1149,
  44967. bottom: 109/1366
  44968. }
  44969. },
  44970. },
  44971. [
  44972. {
  44973. name: "Normal",
  44974. height: math.unit(8, "feet"),
  44975. default: true
  44976. },
  44977. {
  44978. name: "Minimacro",
  44979. height: math.unit(40, "feet")
  44980. },
  44981. {
  44982. name: "Macro",
  44983. height: math.unit(124, "feet")
  44984. },
  44985. {
  44986. name: "Megamacro",
  44987. height: math.unit(850, "feet")
  44988. },
  44989. ]
  44990. ))
  44991. characterMakers.push(() => makeCharacter(
  44992. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  44993. {
  44994. side: {
  44995. height: math.unit(13 + 6/12, "feet"),
  44996. weight: math.unit(3200, "lb"),
  44997. name: "Side",
  44998. image: {
  44999. source: "./media/characters/alvir/side.svg",
  45000. extra: 896/589,
  45001. bottom: 26/922
  45002. }
  45003. },
  45004. },
  45005. [
  45006. {
  45007. name: "Normal",
  45008. height: math.unit(13 + 6/12, "feet"),
  45009. default: true
  45010. },
  45011. ]
  45012. ))
  45013. characterMakers.push(() => makeCharacter(
  45014. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45015. {
  45016. front: {
  45017. height: math.unit(5 + 4/12, "feet"),
  45018. weight: math.unit(236, "lb"),
  45019. name: "Front",
  45020. image: {
  45021. source: "./media/characters/zaina-khalil/front.svg",
  45022. extra: 1533/1485,
  45023. bottom: 94/1627
  45024. }
  45025. },
  45026. side: {
  45027. height: math.unit(5 + 4/12, "feet"),
  45028. weight: math.unit(236, "lb"),
  45029. name: "Side",
  45030. image: {
  45031. source: "./media/characters/zaina-khalil/side.svg",
  45032. extra: 1537/1498,
  45033. bottom: 66/1603
  45034. }
  45035. },
  45036. back: {
  45037. height: math.unit(5 + 4/12, "feet"),
  45038. weight: math.unit(236, "lb"),
  45039. name: "Back",
  45040. image: {
  45041. source: "./media/characters/zaina-khalil/back.svg",
  45042. extra: 1546/1494,
  45043. bottom: 89/1635
  45044. }
  45045. },
  45046. },
  45047. [
  45048. {
  45049. name: "Normal",
  45050. height: math.unit(5 + 4/12, "feet"),
  45051. default: true
  45052. },
  45053. ]
  45054. ))
  45055. characterMakers.push(() => makeCharacter(
  45056. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45057. {
  45058. side: {
  45059. height: math.unit(12, "feet"),
  45060. weight: math.unit(4000, "lb"),
  45061. name: "Side",
  45062. image: {
  45063. source: "./media/characters/terry/side.svg",
  45064. extra: 1518/1439,
  45065. bottom: 149/1667
  45066. }
  45067. },
  45068. },
  45069. [
  45070. {
  45071. name: "Normal",
  45072. height: math.unit(12, "feet"),
  45073. default: true
  45074. },
  45075. ]
  45076. ))
  45077. characterMakers.push(() => makeCharacter(
  45078. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45079. {
  45080. front: {
  45081. height: math.unit(12, "feet"),
  45082. weight: math.unit(1500, "lb"),
  45083. name: "Front",
  45084. image: {
  45085. source: "./media/characters/kahea/front.svg",
  45086. extra: 1722/1617,
  45087. bottom: 179/1901
  45088. }
  45089. },
  45090. },
  45091. [
  45092. {
  45093. name: "Normal",
  45094. height: math.unit(12, "feet"),
  45095. default: true
  45096. },
  45097. ]
  45098. ))
  45099. characterMakers.push(() => makeCharacter(
  45100. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45101. {
  45102. demonFront: {
  45103. height: math.unit(36, "feet"),
  45104. name: "Front",
  45105. image: {
  45106. source: "./media/characters/alex-xuria/demon-front.svg",
  45107. extra: 1705/1673,
  45108. bottom: 198/1903
  45109. },
  45110. form: "demon",
  45111. default: true
  45112. },
  45113. demonBack: {
  45114. height: math.unit(36, "feet"),
  45115. name: "Back",
  45116. image: {
  45117. source: "./media/characters/alex-xuria/demon-back.svg",
  45118. extra: 1725/1693,
  45119. bottom: 70/1795
  45120. },
  45121. form: "demon"
  45122. },
  45123. demonHead: {
  45124. height: math.unit(2.14, "meters"),
  45125. name: "Head",
  45126. image: {
  45127. source: "./media/characters/alex-xuria/demon-head.svg"
  45128. },
  45129. form: "demon"
  45130. },
  45131. demonHand: {
  45132. height: math.unit(1.61, "meters"),
  45133. name: "Hand",
  45134. image: {
  45135. source: "./media/characters/alex-xuria/demon-hand.svg"
  45136. },
  45137. form: "demon"
  45138. },
  45139. demonPaw: {
  45140. height: math.unit(1.35, "meters"),
  45141. name: "Paw",
  45142. image: {
  45143. source: "./media/characters/alex-xuria/demon-paw.svg"
  45144. },
  45145. form: "demon"
  45146. },
  45147. demonFoot: {
  45148. height: math.unit(2.2, "meters"),
  45149. name: "Foot",
  45150. image: {
  45151. source: "./media/characters/alex-xuria/demon-foot.svg"
  45152. },
  45153. form: "demon"
  45154. },
  45155. demonCock: {
  45156. height: math.unit(1.74, "meters"),
  45157. name: "Cock",
  45158. image: {
  45159. source: "./media/characters/alex-xuria/demon-cock.svg"
  45160. },
  45161. form: "demon"
  45162. },
  45163. demonTailClosed: {
  45164. height: math.unit(1.47, "meters"),
  45165. name: "Tail (Closed)",
  45166. image: {
  45167. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45168. },
  45169. form: "demon"
  45170. },
  45171. demonTailOpen: {
  45172. height: math.unit(2.85, "meters"),
  45173. name: "Tail (Open)",
  45174. image: {
  45175. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45176. },
  45177. form: "demon"
  45178. },
  45179. incubusFront: {
  45180. height: math.unit(12, "feet"),
  45181. name: "Front",
  45182. image: {
  45183. source: "./media/characters/alex-xuria/incubus-front.svg",
  45184. extra: 1754/1677,
  45185. bottom: 125/1879
  45186. },
  45187. form: "incubus",
  45188. default: true
  45189. },
  45190. incubusBack: {
  45191. height: math.unit(12, "feet"),
  45192. name: "Back",
  45193. image: {
  45194. source: "./media/characters/alex-xuria/incubus-back.svg",
  45195. extra: 1702/1647,
  45196. bottom: 30/1732
  45197. },
  45198. form: "incubus"
  45199. },
  45200. incubusHead: {
  45201. height: math.unit(3.45, "feet"),
  45202. name: "Head",
  45203. image: {
  45204. source: "./media/characters/alex-xuria/incubus-head.svg"
  45205. },
  45206. form: "incubus"
  45207. },
  45208. rabbitFront: {
  45209. height: math.unit(6, "feet"),
  45210. name: "Front",
  45211. image: {
  45212. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45213. extra: 1369/1349,
  45214. bottom: 45/1414
  45215. },
  45216. form: "rabbit",
  45217. default: true
  45218. },
  45219. rabbitSide: {
  45220. height: math.unit(6, "feet"),
  45221. name: "Side",
  45222. image: {
  45223. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45224. extra: 1370/1356,
  45225. bottom: 37/1407
  45226. },
  45227. form: "rabbit"
  45228. },
  45229. rabbitBack: {
  45230. height: math.unit(6, "feet"),
  45231. name: "Back",
  45232. image: {
  45233. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45234. extra: 1375/1358,
  45235. bottom: 43/1418
  45236. },
  45237. form: "rabbit"
  45238. },
  45239. },
  45240. [
  45241. {
  45242. name: "Normal",
  45243. height: math.unit(6, "feet"),
  45244. default: true,
  45245. form: "rabbit"
  45246. },
  45247. {
  45248. name: "Incubus",
  45249. height: math.unit(12, "feet"),
  45250. default: true,
  45251. form: "incubus"
  45252. },
  45253. {
  45254. name: "Demon",
  45255. height: math.unit(36, "feet"),
  45256. default: true,
  45257. form: "demon"
  45258. }
  45259. ],
  45260. {
  45261. "demon": {
  45262. name: "Demon",
  45263. default: true
  45264. },
  45265. "incubus": {
  45266. name: "Incubus",
  45267. },
  45268. "rabbit": {
  45269. name: "Rabbit"
  45270. }
  45271. }
  45272. ))
  45273. characterMakers.push(() => makeCharacter(
  45274. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45275. {
  45276. front: {
  45277. height: math.unit(7 + 5/12, "feet"),
  45278. weight: math.unit(510, "lb"),
  45279. name: "Front",
  45280. image: {
  45281. source: "./media/characters/syrup/front.svg",
  45282. extra: 932/916,
  45283. bottom: 26/958
  45284. }
  45285. },
  45286. },
  45287. [
  45288. {
  45289. name: "Normal",
  45290. height: math.unit(7 + 5/12, "feet"),
  45291. default: true
  45292. },
  45293. {
  45294. name: "Big",
  45295. height: math.unit(50, "feet")
  45296. },
  45297. {
  45298. name: "Macro",
  45299. height: math.unit(300, "feet")
  45300. },
  45301. {
  45302. name: "Megamacro",
  45303. height: math.unit(1, "mile")
  45304. },
  45305. ]
  45306. ))
  45307. characterMakers.push(() => makeCharacter(
  45308. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45309. {
  45310. front: {
  45311. height: math.unit(6 + 9/12, "feet"),
  45312. name: "Front",
  45313. image: {
  45314. source: "./media/characters/zeimne/front.svg",
  45315. extra: 1969/1806,
  45316. bottom: 53/2022
  45317. }
  45318. },
  45319. },
  45320. [
  45321. {
  45322. name: "Normal",
  45323. height: math.unit(6 + 9/12, "feet"),
  45324. default: true
  45325. },
  45326. {
  45327. name: "Giant",
  45328. height: math.unit(550, "feet")
  45329. },
  45330. {
  45331. name: "Mega",
  45332. height: math.unit(3, "miles")
  45333. },
  45334. {
  45335. name: "Giga",
  45336. height: math.unit(250, "miles")
  45337. },
  45338. {
  45339. name: "Tera",
  45340. height: math.unit(1, "AU")
  45341. },
  45342. ]
  45343. ))
  45344. characterMakers.push(() => makeCharacter(
  45345. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45346. {
  45347. front: {
  45348. height: math.unit(5 + 2/12, "feet"),
  45349. name: "Front",
  45350. image: {
  45351. source: "./media/characters/grar/front.svg",
  45352. extra: 1331/1119,
  45353. bottom: 60/1391
  45354. }
  45355. },
  45356. back: {
  45357. height: math.unit(5 + 2/12, "feet"),
  45358. name: "Back",
  45359. image: {
  45360. source: "./media/characters/grar/back.svg",
  45361. extra: 1385/1169,
  45362. bottom: 23/1408
  45363. }
  45364. },
  45365. },
  45366. [
  45367. {
  45368. name: "Normal",
  45369. height: math.unit(5 + 2/12, "feet"),
  45370. default: true
  45371. },
  45372. ]
  45373. ))
  45374. characterMakers.push(() => makeCharacter(
  45375. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45376. {
  45377. front: {
  45378. height: math.unit(13 + 7/12, "feet"),
  45379. weight: math.unit(2200, "lb"),
  45380. name: "Front",
  45381. image: {
  45382. source: "./media/characters/endraya/front.svg",
  45383. extra: 1289/1215,
  45384. bottom: 50/1339
  45385. }
  45386. },
  45387. nude: {
  45388. height: math.unit(13 + 7/12, "feet"),
  45389. weight: math.unit(2200, "lb"),
  45390. name: "Nude",
  45391. image: {
  45392. source: "./media/characters/endraya/nude.svg",
  45393. extra: 1247/1171,
  45394. bottom: 40/1287
  45395. }
  45396. },
  45397. head: {
  45398. height: math.unit(2.6, "feet"),
  45399. name: "Head",
  45400. image: {
  45401. source: "./media/characters/endraya/head.svg"
  45402. }
  45403. },
  45404. slit: {
  45405. height: math.unit(3.4, "feet"),
  45406. name: "Slit",
  45407. image: {
  45408. source: "./media/characters/endraya/slit.svg"
  45409. }
  45410. },
  45411. },
  45412. [
  45413. {
  45414. name: "Normal",
  45415. height: math.unit(13 + 7/12, "feet"),
  45416. default: true
  45417. },
  45418. {
  45419. name: "Macro",
  45420. height: math.unit(200, "feet")
  45421. },
  45422. ]
  45423. ))
  45424. characterMakers.push(() => makeCharacter(
  45425. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45426. {
  45427. front: {
  45428. height: math.unit(412, "meters"),
  45429. name: "Front",
  45430. image: {
  45431. source: "./media/characters/rodryana/front.svg",
  45432. extra: 2002/1921,
  45433. bottom: 53/2055
  45434. }
  45435. },
  45436. back: {
  45437. height: math.unit(412, "meters"),
  45438. name: "Back",
  45439. image: {
  45440. source: "./media/characters/rodryana/back.svg",
  45441. extra: 1993/1926,
  45442. bottom: 48/2041
  45443. }
  45444. },
  45445. maw: {
  45446. height: math.unit(45, "meters"),
  45447. name: "Maw",
  45448. image: {
  45449. source: "./media/characters/rodryana/maw.svg"
  45450. }
  45451. },
  45452. slit: {
  45453. height: math.unit(72, "meters"),
  45454. name: "Slit",
  45455. image: {
  45456. source: "./media/characters/rodryana/slit.svg"
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Macro",
  45463. height: math.unit(412, "meters"),
  45464. default: true
  45465. },
  45466. ]
  45467. ))
  45468. characterMakers.push(() => makeCharacter(
  45469. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45470. {
  45471. front: {
  45472. height: math.unit(6, "feet"),
  45473. weight: math.unit(1000, "lb"),
  45474. name: "Front",
  45475. image: {
  45476. source: "./media/characters/asaya/front.svg",
  45477. extra: 1460/1200,
  45478. bottom: 71/1531
  45479. }
  45480. },
  45481. },
  45482. [
  45483. {
  45484. name: "Normal",
  45485. height: math.unit(8, "km"),
  45486. default: true
  45487. },
  45488. ]
  45489. ))
  45490. characterMakers.push(() => makeCharacter(
  45491. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45492. {
  45493. front: {
  45494. height: math.unit(3.5, "meters"),
  45495. name: "Front",
  45496. image: {
  45497. source: "./media/characters/sarzu-and-israz/front.svg",
  45498. extra: 1570/1558,
  45499. bottom: 150/1720
  45500. },
  45501. },
  45502. back: {
  45503. height: math.unit(3.5, "meters"),
  45504. name: "Back",
  45505. image: {
  45506. source: "./media/characters/sarzu-and-israz/back.svg",
  45507. extra: 1523/1509,
  45508. bottom: 132/1655
  45509. },
  45510. },
  45511. frontFemale: {
  45512. height: math.unit(3.5, "meters"),
  45513. name: "Front (Female)",
  45514. image: {
  45515. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45516. extra: 1570/1558,
  45517. bottom: 150/1720
  45518. },
  45519. },
  45520. frontHerm: {
  45521. height: math.unit(3.5, "meters"),
  45522. name: "Front (Herm)",
  45523. image: {
  45524. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45525. extra: 1570/1558,
  45526. bottom: 150/1720
  45527. },
  45528. },
  45529. },
  45530. [
  45531. {
  45532. name: "Normal",
  45533. height: math.unit(3.5, "meters"),
  45534. default: true,
  45535. },
  45536. {
  45537. name: "Macro",
  45538. height: math.unit(65.5, "meters"),
  45539. },
  45540. ],
  45541. ))
  45542. characterMakers.push(() => makeCharacter(
  45543. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45544. {
  45545. front: {
  45546. height: math.unit(6, "feet"),
  45547. weight: math.unit(250, "lb"),
  45548. name: "Front",
  45549. image: {
  45550. source: "./media/characters/zenimma/front.svg",
  45551. extra: 1346/1320,
  45552. bottom: 58/1404
  45553. }
  45554. },
  45555. back: {
  45556. height: math.unit(6, "feet"),
  45557. weight: math.unit(250, "lb"),
  45558. name: "Back",
  45559. image: {
  45560. source: "./media/characters/zenimma/back.svg",
  45561. extra: 1324/1308,
  45562. bottom: 44/1368
  45563. }
  45564. },
  45565. dick: {
  45566. height: math.unit(1.44, "feet"),
  45567. name: "Dick",
  45568. image: {
  45569. source: "./media/characters/zenimma/dick.svg"
  45570. }
  45571. },
  45572. },
  45573. [
  45574. {
  45575. name: "Canon Height",
  45576. height: math.unit(66, "miles"),
  45577. default: true
  45578. },
  45579. ]
  45580. ))
  45581. characterMakers.push(() => makeCharacter(
  45582. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45583. {
  45584. nude: {
  45585. height: math.unit(6, "feet"),
  45586. weight: math.unit(150, "lb"),
  45587. name: "Nude",
  45588. image: {
  45589. source: "./media/characters/shavon/nude.svg",
  45590. extra: 1242/1096,
  45591. bottom: 98/1340
  45592. }
  45593. },
  45594. dressed: {
  45595. height: math.unit(6, "feet"),
  45596. weight: math.unit(150, "lb"),
  45597. name: "Dressed",
  45598. image: {
  45599. source: "./media/characters/shavon/dressed.svg",
  45600. extra: 1242/1096,
  45601. bottom: 98/1340
  45602. }
  45603. },
  45604. },
  45605. [
  45606. {
  45607. name: "Macro",
  45608. height: math.unit(255, "feet"),
  45609. default: true
  45610. },
  45611. ]
  45612. ))
  45613. characterMakers.push(() => makeCharacter(
  45614. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45615. {
  45616. front: {
  45617. height: math.unit(6, "feet"),
  45618. name: "Front",
  45619. image: {
  45620. source: "./media/characters/steph/front.svg",
  45621. extra: 1430/1330,
  45622. bottom: 54/1484
  45623. }
  45624. },
  45625. },
  45626. [
  45627. {
  45628. name: "Normal",
  45629. height: math.unit(6, "feet"),
  45630. default: true
  45631. },
  45632. ]
  45633. ))
  45634. characterMakers.push(() => makeCharacter(
  45635. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45636. {
  45637. front: {
  45638. height: math.unit(9, "feet"),
  45639. weight: math.unit(400, "lb"),
  45640. name: "Front",
  45641. image: {
  45642. source: "./media/characters/kil'aman/front.svg",
  45643. extra: 1210/1159,
  45644. bottom: 109/1319
  45645. }
  45646. },
  45647. head: {
  45648. height: math.unit(2.14, "feet"),
  45649. name: "Head",
  45650. image: {
  45651. source: "./media/characters/kil'aman/head.svg"
  45652. }
  45653. },
  45654. maw: {
  45655. height: math.unit(1.21, "feet"),
  45656. name: "Maw",
  45657. image: {
  45658. source: "./media/characters/kil'aman/maw.svg"
  45659. }
  45660. },
  45661. foot: {
  45662. height: math.unit(1.7, "feet"),
  45663. name: "Foot",
  45664. image: {
  45665. source: "./media/characters/kil'aman/foot.svg"
  45666. }
  45667. },
  45668. dick: {
  45669. height: math.unit(2.1, "feet"),
  45670. name: "Dick",
  45671. image: {
  45672. source: "./media/characters/kil'aman/dick.svg"
  45673. }
  45674. },
  45675. },
  45676. [
  45677. {
  45678. name: "Normal",
  45679. height: math.unit(9, "feet")
  45680. },
  45681. {
  45682. name: "Canon Height",
  45683. height: math.unit(10, "miles"),
  45684. default: true
  45685. },
  45686. {
  45687. name: "Maximum",
  45688. height: math.unit(6e9, "miles")
  45689. },
  45690. ]
  45691. ))
  45692. characterMakers.push(() => makeCharacter(
  45693. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45694. {
  45695. front: {
  45696. height: math.unit(90, "feet"),
  45697. weight: math.unit(675000, "lb"),
  45698. name: "Front",
  45699. image: {
  45700. source: "./media/characters/qadan/front.svg",
  45701. extra: 1012/1004,
  45702. bottom: 78/1090
  45703. }
  45704. },
  45705. back: {
  45706. height: math.unit(90, "feet"),
  45707. weight: math.unit(675000, "lb"),
  45708. name: "Back",
  45709. image: {
  45710. source: "./media/characters/qadan/back.svg",
  45711. extra: 1042/1031,
  45712. bottom: 55/1097
  45713. }
  45714. },
  45715. armored: {
  45716. height: math.unit(90, "feet"),
  45717. weight: math.unit(675000, "lb"),
  45718. name: "Armored",
  45719. image: {
  45720. source: "./media/characters/qadan/armored.svg",
  45721. extra: 1047/1037,
  45722. bottom: 48/1095
  45723. }
  45724. },
  45725. },
  45726. [
  45727. {
  45728. name: "Normal",
  45729. height: math.unit(90, "feet"),
  45730. default: true
  45731. },
  45732. ]
  45733. ))
  45734. characterMakers.push(() => makeCharacter(
  45735. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45736. {
  45737. front: {
  45738. height: math.unit(6, "feet"),
  45739. weight: math.unit(225, "lb"),
  45740. name: "Front",
  45741. image: {
  45742. source: "./media/characters/brooke/front.svg",
  45743. extra: 1050/1010,
  45744. bottom: 66/1116
  45745. }
  45746. },
  45747. back: {
  45748. height: math.unit(6, "feet"),
  45749. weight: math.unit(225, "lb"),
  45750. name: "Back",
  45751. image: {
  45752. source: "./media/characters/brooke/back.svg",
  45753. extra: 1053/1013,
  45754. bottom: 41/1094
  45755. }
  45756. },
  45757. dressed: {
  45758. height: math.unit(6, "feet"),
  45759. weight: math.unit(225, "lb"),
  45760. name: "Dressed",
  45761. image: {
  45762. source: "./media/characters/brooke/dressed.svg",
  45763. extra: 1050/1010,
  45764. bottom: 66/1116
  45765. }
  45766. },
  45767. },
  45768. [
  45769. {
  45770. name: "Canon Height",
  45771. height: math.unit(500, "miles"),
  45772. default: true
  45773. },
  45774. ]
  45775. ))
  45776. characterMakers.push(() => makeCharacter(
  45777. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  45778. {
  45779. front: {
  45780. height: math.unit(6 + 2/12, "feet"),
  45781. weight: math.unit(210, "lb"),
  45782. name: "Front",
  45783. image: {
  45784. source: "./media/characters/wubs/front.svg",
  45785. extra: 1345/1325,
  45786. bottom: 70/1415
  45787. }
  45788. },
  45789. back: {
  45790. height: math.unit(6 + 2/12, "feet"),
  45791. weight: math.unit(210, "lb"),
  45792. name: "Back",
  45793. image: {
  45794. source: "./media/characters/wubs/back.svg",
  45795. extra: 1296/1275,
  45796. bottom: 58/1354
  45797. }
  45798. },
  45799. },
  45800. [
  45801. {
  45802. name: "Normal",
  45803. height: math.unit(6 + 2/12, "feet"),
  45804. default: true
  45805. },
  45806. {
  45807. name: "Macro",
  45808. height: math.unit(1000, "feet")
  45809. },
  45810. {
  45811. name: "Megamacro",
  45812. height: math.unit(1, "mile")
  45813. },
  45814. ]
  45815. ))
  45816. characterMakers.push(() => makeCharacter(
  45817. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  45818. {
  45819. front: {
  45820. height: math.unit(4, "feet"),
  45821. weight: math.unit(120, "lb"),
  45822. name: "Front",
  45823. image: {
  45824. source: "./media/characters/blue/front.svg",
  45825. extra: 1636/1525,
  45826. bottom: 43/1679
  45827. }
  45828. },
  45829. back: {
  45830. height: math.unit(4, "feet"),
  45831. weight: math.unit(120, "lb"),
  45832. name: "Back",
  45833. image: {
  45834. source: "./media/characters/blue/back.svg",
  45835. extra: 1660/1560,
  45836. bottom: 57/1717
  45837. }
  45838. },
  45839. paws: {
  45840. height: math.unit(0.826, "feet"),
  45841. name: "Paws",
  45842. image: {
  45843. source: "./media/characters/blue/paws.svg"
  45844. }
  45845. },
  45846. },
  45847. [
  45848. {
  45849. name: "Micro",
  45850. height: math.unit(3, "inches")
  45851. },
  45852. {
  45853. name: "Normal",
  45854. height: math.unit(4, "feet"),
  45855. default: true
  45856. },
  45857. {
  45858. name: "Femenine Form",
  45859. height: math.unit(14, "feet")
  45860. },
  45861. {
  45862. name: "Werebat Form",
  45863. height: math.unit(18, "feet")
  45864. },
  45865. ]
  45866. ))
  45867. //characters
  45868. function makeCharacters() {
  45869. const results = [];
  45870. characterMakers.forEach(character => {
  45871. results.push(character());
  45872. });
  45873. return results;
  45874. }