less copy protection, more size visualization
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

47477 linhas
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. "triceratops": {
  1844. name: "Triceratops",
  1845. parents: ["dinosaur"]
  1846. },
  1847. "drake": {
  1848. name: "Drake",
  1849. parents: ["dragon"]
  1850. },
  1851. }
  1852. //species
  1853. function getSpeciesInfo(speciesList) {
  1854. let result = new Set();
  1855. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1856. result.add(entry)
  1857. });
  1858. return Array.from(result);
  1859. };
  1860. function getSpeciesInfoHelper(species) {
  1861. if (!speciesData[species]) {
  1862. console.warn(species + " doesn't exist");
  1863. return [];
  1864. }
  1865. if (speciesData[species].parents) {
  1866. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1867. } else {
  1868. return [species];
  1869. }
  1870. }
  1871. characterMakers.push(() => makeCharacter(
  1872. {
  1873. name: "Fen",
  1874. species: ["crux"],
  1875. description: {
  1876. title: "Bio",
  1877. text: "Very furry. Sheds on everything."
  1878. },
  1879. tags: [
  1880. "anthro",
  1881. "goo"
  1882. ]
  1883. },
  1884. {
  1885. front: {
  1886. height: math.unit(12, "feet"),
  1887. weight: math.unit(2400, "lb"),
  1888. name: "Front",
  1889. image: {
  1890. source: "./media/characters/fen/front.svg",
  1891. extra: 1804/1562,
  1892. bottom: 205/2009
  1893. }
  1894. },
  1895. diving: {
  1896. height: math.unit(4.9, "meters"),
  1897. weight: math.unit(2400, "lb"),
  1898. name: "Diving",
  1899. image: {
  1900. source: "./media/characters/fen/diving.svg"
  1901. }
  1902. },
  1903. goo: {
  1904. height: math.unit(12, "feet"),
  1905. weight: math.unit(3000, "lb"),
  1906. capacity: math.unit(6, "people"),
  1907. name: "Goo",
  1908. image: {
  1909. source: "./media/characters/fen/goo.svg",
  1910. extra: 1307/1071,
  1911. bottom: 134/1441
  1912. }
  1913. },
  1914. maw: {
  1915. height: math.unit(5.03, "feet"),
  1916. name: "Maw",
  1917. image: {
  1918. source: "./media/characters/fen/maw.svg"
  1919. }
  1920. },
  1921. gooCeiling: {
  1922. height: math.unit(6.6, "feet"),
  1923. weight: math.unit(3000, "lb"),
  1924. capacity: math.unit(6, "people"),
  1925. name: "Goo (Ceiling)",
  1926. image: {
  1927. source: "./media/characters/fen/goo-ceiling.svg"
  1928. }
  1929. },
  1930. back: {
  1931. height: math.unit(12, "feet"),
  1932. weight: math.unit(2400, "lb"),
  1933. name: "Back",
  1934. image: {
  1935. source: "./media/characters/fen/back.svg",
  1936. },
  1937. info: {
  1938. description: {
  1939. mode: "append",
  1940. text: "\n\nHe is not currently looking at you."
  1941. }
  1942. }
  1943. },
  1944. full: {
  1945. height: math.unit(1.6, "meter"),
  1946. weight: math.unit(3200, "lb"),
  1947. name: "Full",
  1948. image: {
  1949. source: "./media/characters/fen/full.svg",
  1950. extra: 1133/859,
  1951. bottom: 145/1278
  1952. },
  1953. info: {
  1954. description: {
  1955. mode: "append",
  1956. text: "\n\nMunch."
  1957. }
  1958. }
  1959. },
  1960. gooLounging: {
  1961. height: math.unit(4.53, "feet"),
  1962. weight: math.unit(3000, "lb"),
  1963. capacity: math.unit(6, "people"),
  1964. name: "Goo (Lounging)",
  1965. image: {
  1966. source: "./media/characters/fen/goo.svg",
  1967. bottom: 116 / 613
  1968. }
  1969. },
  1970. lounging: {
  1971. height: math.unit(10.52, "feet"),
  1972. weight: math.unit(2400, "lb"),
  1973. name: "Lounging",
  1974. image: {
  1975. source: "./media/characters/fen/lounging.svg"
  1976. }
  1977. },
  1978. },
  1979. [
  1980. {
  1981. name: "Small",
  1982. height: math.unit(2.2428, "meter")
  1983. },
  1984. {
  1985. name: "Normal",
  1986. height: math.unit(12, "feet"),
  1987. default: true,
  1988. },
  1989. {
  1990. name: "Big",
  1991. height: math.unit(20, "feet")
  1992. },
  1993. {
  1994. name: "Minimacro",
  1995. height: math.unit(40, "feet"),
  1996. info: {
  1997. description: {
  1998. mode: "append",
  1999. text: "\n\nTOO DAMN BIG"
  2000. }
  2001. }
  2002. },
  2003. {
  2004. name: "Macro",
  2005. height: math.unit(100, "feet"),
  2006. info: {
  2007. description: {
  2008. mode: "append",
  2009. text: "\n\nTOO DAMN BIG"
  2010. }
  2011. }
  2012. },
  2013. {
  2014. name: "Megamacro",
  2015. height: math.unit(2, "miles")
  2016. },
  2017. {
  2018. name: "Gigamacro",
  2019. height: math.unit(10, "earths")
  2020. },
  2021. ]
  2022. ))
  2023. characterMakers.push(() => makeCharacter(
  2024. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2025. {
  2026. front: {
  2027. height: math.unit(183, "cm"),
  2028. weight: math.unit(80, "kg"),
  2029. name: "Front",
  2030. image: {
  2031. source: "./media/characters/sofia-fluttertail/front.svg",
  2032. bottom: 0.01,
  2033. extra: 2154 / 2081
  2034. }
  2035. },
  2036. frontAlt: {
  2037. height: math.unit(183, "cm"),
  2038. weight: math.unit(80, "kg"),
  2039. name: "Front (alt)",
  2040. image: {
  2041. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2042. }
  2043. },
  2044. back: {
  2045. height: math.unit(183, "cm"),
  2046. weight: math.unit(80, "kg"),
  2047. name: "Back",
  2048. image: {
  2049. source: "./media/characters/sofia-fluttertail/back.svg"
  2050. }
  2051. },
  2052. kneeling: {
  2053. height: math.unit(125, "cm"),
  2054. weight: math.unit(80, "kg"),
  2055. name: "Kneeling",
  2056. image: {
  2057. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2058. extra: 1033 / 977,
  2059. bottom: 23.7 / 1057
  2060. }
  2061. },
  2062. maw: {
  2063. height: math.unit(183 / 5, "cm"),
  2064. name: "Maw",
  2065. image: {
  2066. source: "./media/characters/sofia-fluttertail/maw.svg"
  2067. }
  2068. },
  2069. mawcloseup: {
  2070. height: math.unit(183 / 5 * 0.41, "cm"),
  2071. name: "Maw (Closeup)",
  2072. image: {
  2073. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2074. }
  2075. },
  2076. paws: {
  2077. height: math.unit(1.17, "feet"),
  2078. name: "Paws",
  2079. image: {
  2080. source: "./media/characters/sofia-fluttertail/paws.svg",
  2081. extra: 851 / 851,
  2082. bottom: 17 / 868
  2083. }
  2084. },
  2085. },
  2086. [
  2087. {
  2088. name: "Normal",
  2089. height: math.unit(1.83, "meter")
  2090. },
  2091. {
  2092. name: "Size Thief",
  2093. height: math.unit(18, "feet")
  2094. },
  2095. {
  2096. name: "50 Foot Collie",
  2097. height: math.unit(50, "feet")
  2098. },
  2099. {
  2100. name: "Macro",
  2101. height: math.unit(96, "feet"),
  2102. default: true
  2103. },
  2104. {
  2105. name: "Megamerger",
  2106. height: math.unit(650, "feet")
  2107. },
  2108. ]
  2109. ))
  2110. characterMakers.push(() => makeCharacter(
  2111. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2112. {
  2113. front: {
  2114. height: math.unit(7, "feet"),
  2115. weight: math.unit(100, "kg"),
  2116. name: "Front",
  2117. image: {
  2118. source: "./media/characters/march/front.svg",
  2119. extra: 1992/1851,
  2120. bottom: 39/2031
  2121. }
  2122. },
  2123. foot: {
  2124. height: math.unit(0.9, "feet"),
  2125. name: "Foot",
  2126. image: {
  2127. source: "./media/characters/march/foot.svg"
  2128. }
  2129. },
  2130. },
  2131. [
  2132. {
  2133. name: "Normal",
  2134. height: math.unit(7.9, "feet")
  2135. },
  2136. {
  2137. name: "Macro",
  2138. height: math.unit(220, "meters")
  2139. },
  2140. {
  2141. name: "Megamacro",
  2142. height: math.unit(2.98, "km"),
  2143. default: true
  2144. },
  2145. {
  2146. name: "Gigamacro",
  2147. height: math.unit(15963, "km")
  2148. },
  2149. {
  2150. name: "Teramacro",
  2151. height: math.unit(2980000000, "km")
  2152. },
  2153. {
  2154. name: "Examacro",
  2155. height: math.unit(250, "parsecs")
  2156. },
  2157. ]
  2158. ))
  2159. characterMakers.push(() => makeCharacter(
  2160. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2161. {
  2162. front: {
  2163. height: math.unit(6, "feet"),
  2164. weight: math.unit(60, "kg"),
  2165. name: "Front",
  2166. image: {
  2167. source: "./media/characters/noir/front.svg",
  2168. extra: 1,
  2169. bottom: 0.032
  2170. }
  2171. },
  2172. },
  2173. [
  2174. {
  2175. name: "Normal",
  2176. height: math.unit(6.6, "feet")
  2177. },
  2178. {
  2179. name: "Macro",
  2180. height: math.unit(500, "feet")
  2181. },
  2182. {
  2183. name: "Megamacro",
  2184. height: math.unit(2.5, "km"),
  2185. default: true
  2186. },
  2187. {
  2188. name: "Gigamacro",
  2189. height: math.unit(22500, "km")
  2190. },
  2191. {
  2192. name: "Teramacro",
  2193. height: math.unit(2500000000, "km")
  2194. },
  2195. {
  2196. name: "Examacro",
  2197. height: math.unit(200, "parsecs")
  2198. },
  2199. ]
  2200. ))
  2201. characterMakers.push(() => makeCharacter(
  2202. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2203. {
  2204. front: {
  2205. height: math.unit(7, "feet"),
  2206. weight: math.unit(100, "kg"),
  2207. name: "Front",
  2208. image: {
  2209. source: "./media/characters/okuri/front.svg",
  2210. extra: 1,
  2211. bottom: 0.037
  2212. }
  2213. },
  2214. back: {
  2215. height: math.unit(7, "feet"),
  2216. weight: math.unit(100, "kg"),
  2217. name: "Back",
  2218. image: {
  2219. source: "./media/characters/okuri/back.svg",
  2220. extra: 1,
  2221. bottom: 0.007
  2222. }
  2223. },
  2224. },
  2225. [
  2226. {
  2227. name: "Megamacro",
  2228. height: math.unit(100, "miles"),
  2229. default: true
  2230. },
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2235. {
  2236. front: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(100, "kg"),
  2239. name: "Front",
  2240. image: {
  2241. source: "./media/characters/manny/front.svg",
  2242. extra: 1,
  2243. bottom: 0.06
  2244. }
  2245. },
  2246. back: {
  2247. height: math.unit(7, "feet"),
  2248. weight: math.unit(100, "kg"),
  2249. name: "Back",
  2250. image: {
  2251. source: "./media/characters/manny/back.svg",
  2252. extra: 1,
  2253. bottom: 0.014
  2254. }
  2255. },
  2256. },
  2257. [
  2258. {
  2259. name: "Normal",
  2260. height: math.unit(7, "feet"),
  2261. },
  2262. {
  2263. name: "Macro",
  2264. height: math.unit(78, "feet"),
  2265. default: true
  2266. },
  2267. {
  2268. name: "Macro+",
  2269. height: math.unit(300, "meters")
  2270. },
  2271. {
  2272. name: "Macro++",
  2273. height: math.unit(2400, "meters")
  2274. },
  2275. {
  2276. name: "Megamacro",
  2277. height: math.unit(5167, "meters")
  2278. },
  2279. {
  2280. name: "Gigamacro",
  2281. height: math.unit(41769, "miles")
  2282. },
  2283. ]
  2284. ))
  2285. characterMakers.push(() => makeCharacter(
  2286. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2287. {
  2288. front: {
  2289. height: math.unit(7, "feet"),
  2290. weight: math.unit(100, "kg"),
  2291. name: "Front",
  2292. image: {
  2293. source: "./media/characters/adake/front-1.svg"
  2294. }
  2295. },
  2296. frontAlt: {
  2297. height: math.unit(7, "feet"),
  2298. weight: math.unit(100, "kg"),
  2299. name: "Front (Alt)",
  2300. image: {
  2301. source: "./media/characters/adake/front-2.svg",
  2302. extra: 1,
  2303. bottom: 0.01
  2304. }
  2305. },
  2306. back: {
  2307. height: math.unit(7, "feet"),
  2308. weight: math.unit(100, "kg"),
  2309. name: "Back",
  2310. image: {
  2311. source: "./media/characters/adake/back.svg",
  2312. }
  2313. },
  2314. kneel: {
  2315. height: math.unit(5.385, "feet"),
  2316. weight: math.unit(100, "kg"),
  2317. name: "Kneeling",
  2318. image: {
  2319. source: "./media/characters/adake/kneel.svg",
  2320. bottom: 0.052
  2321. }
  2322. },
  2323. },
  2324. [
  2325. {
  2326. name: "Normal",
  2327. height: math.unit(7, "feet"),
  2328. },
  2329. {
  2330. name: "Macro",
  2331. height: math.unit(78, "feet"),
  2332. default: true
  2333. },
  2334. {
  2335. name: "Macro+",
  2336. height: math.unit(300, "meters")
  2337. },
  2338. {
  2339. name: "Macro++",
  2340. height: math.unit(2400, "meters")
  2341. },
  2342. {
  2343. name: "Megamacro",
  2344. height: math.unit(5167, "meters")
  2345. },
  2346. {
  2347. name: "Gigamacro",
  2348. height: math.unit(41769, "miles")
  2349. },
  2350. ]
  2351. ))
  2352. characterMakers.push(() => makeCharacter(
  2353. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2354. {
  2355. front: {
  2356. height: math.unit(1.65, "meters"),
  2357. weight: math.unit(50, "kg"),
  2358. name: "Front",
  2359. image: {
  2360. source: "./media/characters/elijah/front.svg",
  2361. extra: 858 / 830,
  2362. bottom: 95.5 / 953.8559
  2363. }
  2364. },
  2365. back: {
  2366. height: math.unit(1.65, "meters"),
  2367. weight: math.unit(50, "kg"),
  2368. name: "Back",
  2369. image: {
  2370. source: "./media/characters/elijah/back.svg",
  2371. extra: 895 / 850,
  2372. bottom: 5.3 / 897.956
  2373. }
  2374. },
  2375. frontNsfw: {
  2376. height: math.unit(1.65, "meters"),
  2377. weight: math.unit(50, "kg"),
  2378. name: "Front (NSFW)",
  2379. image: {
  2380. source: "./media/characters/elijah/front-nsfw.svg",
  2381. extra: 858 / 830,
  2382. bottom: 95.5 / 953.8559
  2383. }
  2384. },
  2385. backNsfw: {
  2386. height: math.unit(1.65, "meters"),
  2387. weight: math.unit(50, "kg"),
  2388. name: "Back (NSFW)",
  2389. image: {
  2390. source: "./media/characters/elijah/back-nsfw.svg",
  2391. extra: 895 / 850,
  2392. bottom: 5.3 / 897.956
  2393. }
  2394. },
  2395. dick: {
  2396. height: math.unit(1, "feet"),
  2397. name: "Dick",
  2398. image: {
  2399. source: "./media/characters/elijah/dick.svg"
  2400. }
  2401. },
  2402. beakOpen: {
  2403. height: math.unit(1.25, "feet"),
  2404. name: "Beak (Open)",
  2405. image: {
  2406. source: "./media/characters/elijah/beak-open.svg"
  2407. }
  2408. },
  2409. beakShut: {
  2410. height: math.unit(1.25, "feet"),
  2411. name: "Beak (Shut)",
  2412. image: {
  2413. source: "./media/characters/elijah/beak-shut.svg"
  2414. }
  2415. },
  2416. footFlexing: {
  2417. height: math.unit(1.61, "feet"),
  2418. name: "Foot (Flexing)",
  2419. image: {
  2420. source: "./media/characters/elijah/foot-flexing.svg"
  2421. }
  2422. },
  2423. footStepping: {
  2424. height: math.unit(1.44, "feet"),
  2425. name: "Foot (Stepping)",
  2426. image: {
  2427. source: "./media/characters/elijah/foot-stepping.svg"
  2428. }
  2429. },
  2430. plantigradeLeg: {
  2431. height: math.unit(2.34, "feet"),
  2432. name: "Plantigrade Leg",
  2433. image: {
  2434. source: "./media/characters/elijah/plantigrade-leg.svg"
  2435. }
  2436. },
  2437. plantigradeFootLeft: {
  2438. height: math.unit(0.9, "feet"),
  2439. name: "Plantigrade Foot (Left)",
  2440. image: {
  2441. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2442. }
  2443. },
  2444. plantigradeFootRight: {
  2445. height: math.unit(0.9, "feet"),
  2446. name: "Plantigrade Foot (Right)",
  2447. image: {
  2448. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2449. }
  2450. },
  2451. },
  2452. [
  2453. {
  2454. name: "Normal",
  2455. height: math.unit(1.65, "meters")
  2456. },
  2457. {
  2458. name: "Macro",
  2459. height: math.unit(55, "meters"),
  2460. default: true
  2461. },
  2462. {
  2463. name: "Macro+",
  2464. height: math.unit(105, "meters")
  2465. },
  2466. ]
  2467. ))
  2468. characterMakers.push(() => makeCharacter(
  2469. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2470. {
  2471. front: {
  2472. height: math.unit(7 + 2/12, "feet"),
  2473. weight: math.unit(320, "kg"),
  2474. name: "Front",
  2475. image: {
  2476. source: "./media/characters/rai/front.svg",
  2477. extra: 1802/1696,
  2478. bottom: 68/1870
  2479. }
  2480. },
  2481. frontDressed: {
  2482. height: math.unit(7 + 2/12, "feet"),
  2483. weight: math.unit(320, "kg"),
  2484. name: "Front (Dressed)",
  2485. image: {
  2486. source: "./media/characters/rai/front-dressed.svg",
  2487. extra: 1802/1696,
  2488. bottom: 68/1870
  2489. }
  2490. },
  2491. side: {
  2492. height: math.unit(7 + 2/12, "feet"),
  2493. weight: math.unit(320, "kg"),
  2494. name: "Side",
  2495. image: {
  2496. source: "./media/characters/rai/side.svg",
  2497. extra: 1789/1710,
  2498. bottom: 115/1904
  2499. }
  2500. },
  2501. back: {
  2502. height: math.unit(7 + 2/12, "feet"),
  2503. weight: math.unit(320, "kg"),
  2504. name: "Back",
  2505. image: {
  2506. source: "./media/characters/rai/back.svg",
  2507. extra: 1770/1707,
  2508. bottom: 28/1798
  2509. }
  2510. },
  2511. feral: {
  2512. height: math.unit(9.5, "feet"),
  2513. weight: math.unit(640, "kg"),
  2514. name: "Feral",
  2515. image: {
  2516. source: "./media/characters/rai/feral.svg",
  2517. extra: 945/553,
  2518. bottom: 176/1121
  2519. }
  2520. },
  2521. dragon: {
  2522. height: math.unit(23, "feet"),
  2523. weight: math.unit(50000, "lb"),
  2524. name: "Dragon",
  2525. image: {
  2526. source: "./media/characters/rai/dragon.svg",
  2527. extra: 2498 / 2030,
  2528. bottom: 85.2 / 2584
  2529. }
  2530. },
  2531. maw: {
  2532. height: math.unit(1.69, "feet"),
  2533. name: "Maw",
  2534. image: {
  2535. source: "./media/characters/rai/maw.svg"
  2536. }
  2537. },
  2538. },
  2539. [
  2540. {
  2541. name: "Normal",
  2542. height: math.unit(7 + 2/12, "feet")
  2543. },
  2544. {
  2545. name: "Big",
  2546. height: math.unit(11, "feet")
  2547. },
  2548. {
  2549. name: "Macro",
  2550. height: math.unit(302, "feet"),
  2551. default: true
  2552. },
  2553. ]
  2554. ))
  2555. characterMakers.push(() => makeCharacter(
  2556. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2557. {
  2558. frontDressed: {
  2559. height: math.unit(216, "feet"),
  2560. weight: math.unit(7000000, "lb"),
  2561. name: "Front (Dressed)",
  2562. image: {
  2563. source: "./media/characters/jazzy/front-dressed.svg",
  2564. extra: 2738 / 2651,
  2565. bottom: 41.8 / 2786
  2566. }
  2567. },
  2568. backDressed: {
  2569. height: math.unit(216, "feet"),
  2570. weight: math.unit(7000000, "lb"),
  2571. name: "Back (Dressed)",
  2572. image: {
  2573. source: "./media/characters/jazzy/back-dressed.svg",
  2574. extra: 2775 / 2673,
  2575. bottom: 36.8 / 2817
  2576. }
  2577. },
  2578. front: {
  2579. height: math.unit(216, "feet"),
  2580. weight: math.unit(7000000, "lb"),
  2581. name: "Front",
  2582. image: {
  2583. source: "./media/characters/jazzy/front.svg",
  2584. extra: 2738 / 2651,
  2585. bottom: 41.8 / 2786
  2586. }
  2587. },
  2588. back: {
  2589. height: math.unit(216, "feet"),
  2590. weight: math.unit(7000000, "lb"),
  2591. name: "Back",
  2592. image: {
  2593. source: "./media/characters/jazzy/back.svg",
  2594. extra: 2775 / 2673,
  2595. bottom: 36.8 / 2817
  2596. }
  2597. },
  2598. maw: {
  2599. height: math.unit(20, "feet"),
  2600. name: "Maw",
  2601. image: {
  2602. source: "./media/characters/jazzy/maw.svg"
  2603. }
  2604. },
  2605. paws: {
  2606. height: math.unit(27.5, "feet"),
  2607. name: "Paws",
  2608. image: {
  2609. source: "./media/characters/jazzy/paws.svg"
  2610. }
  2611. },
  2612. eye: {
  2613. height: math.unit(4.4, "feet"),
  2614. name: "Eye",
  2615. image: {
  2616. source: "./media/characters/jazzy/eye.svg"
  2617. }
  2618. },
  2619. droneOffense: {
  2620. height: math.unit(9.5, "inches"),
  2621. name: "Drone (Offense)",
  2622. image: {
  2623. source: "./media/characters/jazzy/drone-offense.svg"
  2624. }
  2625. },
  2626. droneRecon: {
  2627. height: math.unit(9.5, "inches"),
  2628. name: "Drone (Recon)",
  2629. image: {
  2630. source: "./media/characters/jazzy/drone-recon.svg"
  2631. }
  2632. },
  2633. droneDefense: {
  2634. height: math.unit(9.5, "inches"),
  2635. name: "Drone (Defense)",
  2636. image: {
  2637. source: "./media/characters/jazzy/drone-defense.svg"
  2638. }
  2639. },
  2640. },
  2641. [
  2642. {
  2643. name: "Macro",
  2644. height: math.unit(216, "feet"),
  2645. default: true
  2646. },
  2647. ]
  2648. ))
  2649. characterMakers.push(() => makeCharacter(
  2650. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2651. {
  2652. front: {
  2653. height: math.unit(9 + 6/12, "feet"),
  2654. weight: math.unit(700, "lb"),
  2655. name: "Front",
  2656. image: {
  2657. source: "./media/characters/flamm/front.svg",
  2658. extra: 1751/1632,
  2659. bottom: 46/1797
  2660. }
  2661. },
  2662. buff: {
  2663. height: math.unit(9 + 6/12, "feet"),
  2664. weight: math.unit(950, "lb"),
  2665. name: "Buff",
  2666. image: {
  2667. source: "./media/characters/flamm/buff.svg",
  2668. extra: 3018/2874,
  2669. bottom: 221/3239
  2670. }
  2671. },
  2672. },
  2673. [
  2674. {
  2675. name: "Normal",
  2676. height: math.unit(9.5, "feet")
  2677. },
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(200, "feet"),
  2681. default: true
  2682. },
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2687. {
  2688. front: {
  2689. height: math.unit(5 + 3/12, "feet"),
  2690. weight: math.unit(60, "kg"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/zephiro/front.svg",
  2694. extra: 2309 / 2162,
  2695. bottom: 0.069
  2696. }
  2697. },
  2698. side: {
  2699. height: math.unit(5 + 3/12, "feet"),
  2700. weight: math.unit(60, "kg"),
  2701. name: "Side",
  2702. image: {
  2703. source: "./media/characters/zephiro/side.svg",
  2704. extra: 2403 / 2279,
  2705. bottom: 0.015
  2706. }
  2707. },
  2708. back: {
  2709. height: math.unit(5 + 3/12, "feet"),
  2710. weight: math.unit(60, "kg"),
  2711. name: "Back",
  2712. image: {
  2713. source: "./media/characters/zephiro/back.svg",
  2714. extra: 2373 / 2244,
  2715. bottom: 0.013
  2716. }
  2717. },
  2718. hand: {
  2719. height: math.unit(0.68, "feet"),
  2720. name: "Hand",
  2721. image: {
  2722. source: "./media/characters/zephiro/hand.svg"
  2723. }
  2724. },
  2725. paw: {
  2726. height: math.unit(1, "feet"),
  2727. name: "Paw",
  2728. image: {
  2729. source: "./media/characters/zephiro/paw.svg"
  2730. }
  2731. },
  2732. beans: {
  2733. height: math.unit(0.93, "feet"),
  2734. name: "Beans",
  2735. image: {
  2736. source: "./media/characters/zephiro/beans.svg"
  2737. }
  2738. },
  2739. },
  2740. [
  2741. {
  2742. name: "Micro",
  2743. height: math.unit(3, "inches")
  2744. },
  2745. {
  2746. name: "Normal",
  2747. height: math.unit(5 + 3 / 12, "feet"),
  2748. default: true
  2749. },
  2750. {
  2751. name: "Macro",
  2752. height: math.unit(118, "feet")
  2753. },
  2754. ]
  2755. ))
  2756. characterMakers.push(() => makeCharacter(
  2757. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2758. {
  2759. front: {
  2760. height: math.unit(5, "feet"),
  2761. weight: math.unit(90, "kg"),
  2762. name: "Front",
  2763. image: {
  2764. source: "./media/characters/fory/front.svg",
  2765. extra: 2862 / 2674,
  2766. bottom: 180 / 3043.8
  2767. }
  2768. },
  2769. back: {
  2770. height: math.unit(5, "feet"),
  2771. weight: math.unit(90, "kg"),
  2772. name: "Back",
  2773. image: {
  2774. source: "./media/characters/fory/back.svg",
  2775. extra: 2962 / 2791,
  2776. bottom: 106 / 3071.8
  2777. }
  2778. },
  2779. foot: {
  2780. height: math.unit(2.14, "feet"),
  2781. name: "Foot",
  2782. image: {
  2783. source: "./media/characters/fory/foot.svg"
  2784. }
  2785. },
  2786. },
  2787. [
  2788. {
  2789. name: "Normal",
  2790. height: math.unit(5, "feet")
  2791. },
  2792. {
  2793. name: "Macro",
  2794. height: math.unit(50, "feet"),
  2795. default: true
  2796. },
  2797. {
  2798. name: "Megamacro",
  2799. height: math.unit(10, "miles")
  2800. },
  2801. {
  2802. name: "Gigamacro",
  2803. height: math.unit(5, "earths")
  2804. },
  2805. ]
  2806. ))
  2807. characterMakers.push(() => makeCharacter(
  2808. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2809. {
  2810. front: {
  2811. height: math.unit(7, "feet"),
  2812. weight: math.unit(90, "kg"),
  2813. name: "Front",
  2814. image: {
  2815. source: "./media/characters/kurrikage/front.svg",
  2816. extra: 1845/1733,
  2817. bottom: 119/1964
  2818. }
  2819. },
  2820. back: {
  2821. height: math.unit(7, "feet"),
  2822. weight: math.unit(90, "kg"),
  2823. name: "Back",
  2824. image: {
  2825. source: "./media/characters/kurrikage/back.svg",
  2826. extra: 1790/1677,
  2827. bottom: 61/1851
  2828. }
  2829. },
  2830. dressed: {
  2831. height: math.unit(7, "feet"),
  2832. weight: math.unit(90, "kg"),
  2833. name: "Dressed",
  2834. image: {
  2835. source: "./media/characters/kurrikage/dressed.svg",
  2836. extra: 1845/1733,
  2837. bottom: 119/1964
  2838. }
  2839. },
  2840. foot: {
  2841. height: math.unit(1.5, "feet"),
  2842. name: "Foot",
  2843. image: {
  2844. source: "./media/characters/kurrikage/foot.svg"
  2845. }
  2846. },
  2847. staff: {
  2848. height: math.unit(6.7, "feet"),
  2849. name: "Staff",
  2850. image: {
  2851. source: "./media/characters/kurrikage/staff.svg"
  2852. }
  2853. },
  2854. peek: {
  2855. height: math.unit(1.05, "feet"),
  2856. name: "Peeking",
  2857. image: {
  2858. source: "./media/characters/kurrikage/peek.svg",
  2859. bottom: 0.08
  2860. }
  2861. },
  2862. },
  2863. [
  2864. {
  2865. name: "Normal",
  2866. height: math.unit(12, "feet"),
  2867. default: true
  2868. },
  2869. {
  2870. name: "Big",
  2871. height: math.unit(20, "feet")
  2872. },
  2873. {
  2874. name: "Macro",
  2875. height: math.unit(500, "feet")
  2876. },
  2877. {
  2878. name: "Megamacro",
  2879. height: math.unit(20, "miles")
  2880. },
  2881. ]
  2882. ))
  2883. characterMakers.push(() => makeCharacter(
  2884. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2885. {
  2886. front: {
  2887. height: math.unit(6, "feet"),
  2888. weight: math.unit(75, "kg"),
  2889. name: "Front",
  2890. image: {
  2891. source: "./media/characters/shingo/front.svg",
  2892. extra: 1900/1825,
  2893. bottom: 82/1982
  2894. }
  2895. },
  2896. side: {
  2897. height: math.unit(6, "feet"),
  2898. weight: math.unit(75, "kg"),
  2899. name: "Side",
  2900. image: {
  2901. source: "./media/characters/shingo/side.svg",
  2902. extra: 1930/1865,
  2903. bottom: 16/1946
  2904. }
  2905. },
  2906. back: {
  2907. height: math.unit(6, "feet"),
  2908. weight: math.unit(75, "kg"),
  2909. name: "Back",
  2910. image: {
  2911. source: "./media/characters/shingo/back.svg",
  2912. extra: 1922/1852,
  2913. bottom: 16/1938
  2914. }
  2915. },
  2916. frontDressed: {
  2917. height: math.unit(6, "feet"),
  2918. weight: math.unit(150, "lb"),
  2919. name: "Front-dressed",
  2920. image: {
  2921. source: "./media/characters/shingo/front-dressed.svg",
  2922. extra: 1900/1825,
  2923. bottom: 82/1982
  2924. }
  2925. },
  2926. paw: {
  2927. height: math.unit(1.29, "feet"),
  2928. name: "Paw",
  2929. image: {
  2930. source: "./media/characters/shingo/paw.svg"
  2931. }
  2932. },
  2933. hand: {
  2934. height: math.unit(1.07, "feet"),
  2935. name: "Hand",
  2936. image: {
  2937. source: "./media/characters/shingo/hand.svg"
  2938. }
  2939. },
  2940. frontAlt: {
  2941. height: math.unit(6, "feet"),
  2942. weight: math.unit(75, "kg"),
  2943. name: "Front (Alt)",
  2944. image: {
  2945. source: "./media/characters/shingo/front-alt.svg",
  2946. extra: 3511 / 3338,
  2947. bottom: 0.005
  2948. }
  2949. },
  2950. frontAlt2: {
  2951. height: math.unit(6, "feet"),
  2952. weight: math.unit(75, "kg"),
  2953. name: "Front (Alt 2)",
  2954. image: {
  2955. source: "./media/characters/shingo/front-alt-2.svg",
  2956. extra: 706/681,
  2957. bottom: 11/717
  2958. }
  2959. },
  2960. pawAlt: {
  2961. height: math.unit(1, "feet"),
  2962. name: "Paw (Alt)",
  2963. image: {
  2964. source: "./media/characters/shingo/paw-alt.svg"
  2965. }
  2966. },
  2967. },
  2968. [
  2969. {
  2970. name: "Micro",
  2971. height: math.unit(4, "inches")
  2972. },
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(6, "feet"),
  2976. default: true
  2977. },
  2978. {
  2979. name: "Macro",
  2980. height: math.unit(108, "feet")
  2981. },
  2982. {
  2983. name: "Macro+",
  2984. height: math.unit(1500, "feet")
  2985. },
  2986. ]
  2987. ))
  2988. characterMakers.push(() => makeCharacter(
  2989. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2990. {
  2991. side: {
  2992. height: math.unit(6, "feet"),
  2993. weight: math.unit(75, "kg"),
  2994. name: "Side",
  2995. image: {
  2996. source: "./media/characters/aigey/side.svg"
  2997. }
  2998. },
  2999. },
  3000. [
  3001. {
  3002. name: "Macro",
  3003. height: math.unit(200, "feet"),
  3004. default: true
  3005. },
  3006. {
  3007. name: "Megamacro",
  3008. height: math.unit(100, "miles")
  3009. },
  3010. ]
  3011. )
  3012. )
  3013. characterMakers.push(() => makeCharacter(
  3014. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3015. {
  3016. front: {
  3017. height: math.unit(5 + 5 / 12, "feet"),
  3018. weight: math.unit(75, "kg"),
  3019. name: "Front",
  3020. image: {
  3021. source: "./media/characters/natasha/front.svg",
  3022. extra: 859 / 824,
  3023. bottom: 23 / 879.6
  3024. }
  3025. },
  3026. frontNsfw: {
  3027. height: math.unit(5 + 5 / 12, "feet"),
  3028. weight: math.unit(75, "kg"),
  3029. name: "Front (NSFW)",
  3030. image: {
  3031. source: "./media/characters/natasha/front-nsfw.svg",
  3032. extra: 859 / 824,
  3033. bottom: 23 / 879.6
  3034. }
  3035. },
  3036. frontErect: {
  3037. height: math.unit(5 + 5 / 12, "feet"),
  3038. weight: math.unit(75, "kg"),
  3039. name: "Front (Erect)",
  3040. image: {
  3041. source: "./media/characters/natasha/front-erect.svg",
  3042. extra: 859 / 824,
  3043. bottom: 23 / 879.6
  3044. }
  3045. },
  3046. back: {
  3047. height: math.unit(5 + 5 / 12, "feet"),
  3048. weight: math.unit(75, "kg"),
  3049. name: "Back",
  3050. image: {
  3051. source: "./media/characters/natasha/back.svg",
  3052. extra: 887.9 / 852.6,
  3053. bottom: 9.7 / 896.4
  3054. }
  3055. },
  3056. backAlt: {
  3057. height: math.unit(5 + 5 / 12, "feet"),
  3058. weight: math.unit(75, "kg"),
  3059. name: "Back (Alt)",
  3060. image: {
  3061. source: "./media/characters/natasha/back-alt.svg",
  3062. extra: 1236.7 / 1192,
  3063. bottom: 22.3 / 1258.2
  3064. }
  3065. },
  3066. dick: {
  3067. height: math.unit(1.772, "feet"),
  3068. name: "Dick",
  3069. image: {
  3070. source: "./media/characters/natasha/dick.svg"
  3071. }
  3072. },
  3073. paw: {
  3074. height: math.unit(0.250, "meters"),
  3075. name: "Paw",
  3076. image: {
  3077. source: "./media/characters/natasha/paw.svg"
  3078. }
  3079. },
  3080. },
  3081. [
  3082. {
  3083. name: "Normal",
  3084. height: math.unit(5 + 5 / 12, "feet")
  3085. },
  3086. {
  3087. name: "Large",
  3088. height: math.unit(12, "feet")
  3089. },
  3090. {
  3091. name: "Macro",
  3092. height: math.unit(100, "feet"),
  3093. default: true
  3094. },
  3095. {
  3096. name: "Macro+",
  3097. height: math.unit(260, "feet")
  3098. },
  3099. {
  3100. name: "Macro++",
  3101. height: math.unit(1, "mile")
  3102. },
  3103. ]
  3104. ))
  3105. characterMakers.push(() => makeCharacter(
  3106. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3107. {
  3108. front: {
  3109. height: math.unit(6, "feet"),
  3110. weight: math.unit(75, "kg"),
  3111. name: "Front",
  3112. image: {
  3113. source: "./media/characters/malik/front.svg"
  3114. }
  3115. },
  3116. side: {
  3117. height: math.unit(6, "feet"),
  3118. weight: math.unit(75, "kg"),
  3119. name: "Side",
  3120. image: {
  3121. source: "./media/characters/malik/side.svg",
  3122. extra: 1.1539
  3123. }
  3124. },
  3125. back: {
  3126. height: math.unit(6, "feet"),
  3127. weight: math.unit(75, "kg"),
  3128. name: "Back",
  3129. image: {
  3130. source: "./media/characters/malik/back.svg"
  3131. }
  3132. },
  3133. },
  3134. [
  3135. {
  3136. name: "Macro",
  3137. height: math.unit(156, "feet"),
  3138. default: true
  3139. },
  3140. {
  3141. name: "Macro+",
  3142. height: math.unit(1188, "feet")
  3143. },
  3144. ]
  3145. ))
  3146. characterMakers.push(() => makeCharacter(
  3147. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3148. {
  3149. front: {
  3150. height: math.unit(6, "feet"),
  3151. weight: math.unit(75, "kg"),
  3152. name: "Front",
  3153. image: {
  3154. source: "./media/characters/sefer/front.svg",
  3155. extra: 848 / 659,
  3156. bottom: 28.3 / 876.442
  3157. }
  3158. },
  3159. back: {
  3160. height: math.unit(6, "feet"),
  3161. weight: math.unit(75, "kg"),
  3162. name: "Back",
  3163. image: {
  3164. source: "./media/characters/sefer/back.svg",
  3165. extra: 864 / 695,
  3166. bottom: 10 / 871
  3167. }
  3168. },
  3169. frontDressed: {
  3170. height: math.unit(6, "feet"),
  3171. weight: math.unit(75, "kg"),
  3172. name: "Front (Dressed)",
  3173. image: {
  3174. source: "./media/characters/sefer/front-dressed.svg",
  3175. extra: 839 / 653,
  3176. bottom: 37.6 / 878
  3177. }
  3178. },
  3179. },
  3180. [
  3181. {
  3182. name: "Normal",
  3183. height: math.unit(6, "feet"),
  3184. default: true
  3185. },
  3186. ]
  3187. ))
  3188. characterMakers.push(() => makeCharacter(
  3189. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3190. {
  3191. body: {
  3192. height: math.unit(2.2428, "meter"),
  3193. weight: math.unit(124.738, "kg"),
  3194. name: "Body",
  3195. image: {
  3196. extra: 1225 / 1050,
  3197. source: "./media/characters/north/front.svg"
  3198. }
  3199. }
  3200. },
  3201. [
  3202. {
  3203. name: "Micro",
  3204. height: math.unit(4, "inches")
  3205. },
  3206. {
  3207. name: "Macro",
  3208. height: math.unit(63, "meters")
  3209. },
  3210. {
  3211. name: "Megamacro",
  3212. height: math.unit(101, "miles"),
  3213. default: true
  3214. }
  3215. ]
  3216. ))
  3217. characterMakers.push(() => makeCharacter(
  3218. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3219. {
  3220. angled: {
  3221. height: math.unit(4, "meter"),
  3222. weight: math.unit(150, "kg"),
  3223. name: "Angled",
  3224. image: {
  3225. source: "./media/characters/talan/angled-sfw.svg",
  3226. bottom: 29 / 3734
  3227. }
  3228. },
  3229. angledNsfw: {
  3230. height: math.unit(4, "meter"),
  3231. weight: math.unit(150, "kg"),
  3232. name: "Angled (NSFW)",
  3233. image: {
  3234. source: "./media/characters/talan/angled-nsfw.svg",
  3235. bottom: 29 / 3734
  3236. }
  3237. },
  3238. frontNsfw: {
  3239. height: math.unit(4, "meter"),
  3240. weight: math.unit(150, "kg"),
  3241. name: "Front (NSFW)",
  3242. image: {
  3243. source: "./media/characters/talan/front-nsfw.svg",
  3244. bottom: 29 / 3734
  3245. }
  3246. },
  3247. sideNsfw: {
  3248. height: math.unit(4, "meter"),
  3249. weight: math.unit(150, "kg"),
  3250. name: "Side (NSFW)",
  3251. image: {
  3252. source: "./media/characters/talan/side-nsfw.svg",
  3253. bottom: 29 / 3734
  3254. }
  3255. },
  3256. back: {
  3257. height: math.unit(4, "meter"),
  3258. weight: math.unit(150, "kg"),
  3259. name: "Back",
  3260. image: {
  3261. source: "./media/characters/talan/back.svg"
  3262. }
  3263. },
  3264. dickBottom: {
  3265. height: math.unit(0.621, "meter"),
  3266. name: "Dick (Bottom)",
  3267. image: {
  3268. source: "./media/characters/talan/dick-bottom.svg"
  3269. }
  3270. },
  3271. dickTop: {
  3272. height: math.unit(0.621, "meter"),
  3273. name: "Dick (Top)",
  3274. image: {
  3275. source: "./media/characters/talan/dick-top.svg"
  3276. }
  3277. },
  3278. dickSide: {
  3279. height: math.unit(0.305, "meter"),
  3280. name: "Dick (Side)",
  3281. image: {
  3282. source: "./media/characters/talan/dick-side.svg"
  3283. }
  3284. },
  3285. dickFront: {
  3286. height: math.unit(0.305, "meter"),
  3287. name: "Dick (Front)",
  3288. image: {
  3289. source: "./media/characters/talan/dick-front.svg"
  3290. }
  3291. },
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(4, "meters")
  3297. },
  3298. {
  3299. name: "Macro",
  3300. height: math.unit(100, "meters")
  3301. },
  3302. {
  3303. name: "Megamacro",
  3304. height: math.unit(2, "miles"),
  3305. default: true
  3306. },
  3307. {
  3308. name: "Gigamacro",
  3309. height: math.unit(5000, "miles")
  3310. },
  3311. {
  3312. name: "Teramacro",
  3313. height: math.unit(100, "parsecs")
  3314. }
  3315. ]
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3319. {
  3320. front: {
  3321. height: math.unit(2, "meter"),
  3322. weight: math.unit(90, "kg"),
  3323. name: "Front",
  3324. image: {
  3325. source: "./media/characters/gael'rathus/front.svg"
  3326. }
  3327. },
  3328. frontAlt: {
  3329. height: math.unit(2, "meter"),
  3330. weight: math.unit(90, "kg"),
  3331. name: "Front (alt)",
  3332. image: {
  3333. source: "./media/characters/gael'rathus/front-alt.svg"
  3334. }
  3335. },
  3336. frontAlt2: {
  3337. height: math.unit(2, "meter"),
  3338. weight: math.unit(90, "kg"),
  3339. name: "Front (alt 2)",
  3340. image: {
  3341. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3342. }
  3343. }
  3344. },
  3345. [
  3346. {
  3347. name: "Normal",
  3348. height: math.unit(9, "feet"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Large",
  3353. height: math.unit(25, "feet")
  3354. },
  3355. {
  3356. name: "Macro",
  3357. height: math.unit(0.25, "miles")
  3358. },
  3359. {
  3360. name: "Megamacro",
  3361. height: math.unit(10, "miles")
  3362. }
  3363. ]
  3364. ))
  3365. characterMakers.push(() => makeCharacter(
  3366. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3367. {
  3368. side: {
  3369. height: math.unit(2, "meter"),
  3370. weight: math.unit(140, "kg"),
  3371. name: "Side",
  3372. image: {
  3373. source: "./media/characters/sosha/side.svg",
  3374. bottom: 0.042
  3375. }
  3376. },
  3377. },
  3378. [
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(12, "feet"),
  3382. default: true
  3383. }
  3384. ]
  3385. ))
  3386. characterMakers.push(() => makeCharacter(
  3387. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3388. {
  3389. side: {
  3390. height: math.unit(5 + 5 / 12, "feet"),
  3391. weight: math.unit(170, "kg"),
  3392. name: "Side",
  3393. image: {
  3394. source: "./media/characters/runnola/side.svg",
  3395. extra: 741 / 448,
  3396. bottom: 0.05
  3397. }
  3398. },
  3399. },
  3400. [
  3401. {
  3402. name: "Small",
  3403. height: math.unit(3, "feet")
  3404. },
  3405. {
  3406. name: "Normal",
  3407. height: math.unit(5 + 5 / 12, "feet"),
  3408. default: true
  3409. },
  3410. {
  3411. name: "Big",
  3412. height: math.unit(10, "feet")
  3413. },
  3414. ]
  3415. ))
  3416. characterMakers.push(() => makeCharacter(
  3417. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3418. {
  3419. front: {
  3420. height: math.unit(2, "meter"),
  3421. weight: math.unit(50, "kg"),
  3422. name: "Front",
  3423. image: {
  3424. source: "./media/characters/kurribird/front.svg",
  3425. bottom: 0.015
  3426. }
  3427. },
  3428. frontAlt: {
  3429. height: math.unit(1.5, "meter"),
  3430. weight: math.unit(50, "kg"),
  3431. name: "Front (Alt)",
  3432. image: {
  3433. source: "./media/characters/kurribird/front-alt.svg",
  3434. extra: 1.45
  3435. }
  3436. },
  3437. },
  3438. [
  3439. {
  3440. name: "Normal",
  3441. height: math.unit(7, "feet")
  3442. },
  3443. {
  3444. name: "Big",
  3445. height: math.unit(12, "feet"),
  3446. default: true
  3447. },
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(1500, "feet")
  3451. },
  3452. {
  3453. name: "Megamacro",
  3454. height: math.unit(2, "miles")
  3455. }
  3456. ]
  3457. ))
  3458. characterMakers.push(() => makeCharacter(
  3459. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3460. {
  3461. front: {
  3462. height: math.unit(2, "meter"),
  3463. weight: math.unit(80, "kg"),
  3464. name: "Front",
  3465. image: {
  3466. source: "./media/characters/elbial/front.svg",
  3467. extra: 1643 / 1556,
  3468. bottom: 60.2 / 1696
  3469. }
  3470. },
  3471. side: {
  3472. height: math.unit(2, "meter"),
  3473. weight: math.unit(80, "kg"),
  3474. name: "Side",
  3475. image: {
  3476. source: "./media/characters/elbial/side.svg",
  3477. extra: 1601/1528,
  3478. bottom: 97/1698
  3479. }
  3480. },
  3481. back: {
  3482. height: math.unit(2, "meter"),
  3483. weight: math.unit(80, "kg"),
  3484. name: "Back",
  3485. image: {
  3486. source: "./media/characters/elbial/back.svg",
  3487. extra: 1653/1569,
  3488. bottom: 20/1673
  3489. }
  3490. },
  3491. frontDressed: {
  3492. height: math.unit(2, "meter"),
  3493. weight: math.unit(80, "kg"),
  3494. name: "Front (Dressed)",
  3495. image: {
  3496. source: "./media/characters/elbial/front-dressed.svg",
  3497. extra: 1638/1569,
  3498. bottom: 70/1708
  3499. }
  3500. },
  3501. genitals: {
  3502. height: math.unit(2 / 3.367, "meter"),
  3503. name: "Genitals",
  3504. image: {
  3505. source: "./media/characters/elbial/genitals.svg"
  3506. }
  3507. },
  3508. },
  3509. [
  3510. {
  3511. name: "Large",
  3512. height: math.unit(100, "feet")
  3513. },
  3514. {
  3515. name: "Macro",
  3516. height: math.unit(500, "feet"),
  3517. default: true
  3518. },
  3519. {
  3520. name: "Megamacro",
  3521. height: math.unit(10, "miles")
  3522. },
  3523. {
  3524. name: "Gigamacro",
  3525. height: math.unit(25000, "miles")
  3526. },
  3527. {
  3528. name: "Full-Size",
  3529. height: math.unit(8000000, "gigaparsecs")
  3530. }
  3531. ]
  3532. ))
  3533. characterMakers.push(() => makeCharacter(
  3534. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3535. {
  3536. front: {
  3537. height: math.unit(2, "meter"),
  3538. weight: math.unit(60, "kg"),
  3539. name: "Front",
  3540. image: {
  3541. source: "./media/characters/noah/front.svg"
  3542. }
  3543. },
  3544. talons: {
  3545. height: math.unit(0.315, "meter"),
  3546. name: "Talons",
  3547. image: {
  3548. source: "./media/characters/noah/talons.svg"
  3549. }
  3550. }
  3551. },
  3552. [
  3553. {
  3554. name: "Large",
  3555. height: math.unit(50, "feet")
  3556. },
  3557. {
  3558. name: "Macro",
  3559. height: math.unit(750, "feet"),
  3560. default: true
  3561. },
  3562. {
  3563. name: "Megamacro",
  3564. height: math.unit(50, "miles")
  3565. },
  3566. {
  3567. name: "Gigamacro",
  3568. height: math.unit(100000, "miles")
  3569. },
  3570. {
  3571. name: "Full-Size",
  3572. height: math.unit(3000000000, "miles")
  3573. }
  3574. ]
  3575. ))
  3576. characterMakers.push(() => makeCharacter(
  3577. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3578. {
  3579. front: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(80, "kg"),
  3582. name: "Front",
  3583. image: {
  3584. source: "./media/characters/natalya/front.svg"
  3585. }
  3586. },
  3587. back: {
  3588. height: math.unit(2, "meter"),
  3589. weight: math.unit(80, "kg"),
  3590. name: "Back",
  3591. image: {
  3592. source: "./media/characters/natalya/back.svg"
  3593. }
  3594. }
  3595. },
  3596. [
  3597. {
  3598. name: "Normal",
  3599. height: math.unit(150, "feet"),
  3600. default: true
  3601. },
  3602. {
  3603. name: "Megamacro",
  3604. height: math.unit(5, "miles")
  3605. },
  3606. {
  3607. name: "Full-Size",
  3608. height: math.unit(600, "kiloparsecs")
  3609. }
  3610. ]
  3611. ))
  3612. characterMakers.push(() => makeCharacter(
  3613. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3614. {
  3615. front: {
  3616. height: math.unit(2, "meter"),
  3617. weight: math.unit(50, "kg"),
  3618. name: "Front",
  3619. image: {
  3620. source: "./media/characters/erestrebah/front.svg",
  3621. extra: 1262/1162,
  3622. bottom: 96/1358
  3623. }
  3624. },
  3625. back: {
  3626. height: math.unit(2, "meter"),
  3627. weight: math.unit(50, "kg"),
  3628. name: "Back",
  3629. image: {
  3630. source: "./media/characters/erestrebah/back.svg",
  3631. extra: 1257/1139,
  3632. bottom: 13/1270
  3633. }
  3634. },
  3635. wing: {
  3636. height: math.unit(2, "meter"),
  3637. weight: math.unit(50, "kg"),
  3638. name: "Wing",
  3639. image: {
  3640. source: "./media/characters/erestrebah/wing.svg",
  3641. extra: 1262/1162,
  3642. bottom: 96/1358
  3643. }
  3644. },
  3645. mouth: {
  3646. height: math.unit(0.39, "feet"),
  3647. name: "Mouth",
  3648. image: {
  3649. source: "./media/characters/erestrebah/mouth.svg"
  3650. }
  3651. }
  3652. },
  3653. [
  3654. {
  3655. name: "Normal",
  3656. height: math.unit(10, "feet")
  3657. },
  3658. {
  3659. name: "Large",
  3660. height: math.unit(50, "feet"),
  3661. default: true
  3662. },
  3663. {
  3664. name: "Macro",
  3665. height: math.unit(300, "feet")
  3666. },
  3667. {
  3668. name: "Macro+",
  3669. height: math.unit(750, "feet")
  3670. },
  3671. {
  3672. name: "Megamacro",
  3673. height: math.unit(3, "miles")
  3674. }
  3675. ]
  3676. ))
  3677. characterMakers.push(() => makeCharacter(
  3678. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3679. {
  3680. front: {
  3681. height: math.unit(2, "meter"),
  3682. weight: math.unit(80, "kg"),
  3683. name: "Front",
  3684. image: {
  3685. source: "./media/characters/jennifer/front.svg",
  3686. bottom: 0.11,
  3687. extra: 1.16
  3688. }
  3689. },
  3690. frontAlt: {
  3691. height: math.unit(2, "meter"),
  3692. weight: math.unit(80, "kg"),
  3693. name: "Front (Alt)",
  3694. image: {
  3695. source: "./media/characters/jennifer/front-alt.svg"
  3696. }
  3697. }
  3698. },
  3699. [
  3700. {
  3701. name: "Canon Height",
  3702. height: math.unit(120, "feet"),
  3703. default: true
  3704. },
  3705. {
  3706. name: "Macro+",
  3707. height: math.unit(300, "feet")
  3708. },
  3709. {
  3710. name: "Megamacro",
  3711. height: math.unit(20000, "feet")
  3712. }
  3713. ]
  3714. ))
  3715. characterMakers.push(() => makeCharacter(
  3716. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3717. {
  3718. front: {
  3719. height: math.unit(2, "meter"),
  3720. weight: math.unit(50, "kg"),
  3721. name: "Front",
  3722. image: {
  3723. source: "./media/characters/kalista/front.svg",
  3724. extra: 1314/1145,
  3725. bottom: 101/1415
  3726. }
  3727. },
  3728. back: {
  3729. height: math.unit(2, "meter"),
  3730. weight: math.unit(50, "kg"),
  3731. name: "Back",
  3732. image: {
  3733. source: "./media/characters/kalista/back.svg",
  3734. extra: 1366 / 1156,
  3735. bottom: 33.9 / 1362.78
  3736. }
  3737. }
  3738. },
  3739. [
  3740. {
  3741. name: "Uncomfortably Small",
  3742. height: math.unit(10, "feet")
  3743. },
  3744. {
  3745. name: "Small",
  3746. height: math.unit(30, "feet")
  3747. },
  3748. {
  3749. name: "Macro",
  3750. height: math.unit(100, "feet"),
  3751. default: true
  3752. },
  3753. {
  3754. name: "Macro+",
  3755. height: math.unit(2000, "feet")
  3756. },
  3757. {
  3758. name: "True Form",
  3759. height: math.unit(8924, "miles")
  3760. }
  3761. ]
  3762. ))
  3763. characterMakers.push(() => makeCharacter(
  3764. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3765. {
  3766. front: {
  3767. height: math.unit(2, "meter"),
  3768. weight: math.unit(120, "kg"),
  3769. name: "Front",
  3770. image: {
  3771. source: "./media/characters/ggv/front.svg"
  3772. }
  3773. },
  3774. side: {
  3775. height: math.unit(2, "meter"),
  3776. weight: math.unit(120, "kg"),
  3777. name: "Side",
  3778. image: {
  3779. source: "./media/characters/ggv/side.svg"
  3780. }
  3781. }
  3782. },
  3783. [
  3784. {
  3785. name: "Extremely Puny",
  3786. height: math.unit(9 + 5 / 12, "feet")
  3787. },
  3788. {
  3789. name: "Horribly Small",
  3790. height: math.unit(47.7, "miles"),
  3791. default: true
  3792. },
  3793. {
  3794. name: "Reasonably Sized",
  3795. height: math.unit(25000, "parsecs")
  3796. },
  3797. {
  3798. name: "Slightly Uncompressed",
  3799. height: math.unit(7.77e31, "parsecs")
  3800. },
  3801. {
  3802. name: "Omniversal",
  3803. height: math.unit(1e300, "meters")
  3804. },
  3805. ]
  3806. ))
  3807. characterMakers.push(() => makeCharacter(
  3808. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3809. {
  3810. front: {
  3811. height: math.unit(2, "meter"),
  3812. weight: math.unit(75, "lb"),
  3813. name: "Front",
  3814. image: {
  3815. source: "./media/characters/napalm/front.svg"
  3816. }
  3817. },
  3818. back: {
  3819. height: math.unit(2, "meter"),
  3820. weight: math.unit(75, "lb"),
  3821. name: "Back",
  3822. image: {
  3823. source: "./media/characters/napalm/back.svg"
  3824. }
  3825. }
  3826. },
  3827. [
  3828. {
  3829. name: "Standard",
  3830. height: math.unit(55, "feet"),
  3831. default: true
  3832. }
  3833. ]
  3834. ))
  3835. characterMakers.push(() => makeCharacter(
  3836. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3837. {
  3838. front: {
  3839. height: math.unit(7 + 5 / 6, "feet"),
  3840. weight: math.unit(325, "lb"),
  3841. name: "Front",
  3842. image: {
  3843. source: "./media/characters/asana/front.svg",
  3844. extra: 1133 / 1060,
  3845. bottom: 15.2 / 1148.6
  3846. }
  3847. },
  3848. back: {
  3849. height: math.unit(7 + 5 / 6, "feet"),
  3850. weight: math.unit(325, "lb"),
  3851. name: "Back",
  3852. image: {
  3853. source: "./media/characters/asana/back.svg",
  3854. extra: 1114 / 1043,
  3855. bottom: 5 / 1120
  3856. }
  3857. },
  3858. dressedDark: {
  3859. height: math.unit(7 + 5 / 6, "feet"),
  3860. weight: math.unit(325, "lb"),
  3861. name: "Dressed (Dark)",
  3862. image: {
  3863. source: "./media/characters/asana/dressed-dark.svg",
  3864. extra: 1133 / 1060,
  3865. bottom: 15.2 / 1148.6
  3866. }
  3867. },
  3868. dressedLight: {
  3869. height: math.unit(7 + 5 / 6, "feet"),
  3870. weight: math.unit(325, "lb"),
  3871. name: "Dressed (Light)",
  3872. image: {
  3873. source: "./media/characters/asana/dressed-light.svg",
  3874. extra: 1133 / 1060,
  3875. bottom: 15.2 / 1148.6
  3876. }
  3877. },
  3878. },
  3879. [
  3880. {
  3881. name: "Standard",
  3882. height: math.unit(7 + 5 / 6, "feet"),
  3883. default: true
  3884. },
  3885. {
  3886. name: "Large",
  3887. height: math.unit(10, "meters")
  3888. },
  3889. {
  3890. name: "Macro",
  3891. height: math.unit(2500, "meters")
  3892. },
  3893. {
  3894. name: "Megamacro",
  3895. height: math.unit(5e6, "meters")
  3896. },
  3897. {
  3898. name: "Examacro",
  3899. height: math.unit(5e12, "lightyears")
  3900. },
  3901. {
  3902. name: "Max Size",
  3903. height: math.unit(1e31, "lightyears")
  3904. }
  3905. ]
  3906. ))
  3907. characterMakers.push(() => makeCharacter(
  3908. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3909. {
  3910. front: {
  3911. height: math.unit(2, "meter"),
  3912. weight: math.unit(60, "kg"),
  3913. name: "Front",
  3914. image: {
  3915. source: "./media/characters/ebony/front.svg",
  3916. bottom: 0.03,
  3917. extra: 1045 / 810 + 0.03
  3918. }
  3919. },
  3920. side: {
  3921. height: math.unit(2, "meter"),
  3922. weight: math.unit(60, "kg"),
  3923. name: "Side",
  3924. image: {
  3925. source: "./media/characters/ebony/side.svg",
  3926. bottom: 0.03,
  3927. extra: 1045 / 810 + 0.03
  3928. }
  3929. },
  3930. back: {
  3931. height: math.unit(2, "meter"),
  3932. weight: math.unit(60, "kg"),
  3933. name: "Back",
  3934. image: {
  3935. source: "./media/characters/ebony/back.svg",
  3936. bottom: 0.01,
  3937. extra: 1045 / 810 + 0.01
  3938. }
  3939. },
  3940. },
  3941. [
  3942. // TODO check why I did this lol
  3943. {
  3944. name: "Standard",
  3945. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3946. default: true
  3947. },
  3948. {
  3949. name: "Macro",
  3950. height: math.unit(200, "feet")
  3951. },
  3952. {
  3953. name: "Gigamacro",
  3954. height: math.unit(13000, "km")
  3955. }
  3956. ]
  3957. ))
  3958. characterMakers.push(() => makeCharacter(
  3959. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3960. {
  3961. front: {
  3962. height: math.unit(6, "feet"),
  3963. weight: math.unit(175, "lb"),
  3964. name: "Front",
  3965. image: {
  3966. source: "./media/characters/mountain/front.svg",
  3967. extra: 972 / 955,
  3968. bottom: 64 / 1036.6
  3969. }
  3970. },
  3971. back: {
  3972. height: math.unit(6, "feet"),
  3973. weight: math.unit(175, "lb"),
  3974. name: "Back",
  3975. image: {
  3976. source: "./media/characters/mountain/back.svg",
  3977. extra: 970 / 950,
  3978. bottom: 28.25 / 999
  3979. }
  3980. },
  3981. },
  3982. [
  3983. {
  3984. name: "Large",
  3985. height: math.unit(20, "meters")
  3986. },
  3987. {
  3988. name: "Macro",
  3989. height: math.unit(300, "meters")
  3990. },
  3991. {
  3992. name: "Gigamacro",
  3993. height: math.unit(10000, "km"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Examacro",
  3998. height: math.unit(10e9, "lightyears")
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4004. {
  4005. front: {
  4006. height: math.unit(8, "feet"),
  4007. weight: math.unit(500, "lb"),
  4008. name: "Front",
  4009. image: {
  4010. source: "./media/characters/rick/front.svg"
  4011. }
  4012. }
  4013. },
  4014. [
  4015. {
  4016. name: "Normal",
  4017. height: math.unit(8, "feet"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Macro",
  4022. height: math.unit(5, "km")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(8, "feet"),
  4031. weight: math.unit(120, "lb"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/ona/front.svg"
  4035. }
  4036. },
  4037. frontAlt: {
  4038. height: math.unit(8, "feet"),
  4039. weight: math.unit(120, "lb"),
  4040. name: "Front (Alt)",
  4041. image: {
  4042. source: "./media/characters/ona/front-alt.svg"
  4043. }
  4044. },
  4045. back: {
  4046. height: math.unit(8, "feet"),
  4047. weight: math.unit(120, "lb"),
  4048. name: "Back",
  4049. image: {
  4050. source: "./media/characters/ona/back.svg"
  4051. }
  4052. },
  4053. foot: {
  4054. height: math.unit(1.1, "feet"),
  4055. name: "Foot",
  4056. image: {
  4057. source: "./media/characters/ona/foot.svg"
  4058. }
  4059. }
  4060. },
  4061. [
  4062. {
  4063. name: "Megamacro",
  4064. height: math.unit(70, "km"),
  4065. default: true
  4066. },
  4067. {
  4068. name: "Gigamacro",
  4069. height: math.unit(681818, "miles")
  4070. },
  4071. {
  4072. name: "Examacro",
  4073. height: math.unit(3800000, "lightyears")
  4074. },
  4075. ]
  4076. ))
  4077. characterMakers.push(() => makeCharacter(
  4078. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4079. {
  4080. front: {
  4081. height: math.unit(12, "feet"),
  4082. weight: math.unit(3000, "lb"),
  4083. name: "Front",
  4084. image: {
  4085. source: "./media/characters/mech/front.svg",
  4086. extra: 2900 / 2770,
  4087. bottom: 110 / 3010
  4088. }
  4089. },
  4090. back: {
  4091. height: math.unit(12, "feet"),
  4092. weight: math.unit(3000, "lb"),
  4093. name: "Back",
  4094. image: {
  4095. source: "./media/characters/mech/back.svg",
  4096. extra: 3011 / 2890,
  4097. bottom: 94 / 3105
  4098. }
  4099. },
  4100. maw: {
  4101. height: math.unit(3.07, "feet"),
  4102. name: "Maw",
  4103. image: {
  4104. source: "./media/characters/mech/maw.svg"
  4105. }
  4106. },
  4107. head: {
  4108. height: math.unit(2.82, "feet"),
  4109. name: "Head",
  4110. image: {
  4111. source: "./media/characters/mech/head.svg"
  4112. }
  4113. },
  4114. dick: {
  4115. height: math.unit(1.43, "feet"),
  4116. name: "Dick",
  4117. image: {
  4118. source: "./media/characters/mech/dick.svg"
  4119. }
  4120. },
  4121. },
  4122. [
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(12, "feet")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(300, "feet"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Macro+",
  4134. height: math.unit(1500, "feet")
  4135. },
  4136. ]
  4137. ))
  4138. characterMakers.push(() => makeCharacter(
  4139. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4140. {
  4141. front: {
  4142. height: math.unit(1.3, "meter"),
  4143. weight: math.unit(30, "kg"),
  4144. name: "Front",
  4145. image: {
  4146. source: "./media/characters/gregory/front.svg",
  4147. }
  4148. }
  4149. },
  4150. [
  4151. {
  4152. name: "Normal",
  4153. height: math.unit(1.3, "meter"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "Macro",
  4158. height: math.unit(20, "meter")
  4159. }
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4164. {
  4165. front: {
  4166. height: math.unit(2.8, "meter"),
  4167. weight: math.unit(200, "kg"),
  4168. name: "Front",
  4169. image: {
  4170. source: "./media/characters/elory/front.svg",
  4171. }
  4172. }
  4173. },
  4174. [
  4175. {
  4176. name: "Normal",
  4177. height: math.unit(2.8, "meter"),
  4178. default: true
  4179. },
  4180. {
  4181. name: "Macro",
  4182. height: math.unit(38, "meter")
  4183. }
  4184. ]
  4185. ))
  4186. characterMakers.push(() => makeCharacter(
  4187. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4188. {
  4189. front: {
  4190. height: math.unit(470, "feet"),
  4191. weight: math.unit(924, "tons"),
  4192. name: "Front",
  4193. image: {
  4194. source: "./media/characters/angelpatamon/front.svg",
  4195. }
  4196. }
  4197. },
  4198. [
  4199. {
  4200. name: "Normal",
  4201. height: math.unit(470, "feet"),
  4202. default: true
  4203. },
  4204. {
  4205. name: "Deity Size I",
  4206. height: math.unit(28651.2, "km")
  4207. },
  4208. {
  4209. name: "Deity Size II",
  4210. height: math.unit(171907.2, "km")
  4211. }
  4212. ]
  4213. ))
  4214. characterMakers.push(() => makeCharacter(
  4215. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4216. {
  4217. side: {
  4218. height: math.unit(7.2, "meter"),
  4219. weight: math.unit(8.2, "tons"),
  4220. name: "Side",
  4221. image: {
  4222. source: "./media/characters/cryae/side.svg",
  4223. extra: 3500 / 1500
  4224. }
  4225. }
  4226. },
  4227. [
  4228. {
  4229. name: "Normal",
  4230. height: math.unit(7.2, "meter"),
  4231. default: true
  4232. }
  4233. ]
  4234. ))
  4235. characterMakers.push(() => makeCharacter(
  4236. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4237. {
  4238. front: {
  4239. height: math.unit(6, "feet"),
  4240. weight: math.unit(175, "lb"),
  4241. name: "Front",
  4242. image: {
  4243. source: "./media/characters/xera/front.svg",
  4244. extra: 2377 / 1972,
  4245. bottom: 75.5 / 2452
  4246. }
  4247. },
  4248. side: {
  4249. height: math.unit(6, "feet"),
  4250. weight: math.unit(175, "lb"),
  4251. name: "Side",
  4252. image: {
  4253. source: "./media/characters/xera/side.svg",
  4254. extra: 2345 / 2019,
  4255. bottom: 39.7 / 2384
  4256. }
  4257. },
  4258. back: {
  4259. height: math.unit(6, "feet"),
  4260. weight: math.unit(175, "lb"),
  4261. name: "Back",
  4262. image: {
  4263. source: "./media/characters/xera/back.svg",
  4264. extra: 2095 / 1984,
  4265. bottom: 67 / 2166
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Small",
  4272. height: math.unit(10, "feet")
  4273. },
  4274. {
  4275. name: "Macro",
  4276. height: math.unit(500, "meters"),
  4277. default: true
  4278. },
  4279. {
  4280. name: "Macro+",
  4281. height: math.unit(10, "km")
  4282. },
  4283. {
  4284. name: "Gigamacro",
  4285. height: math.unit(25000, "km")
  4286. },
  4287. {
  4288. name: "Teramacro",
  4289. height: math.unit(3e6, "km")
  4290. }
  4291. ]
  4292. ))
  4293. characterMakers.push(() => makeCharacter(
  4294. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4295. {
  4296. front: {
  4297. height: math.unit(6, "feet"),
  4298. weight: math.unit(175, "lb"),
  4299. name: "Front",
  4300. image: {
  4301. source: "./media/characters/nebula/front.svg",
  4302. extra: 2566 / 2362,
  4303. bottom: 81 / 2644
  4304. }
  4305. }
  4306. },
  4307. [
  4308. {
  4309. name: "Small",
  4310. height: math.unit(4.5, "meters")
  4311. },
  4312. {
  4313. name: "Macro",
  4314. height: math.unit(1500, "meters"),
  4315. default: true
  4316. },
  4317. {
  4318. name: "Megamacro",
  4319. height: math.unit(150, "km")
  4320. },
  4321. {
  4322. name: "Gigamacro",
  4323. height: math.unit(27000, "km")
  4324. }
  4325. ]
  4326. ))
  4327. characterMakers.push(() => makeCharacter(
  4328. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4329. {
  4330. front: {
  4331. height: math.unit(6, "feet"),
  4332. weight: math.unit(225, "lb"),
  4333. name: "Front",
  4334. image: {
  4335. source: "./media/characters/abysgar/front.svg"
  4336. }
  4337. }
  4338. },
  4339. [
  4340. {
  4341. name: "Small",
  4342. height: math.unit(4.5, "meters")
  4343. },
  4344. {
  4345. name: "Macro",
  4346. height: math.unit(1250, "meters"),
  4347. default: true
  4348. },
  4349. {
  4350. name: "Megamacro",
  4351. height: math.unit(125, "km")
  4352. },
  4353. {
  4354. name: "Gigamacro",
  4355. height: math.unit(26000, "km")
  4356. }
  4357. ]
  4358. ))
  4359. characterMakers.push(() => makeCharacter(
  4360. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4361. {
  4362. front: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(180, "lb"),
  4365. name: "Front",
  4366. image: {
  4367. source: "./media/characters/yakuz/front.svg"
  4368. }
  4369. }
  4370. },
  4371. [
  4372. {
  4373. name: "Small",
  4374. height: math.unit(5, "meters")
  4375. },
  4376. {
  4377. name: "Macro",
  4378. height: math.unit(1500, "meters"),
  4379. default: true
  4380. },
  4381. {
  4382. name: "Megamacro",
  4383. height: math.unit(200, "km")
  4384. },
  4385. {
  4386. name: "Gigamacro",
  4387. height: math.unit(100000, "km")
  4388. }
  4389. ]
  4390. ))
  4391. characterMakers.push(() => makeCharacter(
  4392. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4393. {
  4394. front: {
  4395. height: math.unit(6, "feet"),
  4396. weight: math.unit(175, "lb"),
  4397. name: "Front",
  4398. image: {
  4399. source: "./media/characters/mirova/front.svg",
  4400. extra: 3334 / 3071,
  4401. bottom: 42 / 3375.6
  4402. }
  4403. }
  4404. },
  4405. [
  4406. {
  4407. name: "Small",
  4408. height: math.unit(5, "meters")
  4409. },
  4410. {
  4411. name: "Macro",
  4412. height: math.unit(900, "meters"),
  4413. default: true
  4414. },
  4415. {
  4416. name: "Megamacro",
  4417. height: math.unit(135, "km")
  4418. },
  4419. {
  4420. name: "Gigamacro",
  4421. height: math.unit(20000, "km")
  4422. }
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4427. {
  4428. side: {
  4429. height: math.unit(28.35, "feet"),
  4430. weight: math.unit(99.75, "tons"),
  4431. name: "Side",
  4432. image: {
  4433. source: "./media/characters/asana-mech/side.svg",
  4434. extra: 923 / 699,
  4435. bottom: 50 / 975
  4436. }
  4437. },
  4438. chaingun: {
  4439. height: math.unit(7, "feet"),
  4440. weight: math.unit(2400, "lb"),
  4441. name: "Chaingun",
  4442. image: {
  4443. source: "./media/characters/asana-mech/chaingun.svg"
  4444. }
  4445. },
  4446. laser: {
  4447. height: math.unit(7.12, "feet"),
  4448. weight: math.unit(2000, "lb"),
  4449. name: "Laser",
  4450. image: {
  4451. source: "./media/characters/asana-mech/laser.svg"
  4452. }
  4453. },
  4454. },
  4455. [
  4456. {
  4457. name: "Normal",
  4458. height: math.unit(28.35, "feet"),
  4459. default: true
  4460. },
  4461. {
  4462. name: "Macro",
  4463. height: math.unit(2500, "feet")
  4464. },
  4465. {
  4466. name: "Megamacro",
  4467. height: math.unit(25, "miles")
  4468. },
  4469. {
  4470. name: "Examacro",
  4471. height: math.unit(6e8, "lightyears")
  4472. },
  4473. ]
  4474. ))
  4475. characterMakers.push(() => makeCharacter(
  4476. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4477. {
  4478. front: {
  4479. height: math.unit(5, "meters"),
  4480. weight: math.unit(1000, "kg"),
  4481. name: "Front",
  4482. image: {
  4483. source: "./media/characters/asche/front.svg",
  4484. extra: 1258 / 1190,
  4485. bottom: 47 / 1305
  4486. }
  4487. },
  4488. frontUnderwear: {
  4489. height: math.unit(5, "meters"),
  4490. weight: math.unit(1000, "kg"),
  4491. name: "Front (Underwear)",
  4492. image: {
  4493. source: "./media/characters/asche/front-underwear.svg",
  4494. extra: 1258 / 1190,
  4495. bottom: 47 / 1305
  4496. }
  4497. },
  4498. frontDressed: {
  4499. height: math.unit(5, "meters"),
  4500. weight: math.unit(1000, "kg"),
  4501. name: "Front (Dressed)",
  4502. image: {
  4503. source: "./media/characters/asche/front-dressed.svg",
  4504. extra: 1258 / 1190,
  4505. bottom: 47 / 1305
  4506. }
  4507. },
  4508. frontArmor: {
  4509. height: math.unit(5, "meters"),
  4510. weight: math.unit(1000, "kg"),
  4511. name: "Front (Armored)",
  4512. image: {
  4513. source: "./media/characters/asche/front-armored.svg",
  4514. extra: 1374 / 1308,
  4515. bottom: 23 / 1397
  4516. }
  4517. },
  4518. mp724: {
  4519. height: math.unit(0.96, "meters"),
  4520. weight: math.unit(38, "kg"),
  4521. name: "H&K MP724",
  4522. image: {
  4523. source: "./media/characters/asche/h&k-mp724.svg"
  4524. }
  4525. },
  4526. side: {
  4527. height: math.unit(5, "meters"),
  4528. weight: math.unit(1000, "kg"),
  4529. name: "Side",
  4530. image: {
  4531. source: "./media/characters/asche/side.svg",
  4532. extra: 1717 / 1609,
  4533. bottom: 0.005
  4534. }
  4535. },
  4536. back: {
  4537. height: math.unit(5, "meters"),
  4538. weight: math.unit(1000, "kg"),
  4539. name: "Back",
  4540. image: {
  4541. source: "./media/characters/asche/back.svg",
  4542. extra: 1570 / 1501
  4543. }
  4544. },
  4545. },
  4546. [
  4547. {
  4548. name: "DEFCON 5",
  4549. height: math.unit(5, "meters")
  4550. },
  4551. {
  4552. name: "DEFCON 4",
  4553. height: math.unit(500, "meters"),
  4554. default: true
  4555. },
  4556. {
  4557. name: "DEFCON 3",
  4558. height: math.unit(5, "km")
  4559. },
  4560. {
  4561. name: "DEFCON 2",
  4562. height: math.unit(500, "km")
  4563. },
  4564. {
  4565. name: "DEFCON 1",
  4566. height: math.unit(500000, "km")
  4567. },
  4568. {
  4569. name: "DEFCON 0",
  4570. height: math.unit(3, "gigaparsecs")
  4571. },
  4572. ]
  4573. ))
  4574. characterMakers.push(() => makeCharacter(
  4575. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4576. {
  4577. front: {
  4578. height: math.unit(2, "meters"),
  4579. weight: math.unit(76, "kg"),
  4580. name: "Front",
  4581. image: {
  4582. source: "./media/characters/gale/front.svg"
  4583. }
  4584. },
  4585. frontAlt1: {
  4586. height: math.unit(2, "meters"),
  4587. weight: math.unit(76, "kg"),
  4588. name: "Front (Alt 1)",
  4589. image: {
  4590. source: "./media/characters/gale/front-alt-1.svg"
  4591. }
  4592. },
  4593. frontAlt2: {
  4594. height: math.unit(2, "meters"),
  4595. weight: math.unit(76, "kg"),
  4596. name: "Front (Alt 2)",
  4597. image: {
  4598. source: "./media/characters/gale/front-alt-2.svg"
  4599. }
  4600. },
  4601. },
  4602. [
  4603. {
  4604. name: "Normal",
  4605. height: math.unit(7, "feet")
  4606. },
  4607. {
  4608. name: "Macro",
  4609. height: math.unit(150, "feet"),
  4610. default: true
  4611. },
  4612. {
  4613. name: "Macro+",
  4614. height: math.unit(300, "feet")
  4615. },
  4616. ]
  4617. ))
  4618. characterMakers.push(() => makeCharacter(
  4619. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4620. {
  4621. front: {
  4622. height: math.unit(5 + 10/12, "feet"),
  4623. weight: math.unit(67, "kg"),
  4624. name: "Front",
  4625. image: {
  4626. source: "./media/characters/draylen/front.svg",
  4627. extra: 832/777,
  4628. bottom: 85/917
  4629. }
  4630. }
  4631. },
  4632. [
  4633. {
  4634. name: "Normal",
  4635. height: math.unit(5 + 10/12, "feet")
  4636. },
  4637. {
  4638. name: "Macro",
  4639. height: math.unit(150, "feet"),
  4640. default: true
  4641. }
  4642. ]
  4643. ))
  4644. characterMakers.push(() => makeCharacter(
  4645. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4646. {
  4647. front: {
  4648. height: math.unit(7 + 9 / 12, "feet"),
  4649. weight: math.unit(379, "lbs"),
  4650. name: "Front",
  4651. image: {
  4652. source: "./media/characters/chez/front.svg"
  4653. }
  4654. },
  4655. side: {
  4656. height: math.unit(7 + 9 / 12, "feet"),
  4657. weight: math.unit(379, "lbs"),
  4658. name: "Side",
  4659. image: {
  4660. source: "./media/characters/chez/side.svg"
  4661. }
  4662. }
  4663. },
  4664. [
  4665. {
  4666. name: "Normal",
  4667. height: math.unit(7 + 9 / 12, "feet"),
  4668. default: true
  4669. },
  4670. {
  4671. name: "God King",
  4672. height: math.unit(9750000, "meters")
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(6, "feet"),
  4681. weight: math.unit(275, "lbs"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/kaylum/front.svg",
  4685. bottom: 0.01,
  4686. extra: 1166 / 1031
  4687. }
  4688. },
  4689. frontWingless: {
  4690. height: math.unit(6, "feet"),
  4691. weight: math.unit(275, "lbs"),
  4692. name: "Front (Wingless)",
  4693. image: {
  4694. source: "./media/characters/kaylum/front-wingless.svg",
  4695. bottom: 0.01,
  4696. extra: 1117 / 1031
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Normal",
  4703. height: math.unit(3.05, "meters")
  4704. },
  4705. {
  4706. name: "Master",
  4707. height: math.unit(5.5, "meters")
  4708. },
  4709. {
  4710. name: "Rampage",
  4711. height: math.unit(19, "meters")
  4712. },
  4713. {
  4714. name: "Macro Lite",
  4715. height: math.unit(37, "meters")
  4716. },
  4717. {
  4718. name: "Hyper Predator",
  4719. height: math.unit(61, "meters")
  4720. },
  4721. {
  4722. name: "Macro",
  4723. height: math.unit(138, "meters"),
  4724. default: true
  4725. }
  4726. ]
  4727. ))
  4728. characterMakers.push(() => makeCharacter(
  4729. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4730. {
  4731. front: {
  4732. height: math.unit(6, "feet"),
  4733. weight: math.unit(150, "lbs"),
  4734. name: "Front",
  4735. image: {
  4736. source: "./media/characters/geta/front.svg"
  4737. }
  4738. }
  4739. },
  4740. [
  4741. {
  4742. name: "Micro",
  4743. height: math.unit(3, "inches"),
  4744. default: true
  4745. },
  4746. {
  4747. name: "Normal",
  4748. height: math.unit(5 + 5 / 12, "feet")
  4749. }
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(6, "feet"),
  4757. weight: math.unit(300, "lbs"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/tyrnn/front.svg"
  4761. }
  4762. }
  4763. },
  4764. [
  4765. {
  4766. name: "Main Height",
  4767. height: math.unit(355, "feet"),
  4768. default: true
  4769. },
  4770. {
  4771. name: "Fave. Height",
  4772. height: math.unit(2400, "feet")
  4773. }
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(300, "lbs"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/appledectomy/front.svg"
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Macro",
  4791. height: math.unit(2500, "feet")
  4792. },
  4793. {
  4794. name: "Megamacro",
  4795. height: math.unit(50, "miles"),
  4796. default: true
  4797. },
  4798. {
  4799. name: "Gigamacro",
  4800. height: math.unit(5000, "miles")
  4801. },
  4802. {
  4803. name: "Teramacro",
  4804. height: math.unit(250000, "miles")
  4805. },
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(200, "lbs"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/vulpes/front.svg",
  4817. extra: 573 / 543,
  4818. bottom: 0.033
  4819. }
  4820. },
  4821. side: {
  4822. height: math.unit(6, "feet"),
  4823. weight: math.unit(200, "lbs"),
  4824. name: "Side",
  4825. image: {
  4826. source: "./media/characters/vulpes/side.svg",
  4827. extra: 577 / 549,
  4828. bottom: 11 / 588
  4829. }
  4830. },
  4831. back: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(200, "lbs"),
  4834. name: "Back",
  4835. image: {
  4836. source: "./media/characters/vulpes/back.svg",
  4837. extra: 573 / 549,
  4838. bottom: 20 / 593
  4839. }
  4840. },
  4841. feet: {
  4842. height: math.unit(1.276, "feet"),
  4843. name: "Feet",
  4844. image: {
  4845. source: "./media/characters/vulpes/feet.svg"
  4846. }
  4847. },
  4848. maw: {
  4849. height: math.unit(1.18, "feet"),
  4850. name: "Maw",
  4851. image: {
  4852. source: "./media/characters/vulpes/maw.svg"
  4853. }
  4854. },
  4855. },
  4856. [
  4857. {
  4858. name: "Micro",
  4859. height: math.unit(2, "inches")
  4860. },
  4861. {
  4862. name: "Normal",
  4863. height: math.unit(6.3, "feet")
  4864. },
  4865. {
  4866. name: "Macro",
  4867. height: math.unit(850, "feet")
  4868. },
  4869. {
  4870. name: "Megamacro",
  4871. height: math.unit(7500, "feet"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Gigamacro",
  4876. height: math.unit(570000, "miles")
  4877. }
  4878. ]
  4879. ))
  4880. characterMakers.push(() => makeCharacter(
  4881. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4882. {
  4883. front: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(210, "lbs"),
  4886. name: "Front",
  4887. image: {
  4888. source: "./media/characters/rain-fallen/front.svg"
  4889. }
  4890. },
  4891. side: {
  4892. height: math.unit(6, "feet"),
  4893. weight: math.unit(210, "lbs"),
  4894. name: "Side",
  4895. image: {
  4896. source: "./media/characters/rain-fallen/side.svg"
  4897. }
  4898. },
  4899. back: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(210, "lbs"),
  4902. name: "Back",
  4903. image: {
  4904. source: "./media/characters/rain-fallen/back.svg"
  4905. }
  4906. },
  4907. feral: {
  4908. height: math.unit(9, "feet"),
  4909. weight: math.unit(700, "lbs"),
  4910. name: "Feral",
  4911. image: {
  4912. source: "./media/characters/rain-fallen/feral.svg"
  4913. }
  4914. },
  4915. },
  4916. [
  4917. {
  4918. name: "Meddling with Mortals",
  4919. height: math.unit(8 + 8/12, "feet")
  4920. },
  4921. {
  4922. name: "Normal",
  4923. height: math.unit(5, "meter")
  4924. },
  4925. {
  4926. name: "Macro",
  4927. height: math.unit(150, "meter"),
  4928. default: true
  4929. },
  4930. {
  4931. name: "Megamacro",
  4932. height: math.unit(278e6, "meter")
  4933. },
  4934. {
  4935. name: "Gigamacro",
  4936. height: math.unit(2e9, "meter")
  4937. },
  4938. {
  4939. name: "Teramacro",
  4940. height: math.unit(8e12, "meter")
  4941. },
  4942. {
  4943. name: "Devourer",
  4944. height: math.unit(14, "zettameters")
  4945. },
  4946. {
  4947. name: "Scarlet King",
  4948. height: math.unit(18, "yottameters")
  4949. },
  4950. {
  4951. name: "Void",
  4952. height: math.unit(1e88, "yottameters")
  4953. }
  4954. ]
  4955. ))
  4956. characterMakers.push(() => makeCharacter(
  4957. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4958. {
  4959. standing: {
  4960. height: math.unit(6, "feet"),
  4961. weight: math.unit(180, "lbs"),
  4962. name: "Standing",
  4963. image: {
  4964. source: "./media/characters/zaakira/standing.svg",
  4965. extra: 1599/1504,
  4966. bottom: 39/1638
  4967. }
  4968. },
  4969. laying: {
  4970. height: math.unit(3, "feet"),
  4971. weight: math.unit(180, "lbs"),
  4972. name: "Laying",
  4973. image: {
  4974. source: "./media/characters/zaakira/laying.svg"
  4975. }
  4976. },
  4977. },
  4978. [
  4979. {
  4980. name: "Normal",
  4981. height: math.unit(12, "feet")
  4982. },
  4983. {
  4984. name: "Macro",
  4985. height: math.unit(279, "feet"),
  4986. default: true
  4987. }
  4988. ]
  4989. ))
  4990. characterMakers.push(() => makeCharacter(
  4991. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4992. {
  4993. femSfw: {
  4994. height: math.unit(8, "feet"),
  4995. weight: math.unit(350, "lb"),
  4996. name: "Fem",
  4997. image: {
  4998. source: "./media/characters/sigvald/fem-sfw.svg",
  4999. extra: 182 / 164,
  5000. bottom: 8.7 / 190.5
  5001. }
  5002. },
  5003. femNsfw: {
  5004. height: math.unit(8, "feet"),
  5005. weight: math.unit(350, "lb"),
  5006. name: "Fem (NSFW)",
  5007. image: {
  5008. source: "./media/characters/sigvald/fem-nsfw.svg",
  5009. extra: 182 / 164,
  5010. bottom: 8.7 / 190.5
  5011. }
  5012. },
  5013. maleNsfw: {
  5014. height: math.unit(8, "feet"),
  5015. weight: math.unit(350, "lb"),
  5016. name: "Male (NSFW)",
  5017. image: {
  5018. source: "./media/characters/sigvald/male-nsfw.svg",
  5019. extra: 182 / 164,
  5020. bottom: 8.7 / 190.5
  5021. }
  5022. },
  5023. hermNsfw: {
  5024. height: math.unit(8, "feet"),
  5025. weight: math.unit(350, "lb"),
  5026. name: "Herm (NSFW)",
  5027. image: {
  5028. source: "./media/characters/sigvald/herm-nsfw.svg",
  5029. extra: 182 / 164,
  5030. bottom: 8.7 / 190.5
  5031. }
  5032. },
  5033. dick: {
  5034. height: math.unit(2.36, "feet"),
  5035. name: "Dick",
  5036. image: {
  5037. source: "./media/characters/sigvald/dick.svg"
  5038. }
  5039. },
  5040. eye: {
  5041. height: math.unit(0.31, "feet"),
  5042. name: "Eye",
  5043. image: {
  5044. source: "./media/characters/sigvald/eye.svg"
  5045. }
  5046. },
  5047. mouth: {
  5048. height: math.unit(0.92, "feet"),
  5049. name: "Mouth",
  5050. image: {
  5051. source: "./media/characters/sigvald/mouth.svg"
  5052. }
  5053. },
  5054. paws: {
  5055. height: math.unit(2.2, "feet"),
  5056. name: "Paws",
  5057. image: {
  5058. source: "./media/characters/sigvald/paws.svg"
  5059. }
  5060. }
  5061. },
  5062. [
  5063. {
  5064. name: "Normal",
  5065. height: math.unit(8, "feet")
  5066. },
  5067. {
  5068. name: "Large",
  5069. height: math.unit(12, "feet")
  5070. },
  5071. {
  5072. name: "Larger",
  5073. height: math.unit(20, "feet")
  5074. },
  5075. {
  5076. name: "Macro",
  5077. height: math.unit(150, "feet")
  5078. },
  5079. {
  5080. name: "Macro+",
  5081. height: math.unit(200, "feet"),
  5082. default: true
  5083. },
  5084. ]
  5085. ))
  5086. characterMakers.push(() => makeCharacter(
  5087. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5088. {
  5089. side: {
  5090. height: math.unit(12, "feet"),
  5091. weight: math.unit(2000, "kg"),
  5092. name: "Side",
  5093. image: {
  5094. source: "./media/characters/scott/side.svg",
  5095. extra: 754 / 724,
  5096. bottom: 0.069
  5097. }
  5098. },
  5099. upright: {
  5100. height: math.unit(12, "feet"),
  5101. weight: math.unit(2000, "kg"),
  5102. name: "Upright",
  5103. image: {
  5104. source: "./media/characters/scott/upright.svg",
  5105. extra: 3881 / 3722,
  5106. bottom: 0.05
  5107. }
  5108. },
  5109. },
  5110. [
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(12, "feet"),
  5114. default: true
  5115. },
  5116. ]
  5117. ))
  5118. characterMakers.push(() => makeCharacter(
  5119. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5120. {
  5121. side: {
  5122. height: math.unit(8, "meters"),
  5123. weight: math.unit(84755, "lbs"),
  5124. name: "Side",
  5125. image: {
  5126. source: "./media/characters/tobias/side.svg",
  5127. extra: 1474 / 1096,
  5128. bottom: 38.9 / 1513.1235
  5129. }
  5130. },
  5131. },
  5132. [
  5133. {
  5134. name: "Normal",
  5135. height: math.unit(8, "meters"),
  5136. default: true
  5137. },
  5138. ]
  5139. ))
  5140. characterMakers.push(() => makeCharacter(
  5141. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5142. {
  5143. front: {
  5144. height: math.unit(5.5, "feet"),
  5145. weight: math.unit(400, "lbs"),
  5146. name: "Front",
  5147. image: {
  5148. source: "./media/characters/kieran/front.svg",
  5149. extra: 2694 / 2364,
  5150. bottom: 217 / 2908
  5151. }
  5152. },
  5153. side: {
  5154. height: math.unit(5.5, "feet"),
  5155. weight: math.unit(400, "lbs"),
  5156. name: "Side",
  5157. image: {
  5158. source: "./media/characters/kieran/side.svg",
  5159. extra: 875 / 777,
  5160. bottom: 84.6 / 959
  5161. }
  5162. },
  5163. },
  5164. [
  5165. {
  5166. name: "Normal",
  5167. height: math.unit(5.5, "feet"),
  5168. default: true
  5169. },
  5170. ]
  5171. ))
  5172. characterMakers.push(() => makeCharacter(
  5173. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5174. {
  5175. side: {
  5176. height: math.unit(2, "meters"),
  5177. weight: math.unit(70, "kg"),
  5178. name: "Side",
  5179. image: {
  5180. source: "./media/characters/sanya/side.svg",
  5181. bottom: 0.02,
  5182. extra: 1.02
  5183. }
  5184. },
  5185. },
  5186. [
  5187. {
  5188. name: "Small",
  5189. height: math.unit(2, "meters")
  5190. },
  5191. {
  5192. name: "Normal",
  5193. height: math.unit(3, "meters")
  5194. },
  5195. {
  5196. name: "Macro",
  5197. height: math.unit(16, "meters"),
  5198. default: true
  5199. },
  5200. ]
  5201. ))
  5202. characterMakers.push(() => makeCharacter(
  5203. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5204. {
  5205. front: {
  5206. height: math.unit(2, "meters"),
  5207. weight: math.unit(120, "kg"),
  5208. name: "Front",
  5209. image: {
  5210. source: "./media/characters/miranda/front.svg",
  5211. extra: 195 / 185,
  5212. bottom: 10.9 / 206.5
  5213. }
  5214. },
  5215. back: {
  5216. height: math.unit(2, "meters"),
  5217. weight: math.unit(120, "kg"),
  5218. name: "Back",
  5219. image: {
  5220. source: "./media/characters/miranda/back.svg",
  5221. extra: 201 / 193,
  5222. bottom: 2.3 / 203.7
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(10, "feet"),
  5230. default: true
  5231. }
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "James", species: ["deer"], tags: ["anthro"] },
  5236. {
  5237. side: {
  5238. height: math.unit(2, "meters"),
  5239. weight: math.unit(100, "kg"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/james/front.svg",
  5243. extra: 10 / 8.5
  5244. }
  5245. },
  5246. },
  5247. [
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(8.5, "feet"),
  5251. default: true
  5252. }
  5253. ]
  5254. ))
  5255. characterMakers.push(() => makeCharacter(
  5256. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5257. {
  5258. side: {
  5259. height: math.unit(9.5, "feet"),
  5260. weight: math.unit(2500, "lbs"),
  5261. name: "Side",
  5262. image: {
  5263. source: "./media/characters/heather/side.svg"
  5264. }
  5265. },
  5266. },
  5267. [
  5268. {
  5269. name: "Normal",
  5270. height: math.unit(9.5, "feet"),
  5271. default: true
  5272. }
  5273. ]
  5274. ))
  5275. characterMakers.push(() => makeCharacter(
  5276. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5277. {
  5278. side: {
  5279. height: math.unit(6.5, "feet"),
  5280. weight: math.unit(400, "lbs"),
  5281. name: "Side",
  5282. image: {
  5283. source: "./media/characters/lukas/side.svg",
  5284. extra: 7.25 / 6.5
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(6.5, "feet"),
  5292. default: true
  5293. }
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5298. {
  5299. side: {
  5300. height: math.unit(5, "feet"),
  5301. weight: math.unit(3000, "lbs"),
  5302. name: "Side",
  5303. image: {
  5304. source: "./media/characters/louise/side.svg"
  5305. }
  5306. },
  5307. },
  5308. [
  5309. {
  5310. name: "Normal",
  5311. height: math.unit(5, "feet"),
  5312. default: true
  5313. }
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5318. {
  5319. side: {
  5320. height: math.unit(6, "feet"),
  5321. weight: math.unit(150, "lbs"),
  5322. name: "Side",
  5323. image: {
  5324. source: "./media/characters/ramona/side.svg",
  5325. extra: 871/854,
  5326. bottom: 41/912
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Normal",
  5333. height: math.unit(5.3, "meters"),
  5334. default: true
  5335. },
  5336. {
  5337. name: "Macro",
  5338. height: math.unit(20, "stories")
  5339. },
  5340. {
  5341. name: "Macro+",
  5342. height: math.unit(50, "stories")
  5343. },
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5348. {
  5349. standing: {
  5350. height: math.unit(5.75, "feet"),
  5351. weight: math.unit(160, "lbs"),
  5352. name: "Standing",
  5353. image: {
  5354. source: "./media/characters/deerpuff/standing.svg",
  5355. extra: 682 / 624
  5356. }
  5357. },
  5358. sitting: {
  5359. height: math.unit(5.75 / 1.79, "feet"),
  5360. weight: math.unit(160, "lbs"),
  5361. name: "Sitting",
  5362. image: {
  5363. source: "./media/characters/deerpuff/sitting.svg",
  5364. bottom: 44 / 400,
  5365. extra: 1
  5366. }
  5367. },
  5368. taurLaying: {
  5369. height: math.unit(6, "feet"),
  5370. weight: math.unit(400, "lbs"),
  5371. name: "Taur (Laying)",
  5372. image: {
  5373. source: "./media/characters/deerpuff/taur-laying.svg"
  5374. }
  5375. },
  5376. },
  5377. [
  5378. {
  5379. name: "Puffball",
  5380. height: math.unit(6, "inches")
  5381. },
  5382. {
  5383. name: "Normalpuff",
  5384. height: math.unit(5.75, "feet")
  5385. },
  5386. {
  5387. name: "Macropuff",
  5388. height: math.unit(1500, "feet"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Megapuff",
  5393. height: math.unit(500, "miles")
  5394. },
  5395. {
  5396. name: "Gigapuff",
  5397. height: math.unit(250000, "miles")
  5398. },
  5399. {
  5400. name: "Omegapuff",
  5401. height: math.unit(1000, "lightyears")
  5402. },
  5403. ]
  5404. ))
  5405. characterMakers.push(() => makeCharacter(
  5406. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5407. {
  5408. stomping: {
  5409. height: math.unit(6, "feet"),
  5410. weight: math.unit(170, "lbs"),
  5411. name: "Stomping",
  5412. image: {
  5413. source: "./media/characters/vivian/stomping.svg"
  5414. }
  5415. },
  5416. sitting: {
  5417. height: math.unit(6 / 1.75, "feet"),
  5418. weight: math.unit(170, "lbs"),
  5419. name: "Sitting",
  5420. image: {
  5421. source: "./media/characters/vivian/sitting.svg",
  5422. bottom: 1 / 6.4,
  5423. extra: 1,
  5424. }
  5425. },
  5426. },
  5427. [
  5428. {
  5429. name: "Normal",
  5430. height: math.unit(7, "feet"),
  5431. default: true
  5432. },
  5433. {
  5434. name: "Macro",
  5435. height: math.unit(10, "stories")
  5436. },
  5437. {
  5438. name: "Macro+",
  5439. height: math.unit(30, "stories")
  5440. },
  5441. {
  5442. name: "Megamacro",
  5443. height: math.unit(10, "miles")
  5444. },
  5445. {
  5446. name: "Megamacro+",
  5447. height: math.unit(2750000, "meters")
  5448. },
  5449. ]
  5450. ))
  5451. characterMakers.push(() => makeCharacter(
  5452. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5453. {
  5454. front: {
  5455. height: math.unit(6, "feet"),
  5456. weight: math.unit(160, "lbs"),
  5457. name: "Front",
  5458. image: {
  5459. source: "./media/characters/prince/front.svg",
  5460. extra: 3400 / 3000
  5461. }
  5462. },
  5463. jumping: {
  5464. height: math.unit(6, "feet"),
  5465. weight: math.unit(160, "lbs"),
  5466. name: "Jumping",
  5467. image: {
  5468. source: "./media/characters/prince/jump.svg",
  5469. extra: 2555 / 2134
  5470. }
  5471. },
  5472. },
  5473. [
  5474. {
  5475. name: "Normal",
  5476. height: math.unit(7.75, "feet"),
  5477. default: true
  5478. },
  5479. {
  5480. name: "Not cute",
  5481. height: math.unit(17, "feet")
  5482. },
  5483. {
  5484. name: "I said NOT",
  5485. height: math.unit(91, "feet")
  5486. },
  5487. {
  5488. name: "Please stop",
  5489. height: math.unit(560, "feet")
  5490. },
  5491. {
  5492. name: "What have you done",
  5493. height: math.unit(2200, "feet")
  5494. },
  5495. {
  5496. name: "Deer God",
  5497. height: math.unit(3.6, "miles")
  5498. },
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5503. {
  5504. standing: {
  5505. height: math.unit(6, "feet"),
  5506. weight: math.unit(300, "lbs"),
  5507. name: "Standing",
  5508. image: {
  5509. source: "./media/characters/psymon/standing.svg",
  5510. extra: 1888 / 1810,
  5511. bottom: 0.05
  5512. }
  5513. },
  5514. slithering: {
  5515. height: math.unit(6, "feet"),
  5516. weight: math.unit(300, "lbs"),
  5517. name: "Slithering",
  5518. image: {
  5519. source: "./media/characters/psymon/slithering.svg",
  5520. extra: 1330 / 1224
  5521. }
  5522. },
  5523. slitheringAlt: {
  5524. height: math.unit(6, "feet"),
  5525. weight: math.unit(300, "lbs"),
  5526. name: "Slithering (Alt)",
  5527. image: {
  5528. source: "./media/characters/psymon/slithering-alt.svg",
  5529. extra: 1330 / 1224
  5530. }
  5531. },
  5532. },
  5533. [
  5534. {
  5535. name: "Normal",
  5536. height: math.unit(11.25, "feet"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Large",
  5541. height: math.unit(27, "feet")
  5542. },
  5543. {
  5544. name: "Giant",
  5545. height: math.unit(87, "feet")
  5546. },
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(365, "feet")
  5550. },
  5551. {
  5552. name: "Megamacro",
  5553. height: math.unit(3, "miles")
  5554. },
  5555. {
  5556. name: "World Serpent",
  5557. height: math.unit(8000, "miles")
  5558. },
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5563. {
  5564. front: {
  5565. height: math.unit(6, "feet"),
  5566. weight: math.unit(180, "lbs"),
  5567. name: "Front",
  5568. image: {
  5569. source: "./media/characters/daimos/front.svg",
  5570. extra: 4160 / 3897,
  5571. bottom: 0.021
  5572. }
  5573. }
  5574. },
  5575. [
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(8, "feet"),
  5579. default: true
  5580. },
  5581. {
  5582. name: "Big Dog",
  5583. height: math.unit(22, "feet")
  5584. },
  5585. {
  5586. name: "Macro",
  5587. height: math.unit(127, "feet")
  5588. },
  5589. {
  5590. name: "Megamacro",
  5591. height: math.unit(3600, "feet")
  5592. },
  5593. ]
  5594. ))
  5595. characterMakers.push(() => makeCharacter(
  5596. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5597. {
  5598. side: {
  5599. height: math.unit(6, "feet"),
  5600. weight: math.unit(180, "lbs"),
  5601. name: "Side",
  5602. image: {
  5603. source: "./media/characters/blake/side.svg",
  5604. extra: 1212 / 1120,
  5605. bottom: 0.05
  5606. }
  5607. },
  5608. crouched: {
  5609. height: math.unit(6 * 0.57, "feet"),
  5610. weight: math.unit(180, "lbs"),
  5611. name: "Crouched",
  5612. image: {
  5613. source: "./media/characters/blake/crouched.svg",
  5614. extra: 840 / 587,
  5615. bottom: 0.04
  5616. }
  5617. },
  5618. bent: {
  5619. height: math.unit(6 * 0.75, "feet"),
  5620. weight: math.unit(180, "lbs"),
  5621. name: "Bent",
  5622. image: {
  5623. source: "./media/characters/blake/bent.svg",
  5624. extra: 592 / 544,
  5625. bottom: 0.035
  5626. }
  5627. },
  5628. },
  5629. [
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(8 + 1 / 6, "feet"),
  5633. default: true
  5634. },
  5635. {
  5636. name: "Big Backside",
  5637. height: math.unit(37, "feet")
  5638. },
  5639. {
  5640. name: "Subway Shredder",
  5641. height: math.unit(72, "feet")
  5642. },
  5643. {
  5644. name: "City Carver",
  5645. height: math.unit(1675, "feet")
  5646. },
  5647. {
  5648. name: "Tectonic Tweaker",
  5649. height: math.unit(2300, "miles")
  5650. },
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5655. {
  5656. front: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(180, "lbs"),
  5659. name: "Front",
  5660. image: {
  5661. source: "./media/characters/guisetto/front.svg",
  5662. extra: 856 / 817,
  5663. bottom: 0.06
  5664. }
  5665. },
  5666. airborne: {
  5667. height: math.unit(6, "feet"),
  5668. weight: math.unit(180, "lbs"),
  5669. name: "Airborne",
  5670. image: {
  5671. source: "./media/characters/guisetto/airborne.svg",
  5672. extra: 584 / 525
  5673. }
  5674. },
  5675. },
  5676. [
  5677. {
  5678. name: "Normal",
  5679. height: math.unit(10 + 11 / 12, "feet"),
  5680. default: true
  5681. },
  5682. {
  5683. name: "Large",
  5684. height: math.unit(35, "feet")
  5685. },
  5686. {
  5687. name: "Macro",
  5688. height: math.unit(475, "feet")
  5689. },
  5690. ]
  5691. ))
  5692. characterMakers.push(() => makeCharacter(
  5693. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5694. {
  5695. front: {
  5696. height: math.unit(6, "feet"),
  5697. weight: math.unit(180, "lbs"),
  5698. name: "Front",
  5699. image: {
  5700. source: "./media/characters/luxor/front.svg",
  5701. extra: 2940 / 2152
  5702. }
  5703. },
  5704. back: {
  5705. height: math.unit(6, "feet"),
  5706. weight: math.unit(180, "lbs"),
  5707. name: "Back",
  5708. image: {
  5709. source: "./media/characters/luxor/back.svg",
  5710. extra: 1083 / 960
  5711. }
  5712. },
  5713. },
  5714. [
  5715. {
  5716. name: "Normal",
  5717. height: math.unit(5 + 5 / 6, "feet"),
  5718. default: true
  5719. },
  5720. {
  5721. name: "Lamp",
  5722. height: math.unit(50, "feet")
  5723. },
  5724. {
  5725. name: "Lämp",
  5726. height: math.unit(300, "feet")
  5727. },
  5728. {
  5729. name: "The sun is a lamp",
  5730. height: math.unit(250000, "miles")
  5731. },
  5732. ]
  5733. ))
  5734. characterMakers.push(() => makeCharacter(
  5735. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5736. {
  5737. front: {
  5738. height: math.unit(6, "feet"),
  5739. weight: math.unit(50, "lbs"),
  5740. name: "Front",
  5741. image: {
  5742. source: "./media/characters/huoyan/front.svg"
  5743. }
  5744. },
  5745. side: {
  5746. height: math.unit(6, "feet"),
  5747. weight: math.unit(180, "lbs"),
  5748. name: "Side",
  5749. image: {
  5750. source: "./media/characters/huoyan/side.svg"
  5751. }
  5752. },
  5753. },
  5754. [
  5755. {
  5756. name: "Chef",
  5757. height: math.unit(9, "feet")
  5758. },
  5759. {
  5760. name: "Normal",
  5761. height: math.unit(65, "feet"),
  5762. default: true
  5763. },
  5764. {
  5765. name: "Macro",
  5766. height: math.unit(780, "feet")
  5767. },
  5768. {
  5769. name: "Flaming Mountain",
  5770. height: math.unit(4.8, "miles")
  5771. },
  5772. {
  5773. name: "Celestial",
  5774. height: math.unit(765000, "miles")
  5775. },
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(5 + 3 / 4, "feet"),
  5783. weight: math.unit(120, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/tails/front.svg"
  5787. }
  5788. }
  5789. },
  5790. [
  5791. {
  5792. name: "Normal",
  5793. height: math.unit(5 + 3 / 4, "feet"),
  5794. default: true
  5795. }
  5796. ]
  5797. ))
  5798. characterMakers.push(() => makeCharacter(
  5799. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5800. {
  5801. front: {
  5802. height: math.unit(4, "feet"),
  5803. weight: math.unit(50, "lbs"),
  5804. name: "Front",
  5805. image: {
  5806. source: "./media/characters/rainy/front.svg"
  5807. }
  5808. }
  5809. },
  5810. [
  5811. {
  5812. name: "Macro",
  5813. height: math.unit(800, "feet"),
  5814. default: true
  5815. }
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(150, "lbs"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/rainier/front.svg"
  5827. }
  5828. }
  5829. },
  5830. [
  5831. {
  5832. name: "Micro",
  5833. height: math.unit(2, "mm"),
  5834. default: true
  5835. }
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5840. {
  5841. front: {
  5842. height: math.unit(8 + 4/12, "feet"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/andy-renard/front.svg",
  5846. extra: 1839/1726,
  5847. bottom: 134/1973
  5848. }
  5849. },
  5850. back: {
  5851. height: math.unit(8 + 4/12, "feet"),
  5852. name: "Back",
  5853. image: {
  5854. source: "./media/characters/andy-renard/back.svg",
  5855. extra: 1838/1710,
  5856. bottom: 105/1943
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Tall",
  5863. height: math.unit(8 + 4/12, "feet")
  5864. },
  5865. {
  5866. name: "Mini Macro",
  5867. height: math.unit(15, "feet"),
  5868. default: true
  5869. },
  5870. {
  5871. name: "Macro",
  5872. height: math.unit(100, "feet")
  5873. },
  5874. {
  5875. name: "Mega Macro",
  5876. height: math.unit(1000, "feet")
  5877. },
  5878. {
  5879. name: "Giga Macro",
  5880. height: math.unit(10, "miles")
  5881. },
  5882. {
  5883. name: "God Macro",
  5884. height: math.unit(1, "multiverse")
  5885. },
  5886. ]
  5887. ))
  5888. characterMakers.push(() => makeCharacter(
  5889. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5890. {
  5891. front: {
  5892. height: math.unit(6, "feet"),
  5893. weight: math.unit(210, "lbs"),
  5894. name: "Front",
  5895. image: {
  5896. source: "./media/characters/cimmaron/front-sfw.svg",
  5897. extra: 701 / 676,
  5898. bottom: 0.046
  5899. }
  5900. },
  5901. back: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(210, "lbs"),
  5904. name: "Back",
  5905. image: {
  5906. source: "./media/characters/cimmaron/back-sfw.svg",
  5907. extra: 701 / 676,
  5908. bottom: 0.046
  5909. }
  5910. },
  5911. frontNsfw: {
  5912. height: math.unit(6, "feet"),
  5913. weight: math.unit(210, "lbs"),
  5914. name: "Front (NSFW)",
  5915. image: {
  5916. source: "./media/characters/cimmaron/front-nsfw.svg",
  5917. extra: 701 / 676,
  5918. bottom: 0.046
  5919. }
  5920. },
  5921. backNsfw: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(210, "lbs"),
  5924. name: "Back (NSFW)",
  5925. image: {
  5926. source: "./media/characters/cimmaron/back-nsfw.svg",
  5927. extra: 701 / 676,
  5928. bottom: 0.046
  5929. }
  5930. },
  5931. dick: {
  5932. height: math.unit(1.714, "feet"),
  5933. name: "Dick",
  5934. image: {
  5935. source: "./media/characters/cimmaron/dick.svg"
  5936. }
  5937. },
  5938. },
  5939. [
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(6, "feet"),
  5943. default: true
  5944. },
  5945. {
  5946. name: "Macro Mayor",
  5947. height: math.unit(350, "meters")
  5948. },
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(200, "lbs"),
  5957. name: "Front",
  5958. image: {
  5959. source: "./media/characters/akari/front.svg",
  5960. extra: 962 / 901,
  5961. bottom: 0.04
  5962. }
  5963. }
  5964. },
  5965. [
  5966. {
  5967. name: "Micro",
  5968. height: math.unit(5, "inches"),
  5969. default: true
  5970. },
  5971. {
  5972. name: "Normal",
  5973. height: math.unit(7, "feet")
  5974. },
  5975. ]
  5976. ))
  5977. characterMakers.push(() => makeCharacter(
  5978. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5979. {
  5980. front: {
  5981. height: math.unit(6, "feet"),
  5982. weight: math.unit(140, "lbs"),
  5983. name: "Front",
  5984. image: {
  5985. source: "./media/characters/cynosura/front.svg",
  5986. extra: 896 / 847
  5987. }
  5988. },
  5989. back: {
  5990. height: math.unit(6, "feet"),
  5991. weight: math.unit(140, "lbs"),
  5992. name: "Back",
  5993. image: {
  5994. source: "./media/characters/cynosura/back.svg",
  5995. extra: 1365 / 1250
  5996. }
  5997. },
  5998. },
  5999. [
  6000. {
  6001. name: "Micro",
  6002. height: math.unit(4, "inches")
  6003. },
  6004. {
  6005. name: "Normal",
  6006. height: math.unit(5.75, "feet"),
  6007. default: true
  6008. },
  6009. {
  6010. name: "Tall",
  6011. height: math.unit(10, "feet")
  6012. },
  6013. {
  6014. name: "Big",
  6015. height: math.unit(20, "feet")
  6016. },
  6017. {
  6018. name: "Macro",
  6019. height: math.unit(50, "feet")
  6020. },
  6021. ]
  6022. ))
  6023. characterMakers.push(() => makeCharacter(
  6024. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6025. {
  6026. front: {
  6027. height: math.unit(13 + 2/12, "feet"),
  6028. weight: math.unit(800, "kg"),
  6029. name: "Front",
  6030. image: {
  6031. source: "./media/characters/gin/front.svg",
  6032. extra: 1312/1191,
  6033. bottom: 45/1357
  6034. }
  6035. },
  6036. mouth: {
  6037. height: math.unit(2.39 * 1.8, "feet"),
  6038. name: "Mouth",
  6039. image: {
  6040. source: "./media/characters/gin/mouth.svg"
  6041. }
  6042. },
  6043. hand: {
  6044. height: math.unit(1.57 * 2.19, "feet"),
  6045. name: "Hand",
  6046. image: {
  6047. source: "./media/characters/gin/hand.svg"
  6048. }
  6049. },
  6050. foot: {
  6051. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6052. name: "Foot",
  6053. image: {
  6054. source: "./media/characters/gin/foot.svg"
  6055. }
  6056. },
  6057. sole: {
  6058. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6059. name: "Sole",
  6060. image: {
  6061. source: "./media/characters/gin/sole.svg"
  6062. }
  6063. },
  6064. },
  6065. [
  6066. {
  6067. name: "Very Small",
  6068. height: math.unit(13 + 2 / 12, "feet")
  6069. },
  6070. {
  6071. name: "Micro",
  6072. height: math.unit(600, "miles")
  6073. },
  6074. {
  6075. name: "Regular",
  6076. height: math.unit(20, "earths"),
  6077. default: true
  6078. },
  6079. {
  6080. name: "Macro",
  6081. height: math.unit(2.2, "solarradii")
  6082. },
  6083. {
  6084. name: "Teramacro",
  6085. height: math.unit(1.2, "galaxies")
  6086. },
  6087. {
  6088. name: "Omegamacro",
  6089. height: math.unit(200, "universes")
  6090. },
  6091. ]
  6092. ))
  6093. characterMakers.push(() => makeCharacter(
  6094. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6095. {
  6096. front: {
  6097. height: math.unit(6 + 1 / 6, "feet"),
  6098. weight: math.unit(178, "lbs"),
  6099. name: "Front",
  6100. image: {
  6101. source: "./media/characters/guy/front.svg"
  6102. }
  6103. }
  6104. },
  6105. [
  6106. {
  6107. name: "Normal",
  6108. height: math.unit(6 + 1 / 6, "feet"),
  6109. default: true
  6110. },
  6111. {
  6112. name: "Large",
  6113. height: math.unit(25 + 7 / 12, "feet")
  6114. },
  6115. {
  6116. name: "Macro",
  6117. height: math.unit(60 + 9 / 12, "feet")
  6118. },
  6119. {
  6120. name: "Macro+",
  6121. height: math.unit(246, "feet")
  6122. },
  6123. {
  6124. name: "Macro++",
  6125. height: math.unit(878, "feet")
  6126. }
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6131. {
  6132. front: {
  6133. height: math.unit(9, "feet"),
  6134. weight: math.unit(800, "lbs"),
  6135. name: "Front",
  6136. image: {
  6137. source: "./media/characters/tiberius/front.svg",
  6138. extra: 2295 / 2071
  6139. }
  6140. },
  6141. back: {
  6142. height: math.unit(9, "feet"),
  6143. weight: math.unit(800, "lbs"),
  6144. name: "Back",
  6145. image: {
  6146. source: "./media/characters/tiberius/back.svg",
  6147. extra: 2373 / 2160
  6148. }
  6149. },
  6150. },
  6151. [
  6152. {
  6153. name: "Normal",
  6154. height: math.unit(9, "feet"),
  6155. default: true
  6156. }
  6157. ]
  6158. ))
  6159. characterMakers.push(() => makeCharacter(
  6160. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6161. {
  6162. front: {
  6163. height: math.unit(6, "feet"),
  6164. weight: math.unit(600, "lbs"),
  6165. name: "Front",
  6166. image: {
  6167. source: "./media/characters/surgo/front.svg",
  6168. extra: 3591 / 2227
  6169. }
  6170. },
  6171. back: {
  6172. height: math.unit(6, "feet"),
  6173. weight: math.unit(600, "lbs"),
  6174. name: "Back",
  6175. image: {
  6176. source: "./media/characters/surgo/back.svg",
  6177. extra: 3557 / 2228
  6178. }
  6179. },
  6180. laying: {
  6181. height: math.unit(6 * 0.85, "feet"),
  6182. weight: math.unit(600, "lbs"),
  6183. name: "Laying",
  6184. image: {
  6185. source: "./media/characters/surgo/laying.svg"
  6186. }
  6187. },
  6188. },
  6189. [
  6190. {
  6191. name: "Normal",
  6192. height: math.unit(6, "feet"),
  6193. default: true
  6194. }
  6195. ]
  6196. ))
  6197. characterMakers.push(() => makeCharacter(
  6198. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6199. {
  6200. side: {
  6201. height: math.unit(6, "feet"),
  6202. weight: math.unit(150, "lbs"),
  6203. name: "Side",
  6204. image: {
  6205. source: "./media/characters/cibus/side.svg",
  6206. extra: 800 / 400
  6207. }
  6208. },
  6209. },
  6210. [
  6211. {
  6212. name: "Normal",
  6213. height: math.unit(6, "feet"),
  6214. default: true
  6215. }
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(240, "lbs"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/nibbles/front.svg"
  6227. }
  6228. },
  6229. side: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(240, "lbs"),
  6232. name: "Side",
  6233. image: {
  6234. source: "./media/characters/nibbles/side.svg"
  6235. }
  6236. },
  6237. },
  6238. [
  6239. {
  6240. name: "Normal",
  6241. height: math.unit(9, "feet"),
  6242. default: true
  6243. }
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6248. {
  6249. side: {
  6250. height: math.unit(5 + 1 / 6, "feet"),
  6251. weight: math.unit(130, "lbs"),
  6252. name: "Side",
  6253. image: {
  6254. source: "./media/characters/rikky/side.svg",
  6255. extra: 851 / 801
  6256. }
  6257. },
  6258. },
  6259. [
  6260. {
  6261. name: "Normal",
  6262. height: math.unit(5 + 1 / 6, "feet")
  6263. },
  6264. {
  6265. name: "Macro",
  6266. height: math.unit(152, "feet"),
  6267. default: true
  6268. },
  6269. {
  6270. name: "Megamacro",
  6271. height: math.unit(7, "miles")
  6272. }
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6277. {
  6278. side: {
  6279. height: math.unit(370, "cm"),
  6280. weight: math.unit(350, "lbs"),
  6281. name: "Side",
  6282. image: {
  6283. source: "./media/characters/malfressa/side.svg"
  6284. }
  6285. },
  6286. walking: {
  6287. height: math.unit(370, "cm"),
  6288. weight: math.unit(350, "lbs"),
  6289. name: "Walking",
  6290. image: {
  6291. source: "./media/characters/malfressa/walking.svg"
  6292. }
  6293. },
  6294. feral: {
  6295. height: math.unit(2500, "cm"),
  6296. weight: math.unit(100000, "lbs"),
  6297. name: "Feral",
  6298. image: {
  6299. source: "./media/characters/malfressa/feral.svg",
  6300. extra: 2108 / 837,
  6301. bottom: 0.02
  6302. }
  6303. },
  6304. },
  6305. [
  6306. {
  6307. name: "Normal",
  6308. height: math.unit(370, "cm")
  6309. },
  6310. {
  6311. name: "Macro",
  6312. height: math.unit(300, "meters"),
  6313. default: true
  6314. }
  6315. ]
  6316. ))
  6317. characterMakers.push(() => makeCharacter(
  6318. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6319. {
  6320. front: {
  6321. height: math.unit(6, "feet"),
  6322. weight: math.unit(60, "kg"),
  6323. name: "Front",
  6324. image: {
  6325. source: "./media/characters/jaro/front.svg"
  6326. }
  6327. },
  6328. back: {
  6329. height: math.unit(6, "feet"),
  6330. weight: math.unit(60, "kg"),
  6331. name: "Back",
  6332. image: {
  6333. source: "./media/characters/jaro/back.svg"
  6334. }
  6335. },
  6336. },
  6337. [
  6338. {
  6339. name: "Micro",
  6340. height: math.unit(7, "inches")
  6341. },
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(5.5, "feet"),
  6345. default: true
  6346. },
  6347. {
  6348. name: "Minimacro",
  6349. height: math.unit(20, "feet")
  6350. },
  6351. {
  6352. name: "Macro",
  6353. height: math.unit(200, "meters")
  6354. }
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6359. {
  6360. front: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(195, "lb"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/rogue/front.svg"
  6366. }
  6367. },
  6368. },
  6369. [
  6370. {
  6371. name: "Macro",
  6372. height: math.unit(90, "feet"),
  6373. default: true
  6374. },
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6379. {
  6380. front: {
  6381. height: math.unit(5 + 8 / 12, "feet"),
  6382. weight: math.unit(140, "lb"),
  6383. name: "Front",
  6384. image: {
  6385. source: "./media/characters/piper/front.svg",
  6386. extra: 3948/3655,
  6387. bottom: 0/3948
  6388. }
  6389. },
  6390. },
  6391. [
  6392. {
  6393. name: "Micro",
  6394. height: math.unit(2, "inches")
  6395. },
  6396. {
  6397. name: "Normal",
  6398. height: math.unit(5 + 8 / 12, "feet")
  6399. },
  6400. {
  6401. name: "Macro",
  6402. height: math.unit(250, "feet"),
  6403. default: true
  6404. },
  6405. {
  6406. name: "Megamacro",
  6407. height: math.unit(7, "miles")
  6408. },
  6409. ]
  6410. ))
  6411. characterMakers.push(() => makeCharacter(
  6412. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6413. {
  6414. front: {
  6415. height: math.unit(6, "feet"),
  6416. weight: math.unit(220, "lb"),
  6417. name: "Front",
  6418. image: {
  6419. source: "./media/characters/gemini/front.svg"
  6420. }
  6421. },
  6422. back: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(220, "lb"),
  6425. name: "Back",
  6426. image: {
  6427. source: "./media/characters/gemini/back.svg"
  6428. }
  6429. },
  6430. kneeling: {
  6431. height: math.unit(6 / 1.5, "feet"),
  6432. weight: math.unit(220, "lb"),
  6433. name: "Kneeling",
  6434. image: {
  6435. source: "./media/characters/gemini/kneeling.svg",
  6436. bottom: 0.02
  6437. }
  6438. },
  6439. },
  6440. [
  6441. {
  6442. name: "Macro",
  6443. height: math.unit(300, "meters"),
  6444. default: true
  6445. },
  6446. {
  6447. name: "Megamacro",
  6448. height: math.unit(6900, "meters")
  6449. },
  6450. ]
  6451. ))
  6452. characterMakers.push(() => makeCharacter(
  6453. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6454. {
  6455. anthro: {
  6456. height: math.unit(2.35, "meters"),
  6457. weight: math.unit(73, "kg"),
  6458. name: "Anthro",
  6459. image: {
  6460. source: "./media/characters/alicia/anthro.svg",
  6461. extra: 2571 / 2385,
  6462. bottom: 75 / 2648
  6463. }
  6464. },
  6465. paw: {
  6466. height: math.unit(1.32, "feet"),
  6467. name: "Paw",
  6468. image: {
  6469. source: "./media/characters/alicia/paw.svg"
  6470. }
  6471. },
  6472. feral: {
  6473. height: math.unit(1.69, "meters"),
  6474. weight: math.unit(73, "kg"),
  6475. name: "Feral",
  6476. image: {
  6477. source: "./media/characters/alicia/feral.svg",
  6478. extra: 2123 / 1715,
  6479. bottom: 222 / 2349
  6480. }
  6481. },
  6482. },
  6483. [
  6484. {
  6485. name: "Normal",
  6486. height: math.unit(2.35, "meters")
  6487. },
  6488. {
  6489. name: "Macro",
  6490. height: math.unit(60, "meters"),
  6491. default: true
  6492. },
  6493. {
  6494. name: "Megamacro",
  6495. height: math.unit(10000, "kilometers")
  6496. },
  6497. ]
  6498. ))
  6499. characterMakers.push(() => makeCharacter(
  6500. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6501. {
  6502. front: {
  6503. height: math.unit(7, "feet"),
  6504. weight: math.unit(250, "lbs"),
  6505. name: "Front",
  6506. image: {
  6507. source: "./media/characters/archy/front.svg"
  6508. }
  6509. }
  6510. },
  6511. [
  6512. {
  6513. name: "Micro",
  6514. height: math.unit(1, "inch")
  6515. },
  6516. {
  6517. name: "Shorty",
  6518. height: math.unit(5, "feet")
  6519. },
  6520. {
  6521. name: "Normal",
  6522. height: math.unit(7, "feet")
  6523. },
  6524. {
  6525. name: "Macro",
  6526. height: math.unit(600, "meters"),
  6527. default: true
  6528. },
  6529. {
  6530. name: "Megamacro",
  6531. height: math.unit(1, "mile")
  6532. },
  6533. ]
  6534. ))
  6535. characterMakers.push(() => makeCharacter(
  6536. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6537. {
  6538. front: {
  6539. height: math.unit(1.65, "meters"),
  6540. weight: math.unit(74, "kg"),
  6541. name: "Front",
  6542. image: {
  6543. source: "./media/characters/berri/front.svg",
  6544. extra: 857 / 837,
  6545. bottom: 18 / 877
  6546. }
  6547. },
  6548. bum: {
  6549. height: math.unit(1.46, "feet"),
  6550. name: "Bum",
  6551. image: {
  6552. source: "./media/characters/berri/bum.svg"
  6553. }
  6554. },
  6555. mouth: {
  6556. height: math.unit(0.44, "feet"),
  6557. name: "Mouth",
  6558. image: {
  6559. source: "./media/characters/berri/mouth.svg"
  6560. }
  6561. },
  6562. paw: {
  6563. height: math.unit(0.826, "feet"),
  6564. name: "Paw",
  6565. image: {
  6566. source: "./media/characters/berri/paw.svg"
  6567. }
  6568. },
  6569. },
  6570. [
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(1.65, "meters")
  6574. },
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(60, "m"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Megamacro",
  6582. height: math.unit(9.213, "km")
  6583. },
  6584. {
  6585. name: "Planet Eater",
  6586. height: math.unit(489, "megameters")
  6587. },
  6588. {
  6589. name: "Teramacro",
  6590. height: math.unit(2471635000000, "meters")
  6591. },
  6592. {
  6593. name: "Examacro",
  6594. height: math.unit(8.0624e+26, "meters")
  6595. }
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(1.72, "meters"),
  6603. weight: math.unit(68, "kg"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/lexi/front.svg"
  6607. }
  6608. }
  6609. },
  6610. [
  6611. {
  6612. name: "Very Smol",
  6613. height: math.unit(10, "mm")
  6614. },
  6615. {
  6616. name: "Micro",
  6617. height: math.unit(6.8, "cm"),
  6618. default: true
  6619. },
  6620. {
  6621. name: "Normal",
  6622. height: math.unit(1.72, "m")
  6623. }
  6624. ]
  6625. ))
  6626. characterMakers.push(() => makeCharacter(
  6627. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6628. {
  6629. front: {
  6630. height: math.unit(1.69, "meters"),
  6631. weight: math.unit(68, "kg"),
  6632. name: "Front",
  6633. image: {
  6634. source: "./media/characters/martin/front.svg",
  6635. extra: 596 / 581
  6636. }
  6637. }
  6638. },
  6639. [
  6640. {
  6641. name: "Micro",
  6642. height: math.unit(6.85, "cm"),
  6643. default: true
  6644. },
  6645. {
  6646. name: "Normal",
  6647. height: math.unit(1.69, "m")
  6648. }
  6649. ]
  6650. ))
  6651. characterMakers.push(() => makeCharacter(
  6652. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6653. {
  6654. front: {
  6655. height: math.unit(1.69, "meters"),
  6656. weight: math.unit(68, "kg"),
  6657. name: "Front",
  6658. image: {
  6659. source: "./media/characters/juno/front.svg"
  6660. }
  6661. }
  6662. },
  6663. [
  6664. {
  6665. name: "Micro",
  6666. height: math.unit(7, "cm")
  6667. },
  6668. {
  6669. name: "Normal",
  6670. height: math.unit(1.89, "m")
  6671. },
  6672. {
  6673. name: "Macro",
  6674. height: math.unit(353, "meters"),
  6675. default: true
  6676. }
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(1.93, "meters"),
  6684. weight: math.unit(83, "kg"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/samantha/front.svg"
  6688. }
  6689. },
  6690. frontClothed: {
  6691. height: math.unit(1.93, "meters"),
  6692. weight: math.unit(83, "kg"),
  6693. name: "Front (Clothed)",
  6694. image: {
  6695. source: "./media/characters/samantha/front-clothed.svg"
  6696. }
  6697. },
  6698. back: {
  6699. height: math.unit(1.93, "meters"),
  6700. weight: math.unit(83, "kg"),
  6701. name: "Back",
  6702. image: {
  6703. source: "./media/characters/samantha/back.svg"
  6704. }
  6705. },
  6706. },
  6707. [
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(1.93, "m")
  6711. },
  6712. {
  6713. name: "Macro",
  6714. height: math.unit(74, "meters"),
  6715. default: true
  6716. },
  6717. {
  6718. name: "Macro+",
  6719. height: math.unit(223, "meters"),
  6720. },
  6721. {
  6722. name: "Megamacro",
  6723. height: math.unit(8381, "meters"),
  6724. },
  6725. {
  6726. name: "Megamacro+",
  6727. height: math.unit(12000, "kilometers")
  6728. },
  6729. ]
  6730. ))
  6731. characterMakers.push(() => makeCharacter(
  6732. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6733. {
  6734. front: {
  6735. height: math.unit(1.92, "meters"),
  6736. weight: math.unit(80, "kg"),
  6737. name: "Front",
  6738. image: {
  6739. source: "./media/characters/dr-clay/front.svg"
  6740. }
  6741. },
  6742. frontClothed: {
  6743. height: math.unit(1.92, "meters"),
  6744. weight: math.unit(80, "kg"),
  6745. name: "Front (Clothed)",
  6746. image: {
  6747. source: "./media/characters/dr-clay/front-clothed.svg"
  6748. }
  6749. }
  6750. },
  6751. [
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(1.92, "m")
  6755. },
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(214, "meters"),
  6759. default: true
  6760. },
  6761. {
  6762. name: "Macro+",
  6763. height: math.unit(12.237, "meters"),
  6764. },
  6765. {
  6766. name: "Megamacro",
  6767. height: math.unit(557, "megameters"),
  6768. },
  6769. {
  6770. name: "Unimaginable",
  6771. height: math.unit(120e9, "lightyears")
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(2, "meters"),
  6780. weight: math.unit(80, "kg"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6784. }
  6785. }
  6786. },
  6787. [
  6788. {
  6789. name: "Teramacro",
  6790. height: math.unit(500000, "lightyears"),
  6791. default: true
  6792. },
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6797. {
  6798. crux: {
  6799. height: math.unit(2, "meters"),
  6800. weight: math.unit(150, "kg"),
  6801. name: "Crux",
  6802. image: {
  6803. source: "./media/characters/vemus/crux.svg",
  6804. extra: 1074/936,
  6805. bottom: 23/1097
  6806. }
  6807. },
  6808. skunkTanuki: {
  6809. height: math.unit(2, "meters"),
  6810. weight: math.unit(150, "kg"),
  6811. name: "Skunk-Tanuki",
  6812. image: {
  6813. source: "./media/characters/vemus/skunk-tanuki.svg",
  6814. extra: 926/893,
  6815. bottom: 20/946
  6816. }
  6817. },
  6818. },
  6819. [
  6820. {
  6821. name: "Normal",
  6822. height: math.unit(3.75, "meters"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Big",
  6827. height: math.unit(8, "meters")
  6828. },
  6829. {
  6830. name: "Macro",
  6831. height: math.unit(100, "meters")
  6832. },
  6833. {
  6834. name: "Macro+",
  6835. height: math.unit(1500, "meters")
  6836. },
  6837. {
  6838. name: "Stellar",
  6839. height: math.unit(14e8, "meters")
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(2, "meters"),
  6848. weight: math.unit(70, "kg"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/beherit/front.svg",
  6852. extra: 1408 / 1242
  6853. }
  6854. }
  6855. },
  6856. [
  6857. {
  6858. name: "Normal",
  6859. height: math.unit(6, "feet")
  6860. },
  6861. {
  6862. name: "Lorg",
  6863. height: math.unit(25, "feet"),
  6864. default: true
  6865. },
  6866. {
  6867. name: "Lorger",
  6868. height: math.unit(75, "feet")
  6869. },
  6870. {
  6871. name: "Macro",
  6872. height: math.unit(200, "meters")
  6873. },
  6874. ]
  6875. ))
  6876. characterMakers.push(() => makeCharacter(
  6877. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6878. {
  6879. front: {
  6880. height: math.unit(2, "meters"),
  6881. weight: math.unit(150, "kg"),
  6882. name: "Front",
  6883. image: {
  6884. source: "./media/characters/everett/front.svg",
  6885. extra: 2038 / 1737,
  6886. bottom: 0.03
  6887. }
  6888. },
  6889. paw: {
  6890. height: math.unit(2 / 3.6, "meters"),
  6891. name: "Paw",
  6892. image: {
  6893. source: "./media/characters/everett/paw.svg"
  6894. }
  6895. },
  6896. },
  6897. [
  6898. {
  6899. name: "Normal",
  6900. height: math.unit(15, "feet"),
  6901. default: true
  6902. },
  6903. {
  6904. name: "Lorg",
  6905. height: math.unit(70, "feet"),
  6906. default: true
  6907. },
  6908. {
  6909. name: "Lorger",
  6910. height: math.unit(250, "feet")
  6911. },
  6912. {
  6913. name: "Macro",
  6914. height: math.unit(500, "meters")
  6915. },
  6916. ]
  6917. ))
  6918. characterMakers.push(() => makeCharacter(
  6919. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6920. {
  6921. front: {
  6922. height: math.unit(2, "meters"),
  6923. weight: math.unit(86, "kg"),
  6924. name: "Front",
  6925. image: {
  6926. source: "./media/characters/rose/front.svg",
  6927. extra: 1785/1636,
  6928. bottom: 30/1815
  6929. }
  6930. },
  6931. frontSporty: {
  6932. height: math.unit(2, "meters"),
  6933. weight: math.unit(86, "kg"),
  6934. name: "Front (Sporty)",
  6935. image: {
  6936. source: "./media/characters/rose/front-sporty.svg",
  6937. extra: 350/335,
  6938. bottom: 10/360
  6939. }
  6940. },
  6941. frontAlt: {
  6942. height: math.unit(1.6, "meters"),
  6943. weight: math.unit(86, "kg"),
  6944. name: "Front (Alt)",
  6945. image: {
  6946. source: "./media/characters/rose/front-alt.svg",
  6947. extra: 299/283,
  6948. bottom: 3/302
  6949. }
  6950. },
  6951. plush: {
  6952. height: math.unit(2, "meters"),
  6953. weight: math.unit(86/3, "kg"),
  6954. name: "Plush",
  6955. image: {
  6956. source: "./media/characters/rose/plush.svg",
  6957. extra: 361/337,
  6958. bottom: 11/372
  6959. }
  6960. },
  6961. },
  6962. [
  6963. {
  6964. name: "True Micro",
  6965. height: math.unit(9, "cm")
  6966. },
  6967. {
  6968. name: "Micro",
  6969. height: math.unit(16, "cm")
  6970. },
  6971. {
  6972. name: "Normal",
  6973. height: math.unit(1.85, "meters"),
  6974. default: true
  6975. },
  6976. {
  6977. name: "Mini-Macro",
  6978. height: math.unit(5, "meters")
  6979. },
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(15, "meters")
  6983. },
  6984. {
  6985. name: "True Macro",
  6986. height: math.unit(40, "meters")
  6987. },
  6988. {
  6989. name: "City Scale",
  6990. height: math.unit(1, "km")
  6991. },
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6996. {
  6997. front: {
  6998. height: math.unit(2, "meters"),
  6999. weight: math.unit(350, "lbs"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/regal/front.svg"
  7003. }
  7004. },
  7005. back: {
  7006. height: math.unit(2, "meters"),
  7007. weight: math.unit(350, "lbs"),
  7008. name: "Back",
  7009. image: {
  7010. source: "./media/characters/regal/back.svg"
  7011. }
  7012. },
  7013. },
  7014. [
  7015. {
  7016. name: "Macro",
  7017. height: math.unit(350, "feet"),
  7018. default: true
  7019. }
  7020. ]
  7021. ))
  7022. characterMakers.push(() => makeCharacter(
  7023. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7024. {
  7025. front: {
  7026. height: math.unit(4 + 11 / 12, "feet"),
  7027. weight: math.unit(100, "lbs"),
  7028. name: "Front",
  7029. image: {
  7030. source: "./media/characters/opal/front.svg"
  7031. }
  7032. },
  7033. frontAlt: {
  7034. height: math.unit(4 + 11 / 12, "feet"),
  7035. weight: math.unit(100, "lbs"),
  7036. name: "Front (Alt)",
  7037. image: {
  7038. source: "./media/characters/opal/front-alt.svg"
  7039. }
  7040. },
  7041. },
  7042. [
  7043. {
  7044. name: "Small",
  7045. height: math.unit(4 + 11 / 12, "feet")
  7046. },
  7047. {
  7048. name: "Normal",
  7049. height: math.unit(20, "feet"),
  7050. default: true
  7051. },
  7052. {
  7053. name: "Macro",
  7054. height: math.unit(120, "feet")
  7055. },
  7056. {
  7057. name: "Megamacro",
  7058. height: math.unit(80, "miles")
  7059. },
  7060. {
  7061. name: "True Size",
  7062. height: math.unit(100000, "lightyears")
  7063. },
  7064. ]
  7065. ))
  7066. characterMakers.push(() => makeCharacter(
  7067. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7068. {
  7069. front: {
  7070. height: math.unit(6, "feet"),
  7071. weight: math.unit(200, "lbs"),
  7072. name: "Front",
  7073. image: {
  7074. source: "./media/characters/vector-wuff/front.svg"
  7075. }
  7076. }
  7077. },
  7078. [
  7079. {
  7080. name: "Normal",
  7081. height: math.unit(2.8, "meters")
  7082. },
  7083. {
  7084. name: "Macro",
  7085. height: math.unit(450, "meters"),
  7086. default: true
  7087. },
  7088. {
  7089. name: "Megamacro",
  7090. height: math.unit(15, "kilometers")
  7091. }
  7092. ]
  7093. ))
  7094. characterMakers.push(() => makeCharacter(
  7095. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7096. {
  7097. front: {
  7098. height: math.unit(6, "feet"),
  7099. weight: math.unit(256, "lbs"),
  7100. name: "Front",
  7101. image: {
  7102. source: "./media/characters/dannik/front.svg"
  7103. }
  7104. }
  7105. },
  7106. [
  7107. {
  7108. name: "Macro",
  7109. height: math.unit(69.57, "meters"),
  7110. default: true
  7111. },
  7112. ]
  7113. ))
  7114. characterMakers.push(() => makeCharacter(
  7115. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7116. {
  7117. front: {
  7118. height: math.unit(6, "feet"),
  7119. weight: math.unit(120, "lbs"),
  7120. name: "Front",
  7121. image: {
  7122. source: "./media/characters/azura-saharah/front.svg"
  7123. }
  7124. },
  7125. back: {
  7126. height: math.unit(6, "feet"),
  7127. weight: math.unit(120, "lbs"),
  7128. name: "Back",
  7129. image: {
  7130. source: "./media/characters/azura-saharah/back.svg"
  7131. }
  7132. },
  7133. },
  7134. [
  7135. {
  7136. name: "Macro",
  7137. height: math.unit(100, "feet"),
  7138. default: true
  7139. },
  7140. ]
  7141. ))
  7142. characterMakers.push(() => makeCharacter(
  7143. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7144. {
  7145. side: {
  7146. height: math.unit(5 + 4 / 12, "feet"),
  7147. weight: math.unit(163, "lbs"),
  7148. name: "Side",
  7149. image: {
  7150. source: "./media/characters/kennedy/side.svg"
  7151. }
  7152. }
  7153. },
  7154. [
  7155. {
  7156. name: "Standard Doggo",
  7157. height: math.unit(5 + 4 / 12, "feet")
  7158. },
  7159. {
  7160. name: "Big Doggo",
  7161. height: math.unit(25 + 3 / 12, "feet"),
  7162. default: true
  7163. },
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7168. {
  7169. front: {
  7170. height: math.unit(5 + 5/12, "feet"),
  7171. weight: math.unit(100, "lbs"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/odios-de-lunar/front.svg",
  7175. extra: 1468/1323,
  7176. bottom: 22/1490
  7177. }
  7178. }
  7179. },
  7180. [
  7181. {
  7182. name: "Micro",
  7183. height: math.unit(3, "inches")
  7184. },
  7185. {
  7186. name: "Normal",
  7187. height: math.unit(5.5, "feet"),
  7188. default: true
  7189. },
  7190. {
  7191. name: "Macro",
  7192. height: math.unit(100, "feet")
  7193. },
  7194. ]
  7195. ))
  7196. characterMakers.push(() => makeCharacter(
  7197. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7198. {
  7199. back: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(220, "lbs"),
  7202. name: "Back",
  7203. image: {
  7204. source: "./media/characters/mandake/back.svg"
  7205. }
  7206. }
  7207. },
  7208. [
  7209. {
  7210. name: "Normal",
  7211. height: math.unit(7, "feet"),
  7212. default: true
  7213. },
  7214. {
  7215. name: "Macro",
  7216. height: math.unit(78, "feet")
  7217. },
  7218. {
  7219. name: "Macro+",
  7220. height: math.unit(300, "meters")
  7221. },
  7222. {
  7223. name: "Macro++",
  7224. height: math.unit(2400, "feet")
  7225. },
  7226. {
  7227. name: "Megamacro",
  7228. height: math.unit(5167, "meters")
  7229. },
  7230. {
  7231. name: "Gigamacro",
  7232. height: math.unit(41769, "miles")
  7233. },
  7234. ]
  7235. ))
  7236. characterMakers.push(() => makeCharacter(
  7237. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7238. {
  7239. front: {
  7240. height: math.unit(6, "feet"),
  7241. weight: math.unit(120, "lbs"),
  7242. name: "Front",
  7243. image: {
  7244. source: "./media/characters/yozey/front.svg"
  7245. }
  7246. },
  7247. frontAlt: {
  7248. height: math.unit(6, "feet"),
  7249. weight: math.unit(120, "lbs"),
  7250. name: "Front (Alt)",
  7251. image: {
  7252. source: "./media/characters/yozey/front-alt.svg"
  7253. }
  7254. },
  7255. side: {
  7256. height: math.unit(6, "feet"),
  7257. weight: math.unit(120, "lbs"),
  7258. name: "Side",
  7259. image: {
  7260. source: "./media/characters/yozey/side.svg"
  7261. }
  7262. },
  7263. },
  7264. [
  7265. {
  7266. name: "Micro",
  7267. height: math.unit(3, "inches"),
  7268. default: true
  7269. },
  7270. {
  7271. name: "Normal",
  7272. height: math.unit(6, "feet")
  7273. }
  7274. ]
  7275. ))
  7276. characterMakers.push(() => makeCharacter(
  7277. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7278. {
  7279. front: {
  7280. height: math.unit(6, "feet"),
  7281. weight: math.unit(103, "lbs"),
  7282. name: "Front",
  7283. image: {
  7284. source: "./media/characters/valeska-voss/front.svg"
  7285. }
  7286. }
  7287. },
  7288. [
  7289. {
  7290. name: "Mini-Sized Sub",
  7291. height: math.unit(3.1, "inches")
  7292. },
  7293. {
  7294. name: "Mid-Sized Sub",
  7295. height: math.unit(6.2, "inches")
  7296. },
  7297. {
  7298. name: "Full-Sized Sub",
  7299. height: math.unit(9.3, "inches")
  7300. },
  7301. {
  7302. name: "Normal",
  7303. height: math.unit(5 + 2 / 12, "foot"),
  7304. default: true
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(6, "feet"),
  7313. weight: math.unit(160, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/gene-zeta/front.svg",
  7317. extra: 3006 / 2826,
  7318. bottom: 182 / 3188
  7319. }
  7320. }
  7321. },
  7322. [
  7323. {
  7324. name: "Micro",
  7325. height: math.unit(6, "inches")
  7326. },
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(5 + 11 / 12, "foot"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(140, "feet")
  7335. },
  7336. {
  7337. name: "Supercharged",
  7338. height: math.unit(2500, "feet")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(6, "feet"),
  7347. weight: math.unit(350, "lbs"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/razinox/front.svg",
  7351. extra: 1686 / 1548,
  7352. bottom: 28.2 / 1868
  7353. }
  7354. },
  7355. back: {
  7356. height: math.unit(6, "feet"),
  7357. weight: math.unit(350, "lbs"),
  7358. name: "Back",
  7359. image: {
  7360. source: "./media/characters/razinox/back.svg",
  7361. extra: 1660 / 1590,
  7362. bottom: 15 / 1665
  7363. }
  7364. },
  7365. },
  7366. [
  7367. {
  7368. name: "Normal",
  7369. height: math.unit(10 + 8 / 12, "foot")
  7370. },
  7371. {
  7372. name: "Minimacro",
  7373. height: math.unit(15, "foot")
  7374. },
  7375. {
  7376. name: "Macro",
  7377. height: math.unit(60, "foot"),
  7378. default: true
  7379. },
  7380. {
  7381. name: "Megamacro",
  7382. height: math.unit(5, "miles")
  7383. },
  7384. {
  7385. name: "Gigamacro",
  7386. height: math.unit(6000, "miles")
  7387. },
  7388. ]
  7389. ))
  7390. characterMakers.push(() => makeCharacter(
  7391. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7392. {
  7393. front: {
  7394. height: math.unit(6, "feet"),
  7395. weight: math.unit(150, "lbs"),
  7396. name: "Front",
  7397. image: {
  7398. source: "./media/characters/cobalt/front.svg"
  7399. }
  7400. }
  7401. },
  7402. [
  7403. {
  7404. name: "Normal",
  7405. height: math.unit(8 + 1 / 12, "foot")
  7406. },
  7407. {
  7408. name: "Macro",
  7409. height: math.unit(111, "foot"),
  7410. default: true
  7411. },
  7412. {
  7413. name: "Supracosmic",
  7414. height: math.unit(1e42, "feet")
  7415. },
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7420. {
  7421. front: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(140, "lbs"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/amanda/front.svg"
  7427. }
  7428. }
  7429. },
  7430. [
  7431. {
  7432. name: "Micro",
  7433. height: math.unit(5, "inches"),
  7434. default: true
  7435. },
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7440. {
  7441. front: {
  7442. height: math.unit(2.75, "meters"),
  7443. weight: math.unit(1200, "lb"),
  7444. name: "Front",
  7445. image: {
  7446. source: "./media/characters/teal/front.svg",
  7447. extra: 2463 / 2320,
  7448. bottom: 166 / 2629
  7449. }
  7450. },
  7451. back: {
  7452. height: math.unit(2.75, "meters"),
  7453. weight: math.unit(1200, "lb"),
  7454. name: "Back",
  7455. image: {
  7456. source: "./media/characters/teal/back.svg",
  7457. extra: 2580 / 2489,
  7458. bottom: 151 / 2731
  7459. }
  7460. },
  7461. sitting: {
  7462. height: math.unit(1.9, "meters"),
  7463. weight: math.unit(1200, "lb"),
  7464. name: "Sitting",
  7465. image: {
  7466. source: "./media/characters/teal/sitting.svg",
  7467. extra: 623 / 590,
  7468. bottom: 121 / 744
  7469. }
  7470. },
  7471. standing: {
  7472. height: math.unit(2.75, "meters"),
  7473. weight: math.unit(1200, "lb"),
  7474. name: "Standing",
  7475. image: {
  7476. source: "./media/characters/teal/standing.svg",
  7477. extra: 923 / 893,
  7478. bottom: 60 / 983
  7479. }
  7480. },
  7481. stretching: {
  7482. height: math.unit(3.65, "meters"),
  7483. weight: math.unit(1200, "lb"),
  7484. name: "Stretching",
  7485. image: {
  7486. source: "./media/characters/teal/stretching.svg",
  7487. extra: 1276 / 1244,
  7488. bottom: 0 / 1276
  7489. }
  7490. },
  7491. legged: {
  7492. height: math.unit(1.3, "meters"),
  7493. weight: math.unit(100, "lb"),
  7494. name: "Legged",
  7495. image: {
  7496. source: "./media/characters/teal/legged.svg",
  7497. extra: 462 / 437,
  7498. bottom: 24 / 486
  7499. }
  7500. },
  7501. naga: {
  7502. height: math.unit(5.4, "meters"),
  7503. weight: math.unit(4000, "lb"),
  7504. name: "Naga",
  7505. image: {
  7506. source: "./media/characters/teal/naga.svg",
  7507. extra: 1902 / 1858,
  7508. bottom: 0 / 1902
  7509. }
  7510. },
  7511. hand: {
  7512. height: math.unit(0.52, "meters"),
  7513. name: "Hand",
  7514. image: {
  7515. source: "./media/characters/teal/hand.svg"
  7516. }
  7517. },
  7518. maw: {
  7519. height: math.unit(0.43, "meters"),
  7520. name: "Maw",
  7521. image: {
  7522. source: "./media/characters/teal/maw.svg"
  7523. }
  7524. },
  7525. slit: {
  7526. height: math.unit(0.25, "meters"),
  7527. name: "Slit",
  7528. image: {
  7529. source: "./media/characters/teal/slit.svg"
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(2.75, "meters"),
  7537. default: true
  7538. },
  7539. {
  7540. name: "Macro",
  7541. height: math.unit(300, "feet")
  7542. },
  7543. {
  7544. name: "Macro+",
  7545. height: math.unit(2000, "feet")
  7546. },
  7547. ]
  7548. ))
  7549. characterMakers.push(() => makeCharacter(
  7550. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7551. {
  7552. frontCat: {
  7553. height: math.unit(6, "feet"),
  7554. weight: math.unit(180, "lbs"),
  7555. name: "Front (Cat)",
  7556. image: {
  7557. source: "./media/characters/ravin-amulet/front-cat.svg"
  7558. }
  7559. },
  7560. frontCatAlt: {
  7561. height: math.unit(6, "feet"),
  7562. weight: math.unit(180, "lbs"),
  7563. name: "Front (Alt, Cat)",
  7564. image: {
  7565. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7566. }
  7567. },
  7568. frontWerewolf: {
  7569. height: math.unit(6 * 1.2, "feet"),
  7570. weight: math.unit(225, "lbs"),
  7571. name: "Front (Werewolf)",
  7572. image: {
  7573. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7574. }
  7575. },
  7576. backWerewolf: {
  7577. height: math.unit(6 * 1.2, "feet"),
  7578. weight: math.unit(225, "lbs"),
  7579. name: "Back (Werewolf)",
  7580. image: {
  7581. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7582. }
  7583. },
  7584. },
  7585. [
  7586. {
  7587. name: "Nano",
  7588. height: math.unit(1, "micrometer")
  7589. },
  7590. {
  7591. name: "Micro",
  7592. height: math.unit(1, "inch")
  7593. },
  7594. {
  7595. name: "Normal",
  7596. height: math.unit(6, "feet"),
  7597. default: true
  7598. },
  7599. {
  7600. name: "Macro",
  7601. height: math.unit(60, "feet")
  7602. }
  7603. ]
  7604. ))
  7605. characterMakers.push(() => makeCharacter(
  7606. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7607. {
  7608. front: {
  7609. height: math.unit(6, "feet"),
  7610. weight: math.unit(165, "lbs"),
  7611. name: "Front",
  7612. image: {
  7613. source: "./media/characters/fluoresce/front.svg"
  7614. }
  7615. }
  7616. },
  7617. [
  7618. {
  7619. name: "Micro",
  7620. height: math.unit(6, "cm")
  7621. },
  7622. {
  7623. name: "Normal",
  7624. height: math.unit(5 + 7 / 12, "feet"),
  7625. default: true
  7626. },
  7627. {
  7628. name: "Macro",
  7629. height: math.unit(56, "feet")
  7630. },
  7631. {
  7632. name: "Megamacro",
  7633. height: math.unit(1.9, "miles")
  7634. },
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7639. {
  7640. front: {
  7641. height: math.unit(9 + 6 / 12, "feet"),
  7642. weight: math.unit(523, "lbs"),
  7643. name: "Side",
  7644. image: {
  7645. source: "./media/characters/aurora/side.svg"
  7646. }
  7647. }
  7648. },
  7649. [
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(9 + 6 / 12, "feet")
  7653. },
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(96, "feet"),
  7657. default: true
  7658. },
  7659. {
  7660. name: "Macro+",
  7661. height: math.unit(243, "feet")
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(194, "cm"),
  7670. weight: math.unit(90, "kg"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/ranek/front.svg"
  7674. }
  7675. },
  7676. side: {
  7677. height: math.unit(194, "cm"),
  7678. weight: math.unit(90, "kg"),
  7679. name: "Side",
  7680. image: {
  7681. source: "./media/characters/ranek/side.svg"
  7682. }
  7683. },
  7684. back: {
  7685. height: math.unit(194, "cm"),
  7686. weight: math.unit(90, "kg"),
  7687. name: "Back",
  7688. image: {
  7689. source: "./media/characters/ranek/back.svg"
  7690. }
  7691. },
  7692. feral: {
  7693. height: math.unit(30, "cm"),
  7694. weight: math.unit(1.6, "lbs"),
  7695. name: "Feral",
  7696. image: {
  7697. source: "./media/characters/ranek/feral.svg"
  7698. }
  7699. },
  7700. },
  7701. [
  7702. {
  7703. name: "Normal",
  7704. height: math.unit(194, "cm"),
  7705. default: true
  7706. },
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(100, "meters")
  7710. },
  7711. ]
  7712. ))
  7713. characterMakers.push(() => makeCharacter(
  7714. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7715. {
  7716. front: {
  7717. height: math.unit(5 + 6 / 12, "feet"),
  7718. weight: math.unit(153, "lbs"),
  7719. name: "Front",
  7720. image: {
  7721. source: "./media/characters/andrew-cooper/front.svg"
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Nano",
  7728. height: math.unit(1, "mm")
  7729. },
  7730. {
  7731. name: "Micro",
  7732. height: math.unit(2, "inches")
  7733. },
  7734. {
  7735. name: "Normal",
  7736. height: math.unit(5 + 6 / 12, "feet"),
  7737. default: true
  7738. }
  7739. ]
  7740. ))
  7741. characterMakers.push(() => makeCharacter(
  7742. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7743. {
  7744. front: {
  7745. height: math.unit(6, "feet"),
  7746. weight: math.unit(180, "lbs"),
  7747. name: "Front",
  7748. image: {
  7749. source: "./media/characters/akane-sato/front.svg",
  7750. extra: 1219 / 1140
  7751. }
  7752. },
  7753. back: {
  7754. height: math.unit(6, "feet"),
  7755. weight: math.unit(180, "lbs"),
  7756. name: "Back",
  7757. image: {
  7758. source: "./media/characters/akane-sato/back.svg",
  7759. extra: 1219 / 1170
  7760. }
  7761. },
  7762. },
  7763. [
  7764. {
  7765. name: "Normal",
  7766. height: math.unit(2.5, "meters")
  7767. },
  7768. {
  7769. name: "Macro",
  7770. height: math.unit(250, "meters"),
  7771. default: true
  7772. },
  7773. {
  7774. name: "Megamacro",
  7775. height: math.unit(25, "km")
  7776. },
  7777. ]
  7778. ))
  7779. characterMakers.push(() => makeCharacter(
  7780. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7781. {
  7782. front: {
  7783. height: math.unit(6, "feet"),
  7784. weight: math.unit(65, "kg"),
  7785. name: "Front",
  7786. image: {
  7787. source: "./media/characters/rook/front.svg",
  7788. extra: 960 / 950
  7789. }
  7790. }
  7791. },
  7792. [
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(8.8, "feet")
  7796. },
  7797. {
  7798. name: "Macro",
  7799. height: math.unit(88, "feet"),
  7800. default: true
  7801. },
  7802. {
  7803. name: "Megamacro",
  7804. height: math.unit(8, "miles")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(12 + 2 / 12, "feet"),
  7813. weight: math.unit(808, "lbs"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/prodigy/front.svg"
  7817. }
  7818. }
  7819. },
  7820. [
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(12 + 2 / 12, "feet"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Macro",
  7828. height: math.unit(143, "feet")
  7829. },
  7830. {
  7831. name: "Macro+",
  7832. height: math.unit(400, "feet")
  7833. },
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7838. {
  7839. front: {
  7840. height: math.unit(6, "feet"),
  7841. weight: math.unit(225, "lbs"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/daniel/front.svg"
  7845. }
  7846. },
  7847. leaning: {
  7848. height: math.unit(6, "feet"),
  7849. weight: math.unit(225, "lbs"),
  7850. name: "Leaning",
  7851. image: {
  7852. source: "./media/characters/daniel/leaning.svg"
  7853. }
  7854. },
  7855. },
  7856. [
  7857. {
  7858. name: "Macro",
  7859. height: math.unit(1000, "feet"),
  7860. default: true
  7861. },
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(6, "feet"),
  7869. weight: math.unit(88, "lbs"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/chiros/front.svg",
  7873. extra: 306 / 226
  7874. }
  7875. },
  7876. side: {
  7877. height: math.unit(6, "feet"),
  7878. weight: math.unit(88, "lbs"),
  7879. name: "Side",
  7880. image: {
  7881. source: "./media/characters/chiros/side.svg",
  7882. extra: 306 / 226
  7883. }
  7884. },
  7885. },
  7886. [
  7887. {
  7888. name: "Normal",
  7889. height: math.unit(6, "cm"),
  7890. default: true
  7891. },
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7896. {
  7897. front: {
  7898. height: math.unit(6, "feet"),
  7899. weight: math.unit(100, "lbs"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/selka/front.svg",
  7903. extra: 947 / 887
  7904. }
  7905. }
  7906. },
  7907. [
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(5, "cm"),
  7911. default: true
  7912. },
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7917. {
  7918. front: {
  7919. height: math.unit(8 + 3 / 12, "feet"),
  7920. weight: math.unit(424, "lbs"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/verin/front.svg",
  7924. extra: 1845 / 1550
  7925. }
  7926. },
  7927. frontArmored: {
  7928. height: math.unit(8 + 3 / 12, "feet"),
  7929. weight: math.unit(424, "lbs"),
  7930. name: "Front (Armored)",
  7931. image: {
  7932. source: "./media/characters/verin/front-armor.svg",
  7933. extra: 1845 / 1550,
  7934. bottom: 0.01
  7935. }
  7936. },
  7937. back: {
  7938. height: math.unit(8 + 3 / 12, "feet"),
  7939. weight: math.unit(424, "lbs"),
  7940. name: "Back",
  7941. image: {
  7942. source: "./media/characters/verin/back.svg",
  7943. bottom: 0.1,
  7944. extra: 1
  7945. }
  7946. },
  7947. foot: {
  7948. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7949. name: "Foot",
  7950. image: {
  7951. source: "./media/characters/verin/foot.svg"
  7952. }
  7953. },
  7954. },
  7955. [
  7956. {
  7957. name: "Normal",
  7958. height: math.unit(8 + 3 / 12, "feet")
  7959. },
  7960. {
  7961. name: "Minimacro",
  7962. height: math.unit(21, "feet"),
  7963. default: true
  7964. },
  7965. {
  7966. name: "Macro",
  7967. height: math.unit(626, "feet")
  7968. },
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7973. {
  7974. front: {
  7975. height: math.unit(2.718, "meters"),
  7976. weight: math.unit(150, "lbs"),
  7977. name: "Front",
  7978. image: {
  7979. source: "./media/characters/sovrim-terraquian/front.svg"
  7980. }
  7981. },
  7982. back: {
  7983. height: math.unit(2.718, "meters"),
  7984. weight: math.unit(150, "lbs"),
  7985. name: "Back",
  7986. image: {
  7987. source: "./media/characters/sovrim-terraquian/back.svg"
  7988. }
  7989. }
  7990. },
  7991. [
  7992. {
  7993. name: "Micro",
  7994. height: math.unit(2, "inches")
  7995. },
  7996. {
  7997. name: "Small",
  7998. height: math.unit(1, "meter")
  7999. },
  8000. {
  8001. name: "Normal",
  8002. height: math.unit(Math.E, "meters"),
  8003. default: true
  8004. },
  8005. {
  8006. name: "Macro",
  8007. height: math.unit(20, "meters")
  8008. },
  8009. {
  8010. name: "Macro+",
  8011. height: math.unit(400, "meters")
  8012. },
  8013. ]
  8014. ))
  8015. characterMakers.push(() => makeCharacter(
  8016. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8017. {
  8018. front: {
  8019. height: math.unit(7, "feet"),
  8020. weight: math.unit(489, "lbs"),
  8021. name: "Front",
  8022. image: {
  8023. source: "./media/characters/reece-silvermane/front.svg",
  8024. bottom: 0.02,
  8025. extra: 1
  8026. }
  8027. },
  8028. },
  8029. [
  8030. {
  8031. name: "Macro",
  8032. height: math.unit(1.5, "miles"),
  8033. default: true
  8034. },
  8035. ]
  8036. ))
  8037. characterMakers.push(() => makeCharacter(
  8038. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8039. {
  8040. front: {
  8041. height: math.unit(6, "feet"),
  8042. weight: math.unit(78, "kg"),
  8043. name: "Front",
  8044. image: {
  8045. source: "./media/characters/kane/front.svg",
  8046. extra: 978 / 899
  8047. }
  8048. },
  8049. },
  8050. [
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(2.1, "m"),
  8054. },
  8055. {
  8056. name: "Macro",
  8057. height: math.unit(1, "km"),
  8058. default: true
  8059. },
  8060. ]
  8061. ))
  8062. characterMakers.push(() => makeCharacter(
  8063. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8064. {
  8065. front: {
  8066. height: math.unit(6, "feet"),
  8067. weight: math.unit(200, "kg"),
  8068. name: "Front",
  8069. image: {
  8070. source: "./media/characters/tegon/front.svg",
  8071. bottom: 0.01,
  8072. extra: 1
  8073. }
  8074. },
  8075. },
  8076. [
  8077. {
  8078. name: "Micro",
  8079. height: math.unit(1, "inch")
  8080. },
  8081. {
  8082. name: "Normal",
  8083. height: math.unit(6 + 3 / 12, "feet"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Macro",
  8088. height: math.unit(300, "feet")
  8089. },
  8090. {
  8091. name: "Megamacro",
  8092. height: math.unit(69, "miles")
  8093. },
  8094. ]
  8095. ))
  8096. characterMakers.push(() => makeCharacter(
  8097. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8098. {
  8099. side: {
  8100. height: math.unit(6, "feet"),
  8101. weight: math.unit(2304, "lbs"),
  8102. name: "Side",
  8103. image: {
  8104. source: "./media/characters/arcturax/side.svg",
  8105. extra: 790 / 376,
  8106. bottom: 0.01
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Micro",
  8113. height: math.unit(2, "inch")
  8114. },
  8115. {
  8116. name: "Normal",
  8117. height: math.unit(6, "feet")
  8118. },
  8119. {
  8120. name: "Macro",
  8121. height: math.unit(39, "feet"),
  8122. default: true
  8123. },
  8124. {
  8125. name: "Megamacro",
  8126. height: math.unit(7, "miles")
  8127. },
  8128. ]
  8129. ))
  8130. characterMakers.push(() => makeCharacter(
  8131. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8132. {
  8133. front: {
  8134. height: math.unit(6, "feet"),
  8135. weight: math.unit(50, "lbs"),
  8136. name: "Front",
  8137. image: {
  8138. source: "./media/characters/sentri/front.svg",
  8139. extra: 1750 / 1570,
  8140. bottom: 0.025
  8141. }
  8142. },
  8143. frontAlt: {
  8144. height: math.unit(6, "feet"),
  8145. weight: math.unit(50, "lbs"),
  8146. name: "Front (Alt)",
  8147. image: {
  8148. source: "./media/characters/sentri/front-alt.svg",
  8149. extra: 1750 / 1570,
  8150. bottom: 0.025
  8151. }
  8152. },
  8153. },
  8154. [
  8155. {
  8156. name: "Normal",
  8157. height: math.unit(15, "feet"),
  8158. default: true
  8159. },
  8160. {
  8161. name: "Macro",
  8162. height: math.unit(2500, "feet")
  8163. }
  8164. ]
  8165. ))
  8166. characterMakers.push(() => makeCharacter(
  8167. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8168. {
  8169. front: {
  8170. height: math.unit(5 + 8 / 12, "feet"),
  8171. weight: math.unit(130, "lbs"),
  8172. name: "Front",
  8173. image: {
  8174. source: "./media/characters/corvin/front.svg",
  8175. extra: 1803 / 1629
  8176. }
  8177. },
  8178. frontShirt: {
  8179. height: math.unit(5 + 8 / 12, "feet"),
  8180. weight: math.unit(130, "lbs"),
  8181. name: "Front (Shirt)",
  8182. image: {
  8183. source: "./media/characters/corvin/front-shirt.svg",
  8184. extra: 1803 / 1629
  8185. }
  8186. },
  8187. frontPoncho: {
  8188. height: math.unit(5 + 8 / 12, "feet"),
  8189. weight: math.unit(130, "lbs"),
  8190. name: "Front (Poncho)",
  8191. image: {
  8192. source: "./media/characters/corvin/front-poncho.svg",
  8193. extra: 1803 / 1629
  8194. }
  8195. },
  8196. side: {
  8197. height: math.unit(5 + 8 / 12, "feet"),
  8198. weight: math.unit(130, "lbs"),
  8199. name: "Side",
  8200. image: {
  8201. source: "./media/characters/corvin/side.svg",
  8202. extra: 1012 / 945
  8203. }
  8204. },
  8205. back: {
  8206. height: math.unit(5 + 8 / 12, "feet"),
  8207. weight: math.unit(130, "lbs"),
  8208. name: "Back",
  8209. image: {
  8210. source: "./media/characters/corvin/back.svg",
  8211. extra: 1803 / 1629
  8212. }
  8213. },
  8214. },
  8215. [
  8216. {
  8217. name: "Micro",
  8218. height: math.unit(3, "inches")
  8219. },
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(5 + 8 / 12, "feet")
  8223. },
  8224. {
  8225. name: "Macro",
  8226. height: math.unit(300, "feet"),
  8227. default: true
  8228. },
  8229. {
  8230. name: "Megamacro",
  8231. height: math.unit(500, "miles")
  8232. }
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8237. {
  8238. front: {
  8239. height: math.unit(6, "feet"),
  8240. weight: math.unit(135, "lbs"),
  8241. name: "Front",
  8242. image: {
  8243. source: "./media/characters/q/front.svg",
  8244. extra: 854 / 752,
  8245. bottom: 0.005
  8246. }
  8247. },
  8248. back: {
  8249. height: math.unit(6, "feet"),
  8250. weight: math.unit(130, "lbs"),
  8251. name: "Back",
  8252. image: {
  8253. source: "./media/characters/q/back.svg",
  8254. extra: 854 / 752
  8255. }
  8256. },
  8257. },
  8258. [
  8259. {
  8260. name: "Macro",
  8261. height: math.unit(90, "feet"),
  8262. default: true
  8263. },
  8264. {
  8265. name: "Extra Macro",
  8266. height: math.unit(300, "feet"),
  8267. },
  8268. {
  8269. name: "BIG WALF",
  8270. height: math.unit(750, "feet"),
  8271. },
  8272. ]
  8273. ))
  8274. characterMakers.push(() => makeCharacter(
  8275. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8276. {
  8277. front: {
  8278. height: math.unit(6, "feet"),
  8279. weight: math.unit(150, "lbs"),
  8280. name: "Front",
  8281. image: {
  8282. source: "./media/characters/carley/front.svg",
  8283. extra: 3927 / 3540,
  8284. bottom: 29.2 / 735
  8285. }
  8286. }
  8287. },
  8288. [
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(6 + 3 / 12, "feet")
  8292. },
  8293. {
  8294. name: "Macro",
  8295. height: math.unit(185, "feet"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Megamacro",
  8300. height: math.unit(8, "miles"),
  8301. },
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(3, "feet"),
  8309. weight: math.unit(28, "lbs"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/citrine/front.svg"
  8313. }
  8314. }
  8315. },
  8316. [
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(3, "feet"),
  8320. default: true
  8321. }
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8326. {
  8327. front: {
  8328. height: math.unit(14, "feet"),
  8329. weight: math.unit(1450, "kg"),
  8330. capacity: math.unit(15, "people"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/aura-starwind/front.svg",
  8334. extra: 1440/1327,
  8335. bottom: 11/1451
  8336. }
  8337. },
  8338. side: {
  8339. height: math.unit(14, "feet"),
  8340. weight: math.unit(1450, "kg"),
  8341. capacity: math.unit(15, "people"),
  8342. name: "Side",
  8343. image: {
  8344. source: "./media/characters/aura-starwind/side.svg",
  8345. extra: 1654 / 1497
  8346. }
  8347. },
  8348. taur: {
  8349. height: math.unit(18, "feet"),
  8350. weight: math.unit(5500, "kg"),
  8351. capacity: math.unit(50, "people"),
  8352. name: "Taur",
  8353. image: {
  8354. source: "./media/characters/aura-starwind/taur.svg",
  8355. extra: 1760 / 1650
  8356. }
  8357. },
  8358. feral: {
  8359. height: math.unit(46, "feet"),
  8360. weight: math.unit(25000, "kg"),
  8361. capacity: math.unit(120, "people"),
  8362. name: "Feral",
  8363. image: {
  8364. source: "./media/characters/aura-starwind/feral.svg"
  8365. }
  8366. },
  8367. },
  8368. [
  8369. {
  8370. name: "Normal",
  8371. height: math.unit(14, "feet"),
  8372. default: true
  8373. },
  8374. {
  8375. name: "Macro",
  8376. height: math.unit(50, "meters")
  8377. },
  8378. {
  8379. name: "Megamacro",
  8380. height: math.unit(5000, "meters")
  8381. },
  8382. {
  8383. name: "Gigamacro",
  8384. height: math.unit(100000, "kilometers")
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(2 + 7 / 12, "feet"),
  8393. weight: math.unit(32, "lbs"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/rivet/front.svg",
  8397. extra: 1716 / 1658,
  8398. bottom: 0.03
  8399. }
  8400. },
  8401. foot: {
  8402. height: math.unit(0.551, "feet"),
  8403. name: "Rivet's Foot",
  8404. image: {
  8405. source: "./media/characters/rivet/foot.svg"
  8406. },
  8407. rename: true
  8408. }
  8409. },
  8410. [
  8411. {
  8412. name: "Micro",
  8413. height: math.unit(1.5, "inches"),
  8414. },
  8415. {
  8416. name: "Normal",
  8417. height: math.unit(2 + 7 / 12, "feet"),
  8418. default: true
  8419. },
  8420. {
  8421. name: "Macro",
  8422. height: math.unit(85, "feet")
  8423. },
  8424. {
  8425. name: "Megamacro",
  8426. height: math.unit(2.2, "km")
  8427. }
  8428. ]
  8429. ))
  8430. characterMakers.push(() => makeCharacter(
  8431. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8432. {
  8433. front: {
  8434. height: math.unit(5 + 9 / 12, "feet"),
  8435. weight: math.unit(150, "lbs"),
  8436. name: "Front",
  8437. image: {
  8438. source: "./media/characters/coffee/front.svg",
  8439. extra: 3666 / 3032,
  8440. bottom: 0.04
  8441. }
  8442. },
  8443. foot: {
  8444. height: math.unit(1.29, "feet"),
  8445. name: "Foot",
  8446. image: {
  8447. source: "./media/characters/coffee/foot.svg"
  8448. }
  8449. },
  8450. },
  8451. [
  8452. {
  8453. name: "Micro",
  8454. height: math.unit(2, "inches"),
  8455. },
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(5 + 9 / 12, "feet"),
  8459. default: true
  8460. },
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(800, "feet")
  8464. },
  8465. {
  8466. name: "Megamacro",
  8467. height: math.unit(25, "miles")
  8468. }
  8469. ]
  8470. ))
  8471. characterMakers.push(() => makeCharacter(
  8472. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8473. {
  8474. front: {
  8475. height: math.unit(6, "feet"),
  8476. weight: math.unit(200, "lbs"),
  8477. name: "Front",
  8478. image: {
  8479. source: "./media/characters/chari-gal/front.svg",
  8480. extra: 1568 / 1385,
  8481. bottom: 0.047
  8482. }
  8483. },
  8484. gigantamax: {
  8485. height: math.unit(6 * 16, "feet"),
  8486. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8487. name: "Gigantamax",
  8488. image: {
  8489. source: "./media/characters/chari-gal/gigantamax.svg",
  8490. extra: 1124 / 888,
  8491. bottom: 0.03
  8492. }
  8493. },
  8494. },
  8495. [
  8496. {
  8497. name: "Normal",
  8498. height: math.unit(5 + 7 / 12, "feet")
  8499. },
  8500. {
  8501. name: "Macro",
  8502. height: math.unit(200, "feet"),
  8503. default: true
  8504. }
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8509. {
  8510. front: {
  8511. height: math.unit(6, "feet"),
  8512. weight: math.unit(150, "lbs"),
  8513. name: "Front",
  8514. image: {
  8515. source: "./media/characters/nova/front.svg",
  8516. extra: 5000 / 4722,
  8517. bottom: 0.02
  8518. }
  8519. }
  8520. },
  8521. [
  8522. {
  8523. name: "Micro-",
  8524. height: math.unit(0.8, "inches")
  8525. },
  8526. {
  8527. name: "Micro",
  8528. height: math.unit(2, "inches"),
  8529. default: true
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8535. {
  8536. front: {
  8537. height: math.unit(3 + 1 / 12, "feet"),
  8538. weight: math.unit(21.7, "lbs"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/argent/front.svg",
  8542. extra: 1471 / 1331,
  8543. bottom: 100.8 / 1575.5
  8544. }
  8545. }
  8546. },
  8547. [
  8548. {
  8549. name: "Micro",
  8550. height: math.unit(2, "inches")
  8551. },
  8552. {
  8553. name: "Normal",
  8554. height: math.unit(3 + 1 / 12, "feet"),
  8555. default: true
  8556. },
  8557. {
  8558. name: "Macro",
  8559. height: math.unit(120, "feet")
  8560. },
  8561. ]
  8562. ))
  8563. characterMakers.push(() => makeCharacter(
  8564. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8565. {
  8566. lamp: {
  8567. height: math.unit(7 * 1559 / 989, "feet"),
  8568. name: "Magic Lamp",
  8569. image: {
  8570. source: "./media/characters/mira-al-cul/lamp.svg",
  8571. extra: 1617 / 1559
  8572. }
  8573. },
  8574. front: {
  8575. height: math.unit(7, "feet"),
  8576. name: "Front",
  8577. image: {
  8578. source: "./media/characters/mira-al-cul/front.svg",
  8579. extra: 1044 / 990
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Heavily Restricted",
  8586. height: math.unit(7 * 1559 / 989, "feet")
  8587. },
  8588. {
  8589. name: "Freshly Freed",
  8590. height: math.unit(50 * 1559 / 989, "feet")
  8591. },
  8592. {
  8593. name: "World Encompassing",
  8594. height: math.unit(10000 * 1559 / 989, "miles")
  8595. },
  8596. {
  8597. name: "Galactic",
  8598. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8599. },
  8600. {
  8601. name: "Palmed Universe",
  8602. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8603. default: true
  8604. },
  8605. {
  8606. name: "Multiversal Matriarch",
  8607. height: math.unit(8.87e10, "yottameters")
  8608. },
  8609. {
  8610. name: "Void Mother",
  8611. height: math.unit(3.14e110, "yottaparsecs")
  8612. },
  8613. {
  8614. name: "Toying with Transcendence",
  8615. height: math.unit(1e307, "meters")
  8616. },
  8617. ]
  8618. ))
  8619. characterMakers.push(() => makeCharacter(
  8620. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8621. {
  8622. front: {
  8623. height: math.unit(17 + 1 / 12, "feet"),
  8624. weight: math.unit(476.2 * 5, "lbs"),
  8625. name: "Front",
  8626. image: {
  8627. source: "./media/characters/kuro-shi-uchū/front.svg",
  8628. extra: 2329 / 1835,
  8629. bottom: 0.02
  8630. }
  8631. },
  8632. },
  8633. [
  8634. {
  8635. name: "Micro",
  8636. height: math.unit(2, "inches")
  8637. },
  8638. {
  8639. name: "Normal",
  8640. height: math.unit(12, "meters")
  8641. },
  8642. {
  8643. name: "Planetary",
  8644. height: math.unit(0.00929, "AU"),
  8645. default: true
  8646. },
  8647. {
  8648. name: "Universal",
  8649. height: math.unit(20, "gigaparsecs")
  8650. },
  8651. ]
  8652. ))
  8653. characterMakers.push(() => makeCharacter(
  8654. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8655. {
  8656. front: {
  8657. height: math.unit(5 + 2 / 12, "feet"),
  8658. weight: math.unit(120, "lbs"),
  8659. name: "Front",
  8660. image: {
  8661. source: "./media/characters/katherine/front.svg",
  8662. extra: 2075 / 1969
  8663. }
  8664. },
  8665. dress: {
  8666. height: math.unit(5 + 2 / 12, "feet"),
  8667. weight: math.unit(120, "lbs"),
  8668. name: "Dress",
  8669. image: {
  8670. source: "./media/characters/katherine/dress.svg",
  8671. extra: 2258 / 2064
  8672. }
  8673. },
  8674. },
  8675. [
  8676. {
  8677. name: "Micro",
  8678. height: math.unit(1, "inches"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "Normal",
  8683. height: math.unit(5 + 2 / 12, "feet")
  8684. },
  8685. {
  8686. name: "Macro",
  8687. height: math.unit(100, "meters")
  8688. },
  8689. {
  8690. name: "Megamacro",
  8691. height: math.unit(80, "miles")
  8692. },
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(7 + 8 / 12, "feet"),
  8700. weight: math.unit(250, "lbs"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/yevis/front.svg",
  8704. extra: 1938 / 1755
  8705. }
  8706. }
  8707. },
  8708. [
  8709. {
  8710. name: "Mortal",
  8711. height: math.unit(7 + 8 / 12, "feet")
  8712. },
  8713. {
  8714. name: "Battle",
  8715. height: math.unit(25 + 11 / 12, "feet")
  8716. },
  8717. {
  8718. name: "Wrath",
  8719. height: math.unit(1654 + 11 / 12, "feet")
  8720. },
  8721. {
  8722. name: "Planet Destroyer",
  8723. height: math.unit(12000, "miles")
  8724. },
  8725. {
  8726. name: "Galaxy Conqueror",
  8727. height: math.unit(1.45, "zettameters"),
  8728. default: true
  8729. },
  8730. {
  8731. name: "Universal War",
  8732. height: math.unit(184, "gigaparsecs")
  8733. },
  8734. {
  8735. name: "Eternity War",
  8736. height: math.unit(1.98e55, "yottaparsecs")
  8737. },
  8738. ]
  8739. ))
  8740. characterMakers.push(() => makeCharacter(
  8741. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8742. {
  8743. front: {
  8744. height: math.unit(5 + 8 / 12, "feet"),
  8745. weight: math.unit(63, "kg"),
  8746. name: "Front",
  8747. image: {
  8748. source: "./media/characters/xavier/front.svg",
  8749. extra: 944 / 883
  8750. }
  8751. },
  8752. frontStretch: {
  8753. height: math.unit(5 + 8 / 12, "feet"),
  8754. weight: math.unit(63, "kg"),
  8755. name: "Stretching",
  8756. image: {
  8757. source: "./media/characters/xavier/front-stretch.svg",
  8758. extra: 962 / 820
  8759. }
  8760. },
  8761. },
  8762. [
  8763. {
  8764. name: "Normal",
  8765. height: math.unit(5 + 8 / 12, "feet")
  8766. },
  8767. {
  8768. name: "Macro",
  8769. height: math.unit(100, "meters"),
  8770. default: true
  8771. },
  8772. {
  8773. name: "McLargeHuge",
  8774. height: math.unit(10, "miles")
  8775. },
  8776. ]
  8777. ))
  8778. characterMakers.push(() => makeCharacter(
  8779. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8780. {
  8781. front: {
  8782. height: math.unit(5 + 5 / 12, "feet"),
  8783. weight: math.unit(150, "lb"),
  8784. name: "Front",
  8785. image: {
  8786. source: "./media/characters/joshii/front.svg",
  8787. extra: 765 / 653,
  8788. bottom: 51 / 816
  8789. }
  8790. },
  8791. foot: {
  8792. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8793. name: "Foot",
  8794. image: {
  8795. source: "./media/characters/joshii/foot.svg"
  8796. }
  8797. },
  8798. },
  8799. [
  8800. {
  8801. name: "Micro",
  8802. height: math.unit(2, "inches"),
  8803. default: true
  8804. },
  8805. {
  8806. name: "Normal",
  8807. height: math.unit(5 + 5 / 12, "feet")
  8808. },
  8809. {
  8810. name: "Macro",
  8811. height: math.unit(785, "feet")
  8812. },
  8813. {
  8814. name: "Megamacro",
  8815. height: math.unit(24.5, "miles")
  8816. },
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8821. {
  8822. front: {
  8823. height: math.unit(6, "feet"),
  8824. weight: math.unit(150, "lb"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/goddess-elizabeth/front.svg",
  8828. extra: 1800 / 1525,
  8829. bottom: 0.005
  8830. }
  8831. },
  8832. foot: {
  8833. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8834. name: "Foot",
  8835. image: {
  8836. source: "./media/characters/goddess-elizabeth/foot.svg"
  8837. }
  8838. },
  8839. mouth: {
  8840. height: math.unit(6, "feet"),
  8841. name: "Mouth",
  8842. image: {
  8843. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8844. }
  8845. },
  8846. },
  8847. [
  8848. {
  8849. name: "Micro",
  8850. height: math.unit(12, "feet")
  8851. },
  8852. {
  8853. name: "Normal",
  8854. height: math.unit(80, "miles"),
  8855. default: true
  8856. },
  8857. {
  8858. name: "Macro",
  8859. height: math.unit(15000, "parsecs")
  8860. },
  8861. ]
  8862. ))
  8863. characterMakers.push(() => makeCharacter(
  8864. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8865. {
  8866. front: {
  8867. height: math.unit(5 + 9 / 12, "feet"),
  8868. weight: math.unit(144, "lb"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/kara/front.svg"
  8872. }
  8873. },
  8874. feet: {
  8875. height: math.unit(6 / 6.765, "feet"),
  8876. name: "Kara's Feet",
  8877. rename: true,
  8878. image: {
  8879. source: "./media/characters/kara/feet.svg"
  8880. }
  8881. },
  8882. },
  8883. [
  8884. {
  8885. name: "Normal",
  8886. height: math.unit(5 + 9 / 12, "feet")
  8887. },
  8888. {
  8889. name: "Macro",
  8890. height: math.unit(174, "feet"),
  8891. default: true
  8892. },
  8893. ]
  8894. ))
  8895. characterMakers.push(() => makeCharacter(
  8896. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8897. {
  8898. front: {
  8899. height: math.unit(18, "feet"),
  8900. weight: math.unit(4050, "lb"),
  8901. name: "Front",
  8902. image: {
  8903. source: "./media/characters/tyrone/front.svg",
  8904. extra: 2405 / 2270,
  8905. bottom: 182 / 2587
  8906. }
  8907. },
  8908. },
  8909. [
  8910. {
  8911. name: "Normal",
  8912. height: math.unit(18, "feet"),
  8913. default: true
  8914. },
  8915. {
  8916. name: "Macro",
  8917. height: math.unit(300, "feet")
  8918. },
  8919. {
  8920. name: "Megamacro",
  8921. height: math.unit(15, "km")
  8922. },
  8923. {
  8924. name: "Gigamacro",
  8925. height: math.unit(500, "km")
  8926. },
  8927. {
  8928. name: "Teramacro",
  8929. height: math.unit(0.5, "gigameters")
  8930. },
  8931. {
  8932. name: "Omnimacro",
  8933. height: math.unit(1e252, "yottauniverse")
  8934. },
  8935. ]
  8936. ))
  8937. characterMakers.push(() => makeCharacter(
  8938. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8939. {
  8940. front: {
  8941. height: math.unit(7 + 8 / 12, "feet"),
  8942. weight: math.unit(120, "lb"),
  8943. name: "Front",
  8944. image: {
  8945. source: "./media/characters/danny/front.svg",
  8946. extra: 1490 / 1350
  8947. }
  8948. },
  8949. back: {
  8950. height: math.unit(7 + 8 / 12, "feet"),
  8951. weight: math.unit(120, "lb"),
  8952. name: "Back",
  8953. image: {
  8954. source: "./media/characters/danny/back.svg",
  8955. extra: 1490 / 1350
  8956. }
  8957. },
  8958. },
  8959. [
  8960. {
  8961. name: "Normal",
  8962. height: math.unit(7 + 8 / 12, "feet"),
  8963. default: true
  8964. },
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8969. {
  8970. front: {
  8971. height: math.unit(3.5, "inches"),
  8972. weight: math.unit(19, "grams"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/mallow/front.svg",
  8976. extra: 471 / 431
  8977. }
  8978. },
  8979. back: {
  8980. height: math.unit(3.5, "inches"),
  8981. weight: math.unit(19, "grams"),
  8982. name: "Back",
  8983. image: {
  8984. source: "./media/characters/mallow/back.svg",
  8985. extra: 471 / 431
  8986. }
  8987. },
  8988. },
  8989. [
  8990. {
  8991. name: "Normal",
  8992. height: math.unit(3.5, "inches"),
  8993. default: true
  8994. },
  8995. ]
  8996. ))
  8997. characterMakers.push(() => makeCharacter(
  8998. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8999. {
  9000. front: {
  9001. height: math.unit(9, "feet"),
  9002. weight: math.unit(230, "kg"),
  9003. name: "Front",
  9004. image: {
  9005. source: "./media/characters/starry-aqua/front.svg"
  9006. }
  9007. },
  9008. back: {
  9009. height: math.unit(9, "feet"),
  9010. weight: math.unit(230, "kg"),
  9011. name: "Back",
  9012. image: {
  9013. source: "./media/characters/starry-aqua/back.svg"
  9014. }
  9015. },
  9016. hand: {
  9017. height: math.unit(9 * 0.1168, "feet"),
  9018. name: "Hand",
  9019. image: {
  9020. source: "./media/characters/starry-aqua/hand.svg"
  9021. }
  9022. },
  9023. foot: {
  9024. height: math.unit(9 * 0.18, "feet"),
  9025. name: "Foot",
  9026. image: {
  9027. source: "./media/characters/starry-aqua/foot.svg"
  9028. }
  9029. }
  9030. },
  9031. [
  9032. {
  9033. name: "Micro",
  9034. height: math.unit(3, "inches")
  9035. },
  9036. {
  9037. name: "Normal",
  9038. height: math.unit(9, "feet")
  9039. },
  9040. {
  9041. name: "Macro",
  9042. height: math.unit(300, "feet"),
  9043. default: true
  9044. },
  9045. {
  9046. name: "Megamacro",
  9047. height: math.unit(3200, "feet")
  9048. }
  9049. ]
  9050. ))
  9051. characterMakers.push(() => makeCharacter(
  9052. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9053. {
  9054. front: {
  9055. height: math.unit(15, "feet"),
  9056. weight: math.unit(5026, "lb"),
  9057. name: "Front",
  9058. image: {
  9059. source: "./media/characters/luka-towers/front.svg",
  9060. extra: 1269/1133,
  9061. bottom: 51/1320
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Normal",
  9068. height: math.unit(15, "feet"),
  9069. default: true
  9070. },
  9071. {
  9072. name: "Minimacro",
  9073. height: math.unit(25, "feet")
  9074. },
  9075. {
  9076. name: "Macro",
  9077. height: math.unit(320, "feet")
  9078. },
  9079. {
  9080. name: "Megamacro",
  9081. height: math.unit(35000, "feet")
  9082. },
  9083. {
  9084. name: "Gigamacro",
  9085. height: math.unit(4000, "miles")
  9086. },
  9087. {
  9088. name: "Teramacro",
  9089. height: math.unit(15000, "miles")
  9090. },
  9091. ]
  9092. ))
  9093. characterMakers.push(() => makeCharacter(
  9094. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9095. {
  9096. front: {
  9097. height: math.unit(6, "feet"),
  9098. weight: math.unit(150, "lb"),
  9099. name: "Front",
  9100. image: {
  9101. source: "./media/characters/natalie-nightring/front.svg",
  9102. extra: 1,
  9103. bottom: 0.06
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Uh Oh",
  9110. height: math.unit(0.1, "mm")
  9111. },
  9112. {
  9113. name: "Small",
  9114. height: math.unit(3, "inches")
  9115. },
  9116. {
  9117. name: "Human Scale",
  9118. height: math.unit(6, "feet")
  9119. },
  9120. {
  9121. name: "Librarian",
  9122. height: math.unit(50, "feet"),
  9123. default: true
  9124. },
  9125. {
  9126. name: "Immense",
  9127. height: math.unit(200, "miles")
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(6, "feet"),
  9136. weight: math.unit(180, "lbs"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/danni-rosie/front.svg",
  9140. extra: 1260 / 1128,
  9141. bottom: 0.022
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Micro",
  9148. height: math.unit(2, "inches"),
  9149. default: true
  9150. },
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9155. {
  9156. front: {
  9157. height: math.unit(5 + 9 / 12, "feet"),
  9158. weight: math.unit(220, "lb"),
  9159. name: "Front",
  9160. image: {
  9161. source: "./media/characters/samantha-kruse/front.svg",
  9162. extra: (985 / 935),
  9163. bottom: 0.03
  9164. }
  9165. },
  9166. frontUndressed: {
  9167. height: math.unit(5 + 9 / 12, "feet"),
  9168. weight: math.unit(220, "lb"),
  9169. name: "Front (Undressed)",
  9170. image: {
  9171. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9172. extra: (973 / 923),
  9173. bottom: 0.025
  9174. }
  9175. },
  9176. fat: {
  9177. height: math.unit(5 + 9 / 12, "feet"),
  9178. weight: math.unit(900, "lb"),
  9179. name: "Front (Fat)",
  9180. image: {
  9181. source: "./media/characters/samantha-kruse/fat.svg",
  9182. extra: 2688 / 2561
  9183. }
  9184. },
  9185. },
  9186. [
  9187. {
  9188. name: "Normal",
  9189. height: math.unit(5 + 9 / 12, "feet"),
  9190. default: true
  9191. }
  9192. ]
  9193. ))
  9194. characterMakers.push(() => makeCharacter(
  9195. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9196. {
  9197. back: {
  9198. height: math.unit(5 + 4 / 12, "feet"),
  9199. weight: math.unit(4963, "lb"),
  9200. name: "Back",
  9201. image: {
  9202. source: "./media/characters/amelia-rosie/back.svg",
  9203. extra: 1113 / 963,
  9204. bottom: 0.01
  9205. }
  9206. },
  9207. },
  9208. [
  9209. {
  9210. name: "Level 0",
  9211. height: math.unit(5 + 4 / 12, "feet")
  9212. },
  9213. {
  9214. name: "Level 1",
  9215. height: math.unit(164597, "feet"),
  9216. default: true
  9217. },
  9218. {
  9219. name: "Level 2",
  9220. height: math.unit(956243, "miles")
  9221. },
  9222. {
  9223. name: "Level 3",
  9224. height: math.unit(29421709423, "miles")
  9225. },
  9226. {
  9227. name: "Level 4",
  9228. height: math.unit(154, "lightyears")
  9229. },
  9230. {
  9231. name: "Level 5",
  9232. height: math.unit(4738272, "lightyears")
  9233. },
  9234. {
  9235. name: "Level 6",
  9236. height: math.unit(145787152896, "lightyears")
  9237. },
  9238. ]
  9239. ))
  9240. characterMakers.push(() => makeCharacter(
  9241. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9242. {
  9243. front: {
  9244. height: math.unit(5 + 11 / 12, "feet"),
  9245. weight: math.unit(65, "kg"),
  9246. name: "Front",
  9247. image: {
  9248. source: "./media/characters/rook-kitara/front.svg",
  9249. extra: 1347 / 1274,
  9250. bottom: 0.005
  9251. }
  9252. },
  9253. },
  9254. [
  9255. {
  9256. name: "Totally Unfair",
  9257. height: math.unit(1.8, "mm")
  9258. },
  9259. {
  9260. name: "Lap Rookie",
  9261. height: math.unit(1.4, "feet")
  9262. },
  9263. {
  9264. name: "Normal",
  9265. height: math.unit(5 + 11 / 12, "feet"),
  9266. default: true
  9267. },
  9268. {
  9269. name: "How Did This Happen",
  9270. height: math.unit(80, "miles")
  9271. }
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9276. {
  9277. front: {
  9278. height: math.unit(7, "feet"),
  9279. weight: math.unit(300, "lb"),
  9280. name: "Front",
  9281. image: {
  9282. source: "./media/characters/pisces/front.svg",
  9283. extra: 2255 / 2115,
  9284. bottom: 0.03
  9285. }
  9286. },
  9287. back: {
  9288. height: math.unit(7, "feet"),
  9289. weight: math.unit(300, "lb"),
  9290. name: "Back",
  9291. image: {
  9292. source: "./media/characters/pisces/back.svg",
  9293. extra: 2146 / 2055,
  9294. bottom: 0.04
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Normal",
  9301. height: math.unit(7, "feet"),
  9302. default: true
  9303. },
  9304. {
  9305. name: "Swimming Pool",
  9306. height: math.unit(12.2, "meters")
  9307. },
  9308. {
  9309. name: "Olympic Swimming Pool",
  9310. height: math.unit(56.3, "meters")
  9311. },
  9312. {
  9313. name: "Lake Superior",
  9314. height: math.unit(93900, "meters")
  9315. },
  9316. {
  9317. name: "Mediterranean Sea",
  9318. height: math.unit(644457, "meters")
  9319. },
  9320. {
  9321. name: "World's Oceans",
  9322. height: math.unit(4567491, "meters")
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9328. {
  9329. front: {
  9330. height: math.unit(2.3, "meters"),
  9331. weight: math.unit(120, "kg"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/zelas/front.svg"
  9335. }
  9336. },
  9337. side: {
  9338. height: math.unit(2.3, "meters"),
  9339. weight: math.unit(120, "kg"),
  9340. name: "Side",
  9341. image: {
  9342. source: "./media/characters/zelas/side.svg"
  9343. }
  9344. },
  9345. back: {
  9346. height: math.unit(2.3, "meters"),
  9347. weight: math.unit(120, "kg"),
  9348. name: "Back",
  9349. image: {
  9350. source: "./media/characters/zelas/back.svg"
  9351. }
  9352. },
  9353. foot: {
  9354. height: math.unit(1.116, "feet"),
  9355. name: "Foot",
  9356. image: {
  9357. source: "./media/characters/zelas/foot.svg"
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Normal",
  9364. height: math.unit(2.3, "meters")
  9365. },
  9366. {
  9367. name: "Macro",
  9368. height: math.unit(30, "meters"),
  9369. default: true
  9370. },
  9371. ]
  9372. ))
  9373. characterMakers.push(() => makeCharacter(
  9374. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9375. {
  9376. front: {
  9377. height: math.unit(1, "inch"),
  9378. weight: math.unit(0.21, "grams"),
  9379. name: "Front",
  9380. image: {
  9381. source: "./media/characters/talbot/front.svg",
  9382. extra: 594 / 544
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Micro",
  9389. height: math.unit(1, "inch"),
  9390. default: true
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9396. {
  9397. front: {
  9398. height: math.unit(3 + 3 / 12, "feet"),
  9399. weight: math.unit(51.8, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/fliss/front.svg",
  9403. extra: 840 / 640
  9404. }
  9405. },
  9406. },
  9407. [
  9408. {
  9409. name: "Teeny Tiny",
  9410. height: math.unit(1, "mm")
  9411. },
  9412. {
  9413. name: "Small",
  9414. height: math.unit(1, "inch"),
  9415. default: true
  9416. },
  9417. {
  9418. name: "Standard Sylveon",
  9419. height: math.unit(3 + 3 / 12, "feet")
  9420. },
  9421. {
  9422. name: "Large Nuisance",
  9423. height: math.unit(33, "feet")
  9424. },
  9425. {
  9426. name: "City Filler",
  9427. height: math.unit(3000, "feet")
  9428. },
  9429. {
  9430. name: "New Horizon",
  9431. height: math.unit(6000, "miles")
  9432. },
  9433. ]
  9434. ))
  9435. characterMakers.push(() => makeCharacter(
  9436. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9437. {
  9438. front: {
  9439. height: math.unit(5, "cm"),
  9440. weight: math.unit(1.94, "g"),
  9441. name: "Front",
  9442. image: {
  9443. source: "./media/characters/fleta/front.svg",
  9444. extra: 835 / 803
  9445. }
  9446. },
  9447. back: {
  9448. height: math.unit(5, "cm"),
  9449. weight: math.unit(1.94, "g"),
  9450. name: "Back",
  9451. image: {
  9452. source: "./media/characters/fleta/back.svg",
  9453. extra: 835 / 803
  9454. }
  9455. },
  9456. },
  9457. [
  9458. {
  9459. name: "Micro",
  9460. height: math.unit(5, "cm"),
  9461. default: true
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(6, "feet"),
  9470. weight: math.unit(225, "lb"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/dominic/front.svg",
  9474. extra: 1770 / 1620,
  9475. bottom: 0.025
  9476. }
  9477. },
  9478. back: {
  9479. height: math.unit(6, "feet"),
  9480. weight: math.unit(225, "lb"),
  9481. name: "Back",
  9482. image: {
  9483. source: "./media/characters/dominic/back.svg",
  9484. extra: 1745 / 1620,
  9485. bottom: 0.065
  9486. }
  9487. },
  9488. },
  9489. [
  9490. {
  9491. name: "Nano",
  9492. height: math.unit(0.1, "mm")
  9493. },
  9494. {
  9495. name: "Micro-",
  9496. height: math.unit(1, "mm")
  9497. },
  9498. {
  9499. name: "Micro",
  9500. height: math.unit(4, "inches")
  9501. },
  9502. {
  9503. name: "Normal",
  9504. height: math.unit(6 + 4 / 12, "feet"),
  9505. default: true
  9506. },
  9507. {
  9508. name: "Macro",
  9509. height: math.unit(115, "feet")
  9510. },
  9511. {
  9512. name: "Macro+",
  9513. height: math.unit(955, "feet")
  9514. },
  9515. {
  9516. name: "Megamacro",
  9517. height: math.unit(8990, "feet")
  9518. },
  9519. {
  9520. name: "Gigmacro",
  9521. height: math.unit(9310, "miles")
  9522. },
  9523. {
  9524. name: "Teramacro",
  9525. height: math.unit(1567005010, "miles")
  9526. },
  9527. {
  9528. name: "Examacro",
  9529. height: math.unit(1425, "parsecs")
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9535. {
  9536. front: {
  9537. height: math.unit(400, "feet"),
  9538. weight: math.unit(44444444, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/major-colonel/front.svg"
  9542. }
  9543. },
  9544. back: {
  9545. height: math.unit(400, "feet"),
  9546. weight: math.unit(44444444, "lb"),
  9547. name: "Back",
  9548. image: {
  9549. source: "./media/characters/major-colonel/back.svg"
  9550. }
  9551. },
  9552. },
  9553. [
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(400, "feet"),
  9557. default: true
  9558. },
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9563. {
  9564. catFront: {
  9565. height: math.unit(6, "feet"),
  9566. weight: math.unit(120, "lb"),
  9567. name: "Front (Cat Side)",
  9568. image: {
  9569. source: "./media/characters/axel-lycan/cat-front.svg",
  9570. extra: 430 / 402,
  9571. bottom: 43 / 472.35
  9572. }
  9573. },
  9574. catBack: {
  9575. height: math.unit(6, "feet"),
  9576. weight: math.unit(120, "lb"),
  9577. name: "Back (Cat Side)",
  9578. image: {
  9579. source: "./media/characters/axel-lycan/cat-back.svg",
  9580. extra: 447 / 419,
  9581. bottom: 23.3 / 469
  9582. }
  9583. },
  9584. wolfFront: {
  9585. height: math.unit(6, "feet"),
  9586. weight: math.unit(120, "lb"),
  9587. name: "Front (Wolf Side)",
  9588. image: {
  9589. source: "./media/characters/axel-lycan/wolf-front.svg",
  9590. extra: 485 / 456,
  9591. bottom: 19 / 504
  9592. }
  9593. },
  9594. wolfBack: {
  9595. height: math.unit(6, "feet"),
  9596. weight: math.unit(120, "lb"),
  9597. name: "Back (Wolf Side)",
  9598. image: {
  9599. source: "./media/characters/axel-lycan/wolf-back.svg",
  9600. extra: 475 / 438,
  9601. bottom: 39.2 / 514
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Macro",
  9608. height: math.unit(1, "km"),
  9609. default: true
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(5 + 9 / 12, "feet"),
  9618. weight: math.unit(175, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/vanrel-hyena/front.svg",
  9622. extra: 1086 / 1010,
  9623. bottom: 0.04
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(5 + 9 / 12, "feet"),
  9631. default: true
  9632. },
  9633. ]
  9634. ))
  9635. characterMakers.push(() => makeCharacter(
  9636. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9637. {
  9638. front: {
  9639. height: math.unit(6, "feet"),
  9640. weight: math.unit(103, "lb"),
  9641. name: "Front",
  9642. image: {
  9643. source: "./media/characters/abbott-absol/front.svg",
  9644. extra: 2010 / 1842
  9645. }
  9646. },
  9647. },
  9648. [
  9649. {
  9650. name: "Megamicro",
  9651. height: math.unit(0.1, "mm")
  9652. },
  9653. {
  9654. name: "Micro",
  9655. height: math.unit(1, "inch")
  9656. },
  9657. {
  9658. name: "Normal",
  9659. height: math.unit(6, "feet"),
  9660. default: true
  9661. },
  9662. ]
  9663. ))
  9664. characterMakers.push(() => makeCharacter(
  9665. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9666. {
  9667. front: {
  9668. height: math.unit(6, "feet"),
  9669. weight: math.unit(264, "lb"),
  9670. name: "Front",
  9671. image: {
  9672. source: "./media/characters/hector/front.svg",
  9673. extra: 2280 / 2130,
  9674. bottom: 0.07
  9675. }
  9676. },
  9677. },
  9678. [
  9679. {
  9680. name: "Normal",
  9681. height: math.unit(12.25, "foot"),
  9682. default: true
  9683. },
  9684. {
  9685. name: "Macro",
  9686. height: math.unit(160, "feet")
  9687. },
  9688. ]
  9689. ))
  9690. characterMakers.push(() => makeCharacter(
  9691. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9692. {
  9693. front: {
  9694. height: math.unit(6, "feet"),
  9695. weight: math.unit(150, "lb"),
  9696. name: "Front",
  9697. image: {
  9698. source: "./media/characters/sal/front.svg",
  9699. extra: 1846 / 1699,
  9700. bottom: 0.04
  9701. }
  9702. },
  9703. },
  9704. [
  9705. {
  9706. name: "Megamacro",
  9707. height: math.unit(10, "miles"),
  9708. default: true
  9709. },
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9714. {
  9715. front: {
  9716. height: math.unit(3, "meters"),
  9717. weight: math.unit(450, "kg"),
  9718. name: "front",
  9719. image: {
  9720. source: "./media/characters/ranger/front.svg",
  9721. extra: 2401 / 2243,
  9722. bottom: 0.05
  9723. }
  9724. },
  9725. },
  9726. [
  9727. {
  9728. name: "Normal",
  9729. height: math.unit(3, "meters"),
  9730. default: true
  9731. },
  9732. ]
  9733. ))
  9734. characterMakers.push(() => makeCharacter(
  9735. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9736. {
  9737. front: {
  9738. height: math.unit(14, "feet"),
  9739. weight: math.unit(800, "kg"),
  9740. name: "Front",
  9741. image: {
  9742. source: "./media/characters/theresa/front.svg",
  9743. extra: 3575 / 3346,
  9744. bottom: 0.03
  9745. }
  9746. },
  9747. },
  9748. [
  9749. {
  9750. name: "Normal",
  9751. height: math.unit(14, "feet"),
  9752. default: true
  9753. },
  9754. ]
  9755. ))
  9756. characterMakers.push(() => makeCharacter(
  9757. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9758. {
  9759. front: {
  9760. height: math.unit(6, "feet"),
  9761. weight: math.unit(3, "kg"),
  9762. name: "Front",
  9763. image: {
  9764. source: "./media/characters/ine/front.svg",
  9765. extra: 678 / 539,
  9766. bottom: 0.023
  9767. }
  9768. },
  9769. },
  9770. [
  9771. {
  9772. name: "Normal",
  9773. height: math.unit(2.265, "feet"),
  9774. default: true
  9775. },
  9776. ]
  9777. ))
  9778. characterMakers.push(() => makeCharacter(
  9779. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9780. {
  9781. front: {
  9782. height: math.unit(5, "feet"),
  9783. weight: math.unit(30, "kg"),
  9784. name: "Front",
  9785. image: {
  9786. source: "./media/characters/vial/front.svg",
  9787. extra: 1365 / 1277,
  9788. bottom: 0.04
  9789. }
  9790. },
  9791. },
  9792. [
  9793. {
  9794. name: "Normal",
  9795. height: math.unit(5, "feet"),
  9796. default: true
  9797. },
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9802. {
  9803. side: {
  9804. height: math.unit(3.4, "meters"),
  9805. weight: math.unit(1000, "lb"),
  9806. name: "Side",
  9807. image: {
  9808. source: "./media/characters/rovoska/side.svg",
  9809. extra: 4403 / 1515
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(3.4, "meters"),
  9817. default: true
  9818. },
  9819. ]
  9820. ))
  9821. characterMakers.push(() => makeCharacter(
  9822. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9823. {
  9824. front: {
  9825. height: math.unit(8, "feet"),
  9826. weight: math.unit(315, "lb"),
  9827. name: "Front",
  9828. image: {
  9829. source: "./media/characters/gunner-rotthbauer/front.svg"
  9830. }
  9831. },
  9832. back: {
  9833. height: math.unit(8, "feet"),
  9834. weight: math.unit(315, "lb"),
  9835. name: "Back",
  9836. image: {
  9837. source: "./media/characters/gunner-rotthbauer/back.svg"
  9838. }
  9839. },
  9840. },
  9841. [
  9842. {
  9843. name: "Micro",
  9844. height: math.unit(3.5, "inches")
  9845. },
  9846. {
  9847. name: "Normal",
  9848. height: math.unit(8, "feet"),
  9849. default: true
  9850. },
  9851. {
  9852. name: "Macro",
  9853. height: math.unit(250, "feet")
  9854. },
  9855. {
  9856. name: "Megamacro",
  9857. height: math.unit(1, "AU")
  9858. },
  9859. ]
  9860. ))
  9861. characterMakers.push(() => makeCharacter(
  9862. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9863. {
  9864. front: {
  9865. height: math.unit(5 + 5 / 12, "feet"),
  9866. weight: math.unit(140, "lb"),
  9867. name: "Front",
  9868. image: {
  9869. source: "./media/characters/allatia/front.svg",
  9870. extra: 1227 / 1180,
  9871. bottom: 0.027
  9872. }
  9873. },
  9874. },
  9875. [
  9876. {
  9877. name: "Normal",
  9878. height: math.unit(5 + 5 / 12, "feet")
  9879. },
  9880. {
  9881. name: "Macro",
  9882. height: math.unit(250, "feet"),
  9883. default: true
  9884. },
  9885. {
  9886. name: "Megamacro",
  9887. height: math.unit(8, "miles")
  9888. }
  9889. ]
  9890. ))
  9891. characterMakers.push(() => makeCharacter(
  9892. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9893. {
  9894. front: {
  9895. height: math.unit(6, "feet"),
  9896. weight: math.unit(120, "lb"),
  9897. name: "Front",
  9898. image: {
  9899. source: "./media/characters/tene/front.svg",
  9900. extra: 1728 / 1578,
  9901. bottom: 0.022
  9902. }
  9903. },
  9904. stomping: {
  9905. height: math.unit(2.025, "meters"),
  9906. weight: math.unit(120, "lb"),
  9907. name: "Stomping",
  9908. image: {
  9909. source: "./media/characters/tene/stomping.svg",
  9910. extra: 938 / 873,
  9911. bottom: 0.01
  9912. }
  9913. },
  9914. sitting: {
  9915. height: math.unit(1, "meter"),
  9916. weight: math.unit(120, "lb"),
  9917. name: "Sitting",
  9918. image: {
  9919. source: "./media/characters/tene/sitting.svg",
  9920. extra: 437 / 415,
  9921. bottom: 0.1
  9922. }
  9923. },
  9924. feral: {
  9925. height: math.unit(3.9, "feet"),
  9926. weight: math.unit(250, "lb"),
  9927. name: "Feral",
  9928. image: {
  9929. source: "./media/characters/tene/feral.svg",
  9930. extra: 717 / 458,
  9931. bottom: 0.179
  9932. }
  9933. },
  9934. },
  9935. [
  9936. {
  9937. name: "Normal",
  9938. height: math.unit(6, "feet")
  9939. },
  9940. {
  9941. name: "Macro",
  9942. height: math.unit(300, "feet"),
  9943. default: true
  9944. },
  9945. {
  9946. name: "Megamacro",
  9947. height: math.unit(5, "miles")
  9948. },
  9949. ]
  9950. ))
  9951. characterMakers.push(() => makeCharacter(
  9952. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9953. {
  9954. side: {
  9955. height: math.unit(6, "feet"),
  9956. name: "Side",
  9957. image: {
  9958. source: "./media/characters/evander/side.svg",
  9959. extra: 877 / 477
  9960. }
  9961. },
  9962. },
  9963. [
  9964. {
  9965. name: "Normal",
  9966. height: math.unit(0.83, "meters"),
  9967. default: true
  9968. },
  9969. ]
  9970. ))
  9971. characterMakers.push(() => makeCharacter(
  9972. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9973. {
  9974. front: {
  9975. height: math.unit(12, "feet"),
  9976. weight: math.unit(1000, "lb"),
  9977. name: "Front",
  9978. image: {
  9979. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9980. extra: 1762 / 1611
  9981. }
  9982. },
  9983. back: {
  9984. height: math.unit(12, "feet"),
  9985. weight: math.unit(1000, "lb"),
  9986. name: "Back",
  9987. image: {
  9988. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9989. extra: 1762 / 1611
  9990. }
  9991. },
  9992. },
  9993. [
  9994. {
  9995. name: "Normal",
  9996. height: math.unit(12, "feet"),
  9997. default: true
  9998. },
  9999. {
  10000. name: "Kaiju",
  10001. height: math.unit(150, "feet")
  10002. },
  10003. ]
  10004. ))
  10005. characterMakers.push(() => makeCharacter(
  10006. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10007. {
  10008. front: {
  10009. height: math.unit(6, "feet"),
  10010. weight: math.unit(150, "lb"),
  10011. name: "Front",
  10012. image: {
  10013. source: "./media/characters/zero-alurus/front.svg"
  10014. }
  10015. },
  10016. back: {
  10017. height: math.unit(6, "feet"),
  10018. weight: math.unit(150, "lb"),
  10019. name: "Back",
  10020. image: {
  10021. source: "./media/characters/zero-alurus/back.svg"
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(5 + 10 / 12, "feet")
  10029. },
  10030. {
  10031. name: "Macro",
  10032. height: math.unit(60, "feet"),
  10033. default: true
  10034. },
  10035. {
  10036. name: "Macro+",
  10037. height: math.unit(450, "feet")
  10038. },
  10039. ]
  10040. ))
  10041. characterMakers.push(() => makeCharacter(
  10042. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10043. {
  10044. front: {
  10045. height: math.unit(6, "feet"),
  10046. weight: math.unit(200, "lb"),
  10047. name: "Front",
  10048. image: {
  10049. source: "./media/characters/mega-shi/front.svg",
  10050. extra: 1279 / 1250,
  10051. bottom: 0.02
  10052. }
  10053. },
  10054. back: {
  10055. height: math.unit(6, "feet"),
  10056. weight: math.unit(200, "lb"),
  10057. name: "Back",
  10058. image: {
  10059. source: "./media/characters/mega-shi/back.svg",
  10060. extra: 1279 / 1250,
  10061. bottom: 0.02
  10062. }
  10063. },
  10064. },
  10065. [
  10066. {
  10067. name: "Micro",
  10068. height: math.unit(16 + 6 / 12, "feet")
  10069. },
  10070. {
  10071. name: "Third Dimension",
  10072. height: math.unit(40, "meters")
  10073. },
  10074. {
  10075. name: "Normal",
  10076. height: math.unit(660, "feet"),
  10077. default: true
  10078. },
  10079. {
  10080. name: "Megamacro",
  10081. height: math.unit(10, "miles")
  10082. },
  10083. {
  10084. name: "Planetary Launch",
  10085. height: math.unit(500, "miles")
  10086. },
  10087. {
  10088. name: "Interstellar",
  10089. height: math.unit(1e9, "miles")
  10090. },
  10091. {
  10092. name: "Leaving the Universe",
  10093. height: math.unit(1, "gigaparsec")
  10094. },
  10095. {
  10096. name: "Travelling Universes",
  10097. height: math.unit(30e15, "parsecs")
  10098. },
  10099. ]
  10100. ))
  10101. characterMakers.push(() => makeCharacter(
  10102. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10103. {
  10104. front: {
  10105. height: math.unit(6, "feet"),
  10106. weight: math.unit(150, "lb"),
  10107. name: "Front",
  10108. image: {
  10109. source: "./media/characters/odyssey/front.svg",
  10110. extra: 1782 / 1582,
  10111. bottom: 0.01
  10112. }
  10113. },
  10114. side: {
  10115. height: math.unit(5.7, "feet"),
  10116. weight: math.unit(140, "lb"),
  10117. name: "Side",
  10118. image: {
  10119. source: "./media/characters/odyssey/side.svg",
  10120. extra: 6462 / 5700
  10121. }
  10122. },
  10123. },
  10124. [
  10125. {
  10126. name: "Normal",
  10127. height: math.unit(5 + 4 / 12, "feet")
  10128. },
  10129. {
  10130. name: "Macro",
  10131. height: math.unit(1, "km")
  10132. },
  10133. {
  10134. name: "Megamacro",
  10135. height: math.unit(3000, "km")
  10136. },
  10137. {
  10138. name: "Gigamacro",
  10139. height: math.unit(1, "AU"),
  10140. default: true
  10141. },
  10142. {
  10143. name: "Omniversal",
  10144. height: math.unit(100e14, "lightyears")
  10145. },
  10146. ]
  10147. ))
  10148. characterMakers.push(() => makeCharacter(
  10149. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10150. {
  10151. front: {
  10152. height: math.unit(6, "feet"),
  10153. weight: math.unit(300, "lb"),
  10154. name: "Front",
  10155. image: {
  10156. source: "./media/characters/mekuto/front.svg",
  10157. extra: 921 / 832,
  10158. bottom: 0.03
  10159. }
  10160. },
  10161. hand: {
  10162. height: math.unit(6 / 10.24, "feet"),
  10163. name: "Hand",
  10164. image: {
  10165. source: "./media/characters/mekuto/hand.svg"
  10166. }
  10167. },
  10168. foot: {
  10169. height: math.unit(6 / 5.05, "feet"),
  10170. name: "Foot",
  10171. image: {
  10172. source: "./media/characters/mekuto/foot.svg"
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Minimicro",
  10179. height: math.unit(0.2, "inches")
  10180. },
  10181. {
  10182. name: "Micro",
  10183. height: math.unit(1.5, "inches")
  10184. },
  10185. {
  10186. name: "Normal",
  10187. height: math.unit(5 + 11 / 12, "feet"),
  10188. default: true
  10189. },
  10190. {
  10191. name: "Minimacro",
  10192. height: math.unit(17 + 9 / 12, "feet")
  10193. },
  10194. {
  10195. name: "Macro",
  10196. height: math.unit(177.5, "feet")
  10197. },
  10198. {
  10199. name: "Megamacro",
  10200. height: math.unit(152, "miles")
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(6.5, "inches"),
  10209. weight: math.unit(13, "oz"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/dafydd-tomos/front.svg",
  10213. extra: 2990 / 2603,
  10214. bottom: 0.03
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Micro",
  10221. height: math.unit(6.5, "inches"),
  10222. default: true
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(6, "feet"),
  10231. weight: math.unit(150, "lb"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/splinter/front.svg",
  10235. extra: 2990 / 2882,
  10236. bottom: 0.04
  10237. }
  10238. },
  10239. back: {
  10240. height: math.unit(6, "feet"),
  10241. weight: math.unit(150, "lb"),
  10242. name: "Back",
  10243. image: {
  10244. source: "./media/characters/splinter/back.svg",
  10245. extra: 2990 / 2882,
  10246. bottom: 0.04
  10247. }
  10248. },
  10249. },
  10250. [
  10251. {
  10252. name: "Normal",
  10253. height: math.unit(6, "feet")
  10254. },
  10255. {
  10256. name: "Macro",
  10257. height: math.unit(230, "meters"),
  10258. default: true
  10259. },
  10260. ]
  10261. ))
  10262. characterMakers.push(() => makeCharacter(
  10263. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10264. {
  10265. front: {
  10266. height: math.unit(4 + 10 / 12, "feet"),
  10267. weight: math.unit(480, "lb"),
  10268. name: "Front",
  10269. image: {
  10270. source: "./media/characters/snow-gabumon/front.svg",
  10271. extra: 1140 / 963,
  10272. bottom: 0.058
  10273. }
  10274. },
  10275. back: {
  10276. height: math.unit(4 + 10 / 12, "feet"),
  10277. weight: math.unit(480, "lb"),
  10278. name: "Back",
  10279. image: {
  10280. source: "./media/characters/snow-gabumon/back.svg",
  10281. extra: 1115 / 962,
  10282. bottom: 0.041
  10283. }
  10284. },
  10285. frontUndresed: {
  10286. height: math.unit(4 + 10 / 12, "feet"),
  10287. weight: math.unit(480, "lb"),
  10288. name: "Front (Undressed)",
  10289. image: {
  10290. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10291. extra: 1061 / 960,
  10292. bottom: 0.045
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Micro",
  10299. height: math.unit(1, "inch")
  10300. },
  10301. {
  10302. name: "Normal",
  10303. height: math.unit(4 + 10 / 12, "feet"),
  10304. default: true
  10305. },
  10306. {
  10307. name: "Macro",
  10308. height: math.unit(200, "feet")
  10309. },
  10310. {
  10311. name: "Megamacro",
  10312. height: math.unit(120, "miles")
  10313. },
  10314. {
  10315. name: "Gigamacro",
  10316. height: math.unit(9800, "miles")
  10317. },
  10318. ]
  10319. ))
  10320. characterMakers.push(() => makeCharacter(
  10321. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10322. {
  10323. front: {
  10324. height: math.unit(1.7, "meters"),
  10325. weight: math.unit(140, "lb"),
  10326. name: "Front",
  10327. image: {
  10328. source: "./media/characters/moody/front.svg",
  10329. extra: 3226 / 3007,
  10330. bottom: 0.087
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Micro",
  10337. height: math.unit(1, "mm")
  10338. },
  10339. {
  10340. name: "Normal",
  10341. height: math.unit(1.7, "meters"),
  10342. default: true
  10343. },
  10344. {
  10345. name: "Macro",
  10346. height: math.unit(80, "meters")
  10347. },
  10348. {
  10349. name: "Macro+",
  10350. height: math.unit(500, "meters")
  10351. },
  10352. ]
  10353. ))
  10354. characterMakers.push(() => makeCharacter(
  10355. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10356. {
  10357. front: {
  10358. height: math.unit(6, "feet"),
  10359. weight: math.unit(150, "lb"),
  10360. name: "Front",
  10361. image: {
  10362. source: "./media/characters/zyas/front.svg",
  10363. extra: 1180 / 1120,
  10364. bottom: 0.045
  10365. }
  10366. },
  10367. },
  10368. [
  10369. {
  10370. name: "Normal",
  10371. height: math.unit(10, "feet"),
  10372. default: true
  10373. },
  10374. {
  10375. name: "Macro",
  10376. height: math.unit(500, "feet")
  10377. },
  10378. {
  10379. name: "Megamacro",
  10380. height: math.unit(5, "miles")
  10381. },
  10382. {
  10383. name: "Teramacro",
  10384. height: math.unit(150000, "miles")
  10385. },
  10386. ]
  10387. ))
  10388. characterMakers.push(() => makeCharacter(
  10389. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10390. {
  10391. front: {
  10392. height: math.unit(6, "feet"),
  10393. weight: math.unit(150, "lb"),
  10394. name: "Front",
  10395. image: {
  10396. source: "./media/characters/cuon/front.svg",
  10397. extra: 1390 / 1320,
  10398. bottom: 0.008
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Micro",
  10405. height: math.unit(3, "inches")
  10406. },
  10407. {
  10408. name: "Normal",
  10409. height: math.unit(18 + 9 / 12, "feet"),
  10410. default: true
  10411. },
  10412. {
  10413. name: "Macro",
  10414. height: math.unit(360, "feet")
  10415. },
  10416. {
  10417. name: "Megamacro",
  10418. height: math.unit(360, "miles")
  10419. },
  10420. ]
  10421. ))
  10422. characterMakers.push(() => makeCharacter(
  10423. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10424. {
  10425. front: {
  10426. height: math.unit(2.4, "meters"),
  10427. weight: math.unit(70, "kg"),
  10428. name: "Front",
  10429. image: {
  10430. source: "./media/characters/nyanuxk/front.svg",
  10431. extra: 1172 / 1084,
  10432. bottom: 0.065
  10433. }
  10434. },
  10435. side: {
  10436. height: math.unit(2.4, "meters"),
  10437. weight: math.unit(70, "kg"),
  10438. name: "Side",
  10439. image: {
  10440. source: "./media/characters/nyanuxk/side.svg",
  10441. extra: 1190 / 1132,
  10442. bottom: 0.007
  10443. }
  10444. },
  10445. back: {
  10446. height: math.unit(2.4, "meters"),
  10447. weight: math.unit(70, "kg"),
  10448. name: "Back",
  10449. image: {
  10450. source: "./media/characters/nyanuxk/back.svg",
  10451. extra: 1200 / 1141,
  10452. bottom: 0.015
  10453. }
  10454. },
  10455. foot: {
  10456. height: math.unit(0.52, "meters"),
  10457. name: "Foot",
  10458. image: {
  10459. source: "./media/characters/nyanuxk/foot.svg"
  10460. }
  10461. },
  10462. },
  10463. [
  10464. {
  10465. name: "Micro",
  10466. height: math.unit(2, "cm")
  10467. },
  10468. {
  10469. name: "Normal",
  10470. height: math.unit(2.4, "meters"),
  10471. default: true
  10472. },
  10473. {
  10474. name: "Smaller Macro",
  10475. height: math.unit(120, "meters")
  10476. },
  10477. {
  10478. name: "Bigger Macro",
  10479. height: math.unit(1.2, "km")
  10480. },
  10481. {
  10482. name: "Megamacro",
  10483. height: math.unit(15, "kilometers")
  10484. },
  10485. {
  10486. name: "Gigamacro",
  10487. height: math.unit(2000, "km")
  10488. },
  10489. {
  10490. name: "Teramacro",
  10491. height: math.unit(500000, "km")
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10497. {
  10498. side: {
  10499. height: math.unit(6, "feet"),
  10500. name: "Side",
  10501. image: {
  10502. source: "./media/characters/ailbhe/side.svg",
  10503. extra: 757 / 464,
  10504. bottom: 0.041
  10505. }
  10506. },
  10507. },
  10508. [
  10509. {
  10510. name: "Normal",
  10511. height: math.unit(1.07, "meters"),
  10512. default: true
  10513. },
  10514. ]
  10515. ))
  10516. characterMakers.push(() => makeCharacter(
  10517. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10518. {
  10519. front: {
  10520. height: math.unit(6, "feet"),
  10521. weight: math.unit(120, "kg"),
  10522. name: "Front",
  10523. image: {
  10524. source: "./media/characters/zevulfius/front.svg",
  10525. extra: 965 / 903
  10526. }
  10527. },
  10528. side: {
  10529. height: math.unit(6, "feet"),
  10530. weight: math.unit(120, "kg"),
  10531. name: "Side",
  10532. image: {
  10533. source: "./media/characters/zevulfius/side.svg",
  10534. extra: 939 / 900
  10535. }
  10536. },
  10537. back: {
  10538. height: math.unit(6, "feet"),
  10539. weight: math.unit(120, "kg"),
  10540. name: "Back",
  10541. image: {
  10542. source: "./media/characters/zevulfius/back.svg",
  10543. extra: 918 / 854,
  10544. bottom: 0.005
  10545. }
  10546. },
  10547. foot: {
  10548. height: math.unit(6 / 3.72, "feet"),
  10549. name: "Foot",
  10550. image: {
  10551. source: "./media/characters/zevulfius/foot.svg"
  10552. }
  10553. },
  10554. },
  10555. [
  10556. {
  10557. name: "Macro",
  10558. height: math.unit(750, "meters")
  10559. },
  10560. {
  10561. name: "Megamacro",
  10562. height: math.unit(20, "km"),
  10563. default: true
  10564. },
  10565. {
  10566. name: "Gigamacro",
  10567. height: math.unit(2000, "km")
  10568. },
  10569. {
  10570. name: "Teramacro",
  10571. height: math.unit(250000, "km")
  10572. },
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10577. {
  10578. front: {
  10579. height: math.unit(100, "feet"),
  10580. weight: math.unit(350, "kg"),
  10581. name: "Front",
  10582. image: {
  10583. source: "./media/characters/rikes/front.svg",
  10584. extra: 1565 / 1483,
  10585. bottom: 0.017
  10586. }
  10587. },
  10588. },
  10589. [
  10590. {
  10591. name: "Macro",
  10592. height: math.unit(100, "feet"),
  10593. default: true
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10599. {
  10600. front: {
  10601. height: math.unit(8, "feet"),
  10602. weight: math.unit(356, "lb"),
  10603. name: "Front",
  10604. image: {
  10605. source: "./media/characters/adam-silver-mane/front.svg",
  10606. extra: 1036/937,
  10607. bottom: 63/1099
  10608. }
  10609. },
  10610. side: {
  10611. height: math.unit(8, "feet"),
  10612. weight: math.unit(356, "lb"),
  10613. name: "Side",
  10614. image: {
  10615. source: "./media/characters/adam-silver-mane/side.svg",
  10616. extra: 997/901,
  10617. bottom: 59/1056
  10618. }
  10619. },
  10620. frontNsfw: {
  10621. height: math.unit(8, "feet"),
  10622. weight: math.unit(356, "lb"),
  10623. name: "Front (NSFW)",
  10624. image: {
  10625. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10626. extra: 1036/937,
  10627. bottom: 63/1099
  10628. }
  10629. },
  10630. sideNsfw: {
  10631. height: math.unit(8, "feet"),
  10632. weight: math.unit(356, "lb"),
  10633. name: "Side (NSFW)",
  10634. image: {
  10635. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10636. extra: 997/901,
  10637. bottom: 59/1056
  10638. }
  10639. },
  10640. dick: {
  10641. height: math.unit(2.1, "feet"),
  10642. name: "Dick",
  10643. image: {
  10644. source: "./media/characters/adam-silver-mane/dick.svg"
  10645. }
  10646. },
  10647. taur: {
  10648. height: math.unit(16, "feet"),
  10649. weight: math.unit(1500, "kg"),
  10650. name: "Taur",
  10651. image: {
  10652. source: "./media/characters/adam-silver-mane/taur.svg",
  10653. extra: 1713 / 1571,
  10654. bottom: 0.01
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Normal",
  10661. height: math.unit(8, "feet")
  10662. },
  10663. {
  10664. name: "Minimacro",
  10665. height: math.unit(80, "feet")
  10666. },
  10667. {
  10668. name: "MDA",
  10669. height: math.unit(80, "meters")
  10670. },
  10671. {
  10672. name: "Macro",
  10673. height: math.unit(800, "feet"),
  10674. default: true
  10675. },
  10676. {
  10677. name: "Megamacro",
  10678. height: math.unit(8000, "feet")
  10679. },
  10680. {
  10681. name: "Gigamacro",
  10682. height: math.unit(800, "miles")
  10683. },
  10684. {
  10685. name: "Teramacro",
  10686. height: math.unit(80000, "miles")
  10687. },
  10688. {
  10689. name: "Celestial",
  10690. height: math.unit(8e6, "miles")
  10691. },
  10692. {
  10693. name: "Star Dragon",
  10694. height: math.unit(800000, "parsecs")
  10695. },
  10696. {
  10697. name: "Godly",
  10698. height: math.unit(800, "teraparsecs")
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10704. {
  10705. front: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(150, "lb"),
  10708. name: "Front",
  10709. image: {
  10710. source: "./media/characters/ky'owin/front.svg",
  10711. extra: 3888 / 3068,
  10712. bottom: 0.015
  10713. }
  10714. },
  10715. },
  10716. [
  10717. {
  10718. name: "Normal",
  10719. height: math.unit(6 + 8 / 12, "feet")
  10720. },
  10721. {
  10722. name: "Large",
  10723. height: math.unit(68, "feet")
  10724. },
  10725. {
  10726. name: "Macro",
  10727. height: math.unit(132, "feet")
  10728. },
  10729. {
  10730. name: "Macro+",
  10731. height: math.unit(340, "feet")
  10732. },
  10733. {
  10734. name: "Macro++",
  10735. height: math.unit(680, "feet"),
  10736. default: true
  10737. },
  10738. {
  10739. name: "Megamacro",
  10740. height: math.unit(1, "mile")
  10741. },
  10742. {
  10743. name: "Megamacro+",
  10744. height: math.unit(10, "miles")
  10745. },
  10746. ]
  10747. ))
  10748. characterMakers.push(() => makeCharacter(
  10749. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10750. {
  10751. front: {
  10752. height: math.unit(4, "feet"),
  10753. weight: math.unit(50, "lb"),
  10754. name: "Front",
  10755. image: {
  10756. source: "./media/characters/mal/front.svg",
  10757. extra: 785 / 724,
  10758. bottom: 0.07
  10759. }
  10760. },
  10761. },
  10762. [
  10763. {
  10764. name: "Micro",
  10765. height: math.unit(4, "inches")
  10766. },
  10767. {
  10768. name: "Normal",
  10769. height: math.unit(4, "feet"),
  10770. default: true
  10771. },
  10772. {
  10773. name: "Macro",
  10774. height: math.unit(200, "feet")
  10775. },
  10776. ]
  10777. ))
  10778. characterMakers.push(() => makeCharacter(
  10779. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10780. {
  10781. front: {
  10782. height: math.unit(6, "feet"),
  10783. weight: math.unit(150, "lb"),
  10784. name: "Front",
  10785. image: {
  10786. source: "./media/characters/jordan-deware/front.svg",
  10787. extra: 1191 / 1012
  10788. }
  10789. },
  10790. },
  10791. [
  10792. {
  10793. name: "Nano",
  10794. height: math.unit(0.01, "mm")
  10795. },
  10796. {
  10797. name: "Minimicro",
  10798. height: math.unit(1, "mm")
  10799. },
  10800. {
  10801. name: "Micro",
  10802. height: math.unit(0.5, "inches")
  10803. },
  10804. {
  10805. name: "Normal",
  10806. height: math.unit(4, "feet"),
  10807. default: true
  10808. },
  10809. {
  10810. name: "Minimacro",
  10811. height: math.unit(40, "meters")
  10812. },
  10813. {
  10814. name: "Small Macro",
  10815. height: math.unit(400, "meters")
  10816. },
  10817. {
  10818. name: "Macro",
  10819. height: math.unit(4, "miles")
  10820. },
  10821. {
  10822. name: "Megamacro",
  10823. height: math.unit(40, "miles")
  10824. },
  10825. {
  10826. name: "Megamacro+",
  10827. height: math.unit(400, "miles")
  10828. },
  10829. {
  10830. name: "Gigamacro",
  10831. height: math.unit(400000, "miles")
  10832. },
  10833. ]
  10834. ))
  10835. characterMakers.push(() => makeCharacter(
  10836. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10837. {
  10838. side: {
  10839. height: math.unit(6, "feet"),
  10840. weight: math.unit(150, "lb"),
  10841. name: "Side",
  10842. image: {
  10843. source: "./media/characters/kimiko/side.svg",
  10844. extra: 600 / 358
  10845. }
  10846. },
  10847. },
  10848. [
  10849. {
  10850. name: "Normal",
  10851. height: math.unit(15, "feet"),
  10852. default: true
  10853. },
  10854. {
  10855. name: "Macro",
  10856. height: math.unit(220, "feet")
  10857. },
  10858. {
  10859. name: "Macro+",
  10860. height: math.unit(1450, "feet")
  10861. },
  10862. {
  10863. name: "Megamacro",
  10864. height: math.unit(11500, "feet")
  10865. },
  10866. {
  10867. name: "Gigamacro",
  10868. height: math.unit(9500, "miles")
  10869. },
  10870. {
  10871. name: "Teramacro",
  10872. height: math.unit(2208005005, "miles")
  10873. },
  10874. {
  10875. name: "Examacro",
  10876. height: math.unit(2750, "parsecs")
  10877. },
  10878. {
  10879. name: "Zettamacro",
  10880. height: math.unit(101500, "parsecs")
  10881. },
  10882. ]
  10883. ))
  10884. characterMakers.push(() => makeCharacter(
  10885. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10886. {
  10887. front: {
  10888. height: math.unit(6, "feet"),
  10889. weight: math.unit(70, "kg"),
  10890. name: "Front",
  10891. image: {
  10892. source: "./media/characters/andrew-sleepy/front.svg"
  10893. }
  10894. },
  10895. side: {
  10896. height: math.unit(6, "feet"),
  10897. weight: math.unit(70, "kg"),
  10898. name: "Side",
  10899. image: {
  10900. source: "./media/characters/andrew-sleepy/side.svg"
  10901. }
  10902. },
  10903. },
  10904. [
  10905. {
  10906. name: "Micro",
  10907. height: math.unit(1, "mm"),
  10908. default: true
  10909. },
  10910. ]
  10911. ))
  10912. characterMakers.push(() => makeCharacter(
  10913. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10914. {
  10915. front: {
  10916. height: math.unit(6, "feet"),
  10917. weight: math.unit(150, "lb"),
  10918. name: "Front",
  10919. image: {
  10920. source: "./media/characters/judio/front.svg",
  10921. extra: 1258 / 1110
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Normal",
  10928. height: math.unit(5 + 6 / 12, "feet")
  10929. },
  10930. {
  10931. name: "Macro",
  10932. height: math.unit(1000, "feet"),
  10933. default: true
  10934. },
  10935. {
  10936. name: "Megamacro",
  10937. height: math.unit(10, "miles")
  10938. },
  10939. ]
  10940. ))
  10941. characterMakers.push(() => makeCharacter(
  10942. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10943. {
  10944. front: {
  10945. height: math.unit(6, "feet"),
  10946. weight: math.unit(68, "kg"),
  10947. name: "Front",
  10948. image: {
  10949. source: "./media/characters/nomaxice/front.svg",
  10950. extra: 1498 / 1073,
  10951. bottom: 0.075
  10952. }
  10953. },
  10954. foot: {
  10955. height: math.unit(1.1, "feet"),
  10956. name: "Foot",
  10957. image: {
  10958. source: "./media/characters/nomaxice/foot.svg"
  10959. }
  10960. },
  10961. },
  10962. [
  10963. {
  10964. name: "Micro",
  10965. height: math.unit(8, "cm")
  10966. },
  10967. {
  10968. name: "Norm",
  10969. height: math.unit(1.82, "m")
  10970. },
  10971. {
  10972. name: "Norm+",
  10973. height: math.unit(8.8, "feet")
  10974. },
  10975. {
  10976. name: "Big",
  10977. height: math.unit(8, "meters"),
  10978. default: true
  10979. },
  10980. {
  10981. name: "Macro",
  10982. height: math.unit(18, "meters")
  10983. },
  10984. {
  10985. name: "Macro+",
  10986. height: math.unit(88, "meters")
  10987. },
  10988. ]
  10989. ))
  10990. characterMakers.push(() => makeCharacter(
  10991. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10992. {
  10993. front: {
  10994. height: math.unit(12, "feet"),
  10995. weight: math.unit(1.5, "tons"),
  10996. name: "Front",
  10997. image: {
  10998. source: "./media/characters/dydros/front.svg",
  10999. extra: 863 / 800,
  11000. bottom: 0.015
  11001. }
  11002. },
  11003. back: {
  11004. height: math.unit(12, "feet"),
  11005. weight: math.unit(1.5, "tons"),
  11006. name: "Back",
  11007. image: {
  11008. source: "./media/characters/dydros/back.svg",
  11009. extra: 900 / 843,
  11010. bottom: 0.005
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Normal",
  11017. height: math.unit(12, "feet"),
  11018. default: true
  11019. },
  11020. ]
  11021. ))
  11022. characterMakers.push(() => makeCharacter(
  11023. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11024. {
  11025. front: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(100, "kg"),
  11028. name: "Front",
  11029. image: {
  11030. source: "./media/characters/riggi/front.svg",
  11031. extra: 5787 / 5303
  11032. }
  11033. },
  11034. hyper: {
  11035. height: math.unit(6 * 5 / 3, "feet"),
  11036. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11037. name: "Hyper",
  11038. image: {
  11039. source: "./media/characters/riggi/hyper.svg",
  11040. extra: 3595 / 3485
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Small Macro",
  11047. height: math.unit(50, "feet")
  11048. },
  11049. {
  11050. name: "Default",
  11051. height: math.unit(200, "feet"),
  11052. default: true
  11053. },
  11054. {
  11055. name: "Loom",
  11056. height: math.unit(10000, "feet")
  11057. },
  11058. {
  11059. name: "Cruising Altitude",
  11060. height: math.unit(30000, "feet")
  11061. },
  11062. {
  11063. name: "Megamacro",
  11064. height: math.unit(100, "miles")
  11065. },
  11066. {
  11067. name: "Continent Sized",
  11068. height: math.unit(2800, "miles")
  11069. },
  11070. {
  11071. name: "Earth Sized",
  11072. height: math.unit(8000, "miles")
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(6, "feet"),
  11081. weight: math.unit(250, "lb"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/alexi/front.svg",
  11085. extra: 3483 / 3291,
  11086. bottom: 0.04
  11087. }
  11088. },
  11089. back: {
  11090. height: math.unit(6, "feet"),
  11091. weight: math.unit(250, "lb"),
  11092. name: "Back",
  11093. image: {
  11094. source: "./media/characters/alexi/back.svg",
  11095. extra: 3533 / 3356,
  11096. bottom: 0.021
  11097. }
  11098. },
  11099. frontTransforming: {
  11100. height: math.unit(8.58, "feet"),
  11101. weight: math.unit(1300, "lb"),
  11102. name: "Transforming",
  11103. image: {
  11104. source: "./media/characters/alexi/front-transforming.svg",
  11105. extra: 437 / 409,
  11106. bottom: 19 / 458.66
  11107. }
  11108. },
  11109. frontTransformed: {
  11110. height: math.unit(12.5, "feet"),
  11111. weight: math.unit(4000, "lb"),
  11112. name: "Transformed",
  11113. image: {
  11114. source: "./media/characters/alexi/front-transformed.svg",
  11115. extra: 639 / 614,
  11116. bottom: 30.55 / 671
  11117. }
  11118. },
  11119. },
  11120. [
  11121. {
  11122. name: "Normal",
  11123. height: math.unit(14, "feet"),
  11124. default: true
  11125. },
  11126. {
  11127. name: "Minimacro",
  11128. height: math.unit(30, "meters")
  11129. },
  11130. {
  11131. name: "Macro",
  11132. height: math.unit(500, "meters")
  11133. },
  11134. {
  11135. name: "Megamacro",
  11136. height: math.unit(9000, "km")
  11137. },
  11138. {
  11139. name: "Teramacro",
  11140. height: math.unit(384000, "km")
  11141. },
  11142. ]
  11143. ))
  11144. characterMakers.push(() => makeCharacter(
  11145. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11146. {
  11147. front: {
  11148. height: math.unit(6, "feet"),
  11149. weight: math.unit(150, "lb"),
  11150. name: "Front",
  11151. image: {
  11152. source: "./media/characters/kayroo/front.svg",
  11153. extra: 1153 / 1038,
  11154. bottom: 0.06
  11155. }
  11156. },
  11157. foot: {
  11158. height: math.unit(6, "feet"),
  11159. weight: math.unit(150, "lb"),
  11160. name: "Foot",
  11161. image: {
  11162. source: "./media/characters/kayroo/foot.svg"
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Normal",
  11169. height: math.unit(8, "feet"),
  11170. default: true
  11171. },
  11172. {
  11173. name: "Minimacro",
  11174. height: math.unit(250, "feet")
  11175. },
  11176. {
  11177. name: "Macro",
  11178. height: math.unit(2800, "feet")
  11179. },
  11180. {
  11181. name: "Megamacro",
  11182. height: math.unit(5200, "feet")
  11183. },
  11184. {
  11185. name: "Gigamacro",
  11186. height: math.unit(27000, "feet")
  11187. },
  11188. {
  11189. name: "Omega",
  11190. height: math.unit(45000, "feet")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(18, "feet"),
  11199. weight: math.unit(5800, "lb"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/rhys/front.svg",
  11203. extra: 3386 / 3090,
  11204. bottom: 0.07
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Normal",
  11211. height: math.unit(18, "feet"),
  11212. default: true
  11213. },
  11214. {
  11215. name: "Working Size",
  11216. height: math.unit(200, "feet")
  11217. },
  11218. {
  11219. name: "Demolition Size",
  11220. height: math.unit(2000, "feet")
  11221. },
  11222. {
  11223. name: "Maximum Licensed Size",
  11224. height: math.unit(5, "miles")
  11225. },
  11226. {
  11227. name: "Maximum Observed Size",
  11228. height: math.unit(10, "yottameters")
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11234. {
  11235. front: {
  11236. height: math.unit(6, "feet"),
  11237. weight: math.unit(250, "lb"),
  11238. name: "Front",
  11239. image: {
  11240. source: "./media/characters/toto/front.svg",
  11241. extra: 527 / 479,
  11242. bottom: 0.05
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Micro",
  11249. height: math.unit(3, "feet")
  11250. },
  11251. {
  11252. name: "Normal",
  11253. height: math.unit(10, "feet")
  11254. },
  11255. {
  11256. name: "Macro",
  11257. height: math.unit(150, "feet"),
  11258. default: true
  11259. },
  11260. {
  11261. name: "Megamacro",
  11262. height: math.unit(1200, "feet")
  11263. },
  11264. ]
  11265. ))
  11266. characterMakers.push(() => makeCharacter(
  11267. { name: "King", species: ["lion"], tags: ["anthro"] },
  11268. {
  11269. back: {
  11270. height: math.unit(6, "feet"),
  11271. weight: math.unit(150, "lb"),
  11272. name: "Back",
  11273. image: {
  11274. source: "./media/characters/king/back.svg"
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Micro",
  11281. height: math.unit(2, "inches")
  11282. },
  11283. {
  11284. name: "Normal",
  11285. height: math.unit(8, "feet")
  11286. },
  11287. {
  11288. name: "Macro",
  11289. height: math.unit(200, "feet"),
  11290. default: true
  11291. },
  11292. {
  11293. name: "Megamacro",
  11294. height: math.unit(50, "miles")
  11295. },
  11296. ]
  11297. ))
  11298. characterMakers.push(() => makeCharacter(
  11299. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11300. {
  11301. front: {
  11302. height: math.unit(11, "feet"),
  11303. weight: math.unit(1400, "lb"),
  11304. name: "Front",
  11305. image: {
  11306. source: "./media/characters/cordite/front.svg",
  11307. extra: 1919/1827,
  11308. bottom: 40/1959
  11309. }
  11310. },
  11311. side: {
  11312. height: math.unit(11, "feet"),
  11313. weight: math.unit(1400, "lb"),
  11314. name: "Side",
  11315. image: {
  11316. source: "./media/characters/cordite/side.svg",
  11317. extra: 1908/1793,
  11318. bottom: 38/1946
  11319. }
  11320. },
  11321. back: {
  11322. height: math.unit(11, "feet"),
  11323. weight: math.unit(1400, "lb"),
  11324. name: "Back",
  11325. image: {
  11326. source: "./media/characters/cordite/back.svg",
  11327. extra: 1938/1837,
  11328. bottom: 10/1948
  11329. }
  11330. },
  11331. feral: {
  11332. height: math.unit(2, "feet"),
  11333. weight: math.unit(90, "lb"),
  11334. name: "Feral",
  11335. image: {
  11336. source: "./media/characters/cordite/feral.svg",
  11337. extra: 1260 / 755,
  11338. bottom: 0.05
  11339. }
  11340. },
  11341. },
  11342. [
  11343. {
  11344. name: "Normal",
  11345. height: math.unit(11, "feet"),
  11346. default: true
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11352. {
  11353. front: {
  11354. height: math.unit(6, "feet"),
  11355. weight: math.unit(150, "lb"),
  11356. name: "Front",
  11357. image: {
  11358. source: "./media/characters/pianostrong/front.svg",
  11359. extra: 6577 / 6254,
  11360. bottom: 0.02
  11361. }
  11362. },
  11363. side: {
  11364. height: math.unit(6, "feet"),
  11365. weight: math.unit(150, "lb"),
  11366. name: "Side",
  11367. image: {
  11368. source: "./media/characters/pianostrong/side.svg",
  11369. extra: 6106 / 5730
  11370. }
  11371. },
  11372. back: {
  11373. height: math.unit(6, "feet"),
  11374. weight: math.unit(150, "lb"),
  11375. name: "Back",
  11376. image: {
  11377. source: "./media/characters/pianostrong/back.svg",
  11378. extra: 6085 / 5733,
  11379. bottom: 0.01
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Macro",
  11386. height: math.unit(100, "feet")
  11387. },
  11388. {
  11389. name: "Macro+",
  11390. height: math.unit(300, "feet"),
  11391. default: true
  11392. },
  11393. {
  11394. name: "Macro++",
  11395. height: math.unit(1000, "feet")
  11396. },
  11397. ]
  11398. ))
  11399. characterMakers.push(() => makeCharacter(
  11400. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11401. {
  11402. front: {
  11403. height: math.unit(6, "feet"),
  11404. weight: math.unit(150, "lb"),
  11405. name: "Front",
  11406. image: {
  11407. source: "./media/characters/kona/front.svg",
  11408. extra: 2960 / 2629,
  11409. bottom: 0.005
  11410. }
  11411. },
  11412. },
  11413. [
  11414. {
  11415. name: "Normal",
  11416. height: math.unit(11 + 8 / 12, "feet")
  11417. },
  11418. {
  11419. name: "Macro",
  11420. height: math.unit(850, "feet"),
  11421. default: true
  11422. },
  11423. {
  11424. name: "Macro+",
  11425. height: math.unit(1.5, "km"),
  11426. default: true
  11427. },
  11428. {
  11429. name: "Megamacro",
  11430. height: math.unit(80, "miles")
  11431. },
  11432. {
  11433. name: "Gigamacro",
  11434. height: math.unit(3500, "miles")
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11440. {
  11441. side: {
  11442. height: math.unit(1.9, "meters"),
  11443. weight: math.unit(326, "kg"),
  11444. name: "Side",
  11445. image: {
  11446. source: "./media/characters/levi/side.svg",
  11447. extra: 1704 / 1334,
  11448. bottom: 0.02
  11449. }
  11450. },
  11451. },
  11452. [
  11453. {
  11454. name: "Normal",
  11455. height: math.unit(1.9, "meters"),
  11456. default: true
  11457. },
  11458. {
  11459. name: "Macro",
  11460. height: math.unit(20, "meters")
  11461. },
  11462. {
  11463. name: "Macro+",
  11464. height: math.unit(200, "meters")
  11465. },
  11466. {
  11467. name: "Megamacro",
  11468. height: math.unit(2, "km")
  11469. },
  11470. {
  11471. name: "Megamacro+",
  11472. height: math.unit(20, "km")
  11473. },
  11474. {
  11475. name: "Gigamacro",
  11476. height: math.unit(2500, "km")
  11477. },
  11478. {
  11479. name: "Gigamacro+",
  11480. height: math.unit(120000, "km")
  11481. },
  11482. {
  11483. name: "Teramacro",
  11484. height: math.unit(7.77e6, "km")
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11490. {
  11491. front: {
  11492. height: math.unit(6 + 4/12, "feet"),
  11493. weight: math.unit(190, "lb"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/bmc/front.svg",
  11497. extra: 1626/1472,
  11498. bottom: 79/1705
  11499. }
  11500. },
  11501. back: {
  11502. height: math.unit(6 + 4/12, "feet"),
  11503. weight: math.unit(190, "lb"),
  11504. name: "Back",
  11505. image: {
  11506. source: "./media/characters/bmc/back.svg",
  11507. extra: 1640/1479,
  11508. bottom: 45/1685
  11509. }
  11510. },
  11511. frontArmor: {
  11512. height: math.unit(6 + 4/12, "feet"),
  11513. weight: math.unit(190, "lb"),
  11514. name: "Front-armor",
  11515. image: {
  11516. source: "./media/characters/bmc/front-armor.svg",
  11517. extra: 1538/1468,
  11518. bottom: 79/1617
  11519. }
  11520. },
  11521. },
  11522. [
  11523. {
  11524. name: "Human-sized",
  11525. height: math.unit(6 + 4 / 12, "feet")
  11526. },
  11527. {
  11528. name: "Interactive Size",
  11529. height: math.unit(25, "feet")
  11530. },
  11531. {
  11532. name: "Small",
  11533. height: math.unit(250, "feet")
  11534. },
  11535. {
  11536. name: "Normal",
  11537. height: math.unit(1250, "feet"),
  11538. default: true
  11539. },
  11540. {
  11541. name: "Good Day",
  11542. height: math.unit(88, "miles")
  11543. },
  11544. {
  11545. name: "Largest Measured Size",
  11546. height: math.unit(105.960, "galaxies")
  11547. },
  11548. ]
  11549. ))
  11550. characterMakers.push(() => makeCharacter(
  11551. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11552. {
  11553. front: {
  11554. height: math.unit(20, "feet"),
  11555. weight: math.unit(2016, "kg"),
  11556. name: "Front",
  11557. image: {
  11558. source: "./media/characters/sven-the-kaiju/front.svg",
  11559. extra: 1277/1250,
  11560. bottom: 35/1312
  11561. }
  11562. },
  11563. mouth: {
  11564. height: math.unit(1.85, "feet"),
  11565. name: "Mouth",
  11566. image: {
  11567. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11568. }
  11569. },
  11570. },
  11571. [
  11572. {
  11573. name: "Fairy",
  11574. height: math.unit(6, "inches")
  11575. },
  11576. {
  11577. name: "Normal",
  11578. height: math.unit(20, "feet"),
  11579. default: true
  11580. },
  11581. {
  11582. name: "Rampage",
  11583. height: math.unit(200, "feet")
  11584. },
  11585. {
  11586. name: "Archfey Forest Guardian",
  11587. height: math.unit(1, "mile")
  11588. },
  11589. ]
  11590. ))
  11591. characterMakers.push(() => makeCharacter(
  11592. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11593. {
  11594. front: {
  11595. height: math.unit(4, "meters"),
  11596. weight: math.unit(2, "tons"),
  11597. name: "Front",
  11598. image: {
  11599. source: "./media/characters/marik/front.svg",
  11600. extra: 1057 / 1003,
  11601. bottom: 0.08
  11602. }
  11603. },
  11604. },
  11605. [
  11606. {
  11607. name: "Normal",
  11608. height: math.unit(4, "meters"),
  11609. default: true
  11610. },
  11611. {
  11612. name: "Macro",
  11613. height: math.unit(20, "meters")
  11614. },
  11615. {
  11616. name: "Megamacro",
  11617. height: math.unit(50, "km")
  11618. },
  11619. {
  11620. name: "Gigamacro",
  11621. height: math.unit(100, "km")
  11622. },
  11623. {
  11624. name: "Alpha Macro",
  11625. height: math.unit(7.88e7, "yottameters")
  11626. },
  11627. ]
  11628. ))
  11629. characterMakers.push(() => makeCharacter(
  11630. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11631. {
  11632. front: {
  11633. height: math.unit(6, "feet"),
  11634. weight: math.unit(110, "lb"),
  11635. name: "Front",
  11636. image: {
  11637. source: "./media/characters/mel/front.svg",
  11638. extra: 736 / 617,
  11639. bottom: 0.017
  11640. }
  11641. },
  11642. },
  11643. [
  11644. {
  11645. name: "Pico",
  11646. height: math.unit(3, "pm")
  11647. },
  11648. {
  11649. name: "Nano",
  11650. height: math.unit(3, "nm")
  11651. },
  11652. {
  11653. name: "Micro",
  11654. height: math.unit(0.3, "mm"),
  11655. default: true
  11656. },
  11657. {
  11658. name: "Micro+",
  11659. height: math.unit(3, "mm")
  11660. },
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(5 + 10.5 / 12, "feet")
  11664. },
  11665. ]
  11666. ))
  11667. characterMakers.push(() => makeCharacter(
  11668. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11669. {
  11670. kaiju: {
  11671. height: math.unit(1.75, "meters"),
  11672. weight: math.unit(55, "kg"),
  11673. name: "Kaiju",
  11674. image: {
  11675. source: "./media/characters/lykonous/kaiju.svg",
  11676. extra: 1055 / 946,
  11677. bottom: 0.135
  11678. }
  11679. },
  11680. },
  11681. [
  11682. {
  11683. name: "Normal",
  11684. height: math.unit(2.5, "meters"),
  11685. default: true
  11686. },
  11687. {
  11688. name: "Kaiju Dragon",
  11689. height: math.unit(60, "meters")
  11690. },
  11691. {
  11692. name: "Mega Kaiju",
  11693. height: math.unit(120, "km")
  11694. },
  11695. {
  11696. name: "Giga Kaiju",
  11697. height: math.unit(200, "megameters")
  11698. },
  11699. {
  11700. name: "Terra Kaiju",
  11701. height: math.unit(400, "gigameters")
  11702. },
  11703. {
  11704. name: "Kaiju Dragon God",
  11705. height: math.unit(13000, "exaparsecs")
  11706. },
  11707. ]
  11708. ))
  11709. characterMakers.push(() => makeCharacter(
  11710. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11711. {
  11712. front: {
  11713. height: math.unit(6, "feet"),
  11714. weight: math.unit(150, "lb"),
  11715. name: "Front",
  11716. image: {
  11717. source: "./media/characters/blü/front.svg",
  11718. extra: 1883 / 1564,
  11719. bottom: 0.031
  11720. }
  11721. },
  11722. },
  11723. [
  11724. {
  11725. name: "Normal",
  11726. height: math.unit(13, "feet"),
  11727. default: true
  11728. },
  11729. {
  11730. name: "Big Boi",
  11731. height: math.unit(150, "meters")
  11732. },
  11733. {
  11734. name: "Mini Stomper",
  11735. height: math.unit(300, "meters")
  11736. },
  11737. {
  11738. name: "Macro",
  11739. height: math.unit(1000, "meters")
  11740. },
  11741. {
  11742. name: "Megamacro",
  11743. height: math.unit(11000, "meters")
  11744. },
  11745. {
  11746. name: "Gigamacro",
  11747. height: math.unit(11000, "km")
  11748. },
  11749. {
  11750. name: "Teramacro",
  11751. height: math.unit(420000, "km")
  11752. },
  11753. {
  11754. name: "Examacro",
  11755. height: math.unit(120, "parsecs")
  11756. },
  11757. {
  11758. name: "God Tho",
  11759. height: math.unit(98000000000, "parsecs")
  11760. },
  11761. ]
  11762. ))
  11763. characterMakers.push(() => makeCharacter(
  11764. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11765. {
  11766. taurFront: {
  11767. height: math.unit(6, "feet"),
  11768. weight: math.unit(200, "lb"),
  11769. name: "Taur (Front)",
  11770. image: {
  11771. source: "./media/characters/scales/taur-front.svg",
  11772. extra: 1,
  11773. bottom: 0.05
  11774. }
  11775. },
  11776. taurBack: {
  11777. height: math.unit(6, "feet"),
  11778. weight: math.unit(200, "lb"),
  11779. name: "Taur (Back)",
  11780. image: {
  11781. source: "./media/characters/scales/taur-back.svg",
  11782. extra: 1,
  11783. bottom: 0.08
  11784. }
  11785. },
  11786. anthro: {
  11787. height: math.unit(6 * 7 / 12, "feet"),
  11788. weight: math.unit(100, "lb"),
  11789. name: "Anthro",
  11790. image: {
  11791. source: "./media/characters/scales/anthro.svg",
  11792. extra: 1,
  11793. bottom: 0.06
  11794. }
  11795. },
  11796. },
  11797. [
  11798. {
  11799. name: "Normal",
  11800. height: math.unit(12, "feet"),
  11801. default: true
  11802. },
  11803. ]
  11804. ))
  11805. characterMakers.push(() => makeCharacter(
  11806. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11807. {
  11808. front: {
  11809. height: math.unit(6, "feet"),
  11810. weight: math.unit(150, "lb"),
  11811. name: "Front",
  11812. image: {
  11813. source: "./media/characters/koragos/front.svg",
  11814. extra: 841 / 794,
  11815. bottom: 0.035
  11816. }
  11817. },
  11818. back: {
  11819. height: math.unit(6, "feet"),
  11820. weight: math.unit(150, "lb"),
  11821. name: "Back",
  11822. image: {
  11823. source: "./media/characters/koragos/back.svg",
  11824. extra: 841 / 810,
  11825. bottom: 0.022
  11826. }
  11827. },
  11828. },
  11829. [
  11830. {
  11831. name: "Normal",
  11832. height: math.unit(6 + 11 / 12, "feet"),
  11833. default: true
  11834. },
  11835. {
  11836. name: "Macro",
  11837. height: math.unit(490, "feet")
  11838. },
  11839. {
  11840. name: "Megamacro",
  11841. height: math.unit(10, "miles")
  11842. },
  11843. {
  11844. name: "Gigamacro",
  11845. height: math.unit(50, "miles")
  11846. },
  11847. ]
  11848. ))
  11849. characterMakers.push(() => makeCharacter(
  11850. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11851. {
  11852. front: {
  11853. height: math.unit(6, "feet"),
  11854. weight: math.unit(250, "lb"),
  11855. name: "Front",
  11856. image: {
  11857. source: "./media/characters/xylrem/front.svg",
  11858. extra: 3323 / 3050,
  11859. bottom: 0.065
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Micro",
  11866. height: math.unit(4, "feet")
  11867. },
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(16, "feet"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(2720, "feet")
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(25000, "miles")
  11880. },
  11881. ]
  11882. ))
  11883. characterMakers.push(() => makeCharacter(
  11884. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11885. {
  11886. front: {
  11887. height: math.unit(8, "feet"),
  11888. weight: math.unit(250, "kg"),
  11889. name: "Front",
  11890. image: {
  11891. source: "./media/characters/ikideru/front.svg",
  11892. extra: 930 / 870,
  11893. bottom: 0.087
  11894. }
  11895. },
  11896. back: {
  11897. height: math.unit(8, "feet"),
  11898. weight: math.unit(250, "kg"),
  11899. name: "Back",
  11900. image: {
  11901. source: "./media/characters/ikideru/back.svg",
  11902. extra: 919 / 852,
  11903. bottom: 0.055
  11904. }
  11905. },
  11906. },
  11907. [
  11908. {
  11909. name: "Rare",
  11910. height: math.unit(8, "feet"),
  11911. default: true
  11912. },
  11913. {
  11914. name: "Playful Loom",
  11915. height: math.unit(80, "feet")
  11916. },
  11917. {
  11918. name: "City Leaner",
  11919. height: math.unit(230, "feet")
  11920. },
  11921. {
  11922. name: "Megamacro",
  11923. height: math.unit(2500, "feet")
  11924. },
  11925. {
  11926. name: "Gigamacro",
  11927. height: math.unit(26400, "feet")
  11928. },
  11929. {
  11930. name: "Tectonic Shifter",
  11931. height: math.unit(1.7, "megameters")
  11932. },
  11933. {
  11934. name: "Planet Carer",
  11935. height: math.unit(21, "megameters")
  11936. },
  11937. {
  11938. name: "God",
  11939. height: math.unit(11157.22, "parsecs")
  11940. },
  11941. ]
  11942. ))
  11943. characterMakers.push(() => makeCharacter(
  11944. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11945. {
  11946. front: {
  11947. height: math.unit(6, "feet"),
  11948. weight: math.unit(120, "lb"),
  11949. name: "Front",
  11950. image: {
  11951. source: "./media/characters/neo/front.svg"
  11952. }
  11953. },
  11954. },
  11955. [
  11956. {
  11957. name: "Micro",
  11958. height: math.unit(2, "inches"),
  11959. default: true
  11960. },
  11961. {
  11962. name: "Human Size",
  11963. height: math.unit(5 + 8 / 12, "feet")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11969. {
  11970. front: {
  11971. height: math.unit(13 + 10 / 12, "feet"),
  11972. weight: math.unit(5320, "lb"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/chauncey-chantz/front.svg",
  11976. extra: 1587 / 1435,
  11977. bottom: 0.02
  11978. }
  11979. },
  11980. },
  11981. [
  11982. {
  11983. name: "Normal",
  11984. height: math.unit(13 + 10 / 12, "feet"),
  11985. default: true
  11986. },
  11987. {
  11988. name: "Macro",
  11989. height: math.unit(45, "feet")
  11990. },
  11991. {
  11992. name: "Megamacro",
  11993. height: math.unit(250, "miles")
  11994. },
  11995. {
  11996. name: "Planetary",
  11997. height: math.unit(10000, "miles")
  11998. },
  11999. {
  12000. name: "Galactic",
  12001. height: math.unit(40000, "parsecs")
  12002. },
  12003. {
  12004. name: "Universal",
  12005. height: math.unit(1, "yottameter")
  12006. },
  12007. ]
  12008. ))
  12009. characterMakers.push(() => makeCharacter(
  12010. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12011. {
  12012. front: {
  12013. height: math.unit(6, "feet"),
  12014. weight: math.unit(150, "lb"),
  12015. name: "Front",
  12016. image: {
  12017. source: "./media/characters/epifox/front.svg",
  12018. extra: 1,
  12019. bottom: 0.075
  12020. }
  12021. },
  12022. },
  12023. [
  12024. {
  12025. name: "Micro",
  12026. height: math.unit(6, "inches")
  12027. },
  12028. {
  12029. name: "Normal",
  12030. height: math.unit(12, "feet"),
  12031. default: true
  12032. },
  12033. {
  12034. name: "Macro",
  12035. height: math.unit(3810, "feet")
  12036. },
  12037. {
  12038. name: "Megamacro",
  12039. height: math.unit(500, "miles")
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(1.8796, "m"),
  12048. weight: math.unit(230, "lb"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/colin-t/front.svg",
  12052. extra: 1272 / 1193,
  12053. bottom: 0.07
  12054. }
  12055. },
  12056. },
  12057. [
  12058. {
  12059. name: "Micro",
  12060. height: math.unit(0.571, "meters")
  12061. },
  12062. {
  12063. name: "Normal",
  12064. height: math.unit(1.8796, "meters"),
  12065. default: true
  12066. },
  12067. {
  12068. name: "Tall",
  12069. height: math.unit(4, "meters")
  12070. },
  12071. {
  12072. name: "Macro",
  12073. height: math.unit(67.241, "meters")
  12074. },
  12075. {
  12076. name: "Megamacro",
  12077. height: math.unit(371.856, "meters")
  12078. },
  12079. {
  12080. name: "Planetary",
  12081. height: math.unit(12631.5689, "km")
  12082. },
  12083. ]
  12084. ))
  12085. characterMakers.push(() => makeCharacter(
  12086. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12087. {
  12088. front: {
  12089. height: math.unit(1.85, "meters"),
  12090. weight: math.unit(80, "kg"),
  12091. name: "Front",
  12092. image: {
  12093. source: "./media/characters/matvei/front.svg",
  12094. extra: 614 / 594,
  12095. bottom: 0.01
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Normal",
  12102. height: math.unit(1.85, "meters"),
  12103. default: true
  12104. },
  12105. ]
  12106. ))
  12107. characterMakers.push(() => makeCharacter(
  12108. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12109. {
  12110. front: {
  12111. height: math.unit(5 + 9 / 12, "feet"),
  12112. weight: math.unit(70, "lb"),
  12113. name: "Front",
  12114. image: {
  12115. source: "./media/characters/quincy/front.svg",
  12116. extra: 3041 / 2751
  12117. }
  12118. },
  12119. back: {
  12120. height: math.unit(5 + 9 / 12, "feet"),
  12121. weight: math.unit(70, "lb"),
  12122. name: "Back",
  12123. image: {
  12124. source: "./media/characters/quincy/back.svg",
  12125. extra: 3041 / 2751
  12126. }
  12127. },
  12128. flying: {
  12129. height: math.unit(5 + 4 / 12, "feet"),
  12130. weight: math.unit(70, "lb"),
  12131. name: "Flying",
  12132. image: {
  12133. source: "./media/characters/quincy/flying.svg",
  12134. extra: 1044 / 930
  12135. }
  12136. },
  12137. },
  12138. [
  12139. {
  12140. name: "Micro",
  12141. height: math.unit(3, "cm")
  12142. },
  12143. {
  12144. name: "Normal",
  12145. height: math.unit(5 + 9 / 12, "feet")
  12146. },
  12147. {
  12148. name: "Macro",
  12149. height: math.unit(200, "meters"),
  12150. default: true
  12151. },
  12152. {
  12153. name: "Megamacro",
  12154. height: math.unit(1000, "meters")
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12160. {
  12161. front: {
  12162. height: math.unit(3 + 11/12, "feet"),
  12163. weight: math.unit(50, "lb"),
  12164. name: "Front",
  12165. image: {
  12166. source: "./media/characters/vanrel/front.svg",
  12167. extra: 1104/949,
  12168. bottom: 52/1156
  12169. }
  12170. },
  12171. back: {
  12172. height: math.unit(3 + 11/12, "feet"),
  12173. weight: math.unit(50, "lb"),
  12174. name: "Back",
  12175. image: {
  12176. source: "./media/characters/vanrel/back.svg",
  12177. extra: 1119/976,
  12178. bottom: 37/1156
  12179. }
  12180. },
  12181. tome: {
  12182. height: math.unit(1.35, "feet"),
  12183. weight: math.unit(10, "lb"),
  12184. name: "Vanrel's Tome",
  12185. rename: true,
  12186. image: {
  12187. source: "./media/characters/vanrel/tome.svg"
  12188. }
  12189. },
  12190. beans: {
  12191. height: math.unit(0.89, "feet"),
  12192. name: "Beans",
  12193. image: {
  12194. source: "./media/characters/vanrel/beans.svg"
  12195. }
  12196. },
  12197. },
  12198. [
  12199. {
  12200. name: "Normal",
  12201. height: math.unit(3 + 11/12, "feet"),
  12202. default: true
  12203. },
  12204. ]
  12205. ))
  12206. characterMakers.push(() => makeCharacter(
  12207. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12208. {
  12209. front: {
  12210. height: math.unit(7 + 5 / 12, "feet"),
  12211. name: "Front",
  12212. image: {
  12213. source: "./media/characters/kuiper-vanrel/front.svg",
  12214. extra: 1219/1169,
  12215. bottom: 69/1288
  12216. }
  12217. },
  12218. back: {
  12219. height: math.unit(7 + 5 / 12, "feet"),
  12220. name: "Back",
  12221. image: {
  12222. source: "./media/characters/kuiper-vanrel/back.svg",
  12223. extra: 1236/1193,
  12224. bottom: 27/1263
  12225. }
  12226. },
  12227. foot: {
  12228. height: math.unit(0.55, "meters"),
  12229. name: "Foot",
  12230. image: {
  12231. source: "./media/characters/kuiper-vanrel/foot.svg",
  12232. }
  12233. },
  12234. battle: {
  12235. height: math.unit(6.824, "feet"),
  12236. name: "Battle",
  12237. image: {
  12238. source: "./media/characters/kuiper-vanrel/battle.svg",
  12239. extra: 1466 / 1327,
  12240. bottom: 29 / 1492.5
  12241. }
  12242. },
  12243. meerkui: {
  12244. height: math.unit(18, "inches"),
  12245. name: "Meerkui",
  12246. image: {
  12247. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12248. extra: 1354/1289,
  12249. bottom: 69/1423
  12250. }
  12251. },
  12252. },
  12253. [
  12254. {
  12255. name: "Normal",
  12256. height: math.unit(7 + 5 / 12, "feet"),
  12257. default: true
  12258. },
  12259. ]
  12260. ))
  12261. characterMakers.push(() => makeCharacter(
  12262. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12263. {
  12264. front: {
  12265. height: math.unit(8 + 5 / 12, "feet"),
  12266. name: "Front",
  12267. image: {
  12268. source: "./media/characters/keset-vanrel/front.svg",
  12269. extra: 1231/1148,
  12270. bottom: 82/1313
  12271. }
  12272. },
  12273. back: {
  12274. height: math.unit(8 + 5 / 12, "feet"),
  12275. name: "Back",
  12276. image: {
  12277. source: "./media/characters/keset-vanrel/back.svg",
  12278. extra: 1240/1174,
  12279. bottom: 33/1273
  12280. }
  12281. },
  12282. hand: {
  12283. height: math.unit(0.6, "meters"),
  12284. name: "Hand",
  12285. image: {
  12286. source: "./media/characters/keset-vanrel/hand.svg"
  12287. }
  12288. },
  12289. foot: {
  12290. height: math.unit(0.94978, "meters"),
  12291. name: "Foot",
  12292. image: {
  12293. source: "./media/characters/keset-vanrel/foot.svg"
  12294. }
  12295. },
  12296. battle: {
  12297. height: math.unit(7.408, "feet"),
  12298. name: "Battle",
  12299. image: {
  12300. source: "./media/characters/keset-vanrel/battle.svg",
  12301. extra: 1890 / 1386,
  12302. bottom: 73.28 / 1970
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Normal",
  12309. height: math.unit(8 + 5 / 12, "feet"),
  12310. default: true
  12311. },
  12312. ]
  12313. ))
  12314. characterMakers.push(() => makeCharacter(
  12315. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12316. {
  12317. front: {
  12318. height: math.unit(6, "feet"),
  12319. weight: math.unit(150, "lb"),
  12320. name: "Front",
  12321. image: {
  12322. source: "./media/characters/neos/front.svg",
  12323. extra: 1696 / 992,
  12324. bottom: 0.14
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Normal",
  12331. height: math.unit(54, "cm"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Macro",
  12336. height: math.unit(100, "m")
  12337. },
  12338. {
  12339. name: "Megamacro",
  12340. height: math.unit(10, "km")
  12341. },
  12342. {
  12343. name: "Megamacro+",
  12344. height: math.unit(100, "km")
  12345. },
  12346. {
  12347. name: "Gigamacro",
  12348. height: math.unit(100, "Mm")
  12349. },
  12350. {
  12351. name: "Teramacro",
  12352. height: math.unit(100, "Gm")
  12353. },
  12354. {
  12355. name: "Examacro",
  12356. height: math.unit(100, "Em")
  12357. },
  12358. {
  12359. name: "Godly",
  12360. height: math.unit(10000, "Ym")
  12361. },
  12362. {
  12363. name: "Beyond Godly",
  12364. height: math.unit(25, "multiverses")
  12365. },
  12366. ]
  12367. ))
  12368. characterMakers.push(() => makeCharacter(
  12369. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12370. {
  12371. feminine: {
  12372. height: math.unit(5, "feet"),
  12373. weight: math.unit(100, "lb"),
  12374. name: "Feminine",
  12375. image: {
  12376. source: "./media/characters/sammy-mouse/feminine.svg",
  12377. extra: 2526 / 2425,
  12378. bottom: 0.123
  12379. }
  12380. },
  12381. masculine: {
  12382. height: math.unit(5, "feet"),
  12383. weight: math.unit(100, "lb"),
  12384. name: "Masculine",
  12385. image: {
  12386. source: "./media/characters/sammy-mouse/masculine.svg",
  12387. extra: 2526 / 2425,
  12388. bottom: 0.123
  12389. }
  12390. },
  12391. },
  12392. [
  12393. {
  12394. name: "Micro",
  12395. height: math.unit(5, "inches")
  12396. },
  12397. {
  12398. name: "Normal",
  12399. height: math.unit(5, "feet"),
  12400. default: true
  12401. },
  12402. {
  12403. name: "Macro",
  12404. height: math.unit(60, "feet")
  12405. },
  12406. ]
  12407. ))
  12408. characterMakers.push(() => makeCharacter(
  12409. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12410. {
  12411. front: {
  12412. height: math.unit(4, "feet"),
  12413. weight: math.unit(50, "lb"),
  12414. name: "Front",
  12415. image: {
  12416. source: "./media/characters/kole/front.svg",
  12417. extra: 1423 / 1303,
  12418. bottom: 0.025
  12419. }
  12420. },
  12421. back: {
  12422. height: math.unit(4, "feet"),
  12423. weight: math.unit(50, "lb"),
  12424. name: "Back",
  12425. image: {
  12426. source: "./media/characters/kole/back.svg",
  12427. extra: 1426 / 1280,
  12428. bottom: 0.02
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Normal",
  12435. height: math.unit(4, "feet"),
  12436. default: true
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(2.5, "feet"),
  12445. weight: math.unit(32, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/rufran/front.svg",
  12449. extra: 1313/885,
  12450. bottom: 94/1407
  12451. }
  12452. },
  12453. side: {
  12454. height: math.unit(2.5, "feet"),
  12455. weight: math.unit(32, "lb"),
  12456. name: "Side",
  12457. image: {
  12458. source: "./media/characters/rufran/side.svg",
  12459. extra: 1109/852,
  12460. bottom: 118/1227
  12461. }
  12462. },
  12463. back: {
  12464. height: math.unit(2.5, "feet"),
  12465. weight: math.unit(32, "lb"),
  12466. name: "Back",
  12467. image: {
  12468. source: "./media/characters/rufran/back.svg",
  12469. extra: 1280/878,
  12470. bottom: 131/1411
  12471. }
  12472. },
  12473. mouth: {
  12474. height: math.unit(1.13, "feet"),
  12475. name: "Mouth",
  12476. image: {
  12477. source: "./media/characters/rufran/mouth.svg"
  12478. }
  12479. },
  12480. foot: {
  12481. height: math.unit(1.33, "feet"),
  12482. name: "Foot",
  12483. image: {
  12484. source: "./media/characters/rufran/foot.svg"
  12485. }
  12486. },
  12487. koboldFront: {
  12488. height: math.unit(2 + 6 / 12, "feet"),
  12489. weight: math.unit(20, "lb"),
  12490. name: "Front (Kobold)",
  12491. image: {
  12492. source: "./media/characters/rufran/kobold-front.svg",
  12493. extra: 2041 / 1839,
  12494. bottom: 0.055
  12495. }
  12496. },
  12497. koboldBack: {
  12498. height: math.unit(2 + 6 / 12, "feet"),
  12499. weight: math.unit(20, "lb"),
  12500. name: "Back (Kobold)",
  12501. image: {
  12502. source: "./media/characters/rufran/kobold-back.svg",
  12503. extra: 2054 / 1839,
  12504. bottom: 0.01
  12505. }
  12506. },
  12507. koboldHand: {
  12508. height: math.unit(0.2166, "meters"),
  12509. name: "Hand (Kobold)",
  12510. image: {
  12511. source: "./media/characters/rufran/kobold-hand.svg"
  12512. }
  12513. },
  12514. koboldFoot: {
  12515. height: math.unit(0.185, "meters"),
  12516. name: "Foot (Kobold)",
  12517. image: {
  12518. source: "./media/characters/rufran/kobold-foot.svg"
  12519. }
  12520. },
  12521. },
  12522. [
  12523. {
  12524. name: "Micro",
  12525. height: math.unit(1, "inch")
  12526. },
  12527. {
  12528. name: "Normal",
  12529. height: math.unit(2 + 6 / 12, "feet"),
  12530. default: true
  12531. },
  12532. {
  12533. name: "Big",
  12534. height: math.unit(60, "feet")
  12535. },
  12536. {
  12537. name: "Macro",
  12538. height: math.unit(325, "feet")
  12539. },
  12540. ]
  12541. ))
  12542. characterMakers.push(() => makeCharacter(
  12543. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12544. {
  12545. front: {
  12546. height: math.unit(0.3, "meters"),
  12547. weight: math.unit(3.5, "kg"),
  12548. name: "Front",
  12549. image: {
  12550. source: "./media/characters/chip/front.svg",
  12551. extra: 748 / 674
  12552. }
  12553. },
  12554. },
  12555. [
  12556. {
  12557. name: "Micro",
  12558. height: math.unit(1, "inch"),
  12559. default: true
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12565. {
  12566. side: {
  12567. height: math.unit(2.3, "meters"),
  12568. weight: math.unit(3500, "lb"),
  12569. name: "Side",
  12570. image: {
  12571. source: "./media/characters/torvid/side.svg",
  12572. extra: 1972 / 722,
  12573. bottom: 0.035
  12574. }
  12575. },
  12576. },
  12577. [
  12578. {
  12579. name: "Normal",
  12580. height: math.unit(2.3, "meters"),
  12581. default: true
  12582. },
  12583. ]
  12584. ))
  12585. characterMakers.push(() => makeCharacter(
  12586. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12587. {
  12588. front: {
  12589. height: math.unit(2, "meters"),
  12590. weight: math.unit(150.5, "kg"),
  12591. name: "Front",
  12592. image: {
  12593. source: "./media/characters/susan/front.svg",
  12594. extra: 693 / 635,
  12595. bottom: 0.05
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Megamacro",
  12602. height: math.unit(505, "miles"),
  12603. default: true
  12604. },
  12605. ]
  12606. ))
  12607. characterMakers.push(() => makeCharacter(
  12608. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12609. {
  12610. front: {
  12611. height: math.unit(6, "feet"),
  12612. weight: math.unit(150, "lb"),
  12613. name: "Front",
  12614. image: {
  12615. source: "./media/characters/raindrops/front.svg",
  12616. extra: 2655 / 2461,
  12617. bottom: 49 / 2705
  12618. }
  12619. },
  12620. back: {
  12621. height: math.unit(6, "feet"),
  12622. weight: math.unit(150, "lb"),
  12623. name: "Back",
  12624. image: {
  12625. source: "./media/characters/raindrops/back.svg",
  12626. extra: 2574 / 2400,
  12627. bottom: 65 / 2634
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Micro",
  12634. height: math.unit(6, "inches")
  12635. },
  12636. {
  12637. name: "Normal",
  12638. height: math.unit(6 + 2 / 12, "feet")
  12639. },
  12640. {
  12641. name: "Macro",
  12642. height: math.unit(131, "feet"),
  12643. default: true
  12644. },
  12645. {
  12646. name: "Megamacro",
  12647. height: math.unit(15, "miles")
  12648. },
  12649. {
  12650. name: "Gigamacro",
  12651. height: math.unit(4000, "miles")
  12652. },
  12653. {
  12654. name: "Teramacro",
  12655. height: math.unit(315000, "miles")
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12661. {
  12662. front: {
  12663. height: math.unit(2.794, "meters"),
  12664. weight: math.unit(325, "kg"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/tezwa/front.svg",
  12668. extra: 2083 / 1906,
  12669. bottom: 0.031
  12670. }
  12671. },
  12672. foot: {
  12673. height: math.unit(0.687, "meters"),
  12674. name: "Foot",
  12675. image: {
  12676. source: "./media/characters/tezwa/foot.svg"
  12677. }
  12678. },
  12679. },
  12680. [
  12681. {
  12682. name: "Normal",
  12683. height: math.unit(9 + 2 / 12, "feet"),
  12684. default: true
  12685. },
  12686. ]
  12687. ))
  12688. characterMakers.push(() => makeCharacter(
  12689. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12690. {
  12691. front: {
  12692. height: math.unit(58, "feet"),
  12693. weight: math.unit(89000, "lb"),
  12694. name: "Front",
  12695. image: {
  12696. source: "./media/characters/typhus/front.svg",
  12697. extra: 816 / 800,
  12698. bottom: 0.065
  12699. }
  12700. },
  12701. },
  12702. [
  12703. {
  12704. name: "Macro",
  12705. height: math.unit(58, "feet"),
  12706. default: true
  12707. },
  12708. ]
  12709. ))
  12710. characterMakers.push(() => makeCharacter(
  12711. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12712. {
  12713. front: {
  12714. height: math.unit(12, "feet"),
  12715. weight: math.unit(6, "tonnes"),
  12716. name: "Front",
  12717. image: {
  12718. source: "./media/characters/lyra-von-wulf/front.svg",
  12719. extra: 1,
  12720. bottom: 0.10
  12721. }
  12722. },
  12723. frontMecha: {
  12724. height: math.unit(12, "feet"),
  12725. weight: math.unit(12, "tonnes"),
  12726. name: "Front (Mecha)",
  12727. image: {
  12728. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12729. extra: 1,
  12730. bottom: 0.042
  12731. }
  12732. },
  12733. maw: {
  12734. height: math.unit(2.2, "feet"),
  12735. name: "Maw",
  12736. image: {
  12737. source: "./media/characters/lyra-von-wulf/maw.svg"
  12738. }
  12739. },
  12740. },
  12741. [
  12742. {
  12743. name: "Normal",
  12744. height: math.unit(12, "feet"),
  12745. default: true
  12746. },
  12747. {
  12748. name: "Classic",
  12749. height: math.unit(50, "feet")
  12750. },
  12751. {
  12752. name: "Macro",
  12753. height: math.unit(500, "feet")
  12754. },
  12755. {
  12756. name: "Megamacro",
  12757. height: math.unit(1, "mile")
  12758. },
  12759. {
  12760. name: "Gigamacro",
  12761. height: math.unit(400, "miles")
  12762. },
  12763. {
  12764. name: "Teramacro",
  12765. height: math.unit(22000, "miles")
  12766. },
  12767. {
  12768. name: "Solarmacro",
  12769. height: math.unit(8600000, "miles")
  12770. },
  12771. {
  12772. name: "Galactic",
  12773. height: math.unit(1057000, "lightyears")
  12774. },
  12775. ]
  12776. ))
  12777. characterMakers.push(() => makeCharacter(
  12778. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12779. {
  12780. front: {
  12781. height: math.unit(6 + 10 / 12, "feet"),
  12782. weight: math.unit(150, "lb"),
  12783. name: "Front",
  12784. image: {
  12785. source: "./media/characters/dixon/front.svg",
  12786. extra: 3361 / 3209,
  12787. bottom: 0.01
  12788. }
  12789. },
  12790. },
  12791. [
  12792. {
  12793. name: "Normal",
  12794. height: math.unit(6 + 10 / 12, "feet"),
  12795. default: true
  12796. },
  12797. {
  12798. name: "Big",
  12799. height: math.unit(12, "meters")
  12800. },
  12801. {
  12802. name: "Macro",
  12803. height: math.unit(500, "meters")
  12804. },
  12805. {
  12806. name: "Megamacro",
  12807. height: math.unit(2, "km")
  12808. },
  12809. ]
  12810. ))
  12811. characterMakers.push(() => makeCharacter(
  12812. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12813. {
  12814. front: {
  12815. height: math.unit(185, "cm"),
  12816. weight: math.unit(68, "kg"),
  12817. name: "Front",
  12818. image: {
  12819. source: "./media/characters/kauko/front.svg",
  12820. extra: 1455 / 1421,
  12821. bottom: 0.03
  12822. }
  12823. },
  12824. back: {
  12825. height: math.unit(185, "cm"),
  12826. weight: math.unit(68, "kg"),
  12827. name: "Back",
  12828. image: {
  12829. source: "./media/characters/kauko/back.svg",
  12830. extra: 1455 / 1421,
  12831. bottom: 0.004
  12832. }
  12833. },
  12834. },
  12835. [
  12836. {
  12837. name: "Normal",
  12838. height: math.unit(185, "cm"),
  12839. default: true
  12840. },
  12841. ]
  12842. ))
  12843. characterMakers.push(() => makeCharacter(
  12844. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12845. {
  12846. front: {
  12847. height: math.unit(6, "feet"),
  12848. weight: math.unit(150, "kg"),
  12849. name: "Front",
  12850. image: {
  12851. source: "./media/characters/varg/front.svg",
  12852. extra: 1108 / 1018,
  12853. bottom: 0.0375
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Normal",
  12860. height: math.unit(5, "meters")
  12861. },
  12862. {
  12863. name: "Macro",
  12864. height: math.unit(200, "meters")
  12865. },
  12866. {
  12867. name: "Megamacro",
  12868. height: math.unit(20, "kilometers")
  12869. },
  12870. {
  12871. name: "True Size",
  12872. height: math.unit(211, "km"),
  12873. default: true
  12874. },
  12875. {
  12876. name: "Gigamacro",
  12877. height: math.unit(1000, "km")
  12878. },
  12879. {
  12880. name: "Gigamacro+",
  12881. height: math.unit(8000, "km")
  12882. },
  12883. {
  12884. name: "Teramacro",
  12885. height: math.unit(1000000, "km")
  12886. },
  12887. ]
  12888. ))
  12889. characterMakers.push(() => makeCharacter(
  12890. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12891. {
  12892. front: {
  12893. height: math.unit(7 + 7 / 12, "feet"),
  12894. weight: math.unit(267, "lb"),
  12895. name: "Front",
  12896. image: {
  12897. source: "./media/characters/dayza/front.svg",
  12898. extra: 1262 / 1200,
  12899. bottom: 0.035
  12900. }
  12901. },
  12902. side: {
  12903. height: math.unit(7 + 7 / 12, "feet"),
  12904. weight: math.unit(267, "lb"),
  12905. name: "Side",
  12906. image: {
  12907. source: "./media/characters/dayza/side.svg",
  12908. extra: 1295 / 1245,
  12909. bottom: 0.05
  12910. }
  12911. },
  12912. back: {
  12913. height: math.unit(7 + 7 / 12, "feet"),
  12914. weight: math.unit(267, "lb"),
  12915. name: "Back",
  12916. image: {
  12917. source: "./media/characters/dayza/back.svg",
  12918. extra: 1241 / 1170
  12919. }
  12920. },
  12921. },
  12922. [
  12923. {
  12924. name: "Normal",
  12925. height: math.unit(7 + 7 / 12, "feet"),
  12926. default: true
  12927. },
  12928. {
  12929. name: "Macro",
  12930. height: math.unit(155, "feet")
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12936. {
  12937. front: {
  12938. height: math.unit(6 + 5 / 12, "feet"),
  12939. weight: math.unit(160, "lb"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/xanthos/front.svg",
  12943. extra: 1,
  12944. bottom: 0.04
  12945. }
  12946. },
  12947. back: {
  12948. height: math.unit(6 + 5 / 12, "feet"),
  12949. weight: math.unit(160, "lb"),
  12950. name: "Back",
  12951. image: {
  12952. source: "./media/characters/xanthos/back.svg",
  12953. extra: 1,
  12954. bottom: 0.03
  12955. }
  12956. },
  12957. hand: {
  12958. height: math.unit(0.928, "feet"),
  12959. name: "Hand",
  12960. image: {
  12961. source: "./media/characters/xanthos/hand.svg"
  12962. }
  12963. },
  12964. foot: {
  12965. height: math.unit(1.286, "feet"),
  12966. name: "Foot",
  12967. image: {
  12968. source: "./media/characters/xanthos/foot.svg"
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Normal",
  12975. height: math.unit(6 + 5 / 12, "feet"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Normal+",
  12980. height: math.unit(6, "meters")
  12981. },
  12982. {
  12983. name: "Macro",
  12984. height: math.unit(40, "feet")
  12985. },
  12986. {
  12987. name: "Macro+",
  12988. height: math.unit(200, "meters")
  12989. },
  12990. {
  12991. name: "Megamacro",
  12992. height: math.unit(20, "km")
  12993. },
  12994. {
  12995. name: "Megamacro+",
  12996. height: math.unit(100, "km")
  12997. },
  12998. {
  12999. name: "Gigamacro",
  13000. height: math.unit(200, "megameters")
  13001. },
  13002. {
  13003. name: "Gigamacro+",
  13004. height: math.unit(1.5, "gigameters")
  13005. },
  13006. ]
  13007. ))
  13008. characterMakers.push(() => makeCharacter(
  13009. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13010. {
  13011. front: {
  13012. height: math.unit(6 + 3 / 12, "feet"),
  13013. weight: math.unit(215, "lb"),
  13014. name: "Front",
  13015. image: {
  13016. source: "./media/characters/grynn/front.svg",
  13017. extra: 4627 / 4209,
  13018. bottom: 0.047
  13019. }
  13020. },
  13021. },
  13022. [
  13023. {
  13024. name: "Micro",
  13025. height: math.unit(6, "inches")
  13026. },
  13027. {
  13028. name: "Normal",
  13029. height: math.unit(6 + 3 / 12, "feet"),
  13030. default: true
  13031. },
  13032. {
  13033. name: "Big",
  13034. height: math.unit(104, "feet")
  13035. },
  13036. {
  13037. name: "Macro",
  13038. height: math.unit(944, "feet")
  13039. },
  13040. {
  13041. name: "Macro+",
  13042. height: math.unit(9480, "feet")
  13043. },
  13044. {
  13045. name: "Megamacro",
  13046. height: math.unit(78752, "feet")
  13047. },
  13048. {
  13049. name: "Megamacro+",
  13050. height: math.unit(630128, "feet")
  13051. },
  13052. {
  13053. name: "Megamacro++",
  13054. height: math.unit(3150695, "feet")
  13055. },
  13056. ]
  13057. ))
  13058. characterMakers.push(() => makeCharacter(
  13059. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13060. {
  13061. front: {
  13062. height: math.unit(7 + 5 / 12, "feet"),
  13063. weight: math.unit(450, "lb"),
  13064. name: "Front",
  13065. image: {
  13066. source: "./media/characters/mocha-aura/front.svg",
  13067. extra: 1907 / 1817,
  13068. bottom: 0.04
  13069. }
  13070. },
  13071. back: {
  13072. height: math.unit(7 + 5 / 12, "feet"),
  13073. weight: math.unit(450, "lb"),
  13074. name: "Back",
  13075. image: {
  13076. source: "./media/characters/mocha-aura/back.svg",
  13077. extra: 1900 / 1825,
  13078. bottom: 0.045
  13079. }
  13080. },
  13081. },
  13082. [
  13083. {
  13084. name: "Nano",
  13085. height: math.unit(1, "nm")
  13086. },
  13087. {
  13088. name: "Megamicro",
  13089. height: math.unit(1, "mm")
  13090. },
  13091. {
  13092. name: "Micro",
  13093. height: math.unit(3, "inches")
  13094. },
  13095. {
  13096. name: "Normal",
  13097. height: math.unit(7 + 5 / 12, "feet"),
  13098. default: true
  13099. },
  13100. {
  13101. name: "Macro",
  13102. height: math.unit(30, "feet")
  13103. },
  13104. {
  13105. name: "Megamacro",
  13106. height: math.unit(3500, "feet")
  13107. },
  13108. {
  13109. name: "Teramacro",
  13110. height: math.unit(500000, "miles")
  13111. },
  13112. {
  13113. name: "Petamacro",
  13114. height: math.unit(50000000000000000, "parsecs")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13120. {
  13121. front: {
  13122. height: math.unit(6, "feet"),
  13123. weight: math.unit(150, "lb"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/ilisha-devya/front.svg",
  13127. extra: 1053/1049,
  13128. bottom: 270/1323
  13129. }
  13130. },
  13131. back: {
  13132. height: math.unit(6, "feet"),
  13133. weight: math.unit(150, "lb"),
  13134. name: "Back",
  13135. image: {
  13136. source: "./media/characters/ilisha-devya/back.svg",
  13137. extra: 1131/1128,
  13138. bottom: 39/1170
  13139. }
  13140. },
  13141. },
  13142. [
  13143. {
  13144. name: "Macro",
  13145. height: math.unit(500, "feet"),
  13146. default: true
  13147. },
  13148. {
  13149. name: "Megamacro",
  13150. height: math.unit(10, "miles")
  13151. },
  13152. {
  13153. name: "Gigamacro",
  13154. height: math.unit(100000, "miles")
  13155. },
  13156. {
  13157. name: "Examacro",
  13158. height: math.unit(1e9, "lightyears")
  13159. },
  13160. {
  13161. name: "Omniversal",
  13162. height: math.unit(1e33, "lightyears")
  13163. },
  13164. {
  13165. name: "Beyond Infinite",
  13166. height: math.unit(1e100, "lightyears")
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13172. {
  13173. Side: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(150, "lb"),
  13176. name: "Side",
  13177. image: {
  13178. source: "./media/characters/mira/side.svg",
  13179. extra: 900 / 799,
  13180. bottom: 0.02
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Human Size",
  13187. height: math.unit(6, "feet")
  13188. },
  13189. {
  13190. name: "Macro",
  13191. height: math.unit(100, "feet"),
  13192. default: true
  13193. },
  13194. {
  13195. name: "Megamacro",
  13196. height: math.unit(10, "miles")
  13197. },
  13198. {
  13199. name: "Gigamacro",
  13200. height: math.unit(25000, "miles")
  13201. },
  13202. {
  13203. name: "Teramacro",
  13204. height: math.unit(300, "AU")
  13205. },
  13206. {
  13207. name: "Full Size",
  13208. height: math.unit(4.5e10, "lightyears")
  13209. },
  13210. ]
  13211. ))
  13212. characterMakers.push(() => makeCharacter(
  13213. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13214. {
  13215. front: {
  13216. height: math.unit(6, "feet"),
  13217. weight: math.unit(150, "lb"),
  13218. name: "Front",
  13219. image: {
  13220. source: "./media/characters/holly/front.svg",
  13221. extra: 639 / 606
  13222. }
  13223. },
  13224. back: {
  13225. height: math.unit(6, "feet"),
  13226. weight: math.unit(150, "lb"),
  13227. name: "Back",
  13228. image: {
  13229. source: "./media/characters/holly/back.svg",
  13230. extra: 623 / 598
  13231. }
  13232. },
  13233. frontWorking: {
  13234. height: math.unit(6, "feet"),
  13235. weight: math.unit(150, "lb"),
  13236. name: "Front (Working)",
  13237. image: {
  13238. source: "./media/characters/holly/front-working.svg",
  13239. extra: 607 / 577,
  13240. bottom: 0.048
  13241. }
  13242. },
  13243. },
  13244. [
  13245. {
  13246. name: "Normal",
  13247. height: math.unit(12 + 3 / 12, "feet"),
  13248. default: true
  13249. },
  13250. ]
  13251. ))
  13252. characterMakers.push(() => makeCharacter(
  13253. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13254. {
  13255. front: {
  13256. height: math.unit(6, "feet"),
  13257. weight: math.unit(150, "lb"),
  13258. name: "Front",
  13259. image: {
  13260. source: "./media/characters/porter/front.svg",
  13261. extra: 1,
  13262. bottom: 0.01
  13263. }
  13264. },
  13265. frontRobes: {
  13266. height: math.unit(6, "feet"),
  13267. weight: math.unit(150, "lb"),
  13268. name: "Front (Robes)",
  13269. image: {
  13270. source: "./media/characters/porter/front-robes.svg",
  13271. extra: 1.01,
  13272. bottom: 0.01
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Normal",
  13279. height: math.unit(11 + 9 / 12, "feet"),
  13280. default: true
  13281. },
  13282. ]
  13283. ))
  13284. characterMakers.push(() => makeCharacter(
  13285. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13286. {
  13287. legendary: {
  13288. height: math.unit(6, "feet"),
  13289. weight: math.unit(150, "lb"),
  13290. name: "Legendary",
  13291. image: {
  13292. source: "./media/characters/lucy/legendary.svg",
  13293. extra: 1355 / 1100,
  13294. bottom: 0.045
  13295. }
  13296. },
  13297. },
  13298. [
  13299. {
  13300. name: "Legendary",
  13301. height: math.unit(86882 * 2, "miles"),
  13302. default: true
  13303. },
  13304. ]
  13305. ))
  13306. characterMakers.push(() => makeCharacter(
  13307. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13308. {
  13309. front: {
  13310. height: math.unit(6, "feet"),
  13311. weight: math.unit(150, "lb"),
  13312. name: "Front",
  13313. image: {
  13314. source: "./media/characters/drusilla/front.svg",
  13315. extra: 678 / 635,
  13316. bottom: 0.03
  13317. }
  13318. },
  13319. back: {
  13320. height: math.unit(6, "feet"),
  13321. weight: math.unit(150, "lb"),
  13322. name: "Back",
  13323. image: {
  13324. source: "./media/characters/drusilla/back.svg",
  13325. extra: 678 / 635,
  13326. bottom: 0.005
  13327. }
  13328. },
  13329. },
  13330. [
  13331. {
  13332. name: "Macro",
  13333. height: math.unit(100, "feet")
  13334. },
  13335. {
  13336. name: "Canon Height",
  13337. height: math.unit(2000, "feet"),
  13338. default: true
  13339. },
  13340. ]
  13341. ))
  13342. characterMakers.push(() => makeCharacter(
  13343. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13344. {
  13345. front: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(180, "lb"),
  13348. name: "Front",
  13349. image: {
  13350. source: "./media/characters/renard-thatch/front.svg",
  13351. extra: 2411 / 2275,
  13352. bottom: 0.01
  13353. }
  13354. },
  13355. frontPosing: {
  13356. height: math.unit(6, "feet"),
  13357. weight: math.unit(180, "lb"),
  13358. name: "Front (Posing)",
  13359. image: {
  13360. source: "./media/characters/renard-thatch/front-posing.svg",
  13361. extra: 2381 / 2261,
  13362. bottom: 0.01
  13363. }
  13364. },
  13365. back: {
  13366. height: math.unit(6, "feet"),
  13367. weight: math.unit(180, "lb"),
  13368. name: "Back",
  13369. image: {
  13370. source: "./media/characters/renard-thatch/back.svg",
  13371. extra: 2428 / 2288
  13372. }
  13373. },
  13374. },
  13375. [
  13376. {
  13377. name: "Micro",
  13378. height: math.unit(3, "inches")
  13379. },
  13380. {
  13381. name: "Default",
  13382. height: math.unit(6, "feet"),
  13383. default: true
  13384. },
  13385. {
  13386. name: "Macro",
  13387. height: math.unit(75, "feet")
  13388. },
  13389. ]
  13390. ))
  13391. characterMakers.push(() => makeCharacter(
  13392. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13393. {
  13394. front: {
  13395. height: math.unit(1450, "feet"),
  13396. weight: math.unit(1.21e6, "tons"),
  13397. name: "Front",
  13398. image: {
  13399. source: "./media/characters/sekvra/front.svg",
  13400. extra: 1193/1190,
  13401. bottom: 78/1271
  13402. }
  13403. },
  13404. side: {
  13405. height: math.unit(1450, "feet"),
  13406. weight: math.unit(1.21e6, "tons"),
  13407. name: "Side",
  13408. image: {
  13409. source: "./media/characters/sekvra/side.svg",
  13410. extra: 1193/1190,
  13411. bottom: 52/1245
  13412. }
  13413. },
  13414. back: {
  13415. height: math.unit(1450, "feet"),
  13416. weight: math.unit(1.21e6, "tons"),
  13417. name: "Back",
  13418. image: {
  13419. source: "./media/characters/sekvra/back.svg",
  13420. extra: 1219/1216,
  13421. bottom: 21/1240
  13422. }
  13423. },
  13424. frontClothed: {
  13425. height: math.unit(1450, "feet"),
  13426. weight: math.unit(1.21e6, "tons"),
  13427. name: "Front (Clothed)",
  13428. image: {
  13429. source: "./media/characters/sekvra/front-clothed.svg",
  13430. extra: 1192/1189,
  13431. bottom: 79/1271
  13432. }
  13433. },
  13434. },
  13435. [
  13436. {
  13437. name: "Macro",
  13438. height: math.unit(1450, "feet"),
  13439. default: true
  13440. },
  13441. {
  13442. name: "Megamacro",
  13443. height: math.unit(15000, "feet")
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13449. {
  13450. front: {
  13451. height: math.unit(6, "feet"),
  13452. weight: math.unit(150, "lb"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/carmine/front.svg",
  13456. extra: 1,
  13457. bottom: 0.035
  13458. }
  13459. },
  13460. frontArmor: {
  13461. height: math.unit(6, "feet"),
  13462. weight: math.unit(150, "lb"),
  13463. name: "Front (Armor)",
  13464. image: {
  13465. source: "./media/characters/carmine/front-armor.svg",
  13466. extra: 1,
  13467. bottom: 0.035
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Large",
  13474. height: math.unit(1, "mile")
  13475. },
  13476. {
  13477. name: "Huge",
  13478. height: math.unit(40, "miles"),
  13479. default: true
  13480. },
  13481. {
  13482. name: "Colossal",
  13483. height: math.unit(2500, "miles")
  13484. },
  13485. ]
  13486. ))
  13487. characterMakers.push(() => makeCharacter(
  13488. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13489. {
  13490. front: {
  13491. height: math.unit(6, "feet"),
  13492. weight: math.unit(150, "lb"),
  13493. name: "Front",
  13494. image: {
  13495. source: "./media/characters/elyssia/front.svg",
  13496. extra: 2201 / 2035,
  13497. bottom: 0.05
  13498. }
  13499. },
  13500. frontClothed: {
  13501. height: math.unit(6, "feet"),
  13502. weight: math.unit(150, "lb"),
  13503. name: "Front (Clothed)",
  13504. image: {
  13505. source: "./media/characters/elyssia/front-clothed.svg",
  13506. extra: 2201 / 2035,
  13507. bottom: 0.05
  13508. }
  13509. },
  13510. back: {
  13511. height: math.unit(6, "feet"),
  13512. weight: math.unit(150, "lb"),
  13513. name: "Back",
  13514. image: {
  13515. source: "./media/characters/elyssia/back.svg",
  13516. extra: 2201 / 2035,
  13517. bottom: 0.013
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Smaller",
  13524. height: math.unit(150, "feet")
  13525. },
  13526. {
  13527. name: "Standard",
  13528. height: math.unit(1400, "feet"),
  13529. default: true
  13530. },
  13531. {
  13532. name: "Distracted",
  13533. height: math.unit(15000, "feet")
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(7 + 4/12, "feet"),
  13542. weight: math.unit(690, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/geno-maxwell/front.svg",
  13546. extra: 984/856,
  13547. bottom: 87/1071
  13548. }
  13549. },
  13550. back: {
  13551. height: math.unit(7 + 4/12, "feet"),
  13552. weight: math.unit(690, "lb"),
  13553. name: "Back",
  13554. image: {
  13555. source: "./media/characters/geno-maxwell/back.svg",
  13556. extra: 981/854,
  13557. bottom: 57/1038
  13558. }
  13559. },
  13560. frontCostume: {
  13561. height: math.unit(7 + 4/12, "feet"),
  13562. weight: math.unit(690, "lb"),
  13563. name: "Front (Costume)",
  13564. image: {
  13565. source: "./media/characters/geno-maxwell/front-costume.svg",
  13566. extra: 984/856,
  13567. bottom: 87/1071
  13568. }
  13569. },
  13570. backcostume: {
  13571. height: math.unit(7 + 4/12, "feet"),
  13572. weight: math.unit(690, "lb"),
  13573. name: "Back (Costume)",
  13574. image: {
  13575. source: "./media/characters/geno-maxwell/back-costume.svg",
  13576. extra: 981/854,
  13577. bottom: 57/1038
  13578. }
  13579. },
  13580. },
  13581. [
  13582. {
  13583. name: "Micro",
  13584. height: math.unit(3, "inches")
  13585. },
  13586. {
  13587. name: "Normal",
  13588. height: math.unit(7 + 4 / 12, "feet"),
  13589. default: true
  13590. },
  13591. {
  13592. name: "Macro",
  13593. height: math.unit(220, "feet")
  13594. },
  13595. {
  13596. name: "Megamacro",
  13597. height: math.unit(11, "miles")
  13598. },
  13599. ]
  13600. ))
  13601. characterMakers.push(() => makeCharacter(
  13602. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13603. {
  13604. front: {
  13605. height: math.unit(7 + 4/12, "feet"),
  13606. weight: math.unit(750, "lb"),
  13607. name: "Front",
  13608. image: {
  13609. source: "./media/characters/regena-maxwell/front.svg",
  13610. extra: 984/856,
  13611. bottom: 87/1071
  13612. }
  13613. },
  13614. back: {
  13615. height: math.unit(7 + 4/12, "feet"),
  13616. weight: math.unit(750, "lb"),
  13617. name: "Back",
  13618. image: {
  13619. source: "./media/characters/regena-maxwell/back.svg",
  13620. extra: 981/854,
  13621. bottom: 57/1038
  13622. }
  13623. },
  13624. frontCostume: {
  13625. height: math.unit(7 + 4/12, "feet"),
  13626. weight: math.unit(750, "lb"),
  13627. name: "Front (Costume)",
  13628. image: {
  13629. source: "./media/characters/regena-maxwell/front-costume.svg",
  13630. extra: 984/856,
  13631. bottom: 87/1071
  13632. }
  13633. },
  13634. backcostume: {
  13635. height: math.unit(7 + 4/12, "feet"),
  13636. weight: math.unit(750, "lb"),
  13637. name: "Back (Costume)",
  13638. image: {
  13639. source: "./media/characters/regena-maxwell/back-costume.svg",
  13640. extra: 981/854,
  13641. bottom: 57/1038
  13642. }
  13643. },
  13644. },
  13645. [
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(7 + 4 / 12, "feet"),
  13649. default: true
  13650. },
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(220, "feet")
  13654. },
  13655. {
  13656. name: "Megamacro",
  13657. height: math.unit(11, "miles")
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(6, "feet"),
  13666. weight: math.unit(150, "lb"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13670. extra: 860 / 690,
  13671. bottom: 0.03
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Normal",
  13678. height: math.unit(1.7, "meters"),
  13679. default: true
  13680. },
  13681. ]
  13682. ))
  13683. characterMakers.push(() => makeCharacter(
  13684. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13685. {
  13686. front: {
  13687. height: math.unit(6, "feet"),
  13688. weight: math.unit(150, "lb"),
  13689. name: "Front",
  13690. image: {
  13691. source: "./media/characters/quilly/front.svg",
  13692. extra: 890 / 776
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Gigamacro",
  13699. height: math.unit(404090, "miles"),
  13700. default: true
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13706. {
  13707. front: {
  13708. height: math.unit(7 + 8 / 12, "feet"),
  13709. weight: math.unit(350, "lb"),
  13710. name: "Front",
  13711. image: {
  13712. source: "./media/characters/tempest/front.svg",
  13713. extra: 1175 / 1086,
  13714. bottom: 0.02
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Normal",
  13721. height: math.unit(7 + 8 / 12, "feet"),
  13722. default: true
  13723. },
  13724. ]
  13725. ))
  13726. characterMakers.push(() => makeCharacter(
  13727. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13728. {
  13729. side: {
  13730. height: math.unit(4 + 5 / 12, "feet"),
  13731. weight: math.unit(80, "lb"),
  13732. name: "Side",
  13733. image: {
  13734. source: "./media/characters/rodger/side.svg",
  13735. extra: 1235 / 1118
  13736. }
  13737. },
  13738. },
  13739. [
  13740. {
  13741. name: "Micro",
  13742. height: math.unit(1, "inch")
  13743. },
  13744. {
  13745. name: "Normal",
  13746. height: math.unit(4 + 5 / 12, "feet"),
  13747. default: true
  13748. },
  13749. {
  13750. name: "Macro",
  13751. height: math.unit(120, "feet")
  13752. },
  13753. ]
  13754. ))
  13755. characterMakers.push(() => makeCharacter(
  13756. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13757. {
  13758. front: {
  13759. height: math.unit(6, "feet"),
  13760. weight: math.unit(150, "lb"),
  13761. name: "Front",
  13762. image: {
  13763. source: "./media/characters/danyel/front.svg",
  13764. extra: 1185 / 1123,
  13765. bottom: 0.05
  13766. }
  13767. },
  13768. },
  13769. [
  13770. {
  13771. name: "Shrunken",
  13772. height: math.unit(0.5, "mm")
  13773. },
  13774. {
  13775. name: "Micro",
  13776. height: math.unit(1, "mm"),
  13777. default: true
  13778. },
  13779. {
  13780. name: "Upsized",
  13781. height: math.unit(5 + 5 / 12, "feet")
  13782. },
  13783. ]
  13784. ))
  13785. characterMakers.push(() => makeCharacter(
  13786. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13787. {
  13788. front: {
  13789. height: math.unit(5 + 6 / 12, "feet"),
  13790. weight: math.unit(200, "lb"),
  13791. name: "Front",
  13792. image: {
  13793. source: "./media/characters/vivian-bijoux/front.svg",
  13794. extra: 1217/1209,
  13795. bottom: 76/1293
  13796. }
  13797. },
  13798. back: {
  13799. height: math.unit(5 + 6 / 12, "feet"),
  13800. weight: math.unit(200, "lb"),
  13801. name: "Back",
  13802. image: {
  13803. source: "./media/characters/vivian-bijoux/back.svg",
  13804. extra: 1214/1208,
  13805. bottom: 51/1265
  13806. }
  13807. },
  13808. dressed: {
  13809. height: math.unit(5 + 6 / 12, "feet"),
  13810. weight: math.unit(200, "lb"),
  13811. name: "Dressed",
  13812. image: {
  13813. source: "./media/characters/vivian-bijoux/dressed.svg",
  13814. extra: 1217/1209,
  13815. bottom: 76/1293
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Normal",
  13822. height: math.unit(5 + 6 / 12, "feet"),
  13823. default: true
  13824. },
  13825. {
  13826. name: "Bad Dream",
  13827. height: math.unit(500, "feet")
  13828. },
  13829. {
  13830. name: "Nightmare",
  13831. height: math.unit(500, "miles")
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13837. {
  13838. front: {
  13839. height: math.unit(6 + 1 / 12, "feet"),
  13840. weight: math.unit(260, "lb"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/zeta/front.svg",
  13844. extra: 1968 / 1889,
  13845. bottom: 0.06
  13846. }
  13847. },
  13848. back: {
  13849. height: math.unit(6 + 1 / 12, "feet"),
  13850. weight: math.unit(260, "lb"),
  13851. name: "Back",
  13852. image: {
  13853. source: "./media/characters/zeta/back.svg",
  13854. extra: 1944 / 1858,
  13855. bottom: 0.03
  13856. }
  13857. },
  13858. hand: {
  13859. height: math.unit(1.112, "feet"),
  13860. name: "Hand",
  13861. image: {
  13862. source: "./media/characters/zeta/hand.svg"
  13863. }
  13864. },
  13865. foot: {
  13866. height: math.unit(1.48, "feet"),
  13867. name: "Foot",
  13868. image: {
  13869. source: "./media/characters/zeta/foot.svg"
  13870. }
  13871. },
  13872. },
  13873. [
  13874. {
  13875. name: "Micro",
  13876. height: math.unit(6, "inches")
  13877. },
  13878. {
  13879. name: "Normal",
  13880. height: math.unit(6 + 1 / 12, "feet"),
  13881. default: true
  13882. },
  13883. {
  13884. name: "Macro",
  13885. height: math.unit(20, "feet")
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(150, "lb"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/jamie-larsen/front.svg",
  13898. extra: 962 / 933,
  13899. bottom: 0.02
  13900. }
  13901. },
  13902. back: {
  13903. height: math.unit(6, "feet"),
  13904. weight: math.unit(150, "lb"),
  13905. name: "Back",
  13906. image: {
  13907. source: "./media/characters/jamie-larsen/back.svg",
  13908. extra: 997 / 946
  13909. }
  13910. },
  13911. },
  13912. [
  13913. {
  13914. name: "Macro",
  13915. height: math.unit(28 + 7 / 12, "feet"),
  13916. default: true
  13917. },
  13918. {
  13919. name: "Macro+",
  13920. height: math.unit(180, "feet")
  13921. },
  13922. {
  13923. name: "Megamacro",
  13924. height: math.unit(10, "miles")
  13925. },
  13926. {
  13927. name: "Gigamacro",
  13928. height: math.unit(200000, "miles")
  13929. },
  13930. ]
  13931. ))
  13932. characterMakers.push(() => makeCharacter(
  13933. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13934. {
  13935. front: {
  13936. height: math.unit(6, "feet"),
  13937. weight: math.unit(120, "lb"),
  13938. name: "Front",
  13939. image: {
  13940. source: "./media/characters/vance/front.svg",
  13941. extra: 1980 / 1890,
  13942. bottom: 0.09
  13943. }
  13944. },
  13945. back: {
  13946. height: math.unit(6, "feet"),
  13947. weight: math.unit(120, "lb"),
  13948. name: "Back",
  13949. image: {
  13950. source: "./media/characters/vance/back.svg",
  13951. extra: 2081 / 1994,
  13952. bottom: 0.014
  13953. }
  13954. },
  13955. hand: {
  13956. height: math.unit(0.88, "feet"),
  13957. name: "Hand",
  13958. image: {
  13959. source: "./media/characters/vance/hand.svg"
  13960. }
  13961. },
  13962. foot: {
  13963. height: math.unit(0.64, "feet"),
  13964. name: "Foot",
  13965. image: {
  13966. source: "./media/characters/vance/foot.svg"
  13967. }
  13968. },
  13969. },
  13970. [
  13971. {
  13972. name: "Small",
  13973. height: math.unit(90, "feet"),
  13974. default: true
  13975. },
  13976. {
  13977. name: "Macro",
  13978. height: math.unit(100, "meters")
  13979. },
  13980. {
  13981. name: "Megamacro",
  13982. height: math.unit(15, "miles")
  13983. },
  13984. ]
  13985. ))
  13986. characterMakers.push(() => makeCharacter(
  13987. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13988. {
  13989. front: {
  13990. height: math.unit(6, "feet"),
  13991. weight: math.unit(180, "lb"),
  13992. name: "Front",
  13993. image: {
  13994. source: "./media/characters/xochitl/front.svg",
  13995. extra: 2297 / 2261,
  13996. bottom: 0.065
  13997. }
  13998. },
  13999. back: {
  14000. height: math.unit(6, "feet"),
  14001. weight: math.unit(180, "lb"),
  14002. name: "Back",
  14003. image: {
  14004. source: "./media/characters/xochitl/back.svg",
  14005. extra: 2386 / 2354,
  14006. bottom: 0.01
  14007. }
  14008. },
  14009. foot: {
  14010. height: math.unit(6 / 5 * 1.15, "feet"),
  14011. weight: math.unit(150, "lb"),
  14012. name: "Foot",
  14013. image: {
  14014. source: "./media/characters/xochitl/foot.svg"
  14015. }
  14016. },
  14017. },
  14018. [
  14019. {
  14020. name: "Macro",
  14021. height: math.unit(80, "feet")
  14022. },
  14023. {
  14024. name: "Macro+",
  14025. height: math.unit(400, "feet"),
  14026. default: true
  14027. },
  14028. {
  14029. name: "Gigamacro",
  14030. height: math.unit(80000, "miles")
  14031. },
  14032. {
  14033. name: "Gigamacro+",
  14034. height: math.unit(400000, "miles")
  14035. },
  14036. {
  14037. name: "Teramacro",
  14038. height: math.unit(300, "AU")
  14039. },
  14040. ]
  14041. ))
  14042. characterMakers.push(() => makeCharacter(
  14043. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14044. {
  14045. front: {
  14046. height: math.unit(6, "feet"),
  14047. weight: math.unit(150, "lb"),
  14048. name: "Front",
  14049. image: {
  14050. source: "./media/characters/vincent/front.svg",
  14051. extra: 1130 / 1080,
  14052. bottom: 0.055
  14053. }
  14054. },
  14055. beak: {
  14056. height: math.unit(6 * 0.1, "feet"),
  14057. name: "Beak",
  14058. image: {
  14059. source: "./media/characters/vincent/beak.svg"
  14060. }
  14061. },
  14062. hand: {
  14063. height: math.unit(6 * 0.85, "feet"),
  14064. weight: math.unit(150, "lb"),
  14065. name: "Hand",
  14066. image: {
  14067. source: "./media/characters/vincent/hand.svg"
  14068. }
  14069. },
  14070. foot: {
  14071. height: math.unit(6 * 0.19, "feet"),
  14072. weight: math.unit(150, "lb"),
  14073. name: "Foot",
  14074. image: {
  14075. source: "./media/characters/vincent/foot.svg"
  14076. }
  14077. },
  14078. },
  14079. [
  14080. {
  14081. name: "Base",
  14082. height: math.unit(6 + 5 / 12, "feet"),
  14083. default: true
  14084. },
  14085. {
  14086. name: "Macro",
  14087. height: math.unit(300, "feet")
  14088. },
  14089. {
  14090. name: "Megamacro",
  14091. height: math.unit(2, "miles")
  14092. },
  14093. {
  14094. name: "Gigamacro",
  14095. height: math.unit(1000, "miles")
  14096. },
  14097. ]
  14098. ))
  14099. characterMakers.push(() => makeCharacter(
  14100. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14101. {
  14102. front: {
  14103. height: math.unit(2, "meters"),
  14104. weight: math.unit(500, "kg"),
  14105. name: "Front",
  14106. image: {
  14107. source: "./media/characters/coatl/front.svg",
  14108. extra: 3948 / 3500,
  14109. bottom: 0.082
  14110. }
  14111. },
  14112. },
  14113. [
  14114. {
  14115. name: "Normal",
  14116. height: math.unit(4, "meters")
  14117. },
  14118. {
  14119. name: "Macro",
  14120. height: math.unit(100, "meters"),
  14121. default: true
  14122. },
  14123. {
  14124. name: "Macro+",
  14125. height: math.unit(300, "meters")
  14126. },
  14127. {
  14128. name: "Megamacro",
  14129. height: math.unit(3, "gigameters")
  14130. },
  14131. {
  14132. name: "Megamacro+",
  14133. height: math.unit(300, "terameters")
  14134. },
  14135. {
  14136. name: "Megamacro++",
  14137. height: math.unit(3, "lightyears")
  14138. },
  14139. ]
  14140. ))
  14141. characterMakers.push(() => makeCharacter(
  14142. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14143. {
  14144. front: {
  14145. height: math.unit(6, "feet"),
  14146. weight: math.unit(50, "kg"),
  14147. name: "front",
  14148. image: {
  14149. source: "./media/characters/shiroryu/front.svg",
  14150. extra: 1990 / 1935
  14151. }
  14152. },
  14153. },
  14154. [
  14155. {
  14156. name: "Mortal Mingling",
  14157. height: math.unit(3, "meters")
  14158. },
  14159. {
  14160. name: "Kaiju-ish",
  14161. height: math.unit(250, "meters")
  14162. },
  14163. {
  14164. name: "Somewhat Godly",
  14165. height: math.unit(400, "km"),
  14166. default: true
  14167. },
  14168. {
  14169. name: "Planetary",
  14170. height: math.unit(300, "megameters")
  14171. },
  14172. {
  14173. name: "Galaxy-dwarfing",
  14174. height: math.unit(450, "kiloparsecs")
  14175. },
  14176. {
  14177. name: "Universe Eater",
  14178. height: math.unit(150, "gigaparsecs")
  14179. },
  14180. {
  14181. name: "Almost Immeasurable",
  14182. height: math.unit(1.3e266, "yottaparsecs")
  14183. },
  14184. ]
  14185. ))
  14186. characterMakers.push(() => makeCharacter(
  14187. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14188. {
  14189. front: {
  14190. height: math.unit(6, "feet"),
  14191. weight: math.unit(150, "lb"),
  14192. name: "Front",
  14193. image: {
  14194. source: "./media/characters/umeko/front.svg",
  14195. extra: 1,
  14196. bottom: 0.019
  14197. }
  14198. },
  14199. frontArmored: {
  14200. height: math.unit(6, "feet"),
  14201. weight: math.unit(150, "lb"),
  14202. name: "Front (Armored)",
  14203. image: {
  14204. source: "./media/characters/umeko/front-armored.svg",
  14205. extra: 1,
  14206. bottom: 0.021
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Macro",
  14213. height: math.unit(220, "feet"),
  14214. default: true
  14215. },
  14216. {
  14217. name: "Guardian Dragon",
  14218. height: math.unit(50, "miles")
  14219. },
  14220. {
  14221. name: "Cosmic",
  14222. height: math.unit(800000, "miles")
  14223. },
  14224. ]
  14225. ))
  14226. characterMakers.push(() => makeCharacter(
  14227. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14228. {
  14229. front: {
  14230. height: math.unit(6, "feet"),
  14231. weight: math.unit(150, "lb"),
  14232. name: "Front",
  14233. image: {
  14234. source: "./media/characters/cassidy/front.svg",
  14235. extra: 810/808,
  14236. bottom: 41/851
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "Canon Height",
  14243. height: math.unit(120, "feet"),
  14244. default: true
  14245. },
  14246. {
  14247. name: "Macro+",
  14248. height: math.unit(400, "feet")
  14249. },
  14250. {
  14251. name: "Macro++",
  14252. height: math.unit(4000, "feet")
  14253. },
  14254. {
  14255. name: "Megamacro",
  14256. height: math.unit(3, "miles")
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14262. {
  14263. front: {
  14264. height: math.unit(6, "feet"),
  14265. weight: math.unit(150, "lb"),
  14266. name: "Front",
  14267. image: {
  14268. source: "./media/characters/isaac/front.svg",
  14269. extra: 896 / 815,
  14270. bottom: 0.11
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Human Size",
  14277. height: math.unit(8, "feet"),
  14278. default: true
  14279. },
  14280. {
  14281. name: "Macro",
  14282. height: math.unit(400, "feet")
  14283. },
  14284. {
  14285. name: "Megamacro",
  14286. height: math.unit(50, "miles")
  14287. },
  14288. {
  14289. name: "Canon Height",
  14290. height: math.unit(200, "AU")
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(6, "feet"),
  14299. weight: math.unit(72, "kg"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/sleekit/front.svg",
  14303. extra: 4693 / 4487,
  14304. bottom: 0.012
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Minimum Height",
  14311. height: math.unit(10, "meters")
  14312. },
  14313. {
  14314. name: "Smaller",
  14315. height: math.unit(25, "meters")
  14316. },
  14317. {
  14318. name: "Larger",
  14319. height: math.unit(38, "meters"),
  14320. default: true
  14321. },
  14322. {
  14323. name: "Maximum height",
  14324. height: math.unit(100, "meters")
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14330. {
  14331. front: {
  14332. height: math.unit(6, "feet"),
  14333. weight: math.unit(150, "lb"),
  14334. name: "Front",
  14335. image: {
  14336. source: "./media/characters/nillia/front.svg",
  14337. extra: 2195 / 2037,
  14338. bottom: 0.005
  14339. }
  14340. },
  14341. back: {
  14342. height: math.unit(6, "feet"),
  14343. weight: math.unit(150, "lb"),
  14344. name: "Back",
  14345. image: {
  14346. source: "./media/characters/nillia/back.svg",
  14347. extra: 2195 / 2037,
  14348. bottom: 0.005
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Canon Height",
  14355. height: math.unit(489, "feet"),
  14356. default: true
  14357. }
  14358. ]
  14359. ))
  14360. characterMakers.push(() => makeCharacter(
  14361. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14362. {
  14363. front: {
  14364. height: math.unit(6, "feet"),
  14365. weight: math.unit(150, "lb"),
  14366. name: "Front",
  14367. image: {
  14368. source: "./media/characters/mesmyriza/front.svg",
  14369. extra: 2067 / 1784,
  14370. bottom: 0.035
  14371. }
  14372. },
  14373. foot: {
  14374. height: math.unit(6 / (250 / 35), "feet"),
  14375. name: "Foot",
  14376. image: {
  14377. source: "./media/characters/mesmyriza/foot.svg"
  14378. }
  14379. },
  14380. },
  14381. [
  14382. {
  14383. name: "Macro",
  14384. height: math.unit(457, "meters"),
  14385. default: true
  14386. },
  14387. {
  14388. name: "Megamacro",
  14389. height: math.unit(8, "megameters")
  14390. },
  14391. ]
  14392. ))
  14393. characterMakers.push(() => makeCharacter(
  14394. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14395. {
  14396. front: {
  14397. height: math.unit(6, "feet"),
  14398. weight: math.unit(250, "lb"),
  14399. name: "Front",
  14400. image: {
  14401. source: "./media/characters/saudade/front.svg",
  14402. extra: 1172 / 1139,
  14403. bottom: 0.035
  14404. }
  14405. },
  14406. },
  14407. [
  14408. {
  14409. name: "Micro",
  14410. height: math.unit(3, "inches")
  14411. },
  14412. {
  14413. name: "Normal",
  14414. height: math.unit(6, "feet"),
  14415. default: true
  14416. },
  14417. {
  14418. name: "Macro",
  14419. height: math.unit(50, "feet")
  14420. },
  14421. {
  14422. name: "Megamacro",
  14423. height: math.unit(2800, "feet")
  14424. },
  14425. ]
  14426. ))
  14427. characterMakers.push(() => makeCharacter(
  14428. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14429. {
  14430. front: {
  14431. height: math.unit(5 + 4 / 12, "feet"),
  14432. weight: math.unit(100, "lb"),
  14433. name: "Front",
  14434. image: {
  14435. source: "./media/characters/keireer/front.svg",
  14436. extra: 716 / 666,
  14437. bottom: 0.05
  14438. }
  14439. },
  14440. },
  14441. [
  14442. {
  14443. name: "Normal",
  14444. height: math.unit(5 + 4 / 12, "feet"),
  14445. default: true
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14451. {
  14452. front: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(90, "kg"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/mirja/front.svg",
  14458. extra: 1789 / 1683,
  14459. bottom: 0.05
  14460. }
  14461. },
  14462. frontDressed: {
  14463. height: math.unit(6, "feet"),
  14464. weight: math.unit(90, "lb"),
  14465. name: "Front (Dressed)",
  14466. image: {
  14467. source: "./media/characters/mirja/front-dressed.svg",
  14468. extra: 1789 / 1683,
  14469. bottom: 0.05
  14470. }
  14471. },
  14472. back: {
  14473. height: math.unit(6, "feet"),
  14474. weight: math.unit(90, "lb"),
  14475. name: "Back",
  14476. image: {
  14477. source: "./media/characters/mirja/back.svg",
  14478. extra: 953 / 917,
  14479. bottom: 0.017
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "\"Incognito\"",
  14486. height: math.unit(3, "meters")
  14487. },
  14488. {
  14489. name: "Strolling Size",
  14490. height: math.unit(15, "km")
  14491. },
  14492. {
  14493. name: "Larger Strolling Size",
  14494. height: math.unit(400, "km")
  14495. },
  14496. {
  14497. name: "Preferred Size",
  14498. height: math.unit(5000, "km")
  14499. },
  14500. {
  14501. name: "True Size",
  14502. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14503. default: true
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14509. {
  14510. front: {
  14511. height: math.unit(15, "feet"),
  14512. weight: math.unit(880, "kg"),
  14513. name: "Front",
  14514. image: {
  14515. source: "./media/characters/nightraver/front.svg",
  14516. extra: 2444 / 2160,
  14517. bottom: 0.027
  14518. }
  14519. },
  14520. back: {
  14521. height: math.unit(15, "feet"),
  14522. weight: math.unit(880, "kg"),
  14523. name: "Back",
  14524. image: {
  14525. source: "./media/characters/nightraver/back.svg",
  14526. extra: 2309 / 2180,
  14527. bottom: 0.005
  14528. }
  14529. },
  14530. sole: {
  14531. height: math.unit(2.878, "feet"),
  14532. name: "Sole",
  14533. image: {
  14534. source: "./media/characters/nightraver/sole.svg"
  14535. }
  14536. },
  14537. foot: {
  14538. height: math.unit(2.285, "feet"),
  14539. name: "Foot",
  14540. image: {
  14541. source: "./media/characters/nightraver/foot.svg"
  14542. }
  14543. },
  14544. maw: {
  14545. height: math.unit(2.67, "feet"),
  14546. name: "Maw",
  14547. image: {
  14548. source: "./media/characters/nightraver/maw.svg"
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Micro",
  14555. height: math.unit(1, "cm")
  14556. },
  14557. {
  14558. name: "Normal",
  14559. height: math.unit(15, "feet"),
  14560. default: true
  14561. },
  14562. {
  14563. name: "Macro",
  14564. height: math.unit(300, "feet")
  14565. },
  14566. {
  14567. name: "Megamacro",
  14568. height: math.unit(300, "miles")
  14569. },
  14570. {
  14571. name: "Gigamacro",
  14572. height: math.unit(10000, "miles")
  14573. },
  14574. ]
  14575. ))
  14576. characterMakers.push(() => makeCharacter(
  14577. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14578. {
  14579. side: {
  14580. height: math.unit(2, "inches"),
  14581. weight: math.unit(5, "grams"),
  14582. name: "Side",
  14583. image: {
  14584. source: "./media/characters/arc/side.svg"
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Micro",
  14591. height: math.unit(2, "inches"),
  14592. default: true
  14593. },
  14594. ]
  14595. ))
  14596. characterMakers.push(() => makeCharacter(
  14597. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14598. {
  14599. front: {
  14600. height: math.unit(1.1938, "meters"),
  14601. weight: math.unit(54, "kg"),
  14602. name: "Front",
  14603. image: {
  14604. source: "./media/characters/nebula-shahar/front.svg",
  14605. extra: 1642 / 1436,
  14606. bottom: 0.06
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Megamicro",
  14613. height: math.unit(0.3, "mm")
  14614. },
  14615. {
  14616. name: "Micro",
  14617. height: math.unit(3, "cm")
  14618. },
  14619. {
  14620. name: "Normal",
  14621. height: math.unit(138, "cm"),
  14622. default: true
  14623. },
  14624. {
  14625. name: "Macro",
  14626. height: math.unit(30, "m")
  14627. },
  14628. ]
  14629. ))
  14630. characterMakers.push(() => makeCharacter(
  14631. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14632. {
  14633. front: {
  14634. height: math.unit(5.24, "feet"),
  14635. weight: math.unit(150, "lb"),
  14636. name: "Front",
  14637. image: {
  14638. source: "./media/characters/shayla/front.svg",
  14639. extra: 1512 / 1414,
  14640. bottom: 0.01
  14641. }
  14642. },
  14643. back: {
  14644. height: math.unit(5.24, "feet"),
  14645. weight: math.unit(150, "lb"),
  14646. name: "Back",
  14647. image: {
  14648. source: "./media/characters/shayla/back.svg",
  14649. extra: 1512 / 1414
  14650. }
  14651. },
  14652. hand: {
  14653. height: math.unit(0.7781496062992126, "feet"),
  14654. name: "Hand",
  14655. image: {
  14656. source: "./media/characters/shayla/hand.svg"
  14657. }
  14658. },
  14659. foot: {
  14660. height: math.unit(1.4206036745406823, "feet"),
  14661. name: "Foot",
  14662. image: {
  14663. source: "./media/characters/shayla/foot.svg"
  14664. }
  14665. },
  14666. },
  14667. [
  14668. {
  14669. name: "Micro",
  14670. height: math.unit(0.32, "feet")
  14671. },
  14672. {
  14673. name: "Normal",
  14674. height: math.unit(5.24, "feet"),
  14675. default: true
  14676. },
  14677. {
  14678. name: "Macro",
  14679. height: math.unit(492.12, "feet")
  14680. },
  14681. {
  14682. name: "Megamacro",
  14683. height: math.unit(186.41, "miles")
  14684. },
  14685. ]
  14686. ))
  14687. characterMakers.push(() => makeCharacter(
  14688. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14689. {
  14690. front: {
  14691. height: math.unit(2.2, "m"),
  14692. weight: math.unit(120, "kg"),
  14693. name: "Front",
  14694. image: {
  14695. source: "./media/characters/pia-jr/front.svg",
  14696. extra: 1000 / 970,
  14697. bottom: 0.035
  14698. }
  14699. },
  14700. hand: {
  14701. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14702. name: "Hand",
  14703. image: {
  14704. source: "./media/characters/pia-jr/hand.svg"
  14705. }
  14706. },
  14707. paw: {
  14708. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14709. name: "Paw",
  14710. image: {
  14711. source: "./media/characters/pia-jr/paw.svg"
  14712. }
  14713. },
  14714. },
  14715. [
  14716. {
  14717. name: "Micro",
  14718. height: math.unit(1.2, "cm")
  14719. },
  14720. {
  14721. name: "Normal",
  14722. height: math.unit(2.2, "m"),
  14723. default: true
  14724. },
  14725. {
  14726. name: "Macro",
  14727. height: math.unit(180, "m")
  14728. },
  14729. {
  14730. name: "Megamacro",
  14731. height: math.unit(420, "km")
  14732. },
  14733. ]
  14734. ))
  14735. characterMakers.push(() => makeCharacter(
  14736. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14737. {
  14738. front: {
  14739. height: math.unit(2, "m"),
  14740. weight: math.unit(115, "kg"),
  14741. name: "Front",
  14742. image: {
  14743. source: "./media/characters/pia-sr/front.svg",
  14744. extra: 760 / 730,
  14745. bottom: 0.015
  14746. }
  14747. },
  14748. back: {
  14749. height: math.unit(2, "m"),
  14750. weight: math.unit(115, "kg"),
  14751. name: "Back",
  14752. image: {
  14753. source: "./media/characters/pia-sr/back.svg",
  14754. extra: 760 / 730,
  14755. bottom: 0.01
  14756. }
  14757. },
  14758. hand: {
  14759. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14760. name: "Hand",
  14761. image: {
  14762. source: "./media/characters/pia-sr/hand.svg"
  14763. }
  14764. },
  14765. foot: {
  14766. height: math.unit(1.83, "feet"),
  14767. name: "Foot",
  14768. image: {
  14769. source: "./media/characters/pia-sr/foot.svg"
  14770. }
  14771. },
  14772. },
  14773. [
  14774. {
  14775. name: "Micro",
  14776. height: math.unit(88, "mm")
  14777. },
  14778. {
  14779. name: "Normal",
  14780. height: math.unit(2, "m"),
  14781. default: true
  14782. },
  14783. {
  14784. name: "Macro",
  14785. height: math.unit(200, "m")
  14786. },
  14787. {
  14788. name: "Megamacro",
  14789. height: math.unit(420, "km")
  14790. },
  14791. ]
  14792. ))
  14793. characterMakers.push(() => makeCharacter(
  14794. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14795. {
  14796. front: {
  14797. height: math.unit(8 + 2 / 12, "feet"),
  14798. weight: math.unit(300, "lb"),
  14799. name: "Front",
  14800. image: {
  14801. source: "./media/characters/kibibyte/front.svg",
  14802. extra: 2221 / 2098,
  14803. bottom: 0.04
  14804. }
  14805. },
  14806. },
  14807. [
  14808. {
  14809. name: "Normal",
  14810. height: math.unit(8 + 2 / 12, "feet"),
  14811. default: true
  14812. },
  14813. {
  14814. name: "Socialable Macro",
  14815. height: math.unit(50, "feet")
  14816. },
  14817. {
  14818. name: "Macro",
  14819. height: math.unit(300, "feet")
  14820. },
  14821. {
  14822. name: "Megamacro",
  14823. height: math.unit(500, "miles")
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14829. {
  14830. front: {
  14831. height: math.unit(6, "feet"),
  14832. weight: math.unit(150, "lb"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/felix/front.svg",
  14836. extra: 762 / 722,
  14837. bottom: 0.02
  14838. }
  14839. },
  14840. frontClothed: {
  14841. height: math.unit(6, "feet"),
  14842. weight: math.unit(150, "lb"),
  14843. name: "Front (Clothed)",
  14844. image: {
  14845. source: "./media/characters/felix/front-clothed.svg",
  14846. extra: 762 / 722,
  14847. bottom: 0.02
  14848. }
  14849. },
  14850. },
  14851. [
  14852. {
  14853. name: "Normal",
  14854. height: math.unit(6 + 8 / 12, "feet"),
  14855. default: true
  14856. },
  14857. {
  14858. name: "Macro",
  14859. height: math.unit(2600, "feet")
  14860. },
  14861. {
  14862. name: "Megamacro",
  14863. height: math.unit(450, "miles")
  14864. },
  14865. ]
  14866. ))
  14867. characterMakers.push(() => makeCharacter(
  14868. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14869. {
  14870. front: {
  14871. height: math.unit(6 + 1 / 12, "feet"),
  14872. weight: math.unit(250, "lb"),
  14873. name: "Front",
  14874. image: {
  14875. source: "./media/characters/tobo/front.svg",
  14876. extra: 608 / 586,
  14877. bottom: 0.023
  14878. }
  14879. },
  14880. back: {
  14881. height: math.unit(6 + 1 / 12, "feet"),
  14882. weight: math.unit(250, "lb"),
  14883. name: "Back",
  14884. image: {
  14885. source: "./media/characters/tobo/back.svg",
  14886. extra: 608 / 586
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Nano",
  14893. height: math.unit(2, "nm")
  14894. },
  14895. {
  14896. name: "Megamicro",
  14897. height: math.unit(0.1, "mm")
  14898. },
  14899. {
  14900. name: "Micro",
  14901. height: math.unit(1, "inch"),
  14902. default: true
  14903. },
  14904. {
  14905. name: "Human-sized",
  14906. height: math.unit(6 + 1 / 12, "feet")
  14907. },
  14908. {
  14909. name: "Macro",
  14910. height: math.unit(250, "feet")
  14911. },
  14912. {
  14913. name: "Megamacro",
  14914. height: math.unit(75, "miles")
  14915. },
  14916. {
  14917. name: "Texas-sized",
  14918. height: math.unit(750, "miles")
  14919. },
  14920. {
  14921. name: "Teramacro",
  14922. height: math.unit(50000, "miles")
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14928. {
  14929. front: {
  14930. height: math.unit(6, "feet"),
  14931. weight: math.unit(269, "lb"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/danny-kapowsky/front.svg",
  14935. extra: 766 / 736,
  14936. bottom: 0.044
  14937. }
  14938. },
  14939. back: {
  14940. height: math.unit(6, "feet"),
  14941. weight: math.unit(269, "lb"),
  14942. name: "Back",
  14943. image: {
  14944. source: "./media/characters/danny-kapowsky/back.svg",
  14945. extra: 797 / 760,
  14946. bottom: 0.025
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Macro",
  14953. height: math.unit(150, "feet"),
  14954. default: true
  14955. },
  14956. {
  14957. name: "Macro+",
  14958. height: math.unit(200, "feet")
  14959. },
  14960. {
  14961. name: "Macro++",
  14962. height: math.unit(300, "feet")
  14963. },
  14964. {
  14965. name: "Macro+++",
  14966. height: math.unit(400, "feet")
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14972. {
  14973. side: {
  14974. height: math.unit(6, "feet"),
  14975. weight: math.unit(170, "lb"),
  14976. name: "Side",
  14977. image: {
  14978. source: "./media/characters/finn/side.svg",
  14979. extra: 1953 / 1807,
  14980. bottom: 0.057
  14981. }
  14982. },
  14983. },
  14984. [
  14985. {
  14986. name: "Megamacro",
  14987. height: math.unit(14445, "feet"),
  14988. default: true
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14994. {
  14995. front: {
  14996. height: math.unit(5 + 6 / 12, "feet"),
  14997. weight: math.unit(125, "lb"),
  14998. name: "Front",
  14999. image: {
  15000. source: "./media/characters/roy/front.svg",
  15001. extra: 1,
  15002. bottom: 0.11
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Micro",
  15009. height: math.unit(3, "inches"),
  15010. default: true
  15011. },
  15012. {
  15013. name: "Normal",
  15014. height: math.unit(5 + 6 / 12, "feet")
  15015. },
  15016. {
  15017. name: "Lesser Macro",
  15018. height: math.unit(60, "feet")
  15019. },
  15020. {
  15021. name: "Greater Macro",
  15022. height: math.unit(120, "feet")
  15023. },
  15024. ]
  15025. ))
  15026. characterMakers.push(() => makeCharacter(
  15027. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15028. {
  15029. front: {
  15030. height: math.unit(6, "feet"),
  15031. weight: math.unit(100, "lb"),
  15032. name: "Front",
  15033. image: {
  15034. source: "./media/characters/aevsivs/front.svg",
  15035. extra: 1,
  15036. bottom: 0.03
  15037. }
  15038. },
  15039. back: {
  15040. height: math.unit(6, "feet"),
  15041. weight: math.unit(100, "lb"),
  15042. name: "Back",
  15043. image: {
  15044. source: "./media/characters/aevsivs/back.svg"
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Micro",
  15051. height: math.unit(2, "inches"),
  15052. default: true
  15053. },
  15054. {
  15055. name: "Normal",
  15056. height: math.unit(5, "feet")
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15062. {
  15063. front: {
  15064. height: math.unit(5 + 7 / 12, "feet"),
  15065. weight: math.unit(159, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/hildegard/front.svg",
  15069. extra: 289 / 269,
  15070. bottom: 7.63 / 297.8
  15071. }
  15072. },
  15073. back: {
  15074. height: math.unit(5 + 7 / 12, "feet"),
  15075. weight: math.unit(159, "lb"),
  15076. name: "Back",
  15077. image: {
  15078. source: "./media/characters/hildegard/back.svg",
  15079. extra: 280 / 260,
  15080. bottom: 2.3 / 282
  15081. }
  15082. },
  15083. },
  15084. [
  15085. {
  15086. name: "Normal",
  15087. height: math.unit(5 + 7 / 12, "feet"),
  15088. default: true
  15089. },
  15090. ]
  15091. ))
  15092. characterMakers.push(() => makeCharacter(
  15093. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15094. {
  15095. bernard: {
  15096. height: math.unit(2 + 7 / 12, "feet"),
  15097. weight: math.unit(66, "lb"),
  15098. name: "Bernard",
  15099. rename: true,
  15100. image: {
  15101. source: "./media/characters/bernard-wilder/bernard.svg",
  15102. extra: 192 / 128,
  15103. bottom: 0.05
  15104. }
  15105. },
  15106. wilder: {
  15107. height: math.unit(5 + 8 / 12, "feet"),
  15108. weight: math.unit(143, "lb"),
  15109. name: "Wilder",
  15110. rename: true,
  15111. image: {
  15112. source: "./media/characters/bernard-wilder/wilder.svg",
  15113. extra: 361 / 312,
  15114. bottom: 0.02
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Normal",
  15121. height: math.unit(2 + 7 / 12, "feet"),
  15122. default: true
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15128. {
  15129. anthro: {
  15130. height: math.unit(6 + 1 / 12, "feet"),
  15131. weight: math.unit(155, "lb"),
  15132. name: "Anthro",
  15133. image: {
  15134. source: "./media/characters/hearth/anthro.svg",
  15135. extra: 1178/1136,
  15136. bottom: 28/1206
  15137. }
  15138. },
  15139. feral: {
  15140. height: math.unit(3.78, "feet"),
  15141. weight: math.unit(35, "kg"),
  15142. name: "Feral",
  15143. image: {
  15144. source: "./media/characters/hearth/feral.svg",
  15145. extra: 153 / 135,
  15146. bottom: 0.03
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(6 + 1 / 12, "feet"),
  15154. default: true
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15160. {
  15161. front: {
  15162. height: math.unit(6, "feet"),
  15163. weight: math.unit(182, "lb"),
  15164. name: "Front",
  15165. image: {
  15166. source: "./media/characters/ingrid/front.svg",
  15167. extra: 294 / 268,
  15168. bottom: 0.027
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Normal",
  15175. height: math.unit(6, "feet"),
  15176. default: true
  15177. },
  15178. ]
  15179. ))
  15180. characterMakers.push(() => makeCharacter(
  15181. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15182. {
  15183. eevee: {
  15184. height: math.unit(2 + 10 / 12, "feet"),
  15185. weight: math.unit(86, "lb"),
  15186. name: "Malgam",
  15187. image: {
  15188. source: "./media/characters/malgam/eevee.svg",
  15189. extra: 952/784,
  15190. bottom: 38/990
  15191. }
  15192. },
  15193. sylveon: {
  15194. height: math.unit(4, "feet"),
  15195. weight: math.unit(101, "lb"),
  15196. name: "Future Malgam",
  15197. rename: true,
  15198. image: {
  15199. source: "./media/characters/malgam/sylveon.svg",
  15200. extra: 371 / 325,
  15201. bottom: 0.015
  15202. }
  15203. },
  15204. gigantamax: {
  15205. height: math.unit(50, "feet"),
  15206. name: "Gigantamax Malgam",
  15207. rename: true,
  15208. image: {
  15209. source: "./media/characters/malgam/gigantamax.svg"
  15210. }
  15211. },
  15212. },
  15213. [
  15214. {
  15215. name: "Normal",
  15216. height: math.unit(2 + 10 / 12, "feet"),
  15217. default: true
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(5 + 11 / 12, "feet"),
  15226. weight: math.unit(188, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/fleur/front.svg",
  15230. extra: 309 / 283,
  15231. bottom: 0.007
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Normal",
  15238. height: math.unit(5 + 11 / 12, "feet"),
  15239. default: true
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15245. {
  15246. front: {
  15247. height: math.unit(5 + 4 / 12, "feet"),
  15248. weight: math.unit(122, "lb"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/jude/front.svg",
  15252. extra: 288 / 273,
  15253. bottom: 0.03
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Normal",
  15260. height: math.unit(5 + 4 / 12, "feet"),
  15261. default: true
  15262. },
  15263. ]
  15264. ))
  15265. characterMakers.push(() => makeCharacter(
  15266. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15267. {
  15268. front: {
  15269. height: math.unit(5 + 11 / 12, "feet"),
  15270. weight: math.unit(190, "lb"),
  15271. name: "Front",
  15272. image: {
  15273. source: "./media/characters/seara/front.svg",
  15274. extra: 1,
  15275. bottom: 0.05
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(5 + 11 / 12, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15289. {
  15290. front: {
  15291. height: math.unit(16 + 5 / 12, "feet"),
  15292. weight: math.unit(524, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/caspian/front.svg",
  15296. extra: 1,
  15297. bottom: 0.04
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(16 + 5 / 12, "feet"),
  15305. default: true
  15306. },
  15307. ]
  15308. ))
  15309. characterMakers.push(() => makeCharacter(
  15310. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15311. {
  15312. front: {
  15313. height: math.unit(5 + 7 / 12, "feet"),
  15314. weight: math.unit(170, "lb"),
  15315. name: "Front",
  15316. image: {
  15317. source: "./media/characters/mika/front.svg",
  15318. extra: 1,
  15319. bottom: 0.016
  15320. }
  15321. },
  15322. },
  15323. [
  15324. {
  15325. name: "Normal",
  15326. height: math.unit(5 + 7 / 12, "feet"),
  15327. default: true
  15328. },
  15329. ]
  15330. ))
  15331. characterMakers.push(() => makeCharacter(
  15332. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15333. {
  15334. front: {
  15335. height: math.unit(6 + 2 / 12, "feet"),
  15336. weight: math.unit(268, "lb"),
  15337. name: "Front",
  15338. image: {
  15339. source: "./media/characters/sol/front.svg",
  15340. extra: 247 / 231,
  15341. bottom: 0.05
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(6 + 2 / 12, "feet"),
  15349. default: true
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15355. {
  15356. buizel: {
  15357. height: math.unit(2 + 5 / 12, "feet"),
  15358. weight: math.unit(87, "lb"),
  15359. name: "Buizel",
  15360. image: {
  15361. source: "./media/characters/umiko/buizel.svg",
  15362. extra: 172 / 157,
  15363. bottom: 0.01
  15364. }
  15365. },
  15366. floatzel: {
  15367. height: math.unit(5 + 9 / 12, "feet"),
  15368. weight: math.unit(250, "lb"),
  15369. name: "Floatzel",
  15370. image: {
  15371. source: "./media/characters/umiko/floatzel.svg",
  15372. extra: 262 / 248
  15373. }
  15374. },
  15375. },
  15376. [
  15377. {
  15378. name: "Normal",
  15379. height: math.unit(2 + 5 / 12, "feet"),
  15380. default: true
  15381. },
  15382. ]
  15383. ))
  15384. characterMakers.push(() => makeCharacter(
  15385. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15386. {
  15387. front: {
  15388. height: math.unit(6 + 2 / 12, "feet"),
  15389. weight: math.unit(146, "lb"),
  15390. name: "Front",
  15391. image: {
  15392. source: "./media/characters/iliac/front.svg",
  15393. extra: 389 / 365,
  15394. bottom: 0.035
  15395. }
  15396. },
  15397. },
  15398. [
  15399. {
  15400. name: "Normal",
  15401. height: math.unit(6 + 2 / 12, "feet"),
  15402. default: true
  15403. },
  15404. ]
  15405. ))
  15406. characterMakers.push(() => makeCharacter(
  15407. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15408. {
  15409. front: {
  15410. height: math.unit(6, "feet"),
  15411. weight: math.unit(170, "lb"),
  15412. name: "Front",
  15413. image: {
  15414. source: "./media/characters/topaz/front.svg",
  15415. extra: 317 / 303,
  15416. bottom: 0.055
  15417. }
  15418. },
  15419. },
  15420. [
  15421. {
  15422. name: "Normal",
  15423. height: math.unit(6, "feet"),
  15424. default: true
  15425. },
  15426. ]
  15427. ))
  15428. characterMakers.push(() => makeCharacter(
  15429. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15430. {
  15431. front: {
  15432. height: math.unit(5 + 11 / 12, "feet"),
  15433. weight: math.unit(144, "lb"),
  15434. name: "Front",
  15435. image: {
  15436. source: "./media/characters/gabriel/front.svg",
  15437. extra: 285 / 262,
  15438. bottom: 0.004
  15439. }
  15440. },
  15441. },
  15442. [
  15443. {
  15444. name: "Normal",
  15445. height: math.unit(5 + 11 / 12, "feet"),
  15446. default: true
  15447. },
  15448. ]
  15449. ))
  15450. characterMakers.push(() => makeCharacter(
  15451. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15452. {
  15453. side: {
  15454. height: math.unit(6 + 5 / 12, "feet"),
  15455. weight: math.unit(300, "lb"),
  15456. name: "Side",
  15457. image: {
  15458. source: "./media/characters/tempest-suicune/side.svg",
  15459. extra: 195 / 154,
  15460. bottom: 0.04
  15461. }
  15462. },
  15463. },
  15464. [
  15465. {
  15466. name: "Normal",
  15467. height: math.unit(6 + 5 / 12, "feet"),
  15468. default: true
  15469. },
  15470. ]
  15471. ))
  15472. characterMakers.push(() => makeCharacter(
  15473. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15474. {
  15475. front: {
  15476. height: math.unit(7 + 2 / 12, "feet"),
  15477. weight: math.unit(322, "lb"),
  15478. name: "Front",
  15479. image: {
  15480. source: "./media/characters/vulcan/front.svg",
  15481. extra: 154 / 147,
  15482. bottom: 0.04
  15483. }
  15484. },
  15485. },
  15486. [
  15487. {
  15488. name: "Normal",
  15489. height: math.unit(7 + 2 / 12, "feet"),
  15490. default: true
  15491. },
  15492. ]
  15493. ))
  15494. characterMakers.push(() => makeCharacter(
  15495. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15496. {
  15497. front: {
  15498. height: math.unit(5 + 10 / 12, "feet"),
  15499. weight: math.unit(264, "lb"),
  15500. name: "Front",
  15501. image: {
  15502. source: "./media/characters/gault/front.svg",
  15503. extra: 161 / 140,
  15504. bottom: 0.028
  15505. }
  15506. },
  15507. },
  15508. [
  15509. {
  15510. name: "Normal",
  15511. height: math.unit(5 + 10 / 12, "feet"),
  15512. default: true
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(6, "feet"),
  15521. weight: math.unit(150, "lb"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/shard/front.svg",
  15525. extra: 273 / 238,
  15526. bottom: 0.02
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Normal",
  15533. height: math.unit(3 + 6 / 12, "feet"),
  15534. default: true
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(5 + 11 / 12, "feet"),
  15543. weight: math.unit(146, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/ashe/front.svg",
  15547. extra: 400 / 373,
  15548. bottom: 0.01
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Normal",
  15555. height: math.unit(5 + 11 / 12, "feet"),
  15556. default: true
  15557. },
  15558. ]
  15559. ))
  15560. characterMakers.push(() => makeCharacter(
  15561. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15562. {
  15563. front: {
  15564. height: math.unit(5 + 5 / 12, "feet"),
  15565. weight: math.unit(135, "lb"),
  15566. name: "Front",
  15567. image: {
  15568. source: "./media/characters/beatrix/front.svg",
  15569. extra: 392 / 379,
  15570. bottom: 0.01
  15571. }
  15572. },
  15573. },
  15574. [
  15575. {
  15576. name: "Normal",
  15577. height: math.unit(6, "feet"),
  15578. default: true
  15579. },
  15580. ]
  15581. ))
  15582. characterMakers.push(() => makeCharacter(
  15583. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15584. {
  15585. front: {
  15586. height: math.unit(6 + 2/12, "feet"),
  15587. weight: math.unit(135, "lb"),
  15588. name: "Front",
  15589. image: {
  15590. source: "./media/characters/ignatius/front.svg",
  15591. extra: 1380/1259,
  15592. bottom: 27/1407
  15593. }
  15594. },
  15595. },
  15596. [
  15597. {
  15598. name: "Normal",
  15599. height: math.unit(6 + 2/12, "feet"),
  15600. default: true
  15601. },
  15602. ]
  15603. ))
  15604. characterMakers.push(() => makeCharacter(
  15605. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15606. {
  15607. front: {
  15608. height: math.unit(6 + 2 / 12, "feet"),
  15609. weight: math.unit(138, "lb"),
  15610. name: "Front",
  15611. image: {
  15612. source: "./media/characters/mei-li/front.svg",
  15613. extra: 237 / 229,
  15614. bottom: 0.03
  15615. }
  15616. },
  15617. },
  15618. [
  15619. {
  15620. name: "Normal",
  15621. height: math.unit(6 + 2 / 12, "feet"),
  15622. default: true
  15623. },
  15624. ]
  15625. ))
  15626. characterMakers.push(() => makeCharacter(
  15627. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15628. {
  15629. front: {
  15630. height: math.unit(2 + 4 / 12, "feet"),
  15631. weight: math.unit(62, "lb"),
  15632. name: "Front",
  15633. image: {
  15634. source: "./media/characters/puru/front.svg",
  15635. extra: 206 / 149,
  15636. bottom: 0.06
  15637. }
  15638. },
  15639. },
  15640. [
  15641. {
  15642. name: "Normal",
  15643. height: math.unit(2 + 4 / 12, "feet"),
  15644. default: true
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15650. {
  15651. anthro: {
  15652. height: math.unit(5 + 8/12, "feet"),
  15653. weight: math.unit(200, "lb"),
  15654. energyNeed: math.unit(2000, "kcal"),
  15655. name: "Anthro",
  15656. image: {
  15657. source: "./media/characters/kee/anthro.svg",
  15658. extra: 3251/3184,
  15659. bottom: 250/3501
  15660. }
  15661. },
  15662. taur: {
  15663. height: math.unit(11, "feet"),
  15664. weight: math.unit(500, "lb"),
  15665. energyNeed: math.unit(5000, "kcal"),
  15666. name: "Taur",
  15667. image: {
  15668. source: "./media/characters/kee/taur.svg",
  15669. extra: 1362/1320,
  15670. bottom: 83/1445
  15671. }
  15672. },
  15673. },
  15674. [
  15675. {
  15676. name: "Normal",
  15677. height: math.unit(5 + 8/12, "feet"),
  15678. default: true
  15679. },
  15680. {
  15681. name: "Macro",
  15682. height: math.unit(35, "feet")
  15683. },
  15684. ]
  15685. ))
  15686. characterMakers.push(() => makeCharacter(
  15687. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15688. {
  15689. anthro: {
  15690. height: math.unit(7, "feet"),
  15691. weight: math.unit(190, "lb"),
  15692. name: "Anthro",
  15693. image: {
  15694. source: "./media/characters/cobalt-dracha/anthro.svg",
  15695. extra: 231 / 225,
  15696. bottom: 0.04
  15697. }
  15698. },
  15699. feral: {
  15700. height: math.unit(9 + 7 / 12, "feet"),
  15701. weight: math.unit(294, "lb"),
  15702. name: "Feral",
  15703. image: {
  15704. source: "./media/characters/cobalt-dracha/feral.svg",
  15705. extra: 692 / 633,
  15706. bottom: 0.05
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(7, "feet"),
  15714. default: true
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15720. {
  15721. fallen: {
  15722. height: math.unit(11 + 8 / 12, "feet"),
  15723. weight: math.unit(485, "lb"),
  15724. name: "Java (Fallen)",
  15725. rename: true,
  15726. image: {
  15727. source: "./media/characters/java/fallen.svg",
  15728. extra: 226 / 208,
  15729. bottom: 0.005
  15730. }
  15731. },
  15732. godkin: {
  15733. height: math.unit(10 + 6 / 12, "feet"),
  15734. weight: math.unit(328, "lb"),
  15735. name: "Java (Godkin)",
  15736. rename: true,
  15737. image: {
  15738. source: "./media/characters/java/godkin.svg",
  15739. extra: 1104/1068,
  15740. bottom: 36/1140
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(11 + 8 / 12, "feet"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(5 + 9 / 12, "feet"),
  15757. weight: math.unit(170, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/purna/front.svg",
  15761. extra: 239 / 229,
  15762. bottom: 0.01
  15763. }
  15764. },
  15765. },
  15766. [
  15767. {
  15768. name: "Normal",
  15769. height: math.unit(5 + 9 / 12, "feet"),
  15770. default: true
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15776. {
  15777. front: {
  15778. height: math.unit(5 + 9 / 12, "feet"),
  15779. weight: math.unit(142, "lb"),
  15780. name: "Front",
  15781. image: {
  15782. source: "./media/characters/kuva/front.svg",
  15783. extra: 281 / 271,
  15784. bottom: 0.006
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Normal",
  15791. height: math.unit(5 + 9 / 12, "feet"),
  15792. default: true
  15793. },
  15794. ]
  15795. ))
  15796. characterMakers.push(() => makeCharacter(
  15797. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15798. {
  15799. anthro: {
  15800. height: math.unit(9 + 2 / 12, "feet"),
  15801. weight: math.unit(270, "lb"),
  15802. name: "Anthro",
  15803. image: {
  15804. source: "./media/characters/embra/anthro.svg",
  15805. extra: 200 / 187,
  15806. bottom: 0.02
  15807. }
  15808. },
  15809. feral: {
  15810. height: math.unit(18 + 8 / 12, "feet"),
  15811. weight: math.unit(576, "lb"),
  15812. name: "Feral",
  15813. image: {
  15814. source: "./media/characters/embra/feral.svg",
  15815. extra: 152 / 137,
  15816. bottom: 0.037
  15817. }
  15818. },
  15819. },
  15820. [
  15821. {
  15822. name: "Normal",
  15823. height: math.unit(9 + 2 / 12, "feet"),
  15824. default: true
  15825. },
  15826. ]
  15827. ))
  15828. characterMakers.push(() => makeCharacter(
  15829. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15830. {
  15831. anthro: {
  15832. height: math.unit(10 + 9 / 12, "feet"),
  15833. weight: math.unit(224, "lb"),
  15834. name: "Anthro",
  15835. image: {
  15836. source: "./media/characters/grottos/anthro.svg",
  15837. extra: 350 / 332,
  15838. bottom: 0.045
  15839. }
  15840. },
  15841. feral: {
  15842. height: math.unit(20 + 7 / 12, "feet"),
  15843. weight: math.unit(629, "lb"),
  15844. name: "Feral",
  15845. image: {
  15846. source: "./media/characters/grottos/feral.svg",
  15847. extra: 207 / 190,
  15848. bottom: 0.05
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(10 + 9 / 12, "feet"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15862. {
  15863. anthro: {
  15864. height: math.unit(9 + 6 / 12, "feet"),
  15865. weight: math.unit(298, "lb"),
  15866. name: "Anthro",
  15867. image: {
  15868. source: "./media/characters/frifna/anthro.svg",
  15869. extra: 282 / 269,
  15870. bottom: 0.015
  15871. }
  15872. },
  15873. feral: {
  15874. height: math.unit(16 + 2 / 12, "feet"),
  15875. weight: math.unit(624, "lb"),
  15876. name: "Feral",
  15877. image: {
  15878. source: "./media/characters/frifna/feral.svg"
  15879. }
  15880. },
  15881. },
  15882. [
  15883. {
  15884. name: "Normal",
  15885. height: math.unit(9 + 6 / 12, "feet"),
  15886. default: true
  15887. },
  15888. ]
  15889. ))
  15890. characterMakers.push(() => makeCharacter(
  15891. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15892. {
  15893. front: {
  15894. height: math.unit(6 + 2 / 12, "feet"),
  15895. weight: math.unit(168, "lb"),
  15896. name: "Front",
  15897. image: {
  15898. source: "./media/characters/elise/front.svg",
  15899. extra: 276 / 271
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Normal",
  15906. height: math.unit(6 + 2 / 12, "feet"),
  15907. default: true
  15908. },
  15909. ]
  15910. ))
  15911. characterMakers.push(() => makeCharacter(
  15912. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15913. {
  15914. front: {
  15915. height: math.unit(5 + 10 / 12, "feet"),
  15916. weight: math.unit(210, "lb"),
  15917. name: "Front",
  15918. image: {
  15919. source: "./media/characters/glade/front.svg",
  15920. extra: 258 / 247,
  15921. bottom: 0.008
  15922. }
  15923. },
  15924. },
  15925. [
  15926. {
  15927. name: "Normal",
  15928. height: math.unit(5 + 10 / 12, "feet"),
  15929. default: true
  15930. },
  15931. ]
  15932. ))
  15933. characterMakers.push(() => makeCharacter(
  15934. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15935. {
  15936. front: {
  15937. height: math.unit(5 + 10 / 12, "feet"),
  15938. weight: math.unit(129, "lb"),
  15939. name: "Front",
  15940. image: {
  15941. source: "./media/characters/rina/front.svg",
  15942. extra: 266 / 255,
  15943. bottom: 0.005
  15944. }
  15945. },
  15946. },
  15947. [
  15948. {
  15949. name: "Normal",
  15950. height: math.unit(5 + 10 / 12, "feet"),
  15951. default: true
  15952. },
  15953. ]
  15954. ))
  15955. characterMakers.push(() => makeCharacter(
  15956. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15957. {
  15958. front: {
  15959. height: math.unit(6 + 1 / 12, "feet"),
  15960. weight: math.unit(192, "lb"),
  15961. name: "Front",
  15962. image: {
  15963. source: "./media/characters/veronica/front.svg",
  15964. extra: 319 / 309,
  15965. bottom: 0.005
  15966. }
  15967. },
  15968. },
  15969. [
  15970. {
  15971. name: "Normal",
  15972. height: math.unit(6 + 1 / 12, "feet"),
  15973. default: true
  15974. },
  15975. ]
  15976. ))
  15977. characterMakers.push(() => makeCharacter(
  15978. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15979. {
  15980. front: {
  15981. height: math.unit(9 + 3 / 12, "feet"),
  15982. weight: math.unit(1100, "lb"),
  15983. name: "Front",
  15984. image: {
  15985. source: "./media/characters/braxton/front.svg",
  15986. extra: 1057 / 984,
  15987. bottom: 0.05
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Normal",
  15994. height: math.unit(9 + 3 / 12, "feet")
  15995. },
  15996. {
  15997. name: "Giant",
  15998. height: math.unit(300, "feet"),
  15999. default: true
  16000. },
  16001. {
  16002. name: "Macro",
  16003. height: math.unit(700, "feet")
  16004. },
  16005. {
  16006. name: "Megamacro",
  16007. height: math.unit(6000, "feet")
  16008. },
  16009. ]
  16010. ))
  16011. characterMakers.push(() => makeCharacter(
  16012. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16013. {
  16014. front: {
  16015. height: math.unit(6 + 7 / 12, "feet"),
  16016. weight: math.unit(150, "lb"),
  16017. name: "Front",
  16018. image: {
  16019. source: "./media/characters/blue-feyonics/front.svg",
  16020. extra: 1403 / 1306,
  16021. bottom: 0.047
  16022. }
  16023. },
  16024. },
  16025. [
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(6 + 7 / 12, "feet"),
  16029. default: true
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16035. {
  16036. front: {
  16037. height: math.unit(1.8, "meters"),
  16038. weight: math.unit(60, "kg"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/maxwell/front.svg",
  16042. extra: 2060 / 1873
  16043. }
  16044. },
  16045. },
  16046. [
  16047. {
  16048. name: "Micro",
  16049. height: math.unit(1, "mm")
  16050. },
  16051. {
  16052. name: "Normal",
  16053. height: math.unit(1.8, "meter"),
  16054. default: true
  16055. },
  16056. {
  16057. name: "Macro",
  16058. height: math.unit(30, "meters")
  16059. },
  16060. {
  16061. name: "Megamacro",
  16062. height: math.unit(10, "km")
  16063. },
  16064. ]
  16065. ))
  16066. characterMakers.push(() => makeCharacter(
  16067. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16068. {
  16069. front: {
  16070. height: math.unit(6, "feet"),
  16071. weight: math.unit(150, "lb"),
  16072. name: "Front",
  16073. image: {
  16074. source: "./media/characters/jack/front.svg",
  16075. extra: 1754 / 1640,
  16076. bottom: 0.01
  16077. }
  16078. },
  16079. },
  16080. [
  16081. {
  16082. name: "Normal",
  16083. height: math.unit(80000, "feet"),
  16084. default: true
  16085. },
  16086. {
  16087. name: "Max size",
  16088. height: math.unit(10, "lightyears")
  16089. },
  16090. ]
  16091. ))
  16092. characterMakers.push(() => makeCharacter(
  16093. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16094. {
  16095. urban: {
  16096. height: math.unit(5, "feet"),
  16097. weight: math.unit(240, "lb"),
  16098. name: "Urban",
  16099. image: {
  16100. source: "./media/characters/cafat/urban.svg",
  16101. extra: 1223/1126,
  16102. bottom: 205/1428
  16103. }
  16104. },
  16105. summer: {
  16106. height: math.unit(5, "feet"),
  16107. weight: math.unit(240, "lb"),
  16108. name: "Summer",
  16109. image: {
  16110. source: "./media/characters/cafat/summer.svg",
  16111. extra: 1223/1126,
  16112. bottom: 205/1428
  16113. }
  16114. },
  16115. winter: {
  16116. height: math.unit(5, "feet"),
  16117. weight: math.unit(240, "lb"),
  16118. name: "Winter",
  16119. image: {
  16120. source: "./media/characters/cafat/winter.svg",
  16121. extra: 1223/1126,
  16122. bottom: 205/1428
  16123. }
  16124. },
  16125. lingerie: {
  16126. height: math.unit(5, "feet"),
  16127. weight: math.unit(240, "lb"),
  16128. name: "Lingerie",
  16129. image: {
  16130. source: "./media/characters/cafat/lingerie.svg",
  16131. extra: 1223/1126,
  16132. bottom: 205/1428
  16133. }
  16134. },
  16135. upright: {
  16136. height: math.unit(6.3, "feet"),
  16137. weight: math.unit(240, "lb"),
  16138. name: "Upright",
  16139. image: {
  16140. source: "./media/characters/cafat/upright.svg",
  16141. bottom: 0.01
  16142. }
  16143. },
  16144. uprightFull: {
  16145. height: math.unit(6.3, "feet"),
  16146. weight: math.unit(240, "lb"),
  16147. name: "Upright (Full)",
  16148. image: {
  16149. source: "./media/characters/cafat/upright-full.svg",
  16150. bottom: 0.01
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Small",
  16157. height: math.unit(5, "feet"),
  16158. default: true
  16159. },
  16160. {
  16161. name: "Large",
  16162. height: math.unit(13, "feet")
  16163. },
  16164. ]
  16165. ))
  16166. characterMakers.push(() => makeCharacter(
  16167. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16168. {
  16169. front: {
  16170. height: math.unit(6, "feet"),
  16171. weight: math.unit(150, "lb"),
  16172. name: "Front",
  16173. image: {
  16174. source: "./media/characters/verin-raharra/front.svg",
  16175. extra: 5019 / 4835,
  16176. bottom: 0.023
  16177. }
  16178. },
  16179. },
  16180. [
  16181. {
  16182. name: "Normal",
  16183. height: math.unit(7 + 5 / 12, "feet"),
  16184. default: true
  16185. },
  16186. {
  16187. name: "Upsized",
  16188. height: math.unit(20, "feet")
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(7, "feet"),
  16197. weight: math.unit(230, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/nakata/front.svg",
  16201. extra: 1.005,
  16202. bottom: 0.01
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Normal",
  16209. height: math.unit(7, "feet"),
  16210. default: true
  16211. },
  16212. {
  16213. name: "Big",
  16214. height: math.unit(14, "feet")
  16215. },
  16216. {
  16217. name: "Macro",
  16218. height: math.unit(400, "feet")
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16224. {
  16225. front: {
  16226. height: math.unit(4.91, "feet"),
  16227. weight: math.unit(100, "lb"),
  16228. name: "Front",
  16229. image: {
  16230. source: "./media/characters/lily/front.svg",
  16231. extra: 1585 / 1415,
  16232. bottom: 0.02
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(4.91, "feet"),
  16240. default: true
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16246. {
  16247. laying: {
  16248. height: math.unit(4 + 4 / 12, "feet"),
  16249. weight: math.unit(600, "lb"),
  16250. name: "Laying",
  16251. image: {
  16252. source: "./media/characters/sheila/laying.svg",
  16253. extra: 1333 / 1265,
  16254. bottom: 0.16
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(4 + 4 / 12, "feet"),
  16262. default: true
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16268. {
  16269. front: {
  16270. height: math.unit(6, "feet"),
  16271. weight: math.unit(190, "lb"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/sax/front.svg",
  16275. extra: 1187 / 973,
  16276. bottom: 0.042
  16277. }
  16278. },
  16279. },
  16280. [
  16281. {
  16282. name: "Micro",
  16283. height: math.unit(4, "inches"),
  16284. default: true
  16285. },
  16286. ]
  16287. ))
  16288. characterMakers.push(() => makeCharacter(
  16289. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16290. {
  16291. front: {
  16292. height: math.unit(6, "feet"),
  16293. weight: math.unit(150, "lb"),
  16294. name: "Front",
  16295. image: {
  16296. source: "./media/characters/pandora/front.svg",
  16297. extra: 2720 / 2556,
  16298. bottom: 0.015
  16299. }
  16300. },
  16301. back: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(150, "lb"),
  16304. name: "Back",
  16305. image: {
  16306. source: "./media/characters/pandora/back.svg",
  16307. extra: 2720 / 2556,
  16308. bottom: 0.01
  16309. }
  16310. },
  16311. beans: {
  16312. height: math.unit(6 / 8, "feet"),
  16313. name: "Beans",
  16314. image: {
  16315. source: "./media/characters/pandora/beans.svg"
  16316. }
  16317. },
  16318. collar: {
  16319. height: math.unit(0.31, "feet"),
  16320. name: "Collar",
  16321. image: {
  16322. source: "./media/characters/pandora/collar.svg"
  16323. }
  16324. },
  16325. skirt: {
  16326. height: math.unit(6, "feet"),
  16327. weight: math.unit(150, "lb"),
  16328. name: "Skirt",
  16329. image: {
  16330. source: "./media/characters/pandora/skirt.svg",
  16331. extra: 1622 / 1525,
  16332. bottom: 0.015
  16333. }
  16334. },
  16335. hoodie: {
  16336. height: math.unit(6, "feet"),
  16337. weight: math.unit(150, "lb"),
  16338. name: "Hoodie",
  16339. image: {
  16340. source: "./media/characters/pandora/hoodie.svg",
  16341. extra: 1622 / 1525,
  16342. bottom: 0.015
  16343. }
  16344. },
  16345. casual: {
  16346. height: math.unit(6, "feet"),
  16347. weight: math.unit(150, "lb"),
  16348. name: "Casual",
  16349. image: {
  16350. source: "./media/characters/pandora/casual.svg",
  16351. extra: 1622 / 1525,
  16352. bottom: 0.015
  16353. }
  16354. },
  16355. },
  16356. [
  16357. {
  16358. name: "Normal",
  16359. height: math.unit(6, "feet")
  16360. },
  16361. {
  16362. name: "Big Steppy",
  16363. height: math.unit(1, "km"),
  16364. default: true
  16365. },
  16366. {
  16367. name: "Galactic Steppy",
  16368. height: math.unit(2, "gigameters")
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16374. {
  16375. side: {
  16376. height: math.unit(10, "feet"),
  16377. weight: math.unit(800, "kg"),
  16378. name: "Side",
  16379. image: {
  16380. source: "./media/characters/venio-darcony/side.svg",
  16381. extra: 1373 / 1003,
  16382. bottom: 0.037
  16383. }
  16384. },
  16385. front: {
  16386. height: math.unit(19, "feet"),
  16387. weight: math.unit(800, "kg"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/venio-darcony/front.svg"
  16391. }
  16392. },
  16393. back: {
  16394. height: math.unit(19, "feet"),
  16395. weight: math.unit(800, "kg"),
  16396. name: "Back",
  16397. image: {
  16398. source: "./media/characters/venio-darcony/back.svg"
  16399. }
  16400. },
  16401. sideNsfw: {
  16402. height: math.unit(10, "feet"),
  16403. weight: math.unit(800, "kg"),
  16404. name: "Side (NSFW)",
  16405. image: {
  16406. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16407. extra: 1373 / 1003,
  16408. bottom: 0.037
  16409. }
  16410. },
  16411. frontNsfw: {
  16412. height: math.unit(19, "feet"),
  16413. weight: math.unit(800, "kg"),
  16414. name: "Front (NSFW)",
  16415. image: {
  16416. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16417. }
  16418. },
  16419. backNsfw: {
  16420. height: math.unit(19, "feet"),
  16421. weight: math.unit(800, "kg"),
  16422. name: "Back (NSFW)",
  16423. image: {
  16424. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16425. }
  16426. },
  16427. sideArmored: {
  16428. height: math.unit(10, "feet"),
  16429. weight: math.unit(800, "kg"),
  16430. name: "Side (Armored)",
  16431. image: {
  16432. source: "./media/characters/venio-darcony/side-armored.svg",
  16433. extra: 1373 / 1003,
  16434. bottom: 0.037
  16435. }
  16436. },
  16437. frontArmored: {
  16438. height: math.unit(19, "feet"),
  16439. weight: math.unit(900, "kg"),
  16440. name: "Front (Armored)",
  16441. image: {
  16442. source: "./media/characters/venio-darcony/front-armored.svg"
  16443. }
  16444. },
  16445. backArmored: {
  16446. height: math.unit(19, "feet"),
  16447. weight: math.unit(900, "kg"),
  16448. name: "Back (Armored)",
  16449. image: {
  16450. source: "./media/characters/venio-darcony/back-armored.svg"
  16451. }
  16452. },
  16453. sword: {
  16454. height: math.unit(10, "feet"),
  16455. weight: math.unit(50, "lb"),
  16456. name: "Sword",
  16457. image: {
  16458. source: "./media/characters/venio-darcony/sword.svg"
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(10, "feet")
  16466. },
  16467. {
  16468. name: "Macro",
  16469. height: math.unit(130, "feet"),
  16470. default: true
  16471. },
  16472. {
  16473. name: "Macro+",
  16474. height: math.unit(240, "feet")
  16475. },
  16476. ]
  16477. ))
  16478. characterMakers.push(() => makeCharacter(
  16479. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16480. {
  16481. front: {
  16482. height: math.unit(6, "feet"),
  16483. weight: math.unit(150, "lb"),
  16484. name: "Front",
  16485. image: {
  16486. source: "./media/characters/veski/front.svg",
  16487. extra: 1299 / 1225,
  16488. bottom: 0.04
  16489. }
  16490. },
  16491. back: {
  16492. height: math.unit(6, "feet"),
  16493. weight: math.unit(150, "lb"),
  16494. name: "Back",
  16495. image: {
  16496. source: "./media/characters/veski/back.svg",
  16497. extra: 1299 / 1225,
  16498. bottom: 0.008
  16499. }
  16500. },
  16501. maw: {
  16502. height: math.unit(1.5 * 1.21, "feet"),
  16503. name: "Maw",
  16504. image: {
  16505. source: "./media/characters/veski/maw.svg"
  16506. }
  16507. },
  16508. },
  16509. [
  16510. {
  16511. name: "Macro",
  16512. height: math.unit(2, "km"),
  16513. default: true
  16514. },
  16515. ]
  16516. ))
  16517. characterMakers.push(() => makeCharacter(
  16518. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16519. {
  16520. front: {
  16521. height: math.unit(5 + 7 / 12, "feet"),
  16522. name: "Front",
  16523. image: {
  16524. source: "./media/characters/isabelle/front.svg",
  16525. extra: 2130 / 1976,
  16526. bottom: 0.05
  16527. }
  16528. },
  16529. },
  16530. [
  16531. {
  16532. name: "Supermicro",
  16533. height: math.unit(10, "micrometers")
  16534. },
  16535. {
  16536. name: "Micro",
  16537. height: math.unit(1, "inch")
  16538. },
  16539. {
  16540. name: "Tiny",
  16541. height: math.unit(5, "inches")
  16542. },
  16543. {
  16544. name: "Standard",
  16545. height: math.unit(5 + 7 / 12, "inches")
  16546. },
  16547. {
  16548. name: "Macro",
  16549. height: math.unit(80, "meters"),
  16550. default: true
  16551. },
  16552. {
  16553. name: "Megamacro",
  16554. height: math.unit(250, "meters")
  16555. },
  16556. {
  16557. name: "Gigamacro",
  16558. height: math.unit(5, "km")
  16559. },
  16560. {
  16561. name: "Cosmic",
  16562. height: math.unit(2.5e6, "miles")
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16568. {
  16569. front: {
  16570. height: math.unit(6, "feet"),
  16571. weight: math.unit(150, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/hanzo/front.svg",
  16575. extra: 374 / 344,
  16576. bottom: 0.02
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Normal",
  16583. height: math.unit(8, "feet"),
  16584. default: true
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16590. {
  16591. front: {
  16592. height: math.unit(7, "feet"),
  16593. weight: math.unit(130, "lb"),
  16594. name: "Front",
  16595. image: {
  16596. source: "./media/characters/anna/front.svg",
  16597. extra: 169 / 145,
  16598. bottom: 0.06
  16599. }
  16600. },
  16601. full: {
  16602. height: math.unit(4.96, "feet"),
  16603. weight: math.unit(220, "lb"),
  16604. name: "Full",
  16605. image: {
  16606. source: "./media/characters/anna/full.svg",
  16607. extra: 138 / 114,
  16608. bottom: 0.15
  16609. }
  16610. },
  16611. tongue: {
  16612. height: math.unit(2.53, "feet"),
  16613. name: "Tongue",
  16614. image: {
  16615. source: "./media/characters/anna/tongue.svg"
  16616. }
  16617. },
  16618. },
  16619. [
  16620. {
  16621. name: "Normal",
  16622. height: math.unit(7, "feet"),
  16623. default: true
  16624. },
  16625. ]
  16626. ))
  16627. characterMakers.push(() => makeCharacter(
  16628. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16629. {
  16630. front: {
  16631. height: math.unit(7, "feet"),
  16632. weight: math.unit(150, "lb"),
  16633. name: "Front",
  16634. image: {
  16635. source: "./media/characters/ian-corvid/front.svg",
  16636. extra: 150 / 142,
  16637. bottom: 0.02
  16638. }
  16639. },
  16640. back: {
  16641. height: math.unit(7, "feet"),
  16642. weight: math.unit(150, "lb"),
  16643. name: "Back",
  16644. image: {
  16645. source: "./media/characters/ian-corvid/back.svg",
  16646. extra: 150 / 143,
  16647. bottom: 0.01
  16648. }
  16649. },
  16650. stomping: {
  16651. height: math.unit(7, "feet"),
  16652. weight: math.unit(150, "lb"),
  16653. name: "Stomping",
  16654. image: {
  16655. source: "./media/characters/ian-corvid/stomping.svg",
  16656. extra: 76 / 72
  16657. }
  16658. },
  16659. sitting: {
  16660. height: math.unit(7 / 1.8, "feet"),
  16661. weight: math.unit(150, "lb"),
  16662. name: "Sitting",
  16663. image: {
  16664. source: "./media/characters/ian-corvid/sitting.svg",
  16665. extra: 1400 / 1269,
  16666. bottom: 0.15
  16667. }
  16668. },
  16669. },
  16670. [
  16671. {
  16672. name: "Tiny Microw",
  16673. height: math.unit(1, "inch")
  16674. },
  16675. {
  16676. name: "Microw",
  16677. height: math.unit(6, "inches")
  16678. },
  16679. {
  16680. name: "Crow",
  16681. height: math.unit(7 + 1 / 12, "feet"),
  16682. default: true
  16683. },
  16684. {
  16685. name: "Macrow",
  16686. height: math.unit(176, "feet")
  16687. },
  16688. ]
  16689. ))
  16690. characterMakers.push(() => makeCharacter(
  16691. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16692. {
  16693. front: {
  16694. height: math.unit(5 + 7 / 12, "feet"),
  16695. weight: math.unit(147, "lb"),
  16696. name: "Front",
  16697. image: {
  16698. source: "./media/characters/natalie-kellon/front.svg",
  16699. extra: 1214 / 1141,
  16700. bottom: 0.02
  16701. }
  16702. },
  16703. },
  16704. [
  16705. {
  16706. name: "Micro",
  16707. height: math.unit(1 / 16, "inch")
  16708. },
  16709. {
  16710. name: "Tiny",
  16711. height: math.unit(4, "inches")
  16712. },
  16713. {
  16714. name: "Normal",
  16715. height: math.unit(5 + 7 / 12, "feet"),
  16716. default: true
  16717. },
  16718. {
  16719. name: "Amazon",
  16720. height: math.unit(12, "feet")
  16721. },
  16722. {
  16723. name: "Giantess",
  16724. height: math.unit(160, "meters")
  16725. },
  16726. {
  16727. name: "Titaness",
  16728. height: math.unit(800, "meters")
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16734. {
  16735. front: {
  16736. height: math.unit(6, "feet"),
  16737. weight: math.unit(150, "lb"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/alluria/front.svg",
  16741. extra: 806 / 738,
  16742. bottom: 0.01
  16743. }
  16744. },
  16745. side: {
  16746. height: math.unit(6, "feet"),
  16747. weight: math.unit(150, "lb"),
  16748. name: "Side",
  16749. image: {
  16750. source: "./media/characters/alluria/side.svg",
  16751. extra: 800 / 750,
  16752. }
  16753. },
  16754. back: {
  16755. height: math.unit(6, "feet"),
  16756. weight: math.unit(150, "lb"),
  16757. name: "Back",
  16758. image: {
  16759. source: "./media/characters/alluria/back.svg",
  16760. extra: 806 / 738,
  16761. }
  16762. },
  16763. frontMaid: {
  16764. height: math.unit(6, "feet"),
  16765. weight: math.unit(150, "lb"),
  16766. name: "Front (Maid)",
  16767. image: {
  16768. source: "./media/characters/alluria/front-maid.svg",
  16769. extra: 806 / 738,
  16770. bottom: 0.01
  16771. }
  16772. },
  16773. sideMaid: {
  16774. height: math.unit(6, "feet"),
  16775. weight: math.unit(150, "lb"),
  16776. name: "Side (Maid)",
  16777. image: {
  16778. source: "./media/characters/alluria/side-maid.svg",
  16779. extra: 800 / 750,
  16780. bottom: 0.005
  16781. }
  16782. },
  16783. backMaid: {
  16784. height: math.unit(6, "feet"),
  16785. weight: math.unit(150, "lb"),
  16786. name: "Back (Maid)",
  16787. image: {
  16788. source: "./media/characters/alluria/back-maid.svg",
  16789. extra: 806 / 738,
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Micro",
  16796. height: math.unit(6, "inches"),
  16797. default: true
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(6, "feet"),
  16806. weight: math.unit(150, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/kyle/front.svg",
  16810. extra: 1069 / 962,
  16811. bottom: 77.228 / 1727.45
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Macro",
  16818. height: math.unit(150, "feet"),
  16819. default: true
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(6, "feet"),
  16828. weight: math.unit(300, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/duncan/front.svg",
  16832. extra: 1650 / 1482,
  16833. bottom: 0.05
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Macro",
  16840. height: math.unit(100, "feet"),
  16841. default: true
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16847. {
  16848. front: {
  16849. height: math.unit(5 + 4 / 12, "feet"),
  16850. weight: math.unit(220, "lb"),
  16851. name: "Front",
  16852. image: {
  16853. source: "./media/characters/memory/front.svg",
  16854. extra: 3641 / 3545,
  16855. bottom: 0.03
  16856. }
  16857. },
  16858. back: {
  16859. height: math.unit(5 + 4 / 12, "feet"),
  16860. weight: math.unit(220, "lb"),
  16861. name: "Back",
  16862. image: {
  16863. source: "./media/characters/memory/back.svg",
  16864. extra: 3641 / 3545,
  16865. bottom: 0.025
  16866. }
  16867. },
  16868. frontSkirt: {
  16869. height: math.unit(5 + 4 / 12, "feet"),
  16870. weight: math.unit(220, "lb"),
  16871. name: "Front (Skirt)",
  16872. image: {
  16873. source: "./media/characters/memory/front-skirt.svg",
  16874. extra: 3641 / 3545,
  16875. bottom: 0.03
  16876. }
  16877. },
  16878. frontDress: {
  16879. height: math.unit(5 + 4 / 12, "feet"),
  16880. weight: math.unit(220, "lb"),
  16881. name: "Front (Dress)",
  16882. image: {
  16883. source: "./media/characters/memory/front-dress.svg",
  16884. extra: 3641 / 3545,
  16885. bottom: 0.03
  16886. }
  16887. },
  16888. },
  16889. [
  16890. {
  16891. name: "Micro",
  16892. height: math.unit(6, "inches"),
  16893. default: true
  16894. },
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(5 + 4 / 12, "feet")
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16903. {
  16904. front: {
  16905. height: math.unit(4 + 11 / 12, "feet"),
  16906. weight: math.unit(100, "lb"),
  16907. name: "Front",
  16908. image: {
  16909. source: "./media/characters/luno/front.svg",
  16910. extra: 1535 / 1487,
  16911. bottom: 0.03
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Micro",
  16918. height: math.unit(3, "inches")
  16919. },
  16920. {
  16921. name: "Normal",
  16922. height: math.unit(4 + 11 / 12, "feet"),
  16923. default: true
  16924. },
  16925. {
  16926. name: "Macro",
  16927. height: math.unit(300, "feet")
  16928. },
  16929. {
  16930. name: "Megamacro",
  16931. height: math.unit(700, "miles")
  16932. },
  16933. ]
  16934. ))
  16935. characterMakers.push(() => makeCharacter(
  16936. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16937. {
  16938. front: {
  16939. height: math.unit(6 + 2 / 12, "feet"),
  16940. weight: math.unit(170, "lb"),
  16941. name: "Front",
  16942. image: {
  16943. source: "./media/characters/jamesy/front.svg",
  16944. extra: 440 / 382,
  16945. bottom: 0.005
  16946. }
  16947. },
  16948. },
  16949. [
  16950. {
  16951. name: "Micro",
  16952. height: math.unit(3, "inches")
  16953. },
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(6 + 2 / 12, "feet"),
  16957. default: true
  16958. },
  16959. {
  16960. name: "Macro",
  16961. height: math.unit(300, "feet")
  16962. },
  16963. {
  16964. name: "Megamacro",
  16965. height: math.unit(700, "miles")
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(6, "feet"),
  16974. weight: math.unit(160, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/mark/front.svg",
  16978. extra: 3300 / 3100,
  16979. bottom: 136.42 / 3440.47
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Macro",
  16986. height: math.unit(120, "meters")
  16987. },
  16988. {
  16989. name: "Bigger Macro",
  16990. height: math.unit(350, "meters")
  16991. },
  16992. {
  16993. name: "Megamacro",
  16994. height: math.unit(8, "km"),
  16995. default: true
  16996. },
  16997. {
  16998. name: "Continental",
  16999. height: math.unit(4550, "km")
  17000. },
  17001. {
  17002. name: "Planetary",
  17003. height: math.unit(65000, "km")
  17004. },
  17005. ]
  17006. ))
  17007. characterMakers.push(() => makeCharacter(
  17008. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17009. {
  17010. front: {
  17011. height: math.unit(6, "feet"),
  17012. weight: math.unit(400, "lb"),
  17013. name: "Front",
  17014. image: {
  17015. source: "./media/characters/mac/front.svg",
  17016. extra: 1048 / 987.7,
  17017. bottom: 60 / 1107.6,
  17018. }
  17019. },
  17020. },
  17021. [
  17022. {
  17023. name: "Macro",
  17024. height: math.unit(500, "feet"),
  17025. default: true
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17031. {
  17032. front: {
  17033. height: math.unit(5 + 2 / 12, "feet"),
  17034. weight: math.unit(190, "lb"),
  17035. name: "Front",
  17036. image: {
  17037. source: "./media/characters/bari/front.svg",
  17038. extra: 3156 / 2880,
  17039. bottom: 0.03
  17040. }
  17041. },
  17042. back: {
  17043. height: math.unit(5 + 2 / 12, "feet"),
  17044. weight: math.unit(190, "lb"),
  17045. name: "Back",
  17046. image: {
  17047. source: "./media/characters/bari/back.svg",
  17048. extra: 3260 / 2834,
  17049. bottom: 0.025
  17050. }
  17051. },
  17052. frontPlush: {
  17053. height: math.unit(5 + 2 / 12, "feet"),
  17054. weight: math.unit(190, "lb"),
  17055. name: "Front (Plush)",
  17056. image: {
  17057. source: "./media/characters/bari/front-plush.svg",
  17058. extra: 1112 / 1061,
  17059. bottom: 0.002
  17060. }
  17061. },
  17062. },
  17063. [
  17064. {
  17065. name: "Micro",
  17066. height: math.unit(3, "inches")
  17067. },
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(5 + 2 / 12, "feet"),
  17071. default: true
  17072. },
  17073. {
  17074. name: "Macro",
  17075. height: math.unit(20, "feet")
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17081. {
  17082. front: {
  17083. height: math.unit(6 + 1 / 12, "feet"),
  17084. weight: math.unit(275, "lb"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/hunter-misha-raven/front.svg"
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Mortal",
  17094. height: math.unit(6 + 1 / 12, "feet")
  17095. },
  17096. {
  17097. name: "Divine",
  17098. height: math.unit(1.12134e34, "parsecs"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(6 + 3 / 12, "feet"),
  17108. weight: math.unit(220, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/max-calore/front.svg",
  17112. extra: 1700 / 1648,
  17113. bottom: 0.01
  17114. }
  17115. },
  17116. back: {
  17117. height: math.unit(6 + 3 / 12, "feet"),
  17118. weight: math.unit(220, "lb"),
  17119. name: "Back",
  17120. image: {
  17121. source: "./media/characters/max-calore/back.svg",
  17122. extra: 1700 / 1648,
  17123. bottom: 0.01
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(6 + 3 / 12, "feet"),
  17131. default: true
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17137. {
  17138. side: {
  17139. height: math.unit(2 + 8 / 12, "feet"),
  17140. weight: math.unit(99, "lb"),
  17141. name: "Side",
  17142. image: {
  17143. source: "./media/characters/aspen/side.svg",
  17144. extra: 152 / 138,
  17145. bottom: 0.032
  17146. }
  17147. },
  17148. },
  17149. [
  17150. {
  17151. name: "Normal",
  17152. height: math.unit(2 + 8 / 12, "feet"),
  17153. default: true
  17154. },
  17155. ]
  17156. ))
  17157. characterMakers.push(() => makeCharacter(
  17158. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17159. {
  17160. side: {
  17161. height: math.unit(3 + 2 / 12, "feet"),
  17162. weight: math.unit(224, "lb"),
  17163. name: "Side",
  17164. image: {
  17165. source: "./media/characters/sheila-feral-wolf/side.svg",
  17166. extra: 179 / 166,
  17167. bottom: 0.03
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(3 + 2 / 12, "feet"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17181. {
  17182. side: {
  17183. height: math.unit(1 + 9 / 12, "feet"),
  17184. weight: math.unit(38, "lb"),
  17185. name: "Side",
  17186. image: {
  17187. source: "./media/characters/michelle/side.svg",
  17188. extra: 147 / 136.7,
  17189. bottom: 0.03
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(1 + 9 / 12, "feet"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(1.54, "feet"),
  17206. weight: math.unit(50, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/nino/front.svg"
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(1.54, "feet"),
  17217. default: true
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17223. {
  17224. front: {
  17225. height: math.unit(1, "feet"),
  17226. weight: math.unit(16, "lb"),
  17227. name: "Front",
  17228. image: {
  17229. source: "./media/characters/viola/front.svg"
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(1, "feet"),
  17237. default: true
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17243. {
  17244. front: {
  17245. height: math.unit(6 + 5 / 12, "feet"),
  17246. weight: math.unit(580, "lb"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/atlas/front.svg",
  17250. extra: 298.5 / 290,
  17251. bottom: 0.015
  17252. }
  17253. },
  17254. },
  17255. [
  17256. {
  17257. name: "Normal",
  17258. height: math.unit(6 + 5 / 12, "feet"),
  17259. default: true
  17260. },
  17261. ]
  17262. ))
  17263. characterMakers.push(() => makeCharacter(
  17264. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17265. {
  17266. side: {
  17267. height: math.unit(1 + 10 / 12, "feet"),
  17268. weight: math.unit(25, "lb"),
  17269. name: "Side",
  17270. image: {
  17271. source: "./media/characters/davy/side.svg",
  17272. extra: 200 / 170,
  17273. bottom: 0.01
  17274. }
  17275. },
  17276. },
  17277. [
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(1 + 10 / 12, "feet"),
  17281. default: true
  17282. },
  17283. ]
  17284. ))
  17285. characterMakers.push(() => makeCharacter(
  17286. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17287. {
  17288. side: {
  17289. height: math.unit(4 + 8 / 12, "feet"),
  17290. weight: math.unit(166, "lb"),
  17291. name: "Side",
  17292. image: {
  17293. source: "./media/characters/fiona/side.svg",
  17294. extra: 232 / 220,
  17295. bottom: 0.03
  17296. }
  17297. },
  17298. },
  17299. [
  17300. {
  17301. name: "Normal",
  17302. height: math.unit(4 + 8 / 12, "feet"),
  17303. default: true
  17304. },
  17305. ]
  17306. ))
  17307. characterMakers.push(() => makeCharacter(
  17308. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17309. {
  17310. front: {
  17311. height: math.unit(3, "feet"),
  17312. weight: math.unit(100, "lb"),
  17313. name: "Front",
  17314. image: {
  17315. source: "./media/characters/lyla/front.svg",
  17316. bottom: 0.1
  17317. }
  17318. },
  17319. },
  17320. [
  17321. {
  17322. name: "Normal",
  17323. height: math.unit(3, "feet"),
  17324. default: true
  17325. },
  17326. ]
  17327. ))
  17328. characterMakers.push(() => makeCharacter(
  17329. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17330. {
  17331. side: {
  17332. height: math.unit(1.8, "feet"),
  17333. weight: math.unit(44, "lb"),
  17334. name: "Side",
  17335. image: {
  17336. source: "./media/characters/perseus/side.svg",
  17337. bottom: 0.21
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Normal",
  17344. height: math.unit(1.8, "feet"),
  17345. default: true
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17351. {
  17352. side: {
  17353. height: math.unit(4 + 2 / 12, "feet"),
  17354. weight: math.unit(20, "lb"),
  17355. name: "Side",
  17356. image: {
  17357. source: "./media/characters/remus/side.svg"
  17358. }
  17359. },
  17360. },
  17361. [
  17362. {
  17363. name: "Normal",
  17364. height: math.unit(4 + 2 / 12, "feet"),
  17365. default: true
  17366. },
  17367. ]
  17368. ))
  17369. characterMakers.push(() => makeCharacter(
  17370. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17371. {
  17372. front: {
  17373. height: math.unit(4 + 11 / 12, "feet"),
  17374. weight: math.unit(114, "lb"),
  17375. name: "Front",
  17376. image: {
  17377. source: "./media/characters/raf/front.svg",
  17378. extra: 1504/1339,
  17379. bottom: 26/1530
  17380. }
  17381. },
  17382. side: {
  17383. height: math.unit(4 + 11 / 12, "feet"),
  17384. weight: math.unit(114, "lb"),
  17385. name: "Side",
  17386. image: {
  17387. source: "./media/characters/raf/side.svg",
  17388. extra: 1466/1316,
  17389. bottom: 29/1495
  17390. }
  17391. },
  17392. },
  17393. [
  17394. {
  17395. name: "Micro",
  17396. height: math.unit(2, "inches")
  17397. },
  17398. {
  17399. name: "Normal",
  17400. height: math.unit(4 + 11 / 12, "feet"),
  17401. default: true
  17402. },
  17403. {
  17404. name: "Macro",
  17405. height: math.unit(70, "feet")
  17406. },
  17407. ]
  17408. ))
  17409. characterMakers.push(() => makeCharacter(
  17410. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17411. {
  17412. front: {
  17413. height: math.unit(1.5, "meters"),
  17414. weight: math.unit(68, "kg"),
  17415. name: "Front",
  17416. image: {
  17417. source: "./media/characters/liam-einarr/front.svg",
  17418. extra: 2822 / 2666
  17419. }
  17420. },
  17421. back: {
  17422. height: math.unit(1.5, "meters"),
  17423. weight: math.unit(68, "kg"),
  17424. name: "Back",
  17425. image: {
  17426. source: "./media/characters/liam-einarr/back.svg",
  17427. extra: 2822 / 2666,
  17428. bottom: 0.015
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(1.5, "meters"),
  17436. default: true
  17437. },
  17438. {
  17439. name: "Macro",
  17440. height: math.unit(150, "meters")
  17441. },
  17442. {
  17443. name: "Megamacro",
  17444. height: math.unit(35, "km")
  17445. },
  17446. ]
  17447. ))
  17448. characterMakers.push(() => makeCharacter(
  17449. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17450. {
  17451. front: {
  17452. height: math.unit(6, "feet"),
  17453. weight: math.unit(75, "kg"),
  17454. name: "Front",
  17455. image: {
  17456. source: "./media/characters/linda/front.svg",
  17457. extra: 930 / 874,
  17458. bottom: 0.004
  17459. }
  17460. },
  17461. },
  17462. [
  17463. {
  17464. name: "Normal",
  17465. height: math.unit(6, "feet"),
  17466. default: true
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17472. {
  17473. front: {
  17474. height: math.unit(6 + 8 / 12, "feet"),
  17475. weight: math.unit(220, "lb"),
  17476. name: "Front",
  17477. image: {
  17478. source: "./media/characters/caylex/front.svg",
  17479. extra: 821 / 772,
  17480. bottom: 0.07
  17481. }
  17482. },
  17483. back: {
  17484. height: math.unit(6 + 8 / 12, "feet"),
  17485. weight: math.unit(220, "lb"),
  17486. name: "Back",
  17487. image: {
  17488. source: "./media/characters/caylex/back.svg",
  17489. extra: 821 / 772,
  17490. bottom: 0.022
  17491. }
  17492. },
  17493. hand: {
  17494. height: math.unit(1.25, "feet"),
  17495. name: "Hand",
  17496. image: {
  17497. source: "./media/characters/caylex/hand.svg"
  17498. }
  17499. },
  17500. foot: {
  17501. height: math.unit(1.6, "feet"),
  17502. name: "Foot",
  17503. image: {
  17504. source: "./media/characters/caylex/foot.svg"
  17505. }
  17506. },
  17507. armored: {
  17508. height: math.unit(6 + 8 / 12, "feet"),
  17509. weight: math.unit(250, "lb"),
  17510. name: "Armored",
  17511. image: {
  17512. source: "./media/characters/caylex/armored.svg",
  17513. extra: 1420 / 1310,
  17514. bottom: 0.045
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Normal",
  17521. height: math.unit(6 + 8 / 12, "feet"),
  17522. default: true
  17523. },
  17524. {
  17525. name: "Normal+",
  17526. height: math.unit(12, "feet")
  17527. },
  17528. ]
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17532. {
  17533. front: {
  17534. height: math.unit(7 + 6 / 12, "feet"),
  17535. weight: math.unit(288, "lb"),
  17536. name: "Front",
  17537. image: {
  17538. source: "./media/characters/alana/front.svg",
  17539. extra: 679 / 653,
  17540. bottom: 22.5 / 701
  17541. }
  17542. },
  17543. },
  17544. [
  17545. {
  17546. name: "Normal",
  17547. height: math.unit(7 + 6 / 12, "feet")
  17548. },
  17549. {
  17550. name: "Large",
  17551. height: math.unit(50, "feet")
  17552. },
  17553. {
  17554. name: "Macro",
  17555. height: math.unit(100, "feet"),
  17556. default: true
  17557. },
  17558. {
  17559. name: "Macro+",
  17560. height: math.unit(200, "feet")
  17561. },
  17562. ]
  17563. ))
  17564. characterMakers.push(() => makeCharacter(
  17565. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17566. {
  17567. front: {
  17568. height: math.unit(6 + 1 / 12, "feet"),
  17569. weight: math.unit(210, "lb"),
  17570. name: "Front",
  17571. image: {
  17572. source: "./media/characters/hasani/front.svg",
  17573. extra: 244 / 232,
  17574. bottom: 0.01
  17575. }
  17576. },
  17577. back: {
  17578. height: math.unit(6 + 1 / 12, "feet"),
  17579. weight: math.unit(210, "lb"),
  17580. name: "Back",
  17581. image: {
  17582. source: "./media/characters/hasani/back.svg",
  17583. extra: 244 / 232,
  17584. bottom: 0.01
  17585. }
  17586. },
  17587. },
  17588. [
  17589. {
  17590. name: "Normal",
  17591. height: math.unit(6 + 1 / 12, "feet")
  17592. },
  17593. {
  17594. name: "Macro",
  17595. height: math.unit(175, "feet"),
  17596. default: true
  17597. },
  17598. ]
  17599. ))
  17600. characterMakers.push(() => makeCharacter(
  17601. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17602. {
  17603. front: {
  17604. height: math.unit(1.82, "meters"),
  17605. weight: math.unit(140, "lb"),
  17606. name: "Front",
  17607. image: {
  17608. source: "./media/characters/nita/front.svg",
  17609. extra: 2473 / 2363,
  17610. bottom: 0.01
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Normal",
  17617. height: math.unit(1.82, "m")
  17618. },
  17619. {
  17620. name: "Macro",
  17621. height: math.unit(300, "m")
  17622. },
  17623. {
  17624. name: "Mistake Canon",
  17625. height: math.unit(0.5, "miles"),
  17626. default: true
  17627. },
  17628. {
  17629. name: "Big Mistake",
  17630. height: math.unit(13, "miles")
  17631. },
  17632. {
  17633. name: "Playing God",
  17634. height: math.unit(2450, "miles")
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17640. {
  17641. front: {
  17642. height: math.unit(4, "feet"),
  17643. weight: math.unit(120, "lb"),
  17644. name: "Front",
  17645. image: {
  17646. source: "./media/characters/shiriko/front.svg",
  17647. extra: 970/934,
  17648. bottom: 5/975
  17649. }
  17650. },
  17651. },
  17652. [
  17653. {
  17654. name: "Normal",
  17655. height: math.unit(4, "feet"),
  17656. default: true
  17657. },
  17658. ]
  17659. ))
  17660. characterMakers.push(() => makeCharacter(
  17661. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17662. {
  17663. front: {
  17664. height: math.unit(6, "feet"),
  17665. name: "front",
  17666. image: {
  17667. source: "./media/characters/deja/front.svg",
  17668. extra: 926 / 840,
  17669. bottom: 0.07
  17670. }
  17671. },
  17672. },
  17673. [
  17674. {
  17675. name: "Planck Length",
  17676. height: math.unit(1.6e-35, "meters")
  17677. },
  17678. {
  17679. name: "Normal",
  17680. height: math.unit(30.48, "meters"),
  17681. default: true
  17682. },
  17683. {
  17684. name: "Universal",
  17685. height: math.unit(8.8e26, "meters")
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17691. {
  17692. side: {
  17693. height: math.unit(8, "feet"),
  17694. weight: math.unit(6300, "lb"),
  17695. name: "Side",
  17696. image: {
  17697. source: "./media/characters/anima/side.svg",
  17698. bottom: 0.035
  17699. }
  17700. },
  17701. },
  17702. [
  17703. {
  17704. name: "Normal",
  17705. height: math.unit(8, "feet"),
  17706. default: true
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17712. {
  17713. front: {
  17714. height: math.unit(8, "feet"),
  17715. weight: math.unit(350, "lb"),
  17716. name: "Front",
  17717. image: {
  17718. source: "./media/characters/bianca/front.svg",
  17719. extra: 234 / 225,
  17720. bottom: 0.03
  17721. }
  17722. },
  17723. },
  17724. [
  17725. {
  17726. name: "Normal",
  17727. height: math.unit(8, "feet"),
  17728. default: true
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17734. {
  17735. front: {
  17736. height: math.unit(6, "feet"),
  17737. weight: math.unit(150, "lb"),
  17738. name: "Front",
  17739. image: {
  17740. source: "./media/characters/adinia/front.svg",
  17741. extra: 1845 / 1672,
  17742. bottom: 0.02
  17743. }
  17744. },
  17745. back: {
  17746. height: math.unit(6, "feet"),
  17747. weight: math.unit(150, "lb"),
  17748. name: "Back",
  17749. image: {
  17750. source: "./media/characters/adinia/back.svg",
  17751. extra: 1845 / 1672,
  17752. bottom: 0.002
  17753. }
  17754. },
  17755. },
  17756. [
  17757. {
  17758. name: "Normal",
  17759. height: math.unit(11 + 5 / 12, "feet"),
  17760. default: true
  17761. },
  17762. ]
  17763. ))
  17764. characterMakers.push(() => makeCharacter(
  17765. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17766. {
  17767. front: {
  17768. height: math.unit(3, "meters"),
  17769. weight: math.unit(200, "kg"),
  17770. name: "Front",
  17771. image: {
  17772. source: "./media/characters/lykasa/front.svg",
  17773. extra: 1076 / 976,
  17774. bottom: 0.06
  17775. }
  17776. },
  17777. },
  17778. [
  17779. {
  17780. name: "Normal",
  17781. height: math.unit(3, "meters")
  17782. },
  17783. {
  17784. name: "Kaiju",
  17785. height: math.unit(120, "meters"),
  17786. default: true
  17787. },
  17788. {
  17789. name: "Mega Kaiju",
  17790. height: math.unit(240, "km")
  17791. },
  17792. {
  17793. name: "Giga Kaiju",
  17794. height: math.unit(400, "megameters")
  17795. },
  17796. {
  17797. name: "Tera Kaiju",
  17798. height: math.unit(800, "gigameters")
  17799. },
  17800. {
  17801. name: "Kaiju Dragon Goddess",
  17802. height: math.unit(26, "zettaparsecs")
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17808. {
  17809. side: {
  17810. height: math.unit(283 / 124 * 6, "feet"),
  17811. weight: math.unit(35000, "lb"),
  17812. name: "Side",
  17813. image: {
  17814. source: "./media/characters/malfaren/side.svg",
  17815. extra: 2500 / 1010,
  17816. bottom: 0.01
  17817. }
  17818. },
  17819. front: {
  17820. height: math.unit(22.36, "feet"),
  17821. weight: math.unit(35000, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/malfaren/front.svg",
  17825. extra: 1631 / 1476,
  17826. bottom: 0.01
  17827. }
  17828. },
  17829. maw: {
  17830. height: math.unit(6.9, "feet"),
  17831. name: "Maw",
  17832. image: {
  17833. source: "./media/characters/malfaren/maw.svg"
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Big",
  17840. height: math.unit(283 / 162 * 6, "feet"),
  17841. },
  17842. {
  17843. name: "Bigger",
  17844. height: math.unit(283 / 124 * 6, "feet")
  17845. },
  17846. {
  17847. name: "Massive",
  17848. height: math.unit(283 / 92 * 6, "feet"),
  17849. default: true
  17850. },
  17851. {
  17852. name: "👀💦",
  17853. height: math.unit(283 / 73 * 6, "feet"),
  17854. },
  17855. ]
  17856. ))
  17857. characterMakers.push(() => makeCharacter(
  17858. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17859. {
  17860. front: {
  17861. height: math.unit(1.7, "m"),
  17862. weight: math.unit(70, "kg"),
  17863. name: "Front",
  17864. image: {
  17865. source: "./media/characters/kernel/front.svg",
  17866. extra: 222 / 210,
  17867. bottom: 0.007
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Nano",
  17874. height: math.unit(17, "micrometers")
  17875. },
  17876. {
  17877. name: "Micro",
  17878. height: math.unit(1.7, "mm")
  17879. },
  17880. {
  17881. name: "Small",
  17882. height: math.unit(1.7, "cm")
  17883. },
  17884. {
  17885. name: "Normal",
  17886. height: math.unit(1.7, "m"),
  17887. default: true
  17888. },
  17889. ]
  17890. ))
  17891. characterMakers.push(() => makeCharacter(
  17892. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17893. {
  17894. front: {
  17895. height: math.unit(1.75, "meters"),
  17896. weight: math.unit(65, "kg"),
  17897. name: "Front",
  17898. image: {
  17899. source: "./media/characters/jayne-folest/front.svg",
  17900. extra: 2115 / 2007,
  17901. bottom: 0.02
  17902. }
  17903. },
  17904. back: {
  17905. height: math.unit(1.75, "meters"),
  17906. weight: math.unit(65, "kg"),
  17907. name: "Back",
  17908. image: {
  17909. source: "./media/characters/jayne-folest/back.svg",
  17910. extra: 2115 / 2007,
  17911. bottom: 0.005
  17912. }
  17913. },
  17914. frontClothed: {
  17915. height: math.unit(1.75, "meters"),
  17916. weight: math.unit(65, "kg"),
  17917. name: "Front (Clothed)",
  17918. image: {
  17919. source: "./media/characters/jayne-folest/front-clothed.svg",
  17920. extra: 2115 / 2007,
  17921. bottom: 0.035
  17922. }
  17923. },
  17924. hand: {
  17925. height: math.unit(1 / 1.260, "feet"),
  17926. name: "Hand",
  17927. image: {
  17928. source: "./media/characters/jayne-folest/hand.svg"
  17929. }
  17930. },
  17931. foot: {
  17932. height: math.unit(1 / 0.918, "feet"),
  17933. name: "Foot",
  17934. image: {
  17935. source: "./media/characters/jayne-folest/foot.svg"
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Micro",
  17942. height: math.unit(4, "cm")
  17943. },
  17944. {
  17945. name: "Normal",
  17946. height: math.unit(1.75, "meters")
  17947. },
  17948. {
  17949. name: "Macro",
  17950. height: math.unit(47.5, "meters"),
  17951. default: true
  17952. },
  17953. ]
  17954. ))
  17955. characterMakers.push(() => makeCharacter(
  17956. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17957. {
  17958. front: {
  17959. height: math.unit(180, "cm"),
  17960. weight: math.unit(70, "kg"),
  17961. name: "Front",
  17962. image: {
  17963. source: "./media/characters/algier/front.svg",
  17964. extra: 596 / 572,
  17965. bottom: 0.04
  17966. }
  17967. },
  17968. back: {
  17969. height: math.unit(180, "cm"),
  17970. weight: math.unit(70, "kg"),
  17971. name: "Back",
  17972. image: {
  17973. source: "./media/characters/algier/back.svg",
  17974. extra: 596 / 572,
  17975. bottom: 0.025
  17976. }
  17977. },
  17978. frontdressed: {
  17979. height: math.unit(180, "cm"),
  17980. weight: math.unit(150, "kg"),
  17981. name: "Front-dressed",
  17982. image: {
  17983. source: "./media/characters/algier/front-dressed.svg",
  17984. extra: 596 / 572,
  17985. bottom: 0.038
  17986. }
  17987. },
  17988. },
  17989. [
  17990. {
  17991. name: "Micro",
  17992. height: math.unit(5, "cm")
  17993. },
  17994. {
  17995. name: "Normal",
  17996. height: math.unit(180, "cm"),
  17997. default: true
  17998. },
  17999. {
  18000. name: "Macro",
  18001. height: math.unit(64, "m")
  18002. },
  18003. ]
  18004. ))
  18005. characterMakers.push(() => makeCharacter(
  18006. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18007. {
  18008. upright: {
  18009. height: math.unit(7, "feet"),
  18010. weight: math.unit(300, "lb"),
  18011. name: "Upright",
  18012. image: {
  18013. source: "./media/characters/pretzel/upright.svg",
  18014. extra: 534 / 522,
  18015. bottom: 0.065
  18016. }
  18017. },
  18018. sprawling: {
  18019. height: math.unit(3.75, "feet"),
  18020. weight: math.unit(300, "lb"),
  18021. name: "Sprawling",
  18022. image: {
  18023. source: "./media/characters/pretzel/sprawling.svg",
  18024. extra: 314 / 281,
  18025. bottom: 0.1
  18026. }
  18027. },
  18028. tongue: {
  18029. height: math.unit(2, "feet"),
  18030. name: "Tongue",
  18031. image: {
  18032. source: "./media/characters/pretzel/tongue.svg"
  18033. }
  18034. },
  18035. },
  18036. [
  18037. {
  18038. name: "Normal",
  18039. height: math.unit(7, "feet"),
  18040. default: true
  18041. },
  18042. {
  18043. name: "Oversized",
  18044. height: math.unit(15, "feet")
  18045. },
  18046. {
  18047. name: "Huge",
  18048. height: math.unit(30, "feet")
  18049. },
  18050. {
  18051. name: "Macro",
  18052. height: math.unit(250, "feet")
  18053. },
  18054. ]
  18055. ))
  18056. characterMakers.push(() => makeCharacter(
  18057. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18058. {
  18059. sideFront: {
  18060. height: math.unit(5 + 2 / 12, "feet"),
  18061. weight: math.unit(120, "lb"),
  18062. name: "Front Side",
  18063. image: {
  18064. source: "./media/characters/roxi/side-front.svg",
  18065. extra: 2924 / 2717,
  18066. bottom: 0.08
  18067. }
  18068. },
  18069. sideBack: {
  18070. height: math.unit(5 + 2 / 12, "feet"),
  18071. weight: math.unit(120, "lb"),
  18072. name: "Back Side",
  18073. image: {
  18074. source: "./media/characters/roxi/side-back.svg",
  18075. extra: 2904 / 2693,
  18076. bottom: 0.06
  18077. }
  18078. },
  18079. front: {
  18080. height: math.unit(5 + 2 / 12, "feet"),
  18081. weight: math.unit(120, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/roxi/front.svg",
  18085. extra: 2028 / 1907,
  18086. bottom: 0.01
  18087. }
  18088. },
  18089. frontAlt: {
  18090. height: math.unit(5 + 2 / 12, "feet"),
  18091. weight: math.unit(120, "lb"),
  18092. name: "Front (Alt)",
  18093. image: {
  18094. source: "./media/characters/roxi/front-alt.svg",
  18095. extra: 1828 / 1798,
  18096. bottom: 0.01
  18097. }
  18098. },
  18099. sitting: {
  18100. height: math.unit(2.8, "feet"),
  18101. weight: math.unit(120, "lb"),
  18102. name: "Sitting",
  18103. image: {
  18104. source: "./media/characters/roxi/sitting.svg",
  18105. extra: 2660 / 2462,
  18106. bottom: 0.1
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Normal",
  18113. height: math.unit(5 + 2 / 12, "feet"),
  18114. default: true
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18120. {
  18121. side: {
  18122. height: math.unit(55, "feet"),
  18123. weight: math.unit(153, "tons"),
  18124. name: "Side",
  18125. image: {
  18126. source: "./media/characters/shadow/side.svg",
  18127. extra: 701 / 628,
  18128. bottom: 0.02
  18129. }
  18130. },
  18131. flying: {
  18132. height: math.unit(145, "feet"),
  18133. weight: math.unit(153, "tons"),
  18134. name: "Flying",
  18135. image: {
  18136. source: "./media/characters/shadow/flying.svg"
  18137. }
  18138. },
  18139. },
  18140. [
  18141. {
  18142. name: "Normal",
  18143. height: math.unit(55, "feet"),
  18144. default: true
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18150. {
  18151. front: {
  18152. height: math.unit(6, "feet"),
  18153. weight: math.unit(200, "lb"),
  18154. name: "Front",
  18155. image: {
  18156. source: "./media/characters/marcie/front.svg",
  18157. extra: 960 / 876,
  18158. bottom: 58 / 1017.87
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Macro",
  18165. height: math.unit(1, "mile"),
  18166. default: true
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(7, "feet"),
  18175. weight: math.unit(200, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/kachina/front.svg",
  18179. extra: 1290.68 / 1119,
  18180. bottom: 36.5 / 1327.18
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(7, "feet"),
  18188. default: true
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18194. {
  18195. looking: {
  18196. height: math.unit(2, "meters"),
  18197. weight: math.unit(300, "kg"),
  18198. name: "Looking",
  18199. image: {
  18200. source: "./media/characters/kash/looking.svg",
  18201. extra: 474 / 344,
  18202. bottom: 0.03
  18203. }
  18204. },
  18205. side: {
  18206. height: math.unit(2, "meters"),
  18207. weight: math.unit(300, "kg"),
  18208. name: "Side",
  18209. image: {
  18210. source: "./media/characters/kash/side.svg",
  18211. extra: 302 / 251,
  18212. bottom: 0.03
  18213. }
  18214. },
  18215. front: {
  18216. height: math.unit(2, "meters"),
  18217. weight: math.unit(300, "kg"),
  18218. name: "Front",
  18219. image: {
  18220. source: "./media/characters/kash/front.svg",
  18221. extra: 495 / 360,
  18222. bottom: 0.015
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(2, "meters"),
  18230. default: true
  18231. },
  18232. {
  18233. name: "Big",
  18234. height: math.unit(3, "meters")
  18235. },
  18236. {
  18237. name: "Large",
  18238. height: math.unit(5, "meters")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18244. {
  18245. feeding: {
  18246. height: math.unit(6.7, "feet"),
  18247. weight: math.unit(350, "lb"),
  18248. name: "Feeding",
  18249. image: {
  18250. source: "./media/characters/lalim/feeding.svg",
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Normal",
  18257. height: math.unit(6.7, "feet"),
  18258. default: true
  18259. },
  18260. ]
  18261. ))
  18262. characterMakers.push(() => makeCharacter(
  18263. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18264. {
  18265. front: {
  18266. height: math.unit(9.5, "feet"),
  18267. weight: math.unit(600, "lb"),
  18268. name: "Front",
  18269. image: {
  18270. source: "./media/characters/de'vout/front.svg",
  18271. extra: 1443 / 1328,
  18272. bottom: 0.025
  18273. }
  18274. },
  18275. back: {
  18276. height: math.unit(9.5, "feet"),
  18277. weight: math.unit(600, "lb"),
  18278. name: "Back",
  18279. image: {
  18280. source: "./media/characters/de'vout/back.svg",
  18281. extra: 1443 / 1328
  18282. }
  18283. },
  18284. frontDressed: {
  18285. height: math.unit(9.5, "feet"),
  18286. weight: math.unit(600, "lb"),
  18287. name: "Front (Dressed",
  18288. image: {
  18289. source: "./media/characters/de'vout/front-dressed.svg",
  18290. extra: 1443 / 1328,
  18291. bottom: 0.025
  18292. }
  18293. },
  18294. backDressed: {
  18295. height: math.unit(9.5, "feet"),
  18296. weight: math.unit(600, "lb"),
  18297. name: "Back (Dressed",
  18298. image: {
  18299. source: "./media/characters/de'vout/back-dressed.svg",
  18300. extra: 1443 / 1328
  18301. }
  18302. },
  18303. },
  18304. [
  18305. {
  18306. name: "Normal",
  18307. height: math.unit(9.5, "feet"),
  18308. default: true
  18309. },
  18310. ]
  18311. ))
  18312. characterMakers.push(() => makeCharacter(
  18313. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18314. {
  18315. front: {
  18316. height: math.unit(8, "feet"),
  18317. weight: math.unit(225, "lb"),
  18318. name: "Front",
  18319. image: {
  18320. source: "./media/characters/talana/front.svg",
  18321. extra: 1410 / 1300,
  18322. bottom: 0.015
  18323. }
  18324. },
  18325. frontDressed: {
  18326. height: math.unit(8, "feet"),
  18327. weight: math.unit(225, "lb"),
  18328. name: "Front (Dressed",
  18329. image: {
  18330. source: "./media/characters/talana/front-dressed.svg",
  18331. extra: 1410 / 1300,
  18332. bottom: 0.015
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Normal",
  18339. height: math.unit(8, "feet"),
  18340. default: true
  18341. },
  18342. ]
  18343. ))
  18344. characterMakers.push(() => makeCharacter(
  18345. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18346. {
  18347. side: {
  18348. height: math.unit(7.2, "feet"),
  18349. weight: math.unit(150, "lb"),
  18350. name: "Side",
  18351. image: {
  18352. source: "./media/characters/xeauvok/side.svg",
  18353. extra: 1975 / 1523,
  18354. bottom: 0.07
  18355. }
  18356. },
  18357. },
  18358. [
  18359. {
  18360. name: "Normal",
  18361. height: math.unit(7.2, "feet"),
  18362. default: true
  18363. },
  18364. ]
  18365. ))
  18366. characterMakers.push(() => makeCharacter(
  18367. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18368. {
  18369. side: {
  18370. height: math.unit(10, "feet"),
  18371. weight: math.unit(900, "kg"),
  18372. name: "Side",
  18373. image: {
  18374. source: "./media/characters/zara/side.svg",
  18375. extra: 504 / 498
  18376. }
  18377. },
  18378. },
  18379. [
  18380. {
  18381. name: "Normal",
  18382. height: math.unit(10, "feet"),
  18383. default: true
  18384. },
  18385. ]
  18386. ))
  18387. characterMakers.push(() => makeCharacter(
  18388. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18389. {
  18390. side: {
  18391. height: math.unit(6, "feet"),
  18392. weight: math.unit(150, "lb"),
  18393. name: "Side",
  18394. image: {
  18395. source: "./media/characters/richard-dragon/side.svg",
  18396. extra: 845 / 340,
  18397. bottom: 0.017
  18398. }
  18399. },
  18400. maw: {
  18401. height: math.unit(2.97, "feet"),
  18402. name: "Maw",
  18403. image: {
  18404. source: "./media/characters/richard-dragon/maw.svg"
  18405. }
  18406. },
  18407. },
  18408. [
  18409. ]
  18410. ))
  18411. characterMakers.push(() => makeCharacter(
  18412. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18413. {
  18414. front: {
  18415. height: math.unit(4, "feet"),
  18416. weight: math.unit(100, "lb"),
  18417. name: "Front",
  18418. image: {
  18419. source: "./media/characters/richard-smeargle/front.svg",
  18420. extra: 2952 / 2820,
  18421. bottom: 0.028
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Normal",
  18428. height: math.unit(4, "feet"),
  18429. default: true
  18430. },
  18431. {
  18432. name: "Dynamax",
  18433. height: math.unit(20, "meters")
  18434. },
  18435. ]
  18436. ))
  18437. characterMakers.push(() => makeCharacter(
  18438. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18439. {
  18440. front: {
  18441. height: math.unit(6, "feet"),
  18442. weight: math.unit(110, "lb"),
  18443. name: "Front",
  18444. image: {
  18445. source: "./media/characters/klay/front.svg",
  18446. extra: 962 / 883,
  18447. bottom: 0.04
  18448. }
  18449. },
  18450. back: {
  18451. height: math.unit(6, "feet"),
  18452. weight: math.unit(110, "lb"),
  18453. name: "Back",
  18454. image: {
  18455. source: "./media/characters/klay/back.svg",
  18456. extra: 962 / 883
  18457. }
  18458. },
  18459. beans: {
  18460. height: math.unit(1.15, "feet"),
  18461. name: "Beans",
  18462. image: {
  18463. source: "./media/characters/klay/beans.svg"
  18464. }
  18465. },
  18466. },
  18467. [
  18468. {
  18469. name: "Micro",
  18470. height: math.unit(6, "inches")
  18471. },
  18472. {
  18473. name: "Mini",
  18474. height: math.unit(3, "feet")
  18475. },
  18476. {
  18477. name: "Normal",
  18478. height: math.unit(6, "feet"),
  18479. default: true
  18480. },
  18481. {
  18482. name: "Big",
  18483. height: math.unit(25, "feet")
  18484. },
  18485. {
  18486. name: "Macro",
  18487. height: math.unit(100, "feet")
  18488. },
  18489. {
  18490. name: "Megamacro",
  18491. height: math.unit(400, "feet")
  18492. },
  18493. ]
  18494. ))
  18495. characterMakers.push(() => makeCharacter(
  18496. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18497. {
  18498. front: {
  18499. height: math.unit(6, "feet"),
  18500. weight: math.unit(160, "lb"),
  18501. name: "Front",
  18502. image: {
  18503. source: "./media/characters/marcus/front.svg",
  18504. extra: 734 / 676,
  18505. bottom: 0.03
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Little",
  18512. height: math.unit(6, "feet")
  18513. },
  18514. {
  18515. name: "Normal",
  18516. height: math.unit(110, "feet"),
  18517. default: true
  18518. },
  18519. {
  18520. name: "Macro",
  18521. height: math.unit(250, "feet")
  18522. },
  18523. {
  18524. name: "Megamacro",
  18525. height: math.unit(1000, "feet")
  18526. },
  18527. ]
  18528. ))
  18529. characterMakers.push(() => makeCharacter(
  18530. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18531. {
  18532. front: {
  18533. height: math.unit(7, "feet"),
  18534. weight: math.unit(275, "lb"),
  18535. name: "Front",
  18536. image: {
  18537. source: "./media/characters/claude-delroute/front.svg",
  18538. extra: 902/827,
  18539. bottom: 26/928
  18540. }
  18541. },
  18542. side: {
  18543. height: math.unit(7, "feet"),
  18544. weight: math.unit(275, "lb"),
  18545. name: "Side",
  18546. image: {
  18547. source: "./media/characters/claude-delroute/side.svg",
  18548. extra: 908/853,
  18549. bottom: 16/924
  18550. }
  18551. },
  18552. back: {
  18553. height: math.unit(7, "feet"),
  18554. weight: math.unit(275, "lb"),
  18555. name: "Back",
  18556. image: {
  18557. source: "./media/characters/claude-delroute/back.svg",
  18558. extra: 911/829,
  18559. bottom: 18/929
  18560. }
  18561. },
  18562. maw: {
  18563. height: math.unit(0.6407, "meters"),
  18564. name: "Maw",
  18565. image: {
  18566. source: "./media/characters/claude-delroute/maw.svg"
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(7, "feet"),
  18574. default: true
  18575. },
  18576. {
  18577. name: "Lorge",
  18578. height: math.unit(20, "feet")
  18579. },
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18584. {
  18585. front: {
  18586. height: math.unit(8 + 4 / 12, "feet"),
  18587. weight: math.unit(600, "lb"),
  18588. name: "Front",
  18589. image: {
  18590. source: "./media/characters/dragonien/front.svg",
  18591. extra: 100 / 94,
  18592. bottom: 3.3 / 103.3445
  18593. }
  18594. },
  18595. back: {
  18596. height: math.unit(8 + 4 / 12, "feet"),
  18597. weight: math.unit(600, "lb"),
  18598. name: "Back",
  18599. image: {
  18600. source: "./media/characters/dragonien/back.svg",
  18601. extra: 776 / 746,
  18602. bottom: 6.4 / 782.0616
  18603. }
  18604. },
  18605. foot: {
  18606. height: math.unit(1.54, "feet"),
  18607. name: "Foot",
  18608. image: {
  18609. source: "./media/characters/dragonien/foot.svg",
  18610. }
  18611. },
  18612. },
  18613. [
  18614. {
  18615. name: "Normal",
  18616. height: math.unit(8 + 4 / 12, "feet"),
  18617. default: true
  18618. },
  18619. {
  18620. name: "Macro",
  18621. height: math.unit(200, "feet")
  18622. },
  18623. {
  18624. name: "Megamacro",
  18625. height: math.unit(1, "mile")
  18626. },
  18627. {
  18628. name: "Gigamacro",
  18629. height: math.unit(1000, "miles")
  18630. },
  18631. ]
  18632. ))
  18633. characterMakers.push(() => makeCharacter(
  18634. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18635. {
  18636. front: {
  18637. height: math.unit(5 + 2 / 12, "feet"),
  18638. weight: math.unit(110, "lb"),
  18639. name: "Front",
  18640. image: {
  18641. source: "./media/characters/desta/front.svg",
  18642. extra: 767 / 726,
  18643. bottom: 11.7 / 779
  18644. }
  18645. },
  18646. back: {
  18647. height: math.unit(5 + 2 / 12, "feet"),
  18648. weight: math.unit(110, "lb"),
  18649. name: "Back",
  18650. image: {
  18651. source: "./media/characters/desta/back.svg",
  18652. extra: 777 / 728,
  18653. bottom: 6 / 784
  18654. }
  18655. },
  18656. frontAlt: {
  18657. height: math.unit(5 + 2 / 12, "feet"),
  18658. weight: math.unit(110, "lb"),
  18659. name: "Front",
  18660. image: {
  18661. source: "./media/characters/desta/front-alt.svg",
  18662. extra: 1482 / 1417
  18663. }
  18664. },
  18665. side: {
  18666. height: math.unit(5 + 2 / 12, "feet"),
  18667. weight: math.unit(110, "lb"),
  18668. name: "Side",
  18669. image: {
  18670. source: "./media/characters/desta/side.svg",
  18671. extra: 2579 / 2491,
  18672. bottom: 0.053
  18673. }
  18674. },
  18675. },
  18676. [
  18677. {
  18678. name: "Micro",
  18679. height: math.unit(6, "inches")
  18680. },
  18681. {
  18682. name: "Normal",
  18683. height: math.unit(5 + 2 / 12, "feet"),
  18684. default: true
  18685. },
  18686. {
  18687. name: "Macro",
  18688. height: math.unit(62, "feet")
  18689. },
  18690. {
  18691. name: "Megamacro",
  18692. height: math.unit(1800, "feet")
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18698. {
  18699. front: {
  18700. height: math.unit(10, "feet"),
  18701. weight: math.unit(700, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/storm-alystar/front.svg",
  18705. extra: 2112 / 1898,
  18706. bottom: 0.034
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Micro",
  18713. height: math.unit(3.5, "inches")
  18714. },
  18715. {
  18716. name: "Normal",
  18717. height: math.unit(10, "feet"),
  18718. default: true
  18719. },
  18720. {
  18721. name: "Macro",
  18722. height: math.unit(400, "feet")
  18723. },
  18724. {
  18725. name: "Deific",
  18726. height: math.unit(60, "miles")
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18732. {
  18733. front: {
  18734. height: math.unit(2.35, "meters"),
  18735. weight: math.unit(119, "kg"),
  18736. name: "Front",
  18737. image: {
  18738. source: "./media/characters/ilia/front.svg",
  18739. extra: 1285 / 1255,
  18740. bottom: 0.06
  18741. }
  18742. },
  18743. },
  18744. [
  18745. {
  18746. name: "Normal",
  18747. height: math.unit(2.35, "meters")
  18748. },
  18749. {
  18750. name: "Macro",
  18751. height: math.unit(140, "meters"),
  18752. default: true
  18753. },
  18754. {
  18755. name: "Megamacro",
  18756. height: math.unit(100, "miles")
  18757. },
  18758. ]
  18759. ))
  18760. characterMakers.push(() => makeCharacter(
  18761. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18762. {
  18763. front: {
  18764. height: math.unit(6 + 5 / 12, "feet"),
  18765. weight: math.unit(190, "lb"),
  18766. name: "Front",
  18767. image: {
  18768. source: "./media/characters/kingdead/front.svg",
  18769. extra: 1228 / 1177
  18770. }
  18771. },
  18772. },
  18773. [
  18774. {
  18775. name: "Micro",
  18776. height: math.unit(7, "inches")
  18777. },
  18778. {
  18779. name: "Normal",
  18780. height: math.unit(6 + 5 / 12, "feet")
  18781. },
  18782. {
  18783. name: "Macro",
  18784. height: math.unit(150, "feet"),
  18785. default: true
  18786. },
  18787. {
  18788. name: "Megamacro",
  18789. height: math.unit(200, "miles")
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(8, "feet"),
  18798. weight: math.unit(600, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/kyrehx/front.svg",
  18802. extra: 1195 / 1095,
  18803. bottom: 0.034
  18804. }
  18805. },
  18806. },
  18807. [
  18808. {
  18809. name: "Micro",
  18810. height: math.unit(2, "inches")
  18811. },
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(8, "feet"),
  18815. default: true
  18816. },
  18817. {
  18818. name: "Macro",
  18819. height: math.unit(255, "feet")
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18825. {
  18826. front: {
  18827. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18828. weight: math.unit(184, "lb"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/xang/front.svg",
  18832. extra: 845 / 755
  18833. }
  18834. },
  18835. },
  18836. [
  18837. {
  18838. name: "Normal",
  18839. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18840. default: true
  18841. },
  18842. {
  18843. name: "Macro",
  18844. height: math.unit(0.935 * 146, "feet")
  18845. },
  18846. {
  18847. name: "Megamacro",
  18848. height: math.unit(0.935 * 3, "miles")
  18849. },
  18850. ]
  18851. ))
  18852. characterMakers.push(() => makeCharacter(
  18853. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18854. {
  18855. frontDressed: {
  18856. height: math.unit(5 + 7 / 12, "feet"),
  18857. weight: math.unit(140, "lb"),
  18858. name: "Front (Dressed)",
  18859. image: {
  18860. source: "./media/characters/doc-weardno/front-dressed.svg",
  18861. extra: 263 / 234
  18862. }
  18863. },
  18864. backDressed: {
  18865. height: math.unit(5 + 7 / 12, "feet"),
  18866. weight: math.unit(140, "lb"),
  18867. name: "Back (Dressed)",
  18868. image: {
  18869. source: "./media/characters/doc-weardno/back-dressed.svg",
  18870. extra: 266 / 238
  18871. }
  18872. },
  18873. front: {
  18874. height: math.unit(5 + 7 / 12, "feet"),
  18875. weight: math.unit(140, "lb"),
  18876. name: "Front",
  18877. image: {
  18878. source: "./media/characters/doc-weardno/front.svg",
  18879. extra: 254 / 233
  18880. }
  18881. },
  18882. },
  18883. [
  18884. {
  18885. name: "Micro",
  18886. height: math.unit(3, "inches")
  18887. },
  18888. {
  18889. name: "Normal",
  18890. height: math.unit(5 + 7 / 12, "feet"),
  18891. default: true
  18892. },
  18893. {
  18894. name: "Macro",
  18895. height: math.unit(25, "feet")
  18896. },
  18897. {
  18898. name: "Megamacro",
  18899. height: math.unit(2, "miles")
  18900. },
  18901. ]
  18902. ))
  18903. characterMakers.push(() => makeCharacter(
  18904. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18905. {
  18906. front: {
  18907. height: math.unit(6 + 2 / 12, "feet"),
  18908. weight: math.unit(153, "lb"),
  18909. name: "Front",
  18910. image: {
  18911. source: "./media/characters/seth-whilst/front.svg",
  18912. bottom: 0.07
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Micro",
  18919. height: math.unit(5, "inches")
  18920. },
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(6 + 2 / 12, "feet"),
  18924. default: true
  18925. },
  18926. ]
  18927. ))
  18928. characterMakers.push(() => makeCharacter(
  18929. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18930. {
  18931. front: {
  18932. height: math.unit(3, "inches"),
  18933. weight: math.unit(8, "grams"),
  18934. name: "Front",
  18935. image: {
  18936. source: "./media/characters/pocket-jabari/front.svg",
  18937. extra: 1024 / 974,
  18938. bottom: 0.039
  18939. }
  18940. },
  18941. },
  18942. [
  18943. {
  18944. name: "Minimicro",
  18945. height: math.unit(8, "mm")
  18946. },
  18947. {
  18948. name: "Micro",
  18949. height: math.unit(3, "inches"),
  18950. default: true
  18951. },
  18952. {
  18953. name: "Normal",
  18954. height: math.unit(3, "feet")
  18955. },
  18956. ]
  18957. ))
  18958. characterMakers.push(() => makeCharacter(
  18959. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18960. {
  18961. front: {
  18962. height: math.unit(15, "feet"),
  18963. weight: math.unit(3280, "lb"),
  18964. name: "Front",
  18965. image: {
  18966. source: "./media/characters/sapphy/front.svg",
  18967. extra: 671 / 577,
  18968. bottom: 0.085
  18969. }
  18970. },
  18971. back: {
  18972. height: math.unit(15, "feet"),
  18973. weight: math.unit(3280, "lb"),
  18974. name: "Back",
  18975. image: {
  18976. source: "./media/characters/sapphy/back.svg",
  18977. extra: 631 / 607,
  18978. bottom: 0.045
  18979. }
  18980. },
  18981. },
  18982. [
  18983. {
  18984. name: "Normal",
  18985. height: math.unit(15, "feet")
  18986. },
  18987. {
  18988. name: "Casual Macro",
  18989. height: math.unit(120, "feet")
  18990. },
  18991. {
  18992. name: "Macro",
  18993. height: math.unit(2150, "feet"),
  18994. default: true
  18995. },
  18996. {
  18997. name: "Megamacro",
  18998. height: math.unit(8, "miles")
  18999. },
  19000. {
  19001. name: "Galaxy Mom",
  19002. height: math.unit(6, "megalightyears")
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(6, "feet"),
  19011. weight: math.unit(170, "lb"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/kiro/front.svg",
  19015. extra: 1064 / 1012,
  19016. bottom: 0.052
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Micro",
  19023. height: math.unit(6, "inches")
  19024. },
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(6, "feet"),
  19028. default: true
  19029. },
  19030. {
  19031. name: "Macro",
  19032. height: math.unit(72, "feet")
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19038. {
  19039. front: {
  19040. height: math.unit(5 + 9 / 12, "feet"),
  19041. weight: math.unit(175, "lb"),
  19042. name: "Front",
  19043. image: {
  19044. source: "./media/characters/irishfox/front.svg",
  19045. extra: 1912 / 1680,
  19046. bottom: 0.02
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Nano",
  19053. height: math.unit(1, "mm")
  19054. },
  19055. {
  19056. name: "Micro",
  19057. height: math.unit(2, "inches")
  19058. },
  19059. {
  19060. name: "Normal",
  19061. height: math.unit(5 + 9 / 12, "feet"),
  19062. default: true
  19063. },
  19064. {
  19065. name: "Macro",
  19066. height: math.unit(45, "feet")
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19072. {
  19073. front: {
  19074. height: math.unit(6 + 1 / 12, "feet"),
  19075. weight: math.unit(75, "lb"),
  19076. name: "Front",
  19077. image: {
  19078. source: "./media/characters/aronai-sieyes/front.svg",
  19079. extra: 1532/1450,
  19080. bottom: 42/1574
  19081. }
  19082. },
  19083. side: {
  19084. height: math.unit(6 + 1 / 12, "feet"),
  19085. weight: math.unit(75, "lb"),
  19086. name: "Side",
  19087. image: {
  19088. source: "./media/characters/aronai-sieyes/side.svg",
  19089. extra: 1422/1365,
  19090. bottom: 148/1570
  19091. }
  19092. },
  19093. back: {
  19094. height: math.unit(6 + 1 / 12, "feet"),
  19095. weight: math.unit(75, "lb"),
  19096. name: "Back",
  19097. image: {
  19098. source: "./media/characters/aronai-sieyes/back.svg",
  19099. extra: 1526/1464,
  19100. bottom: 51/1577
  19101. }
  19102. },
  19103. dressed: {
  19104. height: math.unit(6 + 1 / 12, "feet"),
  19105. weight: math.unit(75, "lb"),
  19106. name: "Dressed",
  19107. image: {
  19108. source: "./media/characters/aronai-sieyes/dressed.svg",
  19109. extra: 1559/1483,
  19110. bottom: 39/1598
  19111. }
  19112. },
  19113. slit: {
  19114. height: math.unit(1.3, "feet"),
  19115. name: "Slit",
  19116. image: {
  19117. source: "./media/characters/aronai-sieyes/slit.svg"
  19118. }
  19119. },
  19120. slitSpread: {
  19121. height: math.unit(0.9, "feet"),
  19122. name: "Slit (Spread)",
  19123. image: {
  19124. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19125. }
  19126. },
  19127. rump: {
  19128. height: math.unit(1.3, "feet"),
  19129. name: "Rump",
  19130. image: {
  19131. source: "./media/characters/aronai-sieyes/rump.svg"
  19132. }
  19133. },
  19134. maw: {
  19135. height: math.unit(1.25, "feet"),
  19136. name: "Maw",
  19137. image: {
  19138. source: "./media/characters/aronai-sieyes/maw.svg"
  19139. }
  19140. },
  19141. feral: {
  19142. height: math.unit(18, "feet"),
  19143. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19144. name: "Feral",
  19145. image: {
  19146. source: "./media/characters/aronai-sieyes/feral.svg",
  19147. extra: 1530 / 1240,
  19148. bottom: 0.035
  19149. }
  19150. },
  19151. },
  19152. [
  19153. {
  19154. name: "Micro",
  19155. height: math.unit(2, "inches")
  19156. },
  19157. {
  19158. name: "Normal",
  19159. height: math.unit(6 + 1 / 12, "feet"),
  19160. default: true
  19161. }
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19166. {
  19167. front: {
  19168. height: math.unit(12, "feet"),
  19169. weight: math.unit(410, "kg"),
  19170. name: "Front",
  19171. image: {
  19172. source: "./media/characters/xuna/front.svg",
  19173. extra: 2184 / 1980
  19174. }
  19175. },
  19176. side: {
  19177. height: math.unit(12, "feet"),
  19178. weight: math.unit(410, "kg"),
  19179. name: "Side",
  19180. image: {
  19181. source: "./media/characters/xuna/side.svg",
  19182. extra: 2184 / 1980
  19183. }
  19184. },
  19185. back: {
  19186. height: math.unit(12, "feet"),
  19187. weight: math.unit(410, "kg"),
  19188. name: "Back",
  19189. image: {
  19190. source: "./media/characters/xuna/back.svg",
  19191. extra: 2184 / 1980
  19192. }
  19193. },
  19194. },
  19195. [
  19196. {
  19197. name: "Nano glow",
  19198. height: math.unit(10, "nm")
  19199. },
  19200. {
  19201. name: "Micro floof",
  19202. height: math.unit(0.3, "m")
  19203. },
  19204. {
  19205. name: "Huggable softy boi",
  19206. height: math.unit(3.6576, "m"),
  19207. default: true
  19208. },
  19209. {
  19210. name: "Admirable floof",
  19211. height: math.unit(80, "meters")
  19212. },
  19213. {
  19214. name: "Gentle macro",
  19215. height: math.unit(300, "meters")
  19216. },
  19217. {
  19218. name: "Very careful floof",
  19219. height: math.unit(3200, "meters")
  19220. },
  19221. {
  19222. name: "The mega floof",
  19223. height: math.unit(36000, "meters")
  19224. },
  19225. {
  19226. name: "Giga-fur-Wicker",
  19227. height: math.unit(4800000, "meters")
  19228. },
  19229. {
  19230. name: "Licky world",
  19231. height: math.unit(20000000, "meters")
  19232. },
  19233. {
  19234. name: "Floofy cyan sun",
  19235. height: math.unit(1500000000, "meters")
  19236. },
  19237. {
  19238. name: "Milky Wicker",
  19239. height: math.unit(1000000000000000000000, "meters")
  19240. },
  19241. {
  19242. name: "The observing Wicker",
  19243. height: math.unit(999999999999999999999999999, "meters")
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19249. {
  19250. front: {
  19251. height: math.unit(5 + 9 / 12, "feet"),
  19252. weight: math.unit(150, "lb"),
  19253. name: "Front",
  19254. image: {
  19255. source: "./media/characters/arokha-sieyes/front.svg",
  19256. extra: 1425 / 1284,
  19257. bottom: 0.05
  19258. }
  19259. },
  19260. },
  19261. [
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(5 + 9 / 12, "feet")
  19265. },
  19266. {
  19267. name: "Macro",
  19268. height: math.unit(30, "meters"),
  19269. default: true
  19270. },
  19271. ]
  19272. ))
  19273. characterMakers.push(() => makeCharacter(
  19274. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19275. {
  19276. front: {
  19277. height: math.unit(6, "feet"),
  19278. weight: math.unit(180, "lb"),
  19279. name: "Front",
  19280. image: {
  19281. source: "./media/characters/arokh-sieyes/front.svg",
  19282. extra: 1830 / 1769,
  19283. bottom: 0.01
  19284. }
  19285. },
  19286. },
  19287. [
  19288. {
  19289. name: "Normal",
  19290. height: math.unit(6, "feet")
  19291. },
  19292. {
  19293. name: "Macro",
  19294. height: math.unit(30, "meters"),
  19295. default: true
  19296. },
  19297. ]
  19298. ))
  19299. characterMakers.push(() => makeCharacter(
  19300. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19301. {
  19302. side: {
  19303. height: math.unit(13 + 1 / 12, "feet"),
  19304. weight: math.unit(8.5, "tonnes"),
  19305. name: "Side",
  19306. image: {
  19307. source: "./media/characters/goldeneye/side.svg",
  19308. extra: 1182 / 778,
  19309. bottom: 0.067
  19310. }
  19311. },
  19312. paw: {
  19313. height: math.unit(3.4, "feet"),
  19314. name: "Paw",
  19315. image: {
  19316. source: "./media/characters/goldeneye/paw.svg"
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(13 + 1 / 12, "feet"),
  19324. default: true
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19330. {
  19331. front: {
  19332. height: math.unit(6 + 1 / 12, "feet"),
  19333. weight: math.unit(210, "lb"),
  19334. name: "Front",
  19335. image: {
  19336. source: "./media/characters/leonardo-lycheborne/front.svg",
  19337. extra: 776/723,
  19338. bottom: 34/810
  19339. }
  19340. },
  19341. side: {
  19342. height: math.unit(6 + 1 / 12, "feet"),
  19343. weight: math.unit(210, "lb"),
  19344. name: "Side",
  19345. image: {
  19346. source: "./media/characters/leonardo-lycheborne/side.svg",
  19347. extra: 780/728,
  19348. bottom: 12/792
  19349. }
  19350. },
  19351. back: {
  19352. height: math.unit(6 + 1 / 12, "feet"),
  19353. weight: math.unit(210, "lb"),
  19354. name: "Back",
  19355. image: {
  19356. source: "./media/characters/leonardo-lycheborne/back.svg",
  19357. extra: 775/721,
  19358. bottom: 17/792
  19359. }
  19360. },
  19361. hand: {
  19362. height: math.unit(1.08, "feet"),
  19363. name: "Hand",
  19364. image: {
  19365. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19366. }
  19367. },
  19368. foot: {
  19369. height: math.unit(1.32, "feet"),
  19370. name: "Foot",
  19371. image: {
  19372. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19373. }
  19374. },
  19375. maw: {
  19376. height: math.unit(1, "feet"),
  19377. name: "Maw",
  19378. image: {
  19379. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19380. }
  19381. },
  19382. were: {
  19383. height: math.unit(20, "feet"),
  19384. weight: math.unit(7800, "lb"),
  19385. name: "Were",
  19386. image: {
  19387. source: "./media/characters/leonardo-lycheborne/were.svg",
  19388. extra: 1224/1165,
  19389. bottom: 72/1296
  19390. }
  19391. },
  19392. feral: {
  19393. height: math.unit(7.5, "feet"),
  19394. weight: math.unit(600, "lb"),
  19395. name: "Feral",
  19396. image: {
  19397. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19398. extra: 797/702,
  19399. bottom: 139/936
  19400. }
  19401. },
  19402. taur: {
  19403. height: math.unit(11, "feet"),
  19404. weight: math.unit(3300, "lb"),
  19405. name: "Taur",
  19406. image: {
  19407. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19408. extra: 1271/1197,
  19409. bottom: 47/1318
  19410. }
  19411. },
  19412. barghest: {
  19413. height: math.unit(11, "feet"),
  19414. weight: math.unit(1300, "lb"),
  19415. name: "Barghest",
  19416. image: {
  19417. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19418. extra: 1291/1204,
  19419. bottom: 37/1328
  19420. }
  19421. },
  19422. dick: {
  19423. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19424. name: "Dick",
  19425. image: {
  19426. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19427. }
  19428. },
  19429. dickWere: {
  19430. height: math.unit((20) / 3.8, "feet"),
  19431. name: "Dick (Were)",
  19432. image: {
  19433. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19434. }
  19435. },
  19436. },
  19437. [
  19438. {
  19439. name: "Normal",
  19440. height: math.unit(6 + 1 / 12, "feet"),
  19441. default: true
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19447. {
  19448. front: {
  19449. height: math.unit(10, "feet"),
  19450. weight: math.unit(350, "lb"),
  19451. name: "Front",
  19452. image: {
  19453. source: "./media/characters/jet/front.svg",
  19454. extra: 2050 / 1980,
  19455. bottom: 0.013
  19456. }
  19457. },
  19458. back: {
  19459. height: math.unit(10, "feet"),
  19460. weight: math.unit(350, "lb"),
  19461. name: "Back",
  19462. image: {
  19463. source: "./media/characters/jet/back.svg",
  19464. extra: 2050 / 1980,
  19465. bottom: 0.013
  19466. }
  19467. },
  19468. },
  19469. [
  19470. {
  19471. name: "Micro",
  19472. height: math.unit(6, "inches")
  19473. },
  19474. {
  19475. name: "Normal",
  19476. height: math.unit(10, "feet"),
  19477. default: true
  19478. },
  19479. {
  19480. name: "Macro",
  19481. height: math.unit(100, "feet")
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19487. {
  19488. front: {
  19489. height: math.unit(15, "feet"),
  19490. weight: math.unit(2800, "lb"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/tanarath/front.svg",
  19494. extra: 2392 / 2220,
  19495. bottom: 0.03
  19496. }
  19497. },
  19498. back: {
  19499. height: math.unit(15, "feet"),
  19500. weight: math.unit(2800, "lb"),
  19501. name: "Back",
  19502. image: {
  19503. source: "./media/characters/tanarath/back.svg",
  19504. extra: 2392 / 2220,
  19505. bottom: 0.03
  19506. }
  19507. },
  19508. },
  19509. [
  19510. {
  19511. name: "Normal",
  19512. height: math.unit(15, "feet"),
  19513. default: true
  19514. },
  19515. ]
  19516. ))
  19517. characterMakers.push(() => makeCharacter(
  19518. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19519. {
  19520. front: {
  19521. height: math.unit(7 + 1 / 12, "feet"),
  19522. weight: math.unit(175, "lb"),
  19523. name: "Front",
  19524. image: {
  19525. source: "./media/characters/patty-cattybatty/front.svg",
  19526. extra: 908 / 874,
  19527. bottom: 0.025
  19528. }
  19529. },
  19530. },
  19531. [
  19532. {
  19533. name: "Micro",
  19534. height: math.unit(1, "inch")
  19535. },
  19536. {
  19537. name: "Normal",
  19538. height: math.unit(7 + 1 / 12, "feet")
  19539. },
  19540. {
  19541. name: "Mini Macro",
  19542. height: math.unit(155, "feet")
  19543. },
  19544. {
  19545. name: "Macro",
  19546. height: math.unit(1077, "feet")
  19547. },
  19548. {
  19549. name: "Mega Macro",
  19550. height: math.unit(47650, "feet"),
  19551. default: true
  19552. },
  19553. {
  19554. name: "Giga Macro",
  19555. height: math.unit(440, "miles")
  19556. },
  19557. {
  19558. name: "Tera Macro",
  19559. height: math.unit(8700, "miles")
  19560. },
  19561. {
  19562. name: "Planetary Macro",
  19563. height: math.unit(32700, "miles")
  19564. },
  19565. {
  19566. name: "Solar Macro",
  19567. height: math.unit(550000, "miles")
  19568. },
  19569. {
  19570. name: "Celestial Macro",
  19571. height: math.unit(2.5, "AU")
  19572. },
  19573. ]
  19574. ))
  19575. characterMakers.push(() => makeCharacter(
  19576. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19577. {
  19578. front: {
  19579. height: math.unit(4 + 5 / 12, "feet"),
  19580. weight: math.unit(90, "lb"),
  19581. name: "Front",
  19582. image: {
  19583. source: "./media/characters/cappu/front.svg",
  19584. extra: 1247 / 1152,
  19585. bottom: 0.012
  19586. }
  19587. },
  19588. },
  19589. [
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(4 + 5 / 12, "feet"),
  19593. default: true
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19599. {
  19600. frontDressed: {
  19601. height: math.unit(70, "cm"),
  19602. weight: math.unit(6, "kg"),
  19603. name: "Front (Dressed)",
  19604. image: {
  19605. source: "./media/characters/sebi/front-dressed.svg",
  19606. extra: 713.5 / 686.5,
  19607. bottom: 0.003
  19608. }
  19609. },
  19610. front: {
  19611. height: math.unit(70, "cm"),
  19612. weight: math.unit(5, "kg"),
  19613. name: "Front",
  19614. image: {
  19615. source: "./media/characters/sebi/front.svg",
  19616. extra: 713.5 / 686.5,
  19617. bottom: 0.003
  19618. }
  19619. }
  19620. },
  19621. [
  19622. {
  19623. name: "Normal",
  19624. height: math.unit(70, "cm"),
  19625. default: true
  19626. },
  19627. {
  19628. name: "Macro",
  19629. height: math.unit(8, "meters")
  19630. },
  19631. ]
  19632. ))
  19633. characterMakers.push(() => makeCharacter(
  19634. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19635. {
  19636. front: {
  19637. height: math.unit(6, "feet"),
  19638. weight: math.unit(150, "lb"),
  19639. name: "Front",
  19640. image: {
  19641. source: "./media/characters/typhek/front.svg",
  19642. extra: 1948 / 1929,
  19643. bottom: 0.025
  19644. }
  19645. },
  19646. side: {
  19647. height: math.unit(6, "feet"),
  19648. weight: math.unit(150, "lb"),
  19649. name: "Side",
  19650. image: {
  19651. source: "./media/characters/typhek/side.svg",
  19652. extra: 2034 / 2010,
  19653. bottom: 0.003
  19654. }
  19655. },
  19656. back: {
  19657. height: math.unit(6, "feet"),
  19658. weight: math.unit(150, "lb"),
  19659. name: "Back",
  19660. image: {
  19661. source: "./media/characters/typhek/back.svg",
  19662. extra: 2005 / 1978,
  19663. bottom: 0.004
  19664. }
  19665. },
  19666. palm: {
  19667. height: math.unit(1.2, "feet"),
  19668. name: "Palm",
  19669. image: {
  19670. source: "./media/characters/typhek/palm.svg"
  19671. }
  19672. },
  19673. fist: {
  19674. height: math.unit(1.1, "feet"),
  19675. name: "Fist",
  19676. image: {
  19677. source: "./media/characters/typhek/fist.svg"
  19678. }
  19679. },
  19680. foot: {
  19681. height: math.unit(1.57, "feet"),
  19682. name: "Foot",
  19683. image: {
  19684. source: "./media/characters/typhek/foot.svg"
  19685. }
  19686. },
  19687. sole: {
  19688. height: math.unit(2.05, "feet"),
  19689. name: "Sole",
  19690. image: {
  19691. source: "./media/characters/typhek/sole.svg"
  19692. }
  19693. },
  19694. },
  19695. [
  19696. {
  19697. name: "Macro",
  19698. height: math.unit(40, "stories"),
  19699. default: true
  19700. },
  19701. {
  19702. name: "Megamacro",
  19703. height: math.unit(1, "mile")
  19704. },
  19705. {
  19706. name: "Gigamacro",
  19707. height: math.unit(4000, "solarradii")
  19708. },
  19709. {
  19710. name: "Universal",
  19711. height: math.unit(1.1, "universes")
  19712. }
  19713. ]
  19714. ))
  19715. characterMakers.push(() => makeCharacter(
  19716. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19717. {
  19718. side: {
  19719. height: math.unit(5 + 7 / 12, "feet"),
  19720. weight: math.unit(150, "lb"),
  19721. name: "Side",
  19722. image: {
  19723. source: "./media/characters/kassy/side.svg",
  19724. extra: 1280 / 1225,
  19725. bottom: 0.002
  19726. }
  19727. },
  19728. front: {
  19729. height: math.unit(5 + 7 / 12, "feet"),
  19730. weight: math.unit(150, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/kassy/front.svg",
  19734. extra: 1280 / 1225,
  19735. bottom: 0.025
  19736. }
  19737. },
  19738. back: {
  19739. height: math.unit(5 + 7 / 12, "feet"),
  19740. weight: math.unit(150, "lb"),
  19741. name: "Back",
  19742. image: {
  19743. source: "./media/characters/kassy/back.svg",
  19744. extra: 1280 / 1225,
  19745. bottom: 0.002
  19746. }
  19747. },
  19748. foot: {
  19749. height: math.unit(1.266, "feet"),
  19750. name: "Foot",
  19751. image: {
  19752. source: "./media/characters/kassy/foot.svg"
  19753. }
  19754. },
  19755. },
  19756. [
  19757. {
  19758. name: "Normal",
  19759. height: math.unit(5 + 7 / 12, "feet")
  19760. },
  19761. {
  19762. name: "Macro",
  19763. height: math.unit(137, "feet"),
  19764. default: true
  19765. },
  19766. {
  19767. name: "Megamacro",
  19768. height: math.unit(1, "mile")
  19769. },
  19770. ]
  19771. ))
  19772. characterMakers.push(() => makeCharacter(
  19773. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19774. {
  19775. front: {
  19776. height: math.unit(6 + 1 / 12, "feet"),
  19777. weight: math.unit(200, "lb"),
  19778. name: "Front",
  19779. image: {
  19780. source: "./media/characters/neil/front.svg",
  19781. extra: 1326 / 1250,
  19782. bottom: 0.023
  19783. }
  19784. },
  19785. },
  19786. [
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(6 + 1 / 12, "feet"),
  19790. default: true
  19791. },
  19792. {
  19793. name: "Macro",
  19794. height: math.unit(200, "feet")
  19795. },
  19796. ]
  19797. ))
  19798. characterMakers.push(() => makeCharacter(
  19799. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19800. {
  19801. front: {
  19802. height: math.unit(5 + 9 / 12, "feet"),
  19803. weight: math.unit(190, "lb"),
  19804. name: "Front",
  19805. image: {
  19806. source: "./media/characters/atticus/front.svg",
  19807. extra: 2934 / 2785,
  19808. bottom: 0.025
  19809. }
  19810. },
  19811. },
  19812. [
  19813. {
  19814. name: "Normal",
  19815. height: math.unit(5 + 9 / 12, "feet"),
  19816. default: true
  19817. },
  19818. {
  19819. name: "Macro",
  19820. height: math.unit(180, "feet")
  19821. },
  19822. ]
  19823. ))
  19824. characterMakers.push(() => makeCharacter(
  19825. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19826. {
  19827. side: {
  19828. height: math.unit(9, "feet"),
  19829. weight: math.unit(650, "lb"),
  19830. name: "Side",
  19831. image: {
  19832. source: "./media/characters/milo/side.svg",
  19833. extra: 2644 / 2310,
  19834. bottom: 0.032
  19835. }
  19836. },
  19837. },
  19838. [
  19839. {
  19840. name: "Normal",
  19841. height: math.unit(9, "feet"),
  19842. default: true
  19843. },
  19844. {
  19845. name: "Macro",
  19846. height: math.unit(300, "feet")
  19847. },
  19848. ]
  19849. ))
  19850. characterMakers.push(() => makeCharacter(
  19851. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19852. {
  19853. side: {
  19854. height: math.unit(8, "meters"),
  19855. weight: math.unit(90000, "kg"),
  19856. name: "Side",
  19857. image: {
  19858. source: "./media/characters/ijzer/side.svg",
  19859. extra: 2756 / 1600,
  19860. bottom: 0.01
  19861. }
  19862. },
  19863. },
  19864. [
  19865. {
  19866. name: "Small",
  19867. height: math.unit(3, "meters")
  19868. },
  19869. {
  19870. name: "Normal",
  19871. height: math.unit(8, "meters"),
  19872. default: true
  19873. },
  19874. {
  19875. name: "Normal+",
  19876. height: math.unit(10, "meters")
  19877. },
  19878. {
  19879. name: "Bigger",
  19880. height: math.unit(24, "meters")
  19881. },
  19882. {
  19883. name: "Huge",
  19884. height: math.unit(80, "meters")
  19885. },
  19886. ]
  19887. ))
  19888. characterMakers.push(() => makeCharacter(
  19889. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19890. {
  19891. front: {
  19892. height: math.unit(6 + 2 / 12, "feet"),
  19893. weight: math.unit(153, "lb"),
  19894. name: "Front",
  19895. image: {
  19896. source: "./media/characters/luca-cervicum/front.svg",
  19897. extra: 370 / 327,
  19898. bottom: 0.015
  19899. }
  19900. },
  19901. back: {
  19902. height: math.unit(6 + 2 / 12, "feet"),
  19903. weight: math.unit(153, "lb"),
  19904. name: "Back",
  19905. image: {
  19906. source: "./media/characters/luca-cervicum/back.svg",
  19907. extra: 367 / 333,
  19908. bottom: 0.005
  19909. }
  19910. },
  19911. frontGear: {
  19912. height: math.unit(6 + 2 / 12, "feet"),
  19913. weight: math.unit(173, "lb"),
  19914. name: "Front (Gear)",
  19915. image: {
  19916. source: "./media/characters/luca-cervicum/front-gear.svg",
  19917. extra: 377 / 333,
  19918. bottom: 0.006
  19919. }
  19920. },
  19921. },
  19922. [
  19923. {
  19924. name: "Normal",
  19925. height: math.unit(6 + 2 / 12, "feet"),
  19926. default: true
  19927. },
  19928. ]
  19929. ))
  19930. characterMakers.push(() => makeCharacter(
  19931. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19932. {
  19933. front: {
  19934. height: math.unit(6 + 1 / 12, "feet"),
  19935. weight: math.unit(304, "lb"),
  19936. name: "Front",
  19937. image: {
  19938. source: "./media/characters/oliver/front.svg",
  19939. extra: 157 / 143,
  19940. bottom: 0.08
  19941. }
  19942. },
  19943. },
  19944. [
  19945. {
  19946. name: "Normal",
  19947. height: math.unit(6 + 1 / 12, "feet"),
  19948. default: true
  19949. },
  19950. ]
  19951. ))
  19952. characterMakers.push(() => makeCharacter(
  19953. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19954. {
  19955. front: {
  19956. height: math.unit(5 + 7 / 12, "feet"),
  19957. weight: math.unit(140, "lb"),
  19958. name: "Front",
  19959. image: {
  19960. source: "./media/characters/shane/front.svg",
  19961. extra: 304 / 289,
  19962. bottom: 0.005
  19963. }
  19964. },
  19965. },
  19966. [
  19967. {
  19968. name: "Normal",
  19969. height: math.unit(5 + 7 / 12, "feet"),
  19970. default: true
  19971. },
  19972. ]
  19973. ))
  19974. characterMakers.push(() => makeCharacter(
  19975. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19976. {
  19977. front: {
  19978. height: math.unit(5 + 9 / 12, "feet"),
  19979. weight: math.unit(178, "lb"),
  19980. name: "Front",
  19981. image: {
  19982. source: "./media/characters/shin/front.svg",
  19983. extra: 159 / 151,
  19984. bottom: 0.015
  19985. }
  19986. },
  19987. },
  19988. [
  19989. {
  19990. name: "Normal",
  19991. height: math.unit(5 + 9 / 12, "feet"),
  19992. default: true
  19993. },
  19994. ]
  19995. ))
  19996. characterMakers.push(() => makeCharacter(
  19997. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19998. {
  19999. front: {
  20000. height: math.unit(5 + 10 / 12, "feet"),
  20001. weight: math.unit(168, "lb"),
  20002. name: "Front",
  20003. image: {
  20004. source: "./media/characters/xerxes/front.svg",
  20005. extra: 282 / 260,
  20006. bottom: 0.045
  20007. }
  20008. },
  20009. },
  20010. [
  20011. {
  20012. name: "Normal",
  20013. height: math.unit(5 + 10 / 12, "feet"),
  20014. default: true
  20015. },
  20016. ]
  20017. ))
  20018. characterMakers.push(() => makeCharacter(
  20019. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20020. {
  20021. front: {
  20022. height: math.unit(6 + 7 / 12, "feet"),
  20023. weight: math.unit(208, "lb"),
  20024. name: "Front",
  20025. image: {
  20026. source: "./media/characters/chaska/front.svg",
  20027. extra: 332 / 319,
  20028. bottom: 0.015
  20029. }
  20030. },
  20031. },
  20032. [
  20033. {
  20034. name: "Normal",
  20035. height: math.unit(6 + 7 / 12, "feet"),
  20036. default: true
  20037. },
  20038. ]
  20039. ))
  20040. characterMakers.push(() => makeCharacter(
  20041. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20042. {
  20043. front: {
  20044. height: math.unit(5 + 8 / 12, "feet"),
  20045. weight: math.unit(208, "lb"),
  20046. name: "Front",
  20047. image: {
  20048. source: "./media/characters/enuk/front.svg",
  20049. extra: 437 / 406,
  20050. bottom: 0.02
  20051. }
  20052. },
  20053. },
  20054. [
  20055. {
  20056. name: "Normal",
  20057. height: math.unit(5 + 8 / 12, "feet"),
  20058. default: true
  20059. },
  20060. ]
  20061. ))
  20062. characterMakers.push(() => makeCharacter(
  20063. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20064. {
  20065. front: {
  20066. height: math.unit(5 + 10 / 12, "feet"),
  20067. weight: math.unit(252, "lb"),
  20068. name: "Front",
  20069. image: {
  20070. source: "./media/characters/bruun/front.svg",
  20071. extra: 197 / 187,
  20072. bottom: 0.012
  20073. }
  20074. },
  20075. },
  20076. [
  20077. {
  20078. name: "Normal",
  20079. height: math.unit(5 + 10 / 12, "feet"),
  20080. default: true
  20081. },
  20082. ]
  20083. ))
  20084. characterMakers.push(() => makeCharacter(
  20085. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20086. {
  20087. front: {
  20088. height: math.unit(6 + 10 / 12, "feet"),
  20089. weight: math.unit(255, "lb"),
  20090. name: "Front",
  20091. image: {
  20092. source: "./media/characters/alexeev/front.svg",
  20093. extra: 213 / 200,
  20094. bottom: 0.05
  20095. }
  20096. },
  20097. },
  20098. [
  20099. {
  20100. name: "Normal",
  20101. height: math.unit(6 + 10 / 12, "feet"),
  20102. default: true
  20103. },
  20104. ]
  20105. ))
  20106. characterMakers.push(() => makeCharacter(
  20107. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20108. {
  20109. front: {
  20110. height: math.unit(2 + 8 / 12, "feet"),
  20111. weight: math.unit(22, "lb"),
  20112. name: "Front",
  20113. image: {
  20114. source: "./media/characters/evelyn/front.svg",
  20115. extra: 208 / 180
  20116. }
  20117. },
  20118. },
  20119. [
  20120. {
  20121. name: "Normal",
  20122. height: math.unit(2 + 8 / 12, "feet"),
  20123. default: true
  20124. },
  20125. ]
  20126. ))
  20127. characterMakers.push(() => makeCharacter(
  20128. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20129. {
  20130. front: {
  20131. height: math.unit(5 + 9 / 12, "feet"),
  20132. weight: math.unit(139, "lb"),
  20133. name: "Front",
  20134. image: {
  20135. source: "./media/characters/inca/front.svg",
  20136. extra: 294 / 291,
  20137. bottom: 0.03
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Normal",
  20144. height: math.unit(5 + 9 / 12, "feet"),
  20145. default: true
  20146. },
  20147. ]
  20148. ))
  20149. characterMakers.push(() => makeCharacter(
  20150. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20151. {
  20152. front: {
  20153. height: math.unit(6 + 3 / 12, "feet"),
  20154. weight: math.unit(185, "lb"),
  20155. name: "Front",
  20156. image: {
  20157. source: "./media/characters/mera/front.svg",
  20158. extra: 291 / 277,
  20159. bottom: 0.03
  20160. }
  20161. },
  20162. },
  20163. [
  20164. {
  20165. name: "Normal",
  20166. height: math.unit(6 + 3 / 12, "feet"),
  20167. default: true
  20168. },
  20169. ]
  20170. ))
  20171. characterMakers.push(() => makeCharacter(
  20172. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20173. {
  20174. front: {
  20175. height: math.unit(6 + 7 / 12, "feet"),
  20176. weight: math.unit(160, "lb"),
  20177. name: "Front",
  20178. image: {
  20179. source: "./media/characters/ceres/front.svg",
  20180. extra: 1023 / 950,
  20181. bottom: 0.027
  20182. }
  20183. },
  20184. back: {
  20185. height: math.unit(6 + 7 / 12, "feet"),
  20186. weight: math.unit(160, "lb"),
  20187. name: "Back",
  20188. image: {
  20189. source: "./media/characters/ceres/back.svg",
  20190. extra: 1023 / 950
  20191. }
  20192. },
  20193. },
  20194. [
  20195. {
  20196. name: "Normal",
  20197. height: math.unit(6 + 7 / 12, "feet"),
  20198. default: true
  20199. },
  20200. ]
  20201. ))
  20202. characterMakers.push(() => makeCharacter(
  20203. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20204. {
  20205. front: {
  20206. height: math.unit(5 + 10 / 12, "feet"),
  20207. weight: math.unit(150, "lb"),
  20208. name: "Front",
  20209. image: {
  20210. source: "./media/characters/kris/front.svg",
  20211. extra: 885 / 803,
  20212. bottom: 0.03
  20213. }
  20214. },
  20215. },
  20216. [
  20217. {
  20218. name: "Normal",
  20219. height: math.unit(5 + 10 / 12, "feet"),
  20220. default: true
  20221. },
  20222. ]
  20223. ))
  20224. characterMakers.push(() => makeCharacter(
  20225. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20226. {
  20227. front: {
  20228. height: math.unit(7, "feet"),
  20229. weight: math.unit(120, "kg"),
  20230. name: "Front",
  20231. image: {
  20232. source: "./media/characters/taluthus/front.svg",
  20233. extra: 903 / 833,
  20234. bottom: 0.015
  20235. }
  20236. },
  20237. },
  20238. [
  20239. {
  20240. name: "Normal",
  20241. height: math.unit(7, "feet"),
  20242. default: true
  20243. },
  20244. {
  20245. name: "Macro",
  20246. height: math.unit(300, "feet")
  20247. },
  20248. ]
  20249. ))
  20250. characterMakers.push(() => makeCharacter(
  20251. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20252. {
  20253. front: {
  20254. height: math.unit(5 + 9 / 12, "feet"),
  20255. weight: math.unit(145, "lb"),
  20256. name: "Front",
  20257. image: {
  20258. source: "./media/characters/dawn/front.svg",
  20259. extra: 2094 / 2016,
  20260. bottom: 0.025
  20261. }
  20262. },
  20263. back: {
  20264. height: math.unit(5 + 9 / 12, "feet"),
  20265. weight: math.unit(160, "lb"),
  20266. name: "Back",
  20267. image: {
  20268. source: "./media/characters/dawn/back.svg",
  20269. extra: 2112 / 2080,
  20270. bottom: 0.005
  20271. }
  20272. },
  20273. },
  20274. [
  20275. {
  20276. name: "Normal",
  20277. height: math.unit(6 + 7 / 12, "feet"),
  20278. default: true
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20284. {
  20285. anthro: {
  20286. height: math.unit(8 + 3 / 12, "feet"),
  20287. weight: math.unit(450, "lb"),
  20288. name: "Anthro",
  20289. image: {
  20290. source: "./media/characters/arador/anthro.svg",
  20291. extra: 1835 / 1718,
  20292. bottom: 0.025
  20293. }
  20294. },
  20295. feral: {
  20296. height: math.unit(4, "feet"),
  20297. weight: math.unit(200, "lb"),
  20298. name: "Feral",
  20299. image: {
  20300. source: "./media/characters/arador/feral.svg",
  20301. extra: 1683 / 1514,
  20302. bottom: 0.07
  20303. }
  20304. },
  20305. },
  20306. [
  20307. {
  20308. name: "Normal",
  20309. height: math.unit(8 + 3 / 12, "feet")
  20310. },
  20311. {
  20312. name: "Macro",
  20313. height: math.unit(82.5, "feet"),
  20314. default: true
  20315. },
  20316. ]
  20317. ))
  20318. characterMakers.push(() => makeCharacter(
  20319. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20320. {
  20321. front: {
  20322. height: math.unit(5 + 10 / 12, "feet"),
  20323. weight: math.unit(125, "lb"),
  20324. name: "Front",
  20325. image: {
  20326. source: "./media/characters/dharsi/front.svg",
  20327. extra: 716 / 630,
  20328. bottom: 0.035
  20329. }
  20330. },
  20331. },
  20332. [
  20333. {
  20334. name: "Nano",
  20335. height: math.unit(100, "nm")
  20336. },
  20337. {
  20338. name: "Micro",
  20339. height: math.unit(2, "inches")
  20340. },
  20341. {
  20342. name: "Normal",
  20343. height: math.unit(5 + 10 / 12, "feet"),
  20344. default: true
  20345. },
  20346. {
  20347. name: "Macro",
  20348. height: math.unit(1000, "feet")
  20349. },
  20350. {
  20351. name: "Megamacro",
  20352. height: math.unit(10, "miles")
  20353. },
  20354. {
  20355. name: "Gigamacro",
  20356. height: math.unit(3000, "miles")
  20357. },
  20358. {
  20359. name: "Teramacro",
  20360. height: math.unit(500000, "miles")
  20361. },
  20362. {
  20363. name: "Teramacro+",
  20364. height: math.unit(30, "galaxies")
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20370. {
  20371. front: {
  20372. height: math.unit(6, "feet"),
  20373. weight: math.unit(150, "lb"),
  20374. name: "Front",
  20375. image: {
  20376. source: "./media/characters/deathy/front.svg",
  20377. extra: 1552 / 1463,
  20378. bottom: 0.025
  20379. }
  20380. },
  20381. side: {
  20382. height: math.unit(6, "feet"),
  20383. weight: math.unit(150, "lb"),
  20384. name: "Side",
  20385. image: {
  20386. source: "./media/characters/deathy/side.svg",
  20387. extra: 1604 / 1455,
  20388. bottom: 0.025
  20389. }
  20390. },
  20391. back: {
  20392. height: math.unit(6, "feet"),
  20393. weight: math.unit(150, "lb"),
  20394. name: "Back",
  20395. image: {
  20396. source: "./media/characters/deathy/back.svg",
  20397. extra: 1580 / 1463,
  20398. bottom: 0.005
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Micro",
  20405. height: math.unit(5, "millimeters")
  20406. },
  20407. {
  20408. name: "Normal",
  20409. height: math.unit(6 + 5 / 12, "feet"),
  20410. default: true
  20411. },
  20412. ]
  20413. ))
  20414. characterMakers.push(() => makeCharacter(
  20415. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20416. {
  20417. front: {
  20418. height: math.unit(16, "feet"),
  20419. weight: math.unit(4000, "lb"),
  20420. name: "Front",
  20421. image: {
  20422. source: "./media/characters/juniper/front.svg",
  20423. bottom: 0.04
  20424. }
  20425. },
  20426. },
  20427. [
  20428. {
  20429. name: "Normal",
  20430. height: math.unit(16, "feet"),
  20431. default: true
  20432. },
  20433. ]
  20434. ))
  20435. characterMakers.push(() => makeCharacter(
  20436. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20437. {
  20438. front: {
  20439. height: math.unit(6, "feet"),
  20440. weight: math.unit(150, "lb"),
  20441. name: "Front",
  20442. image: {
  20443. source: "./media/characters/hipster/front.svg",
  20444. extra: 1312 / 1209,
  20445. bottom: 0.025
  20446. }
  20447. },
  20448. back: {
  20449. height: math.unit(6, "feet"),
  20450. weight: math.unit(150, "lb"),
  20451. name: "Back",
  20452. image: {
  20453. source: "./media/characters/hipster/back.svg",
  20454. extra: 1281 / 1196,
  20455. bottom: 0.01
  20456. }
  20457. },
  20458. },
  20459. [
  20460. {
  20461. name: "Micro",
  20462. height: math.unit(1, "mm")
  20463. },
  20464. {
  20465. name: "Normal",
  20466. height: math.unit(4, "inches"),
  20467. default: true
  20468. },
  20469. {
  20470. name: "Macro",
  20471. height: math.unit(500, "feet")
  20472. },
  20473. {
  20474. name: "Megamacro",
  20475. height: math.unit(1000, "miles")
  20476. },
  20477. ]
  20478. ))
  20479. characterMakers.push(() => makeCharacter(
  20480. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20481. {
  20482. front: {
  20483. height: math.unit(6, "feet"),
  20484. weight: math.unit(150, "lb"),
  20485. name: "Front",
  20486. image: {
  20487. source: "./media/characters/tendirmuldr/front.svg",
  20488. extra: 1878 / 1772,
  20489. bottom: 0.015
  20490. }
  20491. },
  20492. },
  20493. [
  20494. {
  20495. name: "Megamacro",
  20496. height: math.unit(1500, "miles"),
  20497. default: true
  20498. },
  20499. ]
  20500. ))
  20501. characterMakers.push(() => makeCharacter(
  20502. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20503. {
  20504. front: {
  20505. height: math.unit(14, "feet"),
  20506. weight: math.unit(12000, "lb"),
  20507. name: "Front",
  20508. image: {
  20509. source: "./media/characters/mort/front.svg",
  20510. extra: 365 / 318,
  20511. bottom: 0.01
  20512. }
  20513. },
  20514. side: {
  20515. height: math.unit(14, "feet"),
  20516. weight: math.unit(12000, "lb"),
  20517. name: "Side",
  20518. image: {
  20519. source: "./media/characters/mort/side.svg",
  20520. extra: 365 / 318,
  20521. bottom: 0.052
  20522. },
  20523. default: true
  20524. },
  20525. back: {
  20526. height: math.unit(14, "feet"),
  20527. weight: math.unit(12000, "lb"),
  20528. name: "Back",
  20529. image: {
  20530. source: "./media/characters/mort/back.svg",
  20531. extra: 371 / 332,
  20532. bottom: 0.18
  20533. }
  20534. },
  20535. },
  20536. [
  20537. {
  20538. name: "Normal",
  20539. height: math.unit(14, "feet"),
  20540. default: true
  20541. },
  20542. ]
  20543. ))
  20544. characterMakers.push(() => makeCharacter(
  20545. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20546. {
  20547. front: {
  20548. height: math.unit(8, "feet"),
  20549. weight: math.unit(1, "ton"),
  20550. name: "Front",
  20551. image: {
  20552. source: "./media/characters/lycoa/front.svg",
  20553. extra: 1875 / 1789,
  20554. bottom: 0.022
  20555. }
  20556. },
  20557. back: {
  20558. height: math.unit(8, "feet"),
  20559. weight: math.unit(1, "ton"),
  20560. name: "Back",
  20561. image: {
  20562. source: "./media/characters/lycoa/back.svg",
  20563. extra: 1835 / 1781,
  20564. bottom: 0.03
  20565. }
  20566. },
  20567. head: {
  20568. height: math.unit(2.1, "feet"),
  20569. name: "Head",
  20570. image: {
  20571. source: "./media/characters/lycoa/head.svg"
  20572. }
  20573. },
  20574. tailmaw: {
  20575. height: math.unit(1.9, "feet"),
  20576. name: "Tailmaw",
  20577. image: {
  20578. source: "./media/characters/lycoa/tailmaw.svg"
  20579. }
  20580. },
  20581. tentacles: {
  20582. height: math.unit(2.1, "feet"),
  20583. name: "Tentacles",
  20584. image: {
  20585. source: "./media/characters/lycoa/tentacles.svg"
  20586. }
  20587. },
  20588. dick: {
  20589. height: math.unit(1.73, "feet"),
  20590. name: "Dick",
  20591. image: {
  20592. source: "./media/characters/lycoa/dick.svg"
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "Normal",
  20599. height: math.unit(8, "feet"),
  20600. default: true
  20601. },
  20602. {
  20603. name: "Macro",
  20604. height: math.unit(30, "feet")
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20610. {
  20611. front: {
  20612. height: math.unit(4 + 2 / 12, "feet"),
  20613. weight: math.unit(70, "lb"),
  20614. name: "Front",
  20615. image: {
  20616. source: "./media/characters/naldara/front.svg",
  20617. extra: 841 / 720,
  20618. bottom: 0.04
  20619. }
  20620. },
  20621. naga: {
  20622. height: math.unit(23, "feet"),
  20623. weight: math.unit(15000, "kg"),
  20624. name: "Naga",
  20625. image: {
  20626. source: "./media/characters/naldara/naga.svg",
  20627. extra: 3290 / 2959,
  20628. bottom: 124 / 3432
  20629. }
  20630. },
  20631. },
  20632. [
  20633. {
  20634. name: "Normal",
  20635. height: math.unit(4 + 2 / 12, "feet"),
  20636. default: true
  20637. },
  20638. ]
  20639. ))
  20640. characterMakers.push(() => makeCharacter(
  20641. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20642. {
  20643. front: {
  20644. height: math.unit(13 + 7 / 12, "feet"),
  20645. weight: math.unit(1500, "lb"),
  20646. name: "Front",
  20647. image: {
  20648. source: "./media/characters/briar/front.svg",
  20649. extra: 626 / 596,
  20650. bottom: 0.08
  20651. }
  20652. },
  20653. },
  20654. [
  20655. {
  20656. name: "Normal",
  20657. height: math.unit(13 + 7 / 12, "feet"),
  20658. default: true
  20659. },
  20660. ]
  20661. ))
  20662. characterMakers.push(() => makeCharacter(
  20663. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20664. {
  20665. side: {
  20666. height: math.unit(10, "feet"),
  20667. weight: math.unit(500, "lb"),
  20668. name: "Side",
  20669. image: {
  20670. source: "./media/characters/vanguard/side.svg",
  20671. extra: 502 / 425,
  20672. bottom: 0.087
  20673. }
  20674. },
  20675. },
  20676. [
  20677. {
  20678. name: "Normal",
  20679. height: math.unit(10, "feet"),
  20680. default: true
  20681. },
  20682. ]
  20683. ))
  20684. characterMakers.push(() => makeCharacter(
  20685. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20686. {
  20687. front: {
  20688. height: math.unit(7.5, "feet"),
  20689. weight: math.unit(2, "lb"),
  20690. name: "Front",
  20691. image: {
  20692. source: "./media/characters/artemis/front.svg",
  20693. extra: 1192 / 1075,
  20694. bottom: 0.07
  20695. }
  20696. },
  20697. frontNsfw: {
  20698. height: math.unit(7.5, "feet"),
  20699. weight: math.unit(2, "lb"),
  20700. name: "Front (NSFW)",
  20701. image: {
  20702. source: "./media/characters/artemis/front-nsfw.svg",
  20703. extra: 1192 / 1075,
  20704. bottom: 0.07
  20705. }
  20706. },
  20707. frontNsfwer: {
  20708. height: math.unit(7.5, "feet"),
  20709. weight: math.unit(2, "lb"),
  20710. name: "Front (NSFW-er)",
  20711. image: {
  20712. source: "./media/characters/artemis/front-nsfwer.svg",
  20713. extra: 1192 / 1075,
  20714. bottom: 0.07
  20715. }
  20716. },
  20717. side: {
  20718. height: math.unit(7.5, "feet"),
  20719. weight: math.unit(2, "lb"),
  20720. name: "Side",
  20721. image: {
  20722. source: "./media/characters/artemis/side.svg",
  20723. extra: 1192 / 1075,
  20724. bottom: 0.07
  20725. }
  20726. },
  20727. sideNsfw: {
  20728. height: math.unit(7.5, "feet"),
  20729. weight: math.unit(2, "lb"),
  20730. name: "Side (NSFW)",
  20731. image: {
  20732. source: "./media/characters/artemis/side-nsfw.svg",
  20733. extra: 1192 / 1075,
  20734. bottom: 0.07
  20735. }
  20736. },
  20737. sideNsfwer: {
  20738. height: math.unit(7.5, "feet"),
  20739. weight: math.unit(2, "lb"),
  20740. name: "Side (NSFW-er)",
  20741. image: {
  20742. source: "./media/characters/artemis/side-nsfwer.svg",
  20743. extra: 1192 / 1075,
  20744. bottom: 0.07
  20745. }
  20746. },
  20747. maw: {
  20748. height: math.unit(1.1, "feet"),
  20749. name: "Maw",
  20750. image: {
  20751. source: "./media/characters/artemis/maw.svg"
  20752. }
  20753. },
  20754. stomach: {
  20755. height: math.unit(0.95, "feet"),
  20756. name: "Stomach",
  20757. image: {
  20758. source: "./media/characters/artemis/stomach.svg"
  20759. }
  20760. },
  20761. dickCanine: {
  20762. height: math.unit(1, "feet"),
  20763. name: "Dick (Canine)",
  20764. image: {
  20765. source: "./media/characters/artemis/dick-canine.svg"
  20766. }
  20767. },
  20768. dickEquine: {
  20769. height: math.unit(0.85, "feet"),
  20770. name: "Dick (Equine)",
  20771. image: {
  20772. source: "./media/characters/artemis/dick-equine.svg"
  20773. }
  20774. },
  20775. dickExotic: {
  20776. height: math.unit(0.85, "feet"),
  20777. name: "Dick (Exotic)",
  20778. image: {
  20779. source: "./media/characters/artemis/dick-exotic.svg"
  20780. }
  20781. },
  20782. },
  20783. [
  20784. {
  20785. name: "Normal",
  20786. height: math.unit(7.5, "feet"),
  20787. default: true
  20788. },
  20789. {
  20790. name: "Enlarged",
  20791. height: math.unit(12, "feet")
  20792. },
  20793. ]
  20794. ))
  20795. characterMakers.push(() => makeCharacter(
  20796. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20797. {
  20798. front: {
  20799. height: math.unit(5 + 3 / 12, "feet"),
  20800. weight: math.unit(160, "lb"),
  20801. name: "Front",
  20802. image: {
  20803. source: "./media/characters/kira/front.svg",
  20804. extra: 906 / 786,
  20805. bottom: 0.01
  20806. }
  20807. },
  20808. back: {
  20809. height: math.unit(5 + 3 / 12, "feet"),
  20810. weight: math.unit(160, "lb"),
  20811. name: "Back",
  20812. image: {
  20813. source: "./media/characters/kira/back.svg",
  20814. extra: 882 / 757,
  20815. bottom: 0.005
  20816. }
  20817. },
  20818. frontDressed: {
  20819. height: math.unit(5 + 3 / 12, "feet"),
  20820. weight: math.unit(160, "lb"),
  20821. name: "Front (Dressed)",
  20822. image: {
  20823. source: "./media/characters/kira/front-dressed.svg",
  20824. extra: 906 / 786,
  20825. bottom: 0.01
  20826. }
  20827. },
  20828. beans: {
  20829. height: math.unit(0.92, "feet"),
  20830. name: "Beans",
  20831. image: {
  20832. source: "./media/characters/kira/beans.svg"
  20833. }
  20834. },
  20835. },
  20836. [
  20837. {
  20838. name: "Normal",
  20839. height: math.unit(5 + 3 / 12, "feet"),
  20840. default: true
  20841. },
  20842. ]
  20843. ))
  20844. characterMakers.push(() => makeCharacter(
  20845. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20846. {
  20847. front: {
  20848. height: math.unit(5 + 4 / 12, "feet"),
  20849. weight: math.unit(145, "lb"),
  20850. name: "Front",
  20851. image: {
  20852. source: "./media/characters/scramble/front.svg",
  20853. extra: 763 / 727,
  20854. bottom: 0.05
  20855. }
  20856. },
  20857. back: {
  20858. height: math.unit(5 + 4 / 12, "feet"),
  20859. weight: math.unit(145, "lb"),
  20860. name: "Back",
  20861. image: {
  20862. source: "./media/characters/scramble/back.svg",
  20863. extra: 826 / 737,
  20864. bottom: 0.002
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(5 + 4 / 12, "feet"),
  20872. default: true
  20873. },
  20874. ]
  20875. ))
  20876. characterMakers.push(() => makeCharacter(
  20877. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20878. {
  20879. side: {
  20880. height: math.unit(6 + 2 / 12, "feet"),
  20881. weight: math.unit(190, "lb"),
  20882. name: "Side",
  20883. image: {
  20884. source: "./media/characters/biscuit/side.svg",
  20885. extra: 858 / 791,
  20886. bottom: 0.044
  20887. }
  20888. },
  20889. },
  20890. [
  20891. {
  20892. name: "Normal",
  20893. height: math.unit(6 + 2 / 12, "feet"),
  20894. default: true
  20895. },
  20896. ]
  20897. ))
  20898. characterMakers.push(() => makeCharacter(
  20899. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20900. {
  20901. front: {
  20902. height: math.unit(5 + 2 / 12, "feet"),
  20903. weight: math.unit(120, "lb"),
  20904. name: "Front",
  20905. image: {
  20906. source: "./media/characters/poffin/front.svg",
  20907. extra: 786 / 680,
  20908. bottom: 0.005
  20909. }
  20910. },
  20911. },
  20912. [
  20913. {
  20914. name: "Normal",
  20915. height: math.unit(5 + 2 / 12, "feet"),
  20916. default: true
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20922. {
  20923. front: {
  20924. height: math.unit(6 + 3 / 12, "feet"),
  20925. weight: math.unit(519, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/dhari/front.svg",
  20929. extra: 1048 / 946,
  20930. bottom: 0.015
  20931. }
  20932. },
  20933. back: {
  20934. height: math.unit(6 + 3 / 12, "feet"),
  20935. weight: math.unit(519, "lb"),
  20936. name: "Back",
  20937. image: {
  20938. source: "./media/characters/dhari/back.svg",
  20939. extra: 1048 / 931,
  20940. bottom: 0.005
  20941. }
  20942. },
  20943. frontDressed: {
  20944. height: math.unit(6 + 3 / 12, "feet"),
  20945. weight: math.unit(519, "lb"),
  20946. name: "Front (Dressed)",
  20947. image: {
  20948. source: "./media/characters/dhari/front-dressed.svg",
  20949. extra: 1713 / 1546,
  20950. bottom: 0.02
  20951. }
  20952. },
  20953. backDressed: {
  20954. height: math.unit(6 + 3 / 12, "feet"),
  20955. weight: math.unit(519, "lb"),
  20956. name: "Back (Dressed)",
  20957. image: {
  20958. source: "./media/characters/dhari/back-dressed.svg",
  20959. extra: 1699 / 1537,
  20960. bottom: 0.01
  20961. }
  20962. },
  20963. maw: {
  20964. height: math.unit(0.95, "feet"),
  20965. name: "Maw",
  20966. image: {
  20967. source: "./media/characters/dhari/maw.svg"
  20968. }
  20969. },
  20970. wereFront: {
  20971. height: math.unit(12 + 8 / 12, "feet"),
  20972. weight: math.unit(4000, "lb"),
  20973. name: "Front (Were)",
  20974. image: {
  20975. source: "./media/characters/dhari/were-front.svg",
  20976. extra: 1065 / 969,
  20977. bottom: 0.015
  20978. }
  20979. },
  20980. wereBack: {
  20981. height: math.unit(12 + 8 / 12, "feet"),
  20982. weight: math.unit(4000, "lb"),
  20983. name: "Back (Were)",
  20984. image: {
  20985. source: "./media/characters/dhari/were-back.svg",
  20986. extra: 1065 / 969,
  20987. bottom: 0.012
  20988. }
  20989. },
  20990. wereMaw: {
  20991. height: math.unit(0.625, "meters"),
  20992. name: "Maw (Were)",
  20993. image: {
  20994. source: "./media/characters/dhari/were-maw.svg"
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Normal",
  21001. height: math.unit(6 + 3 / 12, "feet"),
  21002. default: true
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21008. {
  21009. anthro: {
  21010. height: math.unit(5 + 7 / 12, "feet"),
  21011. weight: math.unit(175, "lb"),
  21012. name: "Anthro",
  21013. image: {
  21014. source: "./media/characters/rena-dyne/anthro.svg",
  21015. extra: 1849 / 1785,
  21016. bottom: 0.005
  21017. }
  21018. },
  21019. taur: {
  21020. height: math.unit(15 + 6 / 12, "feet"),
  21021. weight: math.unit(8000, "lb"),
  21022. name: "Taur",
  21023. image: {
  21024. source: "./media/characters/rena-dyne/taur.svg",
  21025. extra: 2315 / 2234,
  21026. bottom: 0.033
  21027. }
  21028. },
  21029. },
  21030. [
  21031. {
  21032. name: "Normal",
  21033. height: math.unit(5 + 7 / 12, "feet"),
  21034. default: true
  21035. },
  21036. ]
  21037. ))
  21038. characterMakers.push(() => makeCharacter(
  21039. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21040. {
  21041. front: {
  21042. height: math.unit(8, "feet"),
  21043. weight: math.unit(600, "lb"),
  21044. name: "Front",
  21045. image: {
  21046. source: "./media/characters/weremeep/front.svg",
  21047. extra: 967 / 862,
  21048. bottom: 0.01
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(8, "feet"),
  21056. default: true
  21057. },
  21058. {
  21059. name: "Lorg",
  21060. height: math.unit(12, "feet")
  21061. },
  21062. {
  21063. name: "Oh Lawd She Comin'",
  21064. height: math.unit(20, "feet")
  21065. },
  21066. ]
  21067. ))
  21068. characterMakers.push(() => makeCharacter(
  21069. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21070. {
  21071. front: {
  21072. height: math.unit(4, "feet"),
  21073. weight: math.unit(90, "lb"),
  21074. name: "Front",
  21075. image: {
  21076. source: "./media/characters/reza/front.svg",
  21077. extra: 1183 / 1111,
  21078. bottom: 0.017
  21079. }
  21080. },
  21081. back: {
  21082. height: math.unit(4, "feet"),
  21083. weight: math.unit(90, "lb"),
  21084. name: "Back",
  21085. image: {
  21086. source: "./media/characters/reza/back.svg",
  21087. extra: 1183 / 1111,
  21088. bottom: 0.01
  21089. }
  21090. },
  21091. drake: {
  21092. height: math.unit(30, "feet"),
  21093. weight: math.unit(246960, "lb"),
  21094. name: "Drake",
  21095. image: {
  21096. source: "./media/characters/reza/drake.svg",
  21097. extra: 2350 / 2024,
  21098. bottom: 60.7 / 2403
  21099. }
  21100. },
  21101. },
  21102. [
  21103. {
  21104. name: "Normal",
  21105. height: math.unit(4, "feet"),
  21106. default: true
  21107. },
  21108. ]
  21109. ))
  21110. characterMakers.push(() => makeCharacter(
  21111. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21112. {
  21113. side: {
  21114. height: math.unit(15, "feet"),
  21115. weight: math.unit(14, "tons"),
  21116. name: "Side",
  21117. image: {
  21118. source: "./media/characters/athea/side.svg",
  21119. extra: 960 / 540,
  21120. bottom: 0.003
  21121. }
  21122. },
  21123. sitting: {
  21124. height: math.unit(6 * 2.85, "feet"),
  21125. weight: math.unit(14, "tons"),
  21126. name: "Sitting",
  21127. image: {
  21128. source: "./media/characters/athea/sitting.svg",
  21129. extra: 621 / 581,
  21130. bottom: 0.075
  21131. }
  21132. },
  21133. maw: {
  21134. height: math.unit(7.59498031496063, "feet"),
  21135. name: "Maw",
  21136. image: {
  21137. source: "./media/characters/athea/maw.svg"
  21138. }
  21139. },
  21140. },
  21141. [
  21142. {
  21143. name: "Lap Cat",
  21144. height: math.unit(2.5, "feet")
  21145. },
  21146. {
  21147. name: "Minimacro",
  21148. height: math.unit(15, "feet"),
  21149. default: true
  21150. },
  21151. {
  21152. name: "Macro",
  21153. height: math.unit(120, "feet")
  21154. },
  21155. {
  21156. name: "Macro+",
  21157. height: math.unit(640, "feet")
  21158. },
  21159. {
  21160. name: "Colossus",
  21161. height: math.unit(2.2, "miles")
  21162. },
  21163. ]
  21164. ))
  21165. characterMakers.push(() => makeCharacter(
  21166. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21167. {
  21168. front: {
  21169. height: math.unit(8 + 8 / 12, "feet"),
  21170. weight: math.unit(130, "kg"),
  21171. name: "Front",
  21172. image: {
  21173. source: "./media/characters/seroko/front.svg",
  21174. extra: 1385 / 1280,
  21175. bottom: 0.025
  21176. }
  21177. },
  21178. back: {
  21179. height: math.unit(8 + 8 / 12, "feet"),
  21180. weight: math.unit(130, "kg"),
  21181. name: "Back",
  21182. image: {
  21183. source: "./media/characters/seroko/back.svg",
  21184. extra: 1369 / 1238,
  21185. bottom: 0.018
  21186. }
  21187. },
  21188. frontDressed: {
  21189. height: math.unit(8 + 8 / 12, "feet"),
  21190. weight: math.unit(130, "kg"),
  21191. name: "Front (Dressed)",
  21192. image: {
  21193. source: "./media/characters/seroko/front-dressed.svg",
  21194. extra: 1366 / 1275,
  21195. bottom: 0.03
  21196. }
  21197. },
  21198. },
  21199. [
  21200. {
  21201. name: "Normal",
  21202. height: math.unit(8 + 8 / 12, "feet"),
  21203. default: true
  21204. },
  21205. ]
  21206. ))
  21207. characterMakers.push(() => makeCharacter(
  21208. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21209. {
  21210. front: {
  21211. height: math.unit(5.5, "feet"),
  21212. weight: math.unit(160, "lb"),
  21213. name: "Front",
  21214. image: {
  21215. source: "./media/characters/quatzi/front.svg",
  21216. extra: 2346 / 2242,
  21217. bottom: 0.015
  21218. }
  21219. },
  21220. },
  21221. [
  21222. {
  21223. name: "Normal",
  21224. height: math.unit(5.5, "feet"),
  21225. default: true
  21226. },
  21227. {
  21228. name: "Big",
  21229. height: math.unit(7.7, "feet")
  21230. },
  21231. ]
  21232. ))
  21233. characterMakers.push(() => makeCharacter(
  21234. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21235. {
  21236. front: {
  21237. height: math.unit(5 + 11 / 12, "feet"),
  21238. weight: math.unit(180, "lb"),
  21239. name: "Front",
  21240. image: {
  21241. source: "./media/characters/sen/front.svg",
  21242. extra: 1321 / 1254,
  21243. bottom: 0.015
  21244. }
  21245. },
  21246. side: {
  21247. height: math.unit(5 + 11 / 12, "feet"),
  21248. weight: math.unit(180, "lb"),
  21249. name: "Side",
  21250. image: {
  21251. source: "./media/characters/sen/side.svg",
  21252. extra: 1321 / 1254,
  21253. bottom: 0.007
  21254. }
  21255. },
  21256. back: {
  21257. height: math.unit(5 + 11 / 12, "feet"),
  21258. weight: math.unit(180, "lb"),
  21259. name: "Back",
  21260. image: {
  21261. source: "./media/characters/sen/back.svg",
  21262. extra: 1321 / 1254
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Normal",
  21269. height: math.unit(5 + 11 / 12, "feet"),
  21270. default: true
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21276. {
  21277. front: {
  21278. height: math.unit(166.6, "cm"),
  21279. weight: math.unit(66.6, "kg"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/fruity/front.svg",
  21283. extra: 1510 / 1386,
  21284. bottom: 0.04
  21285. }
  21286. },
  21287. back: {
  21288. height: math.unit(166.6, "cm"),
  21289. weight: math.unit(66.6, "lb"),
  21290. name: "Back",
  21291. image: {
  21292. source: "./media/characters/fruity/back.svg",
  21293. extra: 1563 / 1435,
  21294. bottom: 0.005
  21295. }
  21296. },
  21297. },
  21298. [
  21299. {
  21300. name: "Normal",
  21301. height: math.unit(166.6, "cm"),
  21302. default: true
  21303. },
  21304. {
  21305. name: "Demonic",
  21306. height: math.unit(166.6, "feet")
  21307. },
  21308. ]
  21309. ))
  21310. characterMakers.push(() => makeCharacter(
  21311. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21312. {
  21313. side: {
  21314. height: math.unit(10, "feet"),
  21315. weight: math.unit(500, "lb"),
  21316. name: "Side",
  21317. image: {
  21318. source: "./media/characters/zost/side.svg",
  21319. extra: 966 / 880,
  21320. bottom: 0.075
  21321. }
  21322. },
  21323. mawFront: {
  21324. height: math.unit(1.08, "meters"),
  21325. name: "Maw (Front)",
  21326. image: {
  21327. source: "./media/characters/zost/maw-front.svg"
  21328. }
  21329. },
  21330. mawSide: {
  21331. height: math.unit(2.66, "feet"),
  21332. name: "Maw (Side)",
  21333. image: {
  21334. source: "./media/characters/zost/maw-side.svg"
  21335. }
  21336. },
  21337. },
  21338. [
  21339. {
  21340. name: "Normal",
  21341. height: math.unit(10, "feet"),
  21342. default: true
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21348. {
  21349. front: {
  21350. height: math.unit(5 + 4 / 12, "feet"),
  21351. weight: math.unit(120, "lb"),
  21352. name: "Front",
  21353. image: {
  21354. source: "./media/characters/luci/front.svg",
  21355. extra: 1985 / 1884,
  21356. bottom: 0.04
  21357. }
  21358. },
  21359. back: {
  21360. height: math.unit(5 + 4 / 12, "feet"),
  21361. weight: math.unit(120, "lb"),
  21362. name: "Back",
  21363. image: {
  21364. source: "./media/characters/luci/back.svg",
  21365. extra: 1892 / 1791,
  21366. bottom: 0.002
  21367. }
  21368. },
  21369. },
  21370. [
  21371. {
  21372. name: "Normal",
  21373. height: math.unit(5 + 4 / 12, "feet"),
  21374. default: true
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21380. {
  21381. front: {
  21382. height: math.unit(1500, "feet"),
  21383. weight: math.unit(3.8e6, "tons"),
  21384. name: "Front",
  21385. image: {
  21386. source: "./media/characters/2th/front.svg",
  21387. extra: 3489 / 3350,
  21388. bottom: 0.1
  21389. }
  21390. },
  21391. foot: {
  21392. height: math.unit(461, "feet"),
  21393. name: "Foot",
  21394. image: {
  21395. source: "./media/characters/2th/foot.svg"
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "\"Micro\"",
  21402. height: math.unit(15 + 7 / 12, "feet")
  21403. },
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(1500, "feet"),
  21407. default: true
  21408. },
  21409. {
  21410. name: "Macro",
  21411. height: math.unit(5000, "feet")
  21412. },
  21413. {
  21414. name: "Megamacro",
  21415. height: math.unit(15, "miles")
  21416. },
  21417. {
  21418. name: "Gigamacro",
  21419. height: math.unit(4000, "miles")
  21420. },
  21421. {
  21422. name: "Galactic",
  21423. height: math.unit(50, "AU")
  21424. },
  21425. ]
  21426. ))
  21427. characterMakers.push(() => makeCharacter(
  21428. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21429. {
  21430. front: {
  21431. height: math.unit(5 + 6 / 12, "feet"),
  21432. weight: math.unit(220, "lb"),
  21433. name: "Front",
  21434. image: {
  21435. source: "./media/characters/amethyst/front.svg",
  21436. extra: 2078 / 2040,
  21437. bottom: 0.045
  21438. }
  21439. },
  21440. back: {
  21441. height: math.unit(5 + 6 / 12, "feet"),
  21442. weight: math.unit(220, "lb"),
  21443. name: "Back",
  21444. image: {
  21445. source: "./media/characters/amethyst/back.svg",
  21446. extra: 2021 / 1989,
  21447. bottom: 0.02
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Normal",
  21454. height: math.unit(5 + 6 / 12, "feet"),
  21455. default: true
  21456. },
  21457. ]
  21458. ))
  21459. characterMakers.push(() => makeCharacter(
  21460. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21461. {
  21462. front: {
  21463. height: math.unit(4 + 11 / 12, "feet"),
  21464. weight: math.unit(120, "lb"),
  21465. name: "Front",
  21466. image: {
  21467. source: "./media/characters/yumi-akiyama/front.svg",
  21468. extra: 1327 / 1235,
  21469. bottom: 0.02
  21470. }
  21471. },
  21472. back: {
  21473. height: math.unit(4 + 11 / 12, "feet"),
  21474. weight: math.unit(120, "lb"),
  21475. name: "Back",
  21476. image: {
  21477. source: "./media/characters/yumi-akiyama/back.svg",
  21478. extra: 1287 / 1245,
  21479. bottom: 0.002
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Galactic",
  21486. height: math.unit(50, "galaxies"),
  21487. default: true
  21488. },
  21489. {
  21490. name: "Universal",
  21491. height: math.unit(100, "universes")
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(8, "feet"),
  21500. weight: math.unit(500, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/rifter-yrmori/front.svg",
  21504. extra: 1180 / 1125,
  21505. bottom: 0.02
  21506. }
  21507. },
  21508. back: {
  21509. height: math.unit(8, "feet"),
  21510. weight: math.unit(500, "lb"),
  21511. name: "Back",
  21512. image: {
  21513. source: "./media/characters/rifter-yrmori/back.svg",
  21514. extra: 1190 / 1145,
  21515. bottom: 0.001
  21516. }
  21517. },
  21518. wings: {
  21519. height: math.unit(7.75, "feet"),
  21520. weight: math.unit(500, "lb"),
  21521. name: "Wings",
  21522. image: {
  21523. source: "./media/characters/rifter-yrmori/wings.svg",
  21524. extra: 1357 / 1285
  21525. }
  21526. },
  21527. maw: {
  21528. height: math.unit(0.8, "feet"),
  21529. name: "Maw",
  21530. image: {
  21531. source: "./media/characters/rifter-yrmori/maw.svg"
  21532. }
  21533. },
  21534. mawfront: {
  21535. height: math.unit(1.45, "feet"),
  21536. name: "Maw (Front)",
  21537. image: {
  21538. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(8, "feet"),
  21546. default: true
  21547. },
  21548. {
  21549. name: "Macro",
  21550. height: math.unit(42, "meters")
  21551. },
  21552. ]
  21553. ))
  21554. characterMakers.push(() => makeCharacter(
  21555. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21556. {
  21557. were: {
  21558. height: math.unit(25 + 6 / 12, "feet"),
  21559. weight: math.unit(10000, "lb"),
  21560. name: "Were",
  21561. image: {
  21562. source: "./media/characters/tahajin/were.svg",
  21563. extra: 801 / 770,
  21564. bottom: 0.042
  21565. }
  21566. },
  21567. aquatic: {
  21568. height: math.unit(6 + 4 / 12, "feet"),
  21569. weight: math.unit(160, "lb"),
  21570. name: "Aquatic",
  21571. image: {
  21572. source: "./media/characters/tahajin/aquatic.svg",
  21573. extra: 572 / 542,
  21574. bottom: 0.04
  21575. }
  21576. },
  21577. chow: {
  21578. height: math.unit(8 + 11 / 12, "feet"),
  21579. weight: math.unit(450, "lb"),
  21580. name: "Chow",
  21581. image: {
  21582. source: "./media/characters/tahajin/chow.svg",
  21583. extra: 660 / 640,
  21584. bottom: 0.015
  21585. }
  21586. },
  21587. demiNaga: {
  21588. height: math.unit(6 + 8 / 12, "feet"),
  21589. weight: math.unit(300, "lb"),
  21590. name: "Demi Naga",
  21591. image: {
  21592. source: "./media/characters/tahajin/demi-naga.svg",
  21593. extra: 643 / 615,
  21594. bottom: 0.1
  21595. }
  21596. },
  21597. data: {
  21598. height: math.unit(5, "inches"),
  21599. weight: math.unit(0.1, "lb"),
  21600. name: "Data",
  21601. image: {
  21602. source: "./media/characters/tahajin/data.svg"
  21603. }
  21604. },
  21605. fluu: {
  21606. height: math.unit(5 + 7 / 12, "feet"),
  21607. weight: math.unit(140, "lb"),
  21608. name: "Fluu",
  21609. image: {
  21610. source: "./media/characters/tahajin/fluu.svg",
  21611. extra: 628 / 592,
  21612. bottom: 0.02
  21613. }
  21614. },
  21615. starWarrior: {
  21616. height: math.unit(4 + 5 / 12, "feet"),
  21617. weight: math.unit(50, "lb"),
  21618. name: "Star Warrior",
  21619. image: {
  21620. source: "./media/characters/tahajin/star-warrior.svg"
  21621. }
  21622. },
  21623. },
  21624. [
  21625. {
  21626. name: "Normal",
  21627. height: math.unit(25 + 6 / 12, "feet"),
  21628. default: true
  21629. },
  21630. ]
  21631. ))
  21632. characterMakers.push(() => makeCharacter(
  21633. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21634. {
  21635. front: {
  21636. height: math.unit(8, "feet"),
  21637. weight: math.unit(350, "lb"),
  21638. name: "Front",
  21639. image: {
  21640. source: "./media/characters/gabira/front.svg",
  21641. extra: 608 / 580,
  21642. bottom: 0.03
  21643. }
  21644. },
  21645. back: {
  21646. height: math.unit(8, "feet"),
  21647. weight: math.unit(350, "lb"),
  21648. name: "Back",
  21649. image: {
  21650. source: "./media/characters/gabira/back.svg",
  21651. extra: 608 / 580,
  21652. bottom: 0.03
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Normal",
  21659. height: math.unit(8, "feet"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21666. {
  21667. front: {
  21668. height: math.unit(5 + 3 / 12, "feet"),
  21669. weight: math.unit(137, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/sasha-katraine/front.svg",
  21673. bottom: 0.045
  21674. }
  21675. },
  21676. },
  21677. [
  21678. {
  21679. name: "Micro",
  21680. height: math.unit(5, "inches")
  21681. },
  21682. {
  21683. name: "Normal",
  21684. height: math.unit(5 + 3 / 12, "feet"),
  21685. default: true
  21686. },
  21687. ]
  21688. ))
  21689. characterMakers.push(() => makeCharacter(
  21690. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21691. {
  21692. side: {
  21693. height: math.unit(4, "inches"),
  21694. weight: math.unit(200, "grams"),
  21695. name: "Side",
  21696. image: {
  21697. source: "./media/characters/der/side.svg",
  21698. extra: 719 / 400,
  21699. bottom: 30.6 / 749.9187
  21700. }
  21701. },
  21702. },
  21703. [
  21704. {
  21705. name: "Micro",
  21706. height: math.unit(4, "inches"),
  21707. default: true
  21708. },
  21709. ]
  21710. ))
  21711. characterMakers.push(() => makeCharacter(
  21712. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21713. {
  21714. side: {
  21715. height: math.unit(30, "meters"),
  21716. weight: math.unit(700, "tonnes"),
  21717. name: "Side",
  21718. image: {
  21719. source: "./media/characters/fixerdragon/side.svg",
  21720. extra: (1293.0514 - 116.03) / 1106.86,
  21721. bottom: 116.03 / 1293.0514
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Planck",
  21728. height: math.unit(1.6e-35, "meters")
  21729. },
  21730. {
  21731. name: "Micro",
  21732. height: math.unit(0.4, "meters")
  21733. },
  21734. {
  21735. name: "Normal",
  21736. height: math.unit(30, "meters"),
  21737. default: true
  21738. },
  21739. {
  21740. name: "Megamacro",
  21741. height: math.unit(1.2, "megameters")
  21742. },
  21743. {
  21744. name: "Teramacro",
  21745. height: math.unit(130, "terameters")
  21746. },
  21747. {
  21748. name: "Yottamacro",
  21749. height: math.unit(6200, "yottameters")
  21750. },
  21751. ]
  21752. ));
  21753. characterMakers.push(() => makeCharacter(
  21754. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21755. {
  21756. front: {
  21757. height: math.unit(8, "feet"),
  21758. weight: math.unit(250, "lb"),
  21759. name: "Front",
  21760. image: {
  21761. source: "./media/characters/kite/front.svg",
  21762. extra: 2796 / 2659,
  21763. bottom: 0.002
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(8, "feet"),
  21771. default: true
  21772. },
  21773. {
  21774. name: "Macro",
  21775. height: math.unit(360, "feet")
  21776. },
  21777. {
  21778. name: "Megamacro",
  21779. height: math.unit(1500, "feet")
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21785. {
  21786. front: {
  21787. height: math.unit(5 + 11/12, "feet"),
  21788. weight: math.unit(170, "lb"),
  21789. name: "Front",
  21790. image: {
  21791. source: "./media/characters/poojawa-vynar/front.svg",
  21792. extra: 1735/1585,
  21793. bottom: 96/1831
  21794. }
  21795. },
  21796. back: {
  21797. height: math.unit(5 + 11/12, "feet"),
  21798. weight: math.unit(170, "lb"),
  21799. name: "Back",
  21800. image: {
  21801. source: "./media/characters/poojawa-vynar/back.svg",
  21802. extra: 1749/1607,
  21803. bottom: 28/1777
  21804. }
  21805. },
  21806. male: {
  21807. height: math.unit(5 + 11/12, "feet"),
  21808. weight: math.unit(170, "lb"),
  21809. name: "Male",
  21810. image: {
  21811. source: "./media/characters/poojawa-vynar/male.svg",
  21812. extra: 1855/1713,
  21813. bottom: 63/1918
  21814. }
  21815. },
  21816. taur: {
  21817. height: math.unit(5 + 11/12, "feet"),
  21818. weight: math.unit(170, "lb"),
  21819. name: "Taur",
  21820. image: {
  21821. source: "./media/characters/poojawa-vynar/taur.svg",
  21822. extra: 1151/1059,
  21823. bottom: 356/1507
  21824. }
  21825. },
  21826. frontDressed: {
  21827. height: math.unit(5 + 11/12, "feet"),
  21828. weight: math.unit(170, "lb"),
  21829. name: "Front (Dressed)",
  21830. image: {
  21831. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21832. extra: 1735/1585,
  21833. bottom: 96/1831
  21834. }
  21835. },
  21836. backDressed: {
  21837. height: math.unit(5 + 11/12, "feet"),
  21838. weight: math.unit(170, "lb"),
  21839. name: "Back (Dressed)",
  21840. image: {
  21841. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21842. extra: 1749/1607,
  21843. bottom: 28/1777
  21844. }
  21845. },
  21846. maleDressed: {
  21847. height: math.unit(5 + 11/12, "feet"),
  21848. weight: math.unit(170, "lb"),
  21849. name: "Male (Dressed)",
  21850. image: {
  21851. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21852. extra: 1855/1713,
  21853. bottom: 63/1918
  21854. }
  21855. },
  21856. taurDressed: {
  21857. height: math.unit(5 + 11/12, "feet"),
  21858. weight: math.unit(170, "lb"),
  21859. name: "Taur (Dressed)",
  21860. image: {
  21861. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21862. extra: 1151/1059,
  21863. bottom: 356/1507
  21864. }
  21865. },
  21866. maw: {
  21867. height: math.unit(1.46, "feet"),
  21868. name: "Maw",
  21869. image: {
  21870. source: "./media/characters/poojawa-vynar/maw.svg"
  21871. }
  21872. },
  21873. head: {
  21874. height: math.unit(2.34, "feet"),
  21875. name: "Head",
  21876. image: {
  21877. source: "./media/characters/poojawa-vynar/head.svg"
  21878. }
  21879. },
  21880. paw: {
  21881. height: math.unit(1.61, "feet"),
  21882. name: "Paw",
  21883. image: {
  21884. source: "./media/characters/poojawa-vynar/paw.svg"
  21885. }
  21886. },
  21887. pawToering: {
  21888. height: math.unit(1.72, "feet"),
  21889. name: "Paw (Toering)",
  21890. image: {
  21891. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21892. }
  21893. },
  21894. toering: {
  21895. height: math.unit(2.9, "inches"),
  21896. name: "Toering",
  21897. image: {
  21898. source: "./media/characters/poojawa-vynar/toering.svg"
  21899. }
  21900. },
  21901. shaft: {
  21902. height: math.unit(0.625, "feet"),
  21903. name: "Shaft",
  21904. image: {
  21905. source: "./media/characters/poojawa-vynar/shaft.svg"
  21906. }
  21907. },
  21908. spade: {
  21909. height: math.unit(0.42, "feet"),
  21910. name: "Spade",
  21911. image: {
  21912. source: "./media/characters/poojawa-vynar/spade.svg"
  21913. }
  21914. },
  21915. },
  21916. [
  21917. {
  21918. name: "Shortstack",
  21919. height: math.unit(4, "feet")
  21920. },
  21921. {
  21922. name: "Normal",
  21923. height: math.unit(5 + 11 / 12, "feet"),
  21924. default: true
  21925. },
  21926. {
  21927. name: "Tauric",
  21928. height: math.unit(4, "meters")
  21929. },
  21930. ]
  21931. ))
  21932. characterMakers.push(() => makeCharacter(
  21933. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21934. {
  21935. front: {
  21936. height: math.unit(293, "meters"),
  21937. weight: math.unit(70400, "tons"),
  21938. name: "Front",
  21939. image: {
  21940. source: "./media/characters/violette/front.svg",
  21941. extra: 1227 / 1180,
  21942. bottom: 0.005
  21943. }
  21944. },
  21945. back: {
  21946. height: math.unit(293, "meters"),
  21947. weight: math.unit(70400, "tons"),
  21948. name: "Back",
  21949. image: {
  21950. source: "./media/characters/violette/back.svg",
  21951. extra: 1227 / 1180,
  21952. bottom: 0.005
  21953. }
  21954. },
  21955. },
  21956. [
  21957. {
  21958. name: "Macro",
  21959. height: math.unit(293, "meters"),
  21960. default: true
  21961. },
  21962. ]
  21963. ))
  21964. characterMakers.push(() => makeCharacter(
  21965. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21966. {
  21967. front: {
  21968. height: math.unit(1050, "feet"),
  21969. weight: math.unit(200000, "tons"),
  21970. name: "Front",
  21971. image: {
  21972. source: "./media/characters/alessandra/front.svg",
  21973. extra: 960 / 912,
  21974. bottom: 0.06
  21975. }
  21976. },
  21977. },
  21978. [
  21979. {
  21980. name: "Macro",
  21981. height: math.unit(1050, "feet")
  21982. },
  21983. {
  21984. name: "Macro+",
  21985. height: math.unit(900, "meters"),
  21986. default: true
  21987. },
  21988. ]
  21989. ))
  21990. characterMakers.push(() => makeCharacter(
  21991. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21992. {
  21993. front: {
  21994. height: math.unit(5, "feet"),
  21995. weight: math.unit(187, "lb"),
  21996. name: "Front",
  21997. image: {
  21998. source: "./media/characters/person/front.svg",
  21999. extra: 3087 / 2945,
  22000. bottom: 91 / 3181
  22001. }
  22002. },
  22003. },
  22004. [
  22005. {
  22006. name: "Micro",
  22007. height: math.unit(3, "inches")
  22008. },
  22009. {
  22010. name: "Normal",
  22011. height: math.unit(5, "feet"),
  22012. default: true
  22013. },
  22014. {
  22015. name: "Macro",
  22016. height: math.unit(90, "feet")
  22017. },
  22018. {
  22019. name: "Max Size",
  22020. height: math.unit(280, "feet")
  22021. },
  22022. ]
  22023. ))
  22024. characterMakers.push(() => makeCharacter(
  22025. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22026. {
  22027. front: {
  22028. height: math.unit(4.5, "meters"),
  22029. weight: math.unit(3200, "lb"),
  22030. name: "Front",
  22031. image: {
  22032. source: "./media/characters/ty/front.svg",
  22033. extra: 1038 / 960,
  22034. bottom: 31.156 / 1068
  22035. }
  22036. },
  22037. back: {
  22038. height: math.unit(4.5, "meters"),
  22039. weight: math.unit(3200, "lb"),
  22040. name: "Back",
  22041. image: {
  22042. source: "./media/characters/ty/back.svg",
  22043. extra: 1044 / 966,
  22044. bottom: 7.48 / 1049
  22045. }
  22046. },
  22047. },
  22048. [
  22049. {
  22050. name: "Normal",
  22051. height: math.unit(4.5, "meters"),
  22052. default: true
  22053. },
  22054. ]
  22055. ))
  22056. characterMakers.push(() => makeCharacter(
  22057. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22058. {
  22059. front: {
  22060. height: math.unit(5 + 4 / 12, "feet"),
  22061. weight: math.unit(115, "lb"),
  22062. name: "Front",
  22063. image: {
  22064. source: "./media/characters/rocky/front.svg",
  22065. extra: 1012 / 975,
  22066. bottom: 54 / 1066
  22067. }
  22068. },
  22069. },
  22070. [
  22071. {
  22072. name: "Normal",
  22073. height: math.unit(5 + 4 / 12, "feet"),
  22074. default: true
  22075. },
  22076. ]
  22077. ))
  22078. characterMakers.push(() => makeCharacter(
  22079. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22080. {
  22081. upright: {
  22082. height: math.unit(6, "meters"),
  22083. weight: math.unit(4000, "kg"),
  22084. name: "Upright",
  22085. image: {
  22086. source: "./media/characters/ruin/upright.svg",
  22087. extra: 668 / 661,
  22088. bottom: 42 / 799.8396
  22089. }
  22090. },
  22091. },
  22092. [
  22093. {
  22094. name: "Normal",
  22095. height: math.unit(6, "meters"),
  22096. default: true
  22097. },
  22098. ]
  22099. ))
  22100. characterMakers.push(() => makeCharacter(
  22101. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22102. {
  22103. front: {
  22104. height: math.unit(5, "feet"),
  22105. weight: math.unit(106, "lb"),
  22106. name: "Front",
  22107. image: {
  22108. source: "./media/characters/robin/front.svg",
  22109. extra: 862 / 799,
  22110. bottom: 42.4 / 914.8856
  22111. }
  22112. },
  22113. },
  22114. [
  22115. {
  22116. name: "Normal",
  22117. height: math.unit(5, "feet"),
  22118. default: true
  22119. },
  22120. ]
  22121. ))
  22122. characterMakers.push(() => makeCharacter(
  22123. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22124. {
  22125. side: {
  22126. height: math.unit(3, "feet"),
  22127. weight: math.unit(225, "lb"),
  22128. name: "Side",
  22129. image: {
  22130. source: "./media/characters/saian/side.svg",
  22131. extra: 566 / 356,
  22132. bottom: 79.7 / 643
  22133. }
  22134. },
  22135. maw: {
  22136. height: math.unit(2.85, "feet"),
  22137. name: "Maw",
  22138. image: {
  22139. source: "./media/characters/saian/maw.svg"
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Normal",
  22146. height: math.unit(3, "feet"),
  22147. default: true
  22148. },
  22149. ]
  22150. ))
  22151. characterMakers.push(() => makeCharacter(
  22152. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22153. {
  22154. side: {
  22155. height: math.unit(8, "feet"),
  22156. weight: math.unit(300, "lb"),
  22157. name: "Side",
  22158. image: {
  22159. source: "./media/characters/equus-silvermane/side.svg",
  22160. extra: 2176 / 2050,
  22161. bottom: 65.7 / 2245
  22162. }
  22163. },
  22164. front: {
  22165. height: math.unit(8, "feet"),
  22166. weight: math.unit(300, "lb"),
  22167. name: "Front",
  22168. image: {
  22169. source: "./media/characters/equus-silvermane/front.svg",
  22170. extra: 4633 / 4400,
  22171. bottom: 71.3 / 4706.915
  22172. }
  22173. },
  22174. sideStepping: {
  22175. height: math.unit(8, "feet"),
  22176. weight: math.unit(300, "lb"),
  22177. name: "Side (Stepping)",
  22178. image: {
  22179. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22180. extra: 1968 / 1860,
  22181. bottom: 16.4 / 1989
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Normal",
  22188. height: math.unit(8, "feet")
  22189. },
  22190. {
  22191. name: "Minimacro",
  22192. height: math.unit(75, "feet"),
  22193. default: true
  22194. },
  22195. {
  22196. name: "Macro",
  22197. height: math.unit(150, "feet")
  22198. },
  22199. {
  22200. name: "Macro+",
  22201. height: math.unit(1000, "feet")
  22202. },
  22203. {
  22204. name: "Megamacro",
  22205. height: math.unit(1, "mile")
  22206. },
  22207. ]
  22208. ))
  22209. characterMakers.push(() => makeCharacter(
  22210. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22211. {
  22212. side: {
  22213. height: math.unit(20, "feet"),
  22214. weight: math.unit(30000, "kg"),
  22215. name: "Side",
  22216. image: {
  22217. source: "./media/characters/windar/side.svg",
  22218. extra: 1491 / 1248,
  22219. bottom: 82.56 / 1568
  22220. }
  22221. },
  22222. },
  22223. [
  22224. {
  22225. name: "Normal",
  22226. height: math.unit(20, "feet"),
  22227. default: true
  22228. },
  22229. ]
  22230. ))
  22231. characterMakers.push(() => makeCharacter(
  22232. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22233. {
  22234. side: {
  22235. height: math.unit(15.66, "feet"),
  22236. weight: math.unit(150, "lb"),
  22237. name: "Side",
  22238. image: {
  22239. source: "./media/characters/melody/side.svg",
  22240. extra: 1097 / 944,
  22241. bottom: 11.8 / 1109
  22242. }
  22243. },
  22244. sideOutfit: {
  22245. height: math.unit(15.66, "feet"),
  22246. weight: math.unit(150, "lb"),
  22247. name: "Side (Outfit)",
  22248. image: {
  22249. source: "./media/characters/melody/side-outfit.svg",
  22250. extra: 1097 / 944,
  22251. bottom: 11.8 / 1109
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(15.66, "feet"),
  22259. default: true
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22265. {
  22266. front: {
  22267. height: math.unit(8, "feet"),
  22268. weight: math.unit(325, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/windera/front.svg",
  22272. extra: 3180 / 2845,
  22273. bottom: 178 / 3365
  22274. }
  22275. },
  22276. },
  22277. [
  22278. {
  22279. name: "Normal",
  22280. height: math.unit(8, "feet"),
  22281. default: true
  22282. },
  22283. ]
  22284. ))
  22285. characterMakers.push(() => makeCharacter(
  22286. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22287. {
  22288. front: {
  22289. height: math.unit(28.75, "feet"),
  22290. weight: math.unit(2000, "kg"),
  22291. name: "Front",
  22292. image: {
  22293. source: "./media/characters/sonear/front.svg",
  22294. extra: 1041.1 / 964.9,
  22295. bottom: 53.7 / 1096.6
  22296. }
  22297. },
  22298. },
  22299. [
  22300. {
  22301. name: "Normal",
  22302. height: math.unit(28.75, "feet"),
  22303. default: true
  22304. },
  22305. ]
  22306. ))
  22307. characterMakers.push(() => makeCharacter(
  22308. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22309. {
  22310. side: {
  22311. height: math.unit(25.5, "feet"),
  22312. weight: math.unit(23000, "kg"),
  22313. name: "Side",
  22314. image: {
  22315. source: "./media/characters/kanara/side.svg"
  22316. }
  22317. },
  22318. },
  22319. [
  22320. {
  22321. name: "Normal",
  22322. height: math.unit(25.5, "feet"),
  22323. default: true
  22324. },
  22325. ]
  22326. ))
  22327. characterMakers.push(() => makeCharacter(
  22328. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22329. {
  22330. side: {
  22331. height: math.unit(10, "feet"),
  22332. weight: math.unit(1000, "kg"),
  22333. name: "Side",
  22334. image: {
  22335. source: "./media/characters/ereus/side.svg",
  22336. extra: 1157 / 959,
  22337. bottom: 153 / 1312.5
  22338. }
  22339. },
  22340. },
  22341. [
  22342. {
  22343. name: "Normal",
  22344. height: math.unit(10, "feet"),
  22345. default: true
  22346. },
  22347. ]
  22348. ))
  22349. characterMakers.push(() => makeCharacter(
  22350. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22351. {
  22352. side: {
  22353. height: math.unit(4.5, "feet"),
  22354. weight: math.unit(500, "lb"),
  22355. name: "Side",
  22356. image: {
  22357. source: "./media/characters/e-ter/side.svg",
  22358. extra: 1550 / 1248,
  22359. bottom: 146 / 1694
  22360. }
  22361. },
  22362. },
  22363. [
  22364. {
  22365. name: "Normal",
  22366. height: math.unit(4.5, "feet"),
  22367. default: true
  22368. },
  22369. ]
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22373. {
  22374. side: {
  22375. height: math.unit(9.7, "feet"),
  22376. weight: math.unit(4000, "kg"),
  22377. name: "Side",
  22378. image: {
  22379. source: "./media/characters/yamie/side.svg"
  22380. }
  22381. },
  22382. },
  22383. [
  22384. {
  22385. name: "Normal",
  22386. height: math.unit(9.7, "feet"),
  22387. default: true
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22393. {
  22394. front: {
  22395. height: math.unit(50, "feet"),
  22396. weight: math.unit(50000, "kg"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/anders/front.svg",
  22400. extra: 570 / 539,
  22401. bottom: 14.7 / 586.7
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Large",
  22408. height: math.unit(50, "feet")
  22409. },
  22410. {
  22411. name: "Macro",
  22412. height: math.unit(2000, "feet"),
  22413. default: true
  22414. },
  22415. {
  22416. name: "Megamacro",
  22417. height: math.unit(12, "miles")
  22418. },
  22419. ]
  22420. ))
  22421. characterMakers.push(() => makeCharacter(
  22422. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22423. {
  22424. front: {
  22425. height: math.unit(7 + 2 / 12, "feet"),
  22426. weight: math.unit(300, "lb"),
  22427. name: "Front",
  22428. image: {
  22429. source: "./media/characters/reban/front.svg",
  22430. extra: 1287/1212,
  22431. bottom: 148/1435
  22432. }
  22433. },
  22434. head: {
  22435. height: math.unit(1.95, "feet"),
  22436. name: "Head",
  22437. image: {
  22438. source: "./media/characters/reban/head.svg"
  22439. }
  22440. },
  22441. maw: {
  22442. height: math.unit(0.95, "feet"),
  22443. name: "Maw",
  22444. image: {
  22445. source: "./media/characters/reban/maw.svg"
  22446. }
  22447. },
  22448. foot: {
  22449. height: math.unit(1.65, "feet"),
  22450. name: "Foot",
  22451. image: {
  22452. source: "./media/characters/reban/foot.svg"
  22453. }
  22454. },
  22455. dick: {
  22456. height: math.unit(7 / 5, "feet"),
  22457. name: "Dick",
  22458. image: {
  22459. source: "./media/characters/reban/dick.svg"
  22460. }
  22461. },
  22462. },
  22463. [
  22464. {
  22465. name: "Natural Height",
  22466. height: math.unit(7 + 2 / 12, "feet")
  22467. },
  22468. {
  22469. name: "Macro",
  22470. height: math.unit(500, "feet"),
  22471. default: true
  22472. },
  22473. {
  22474. name: "Canon Height",
  22475. height: math.unit(50, "AU")
  22476. },
  22477. ]
  22478. ))
  22479. characterMakers.push(() => makeCharacter(
  22480. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22481. {
  22482. front: {
  22483. height: math.unit(6, "feet"),
  22484. weight: math.unit(150, "lb"),
  22485. name: "Front",
  22486. image: {
  22487. source: "./media/characters/terrance-keayes/front.svg",
  22488. extra: 1.005,
  22489. bottom: 151 / 1615
  22490. }
  22491. },
  22492. side: {
  22493. height: math.unit(6, "feet"),
  22494. weight: math.unit(150, "lb"),
  22495. name: "Side",
  22496. image: {
  22497. source: "./media/characters/terrance-keayes/side.svg",
  22498. extra: 1.005,
  22499. bottom: 129.4 / 1544
  22500. }
  22501. },
  22502. back: {
  22503. height: math.unit(6, "feet"),
  22504. weight: math.unit(150, "lb"),
  22505. name: "Back",
  22506. image: {
  22507. source: "./media/characters/terrance-keayes/back.svg",
  22508. extra: 1.005,
  22509. bottom: 58.4 / 1557.3
  22510. }
  22511. },
  22512. dick: {
  22513. height: math.unit(6 * 0.208, "feet"),
  22514. name: "Dick",
  22515. image: {
  22516. source: "./media/characters/terrance-keayes/dick.svg"
  22517. }
  22518. },
  22519. },
  22520. [
  22521. {
  22522. name: "Canon Height",
  22523. height: math.unit(35, "miles"),
  22524. default: true
  22525. },
  22526. ]
  22527. ))
  22528. characterMakers.push(() => makeCharacter(
  22529. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22530. {
  22531. front: {
  22532. height: math.unit(6, "feet"),
  22533. weight: math.unit(150, "lb"),
  22534. name: "Front",
  22535. image: {
  22536. source: "./media/characters/ofelia/front.svg",
  22537. extra: 1130/1117,
  22538. bottom: 91/1221
  22539. }
  22540. },
  22541. back: {
  22542. height: math.unit(6, "feet"),
  22543. weight: math.unit(150, "lb"),
  22544. name: "Back",
  22545. image: {
  22546. source: "./media/characters/ofelia/back.svg",
  22547. extra: 1172/1159,
  22548. bottom: 28/1200
  22549. }
  22550. },
  22551. maw: {
  22552. height: math.unit(1, "feet"),
  22553. name: "Maw",
  22554. image: {
  22555. source: "./media/characters/ofelia/maw.svg"
  22556. }
  22557. },
  22558. foot: {
  22559. height: math.unit(1.949, "feet"),
  22560. name: "Foot",
  22561. image: {
  22562. source: "./media/characters/ofelia/foot.svg"
  22563. }
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "Canon Height",
  22569. height: math.unit(2000, "miles"),
  22570. default: true
  22571. },
  22572. ]
  22573. ))
  22574. characterMakers.push(() => makeCharacter(
  22575. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22576. {
  22577. front: {
  22578. height: math.unit(6, "feet"),
  22579. weight: math.unit(150, "lb"),
  22580. name: "Front",
  22581. image: {
  22582. source: "./media/characters/samuel/front.svg",
  22583. extra: 265 / 258,
  22584. bottom: 2 / 266.1566
  22585. }
  22586. },
  22587. },
  22588. [
  22589. {
  22590. name: "Macro",
  22591. height: math.unit(100, "feet"),
  22592. default: true
  22593. },
  22594. {
  22595. name: "Full Size",
  22596. height: math.unit(1000, "miles")
  22597. },
  22598. ]
  22599. ))
  22600. characterMakers.push(() => makeCharacter(
  22601. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22602. {
  22603. front: {
  22604. height: math.unit(6, "feet"),
  22605. weight: math.unit(300, "lb"),
  22606. name: "Front",
  22607. image: {
  22608. source: "./media/characters/beishir-kiel/front.svg",
  22609. extra: 569 / 547,
  22610. bottom: 41.9 / 609
  22611. }
  22612. },
  22613. maw: {
  22614. height: math.unit(6 * 0.202, "feet"),
  22615. name: "Maw",
  22616. image: {
  22617. source: "./media/characters/beishir-kiel/maw.svg"
  22618. }
  22619. },
  22620. },
  22621. [
  22622. {
  22623. name: "Macro",
  22624. height: math.unit(300, "feet"),
  22625. default: true
  22626. },
  22627. ]
  22628. ))
  22629. characterMakers.push(() => makeCharacter(
  22630. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22631. {
  22632. front: {
  22633. height: math.unit(5 + 7/12, "feet"),
  22634. weight: math.unit(120, "lb"),
  22635. name: "Front",
  22636. image: {
  22637. source: "./media/characters/logan-grey/front.svg",
  22638. extra: 1836/1738,
  22639. bottom: 108/1944
  22640. }
  22641. },
  22642. back: {
  22643. height: math.unit(5 + 7/12, "feet"),
  22644. weight: math.unit(120, "lb"),
  22645. name: "Back",
  22646. image: {
  22647. source: "./media/characters/logan-grey/back.svg",
  22648. extra: 1880/1794,
  22649. bottom: 24/1904
  22650. }
  22651. },
  22652. frontSfw: {
  22653. height: math.unit(5 + 7/12, "feet"),
  22654. weight: math.unit(120, "lb"),
  22655. name: "Front (SFW)",
  22656. image: {
  22657. source: "./media/characters/logan-grey/front-sfw.svg",
  22658. extra: 1836/1738,
  22659. bottom: 108/1944
  22660. }
  22661. },
  22662. backSfw: {
  22663. height: math.unit(5 + 7/12, "feet"),
  22664. weight: math.unit(120, "lb"),
  22665. name: "Back (SFW)",
  22666. image: {
  22667. source: "./media/characters/logan-grey/back-sfw.svg",
  22668. extra: 1880/1794,
  22669. bottom: 24/1904
  22670. }
  22671. },
  22672. hands: {
  22673. height: math.unit(0.84, "feet"),
  22674. name: "Hands",
  22675. image: {
  22676. source: "./media/characters/logan-grey/hands.svg"
  22677. }
  22678. },
  22679. paws: {
  22680. height: math.unit(0.72, "feet"),
  22681. name: "Paws",
  22682. image: {
  22683. source: "./media/characters/logan-grey/paws.svg"
  22684. }
  22685. },
  22686. cock: {
  22687. height: math.unit(1.45, "feet"),
  22688. name: "Cock",
  22689. image: {
  22690. source: "./media/characters/logan-grey/cock.svg"
  22691. }
  22692. },
  22693. cockAlt: {
  22694. height: math.unit(1.437, "feet"),
  22695. name: "Cock (alt)",
  22696. image: {
  22697. source: "./media/characters/logan-grey/cock-alt.svg"
  22698. }
  22699. },
  22700. },
  22701. [
  22702. {
  22703. name: "Normal",
  22704. height: math.unit(5 + 8 / 12, "feet")
  22705. },
  22706. {
  22707. name: "The 500 Foot Femboy",
  22708. height: math.unit(500, "feet"),
  22709. default: true
  22710. },
  22711. {
  22712. name: "Megmacro",
  22713. height: math.unit(20, "miles")
  22714. },
  22715. ]
  22716. ))
  22717. characterMakers.push(() => makeCharacter(
  22718. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22719. {
  22720. front: {
  22721. height: math.unit(8 + 2 / 12, "feet"),
  22722. weight: math.unit(275, "lb"),
  22723. name: "Front",
  22724. image: {
  22725. source: "./media/characters/draganta/front.svg",
  22726. extra: 1177 / 1135,
  22727. bottom: 33.46 / 1212.1
  22728. }
  22729. },
  22730. },
  22731. [
  22732. {
  22733. name: "Normal",
  22734. height: math.unit(8 + 6 / 12, "feet"),
  22735. default: true
  22736. },
  22737. {
  22738. name: "Macro",
  22739. height: math.unit(150, "feet")
  22740. },
  22741. {
  22742. name: "Megamacro",
  22743. height: math.unit(1000, "miles")
  22744. },
  22745. ]
  22746. ))
  22747. characterMakers.push(() => makeCharacter(
  22748. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22749. {
  22750. front: {
  22751. height: math.unit(1.72, "m"),
  22752. weight: math.unit(80, "lb"),
  22753. name: "Front",
  22754. image: {
  22755. source: "./media/characters/voski/front.svg",
  22756. extra: 2076.22 / 2022.4,
  22757. bottom: 102.7 / 2177.3866
  22758. }
  22759. },
  22760. frontNsfw: {
  22761. height: math.unit(1.72, "m"),
  22762. weight: math.unit(80, "lb"),
  22763. name: "Front (NSFW)",
  22764. image: {
  22765. source: "./media/characters/voski/front-nsfw.svg",
  22766. extra: 2076.22 / 2022.4,
  22767. bottom: 102.7 / 2177.3866
  22768. }
  22769. },
  22770. back: {
  22771. height: math.unit(1.72, "m"),
  22772. weight: math.unit(80, "lb"),
  22773. name: "Back",
  22774. image: {
  22775. source: "./media/characters/voski/back.svg",
  22776. extra: 2104 / 2051,
  22777. bottom: 10.45 / 2113.63
  22778. }
  22779. },
  22780. },
  22781. [
  22782. {
  22783. name: "Normal",
  22784. height: math.unit(1.72, "m")
  22785. },
  22786. {
  22787. name: "Macro",
  22788. height: math.unit(55, "m"),
  22789. default: true
  22790. },
  22791. {
  22792. name: "Macro+",
  22793. height: math.unit(300, "m")
  22794. },
  22795. {
  22796. name: "Macro++",
  22797. height: math.unit(700, "m")
  22798. },
  22799. {
  22800. name: "Macro+++",
  22801. height: math.unit(4500, "m")
  22802. },
  22803. {
  22804. name: "Macro++++",
  22805. height: math.unit(45, "km")
  22806. },
  22807. {
  22808. name: "Macro+++++",
  22809. height: math.unit(1220, "km")
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22815. {
  22816. front: {
  22817. height: math.unit(2.3, "m"),
  22818. weight: math.unit(304, "kg"),
  22819. name: "Front",
  22820. image: {
  22821. source: "./media/characters/icowom-lee/front.svg",
  22822. extra: 985 / 955,
  22823. bottom: 25.4 / 1012
  22824. }
  22825. },
  22826. fronttentacles: {
  22827. height: math.unit(2.3, "m"),
  22828. weight: math.unit(304, "kg"),
  22829. name: "Front-tentacles",
  22830. image: {
  22831. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22832. extra: 985 / 955,
  22833. bottom: 25.4 / 1012
  22834. }
  22835. },
  22836. back: {
  22837. height: math.unit(2.3, "m"),
  22838. weight: math.unit(304, "kg"),
  22839. name: "Back",
  22840. image: {
  22841. source: "./media/characters/icowom-lee/back.svg",
  22842. extra: 975 / 954,
  22843. bottom: 9.5 / 985
  22844. }
  22845. },
  22846. backtentacles: {
  22847. height: math.unit(2.3, "m"),
  22848. weight: math.unit(304, "kg"),
  22849. name: "Back-tentacles",
  22850. image: {
  22851. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22852. extra: 975 / 954,
  22853. bottom: 9.5 / 985
  22854. }
  22855. },
  22856. frontDressed: {
  22857. height: math.unit(2.3, "m"),
  22858. weight: math.unit(304, "kg"),
  22859. name: "Front (Dressed)",
  22860. image: {
  22861. source: "./media/characters/icowom-lee/front-dressed.svg",
  22862. extra: 3076 / 2933,
  22863. bottom: 51.4 / 3125.1889
  22864. }
  22865. },
  22866. rump: {
  22867. height: math.unit(0.776, "meters"),
  22868. name: "Rump",
  22869. image: {
  22870. source: "./media/characters/icowom-lee/rump.svg"
  22871. }
  22872. },
  22873. genitals: {
  22874. height: math.unit(0.78, "meters"),
  22875. name: "Genitals",
  22876. image: {
  22877. source: "./media/characters/icowom-lee/genitals.svg"
  22878. }
  22879. },
  22880. },
  22881. [
  22882. {
  22883. name: "Normal",
  22884. height: math.unit(2.3, "meters"),
  22885. default: true
  22886. },
  22887. {
  22888. name: "Macro",
  22889. height: math.unit(94, "meters"),
  22890. default: true
  22891. },
  22892. ]
  22893. ))
  22894. characterMakers.push(() => makeCharacter(
  22895. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22896. {
  22897. front: {
  22898. height: math.unit(22, "meters"),
  22899. weight: math.unit(21000, "kg"),
  22900. name: "Front",
  22901. image: {
  22902. source: "./media/characters/shock-diamond/front.svg",
  22903. extra: 2204 / 2053,
  22904. bottom: 65 / 2239.47
  22905. }
  22906. },
  22907. frontNude: {
  22908. height: math.unit(22, "meters"),
  22909. weight: math.unit(21000, "kg"),
  22910. name: "Front (Nude)",
  22911. image: {
  22912. source: "./media/characters/shock-diamond/front-nude.svg",
  22913. extra: 2514 / 2285,
  22914. bottom: 13 / 2527.56
  22915. }
  22916. },
  22917. },
  22918. [
  22919. {
  22920. name: "Normal",
  22921. height: math.unit(3, "meters")
  22922. },
  22923. {
  22924. name: "Macro",
  22925. height: math.unit(22, "meters"),
  22926. default: true
  22927. },
  22928. ]
  22929. ))
  22930. characterMakers.push(() => makeCharacter(
  22931. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22932. {
  22933. front: {
  22934. height: math.unit(5 + 4 / 12, "feet"),
  22935. weight: math.unit(120, "lb"),
  22936. name: "Front",
  22937. image: {
  22938. source: "./media/characters/rory/front.svg",
  22939. extra: 1318/1241,
  22940. bottom: 42/1360
  22941. }
  22942. },
  22943. back: {
  22944. height: math.unit(5 + 4 / 12, "feet"),
  22945. weight: math.unit(120, "lb"),
  22946. name: "Back",
  22947. image: {
  22948. source: "./media/characters/rory/back.svg",
  22949. extra: 1318/1241,
  22950. bottom: 42/1360
  22951. }
  22952. },
  22953. butt: {
  22954. height: math.unit(1.74, "feet"),
  22955. name: "Butt",
  22956. image: {
  22957. source: "./media/characters/rory/butt.svg"
  22958. }
  22959. },
  22960. dick: {
  22961. height: math.unit(1.02, "feet"),
  22962. name: "Dick",
  22963. image: {
  22964. source: "./media/characters/rory/dick.svg"
  22965. }
  22966. },
  22967. paws: {
  22968. height: math.unit(1, "feet"),
  22969. name: "Paws",
  22970. image: {
  22971. source: "./media/characters/rory/paws.svg"
  22972. }
  22973. },
  22974. frontAlt: {
  22975. height: math.unit(5 + 4 / 12, "feet"),
  22976. weight: math.unit(120, "lb"),
  22977. name: "Front (Alt)",
  22978. image: {
  22979. source: "./media/characters/rory/front-alt.svg",
  22980. extra: 589 / 556,
  22981. bottom: 45.7 / 635.76
  22982. }
  22983. },
  22984. frontAltNude: {
  22985. height: math.unit(5 + 4 / 12, "feet"),
  22986. weight: math.unit(120, "lb"),
  22987. name: "Front (Alt, Nude)",
  22988. image: {
  22989. source: "./media/characters/rory/front-alt-nude.svg",
  22990. extra: 589 / 556,
  22991. bottom: 45.7 / 635.76
  22992. }
  22993. },
  22994. side: {
  22995. height: math.unit(5 + 4 / 12, "feet"),
  22996. weight: math.unit(120, "lb"),
  22997. name: "Side",
  22998. image: {
  22999. source: "./media/characters/rory/side.svg",
  23000. extra: 597 / 564,
  23001. bottom: 55 / 653
  23002. }
  23003. },
  23004. backAlt: {
  23005. height: math.unit(5 + 4 / 12, "feet"),
  23006. weight: math.unit(120, "lb"),
  23007. name: "Back (Alt)",
  23008. image: {
  23009. source: "./media/characters/rory/back-alt.svg",
  23010. extra: 620 / 585,
  23011. bottom: 8.86 / 630.43
  23012. }
  23013. },
  23014. dickAlt: {
  23015. height: math.unit(0.86, "feet"),
  23016. name: "Dick (Alt)",
  23017. image: {
  23018. source: "./media/characters/rory/dick-alt.svg"
  23019. }
  23020. },
  23021. },
  23022. [
  23023. {
  23024. name: "Normal",
  23025. height: math.unit(5 + 4 / 12, "feet"),
  23026. default: true
  23027. },
  23028. {
  23029. name: "Macro",
  23030. height: math.unit(100, "feet")
  23031. },
  23032. {
  23033. name: "Macro+",
  23034. height: math.unit(140, "feet")
  23035. },
  23036. {
  23037. name: "Macro++",
  23038. height: math.unit(300, "feet")
  23039. },
  23040. ]
  23041. ))
  23042. characterMakers.push(() => makeCharacter(
  23043. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23044. {
  23045. front: {
  23046. height: math.unit(5 + 9 / 12, "feet"),
  23047. weight: math.unit(190, "lb"),
  23048. name: "Front",
  23049. image: {
  23050. source: "./media/characters/sprisk/front.svg",
  23051. extra: 1225 / 1180,
  23052. bottom: 42.7 / 1266.4
  23053. }
  23054. },
  23055. frontNsfw: {
  23056. height: math.unit(5 + 9 / 12, "feet"),
  23057. weight: math.unit(190, "lb"),
  23058. name: "Front (NSFW)",
  23059. image: {
  23060. source: "./media/characters/sprisk/front-nsfw.svg",
  23061. extra: 1225 / 1180,
  23062. bottom: 42.7 / 1266.4
  23063. }
  23064. },
  23065. back: {
  23066. height: math.unit(5 + 9 / 12, "feet"),
  23067. weight: math.unit(190, "lb"),
  23068. name: "Back",
  23069. image: {
  23070. source: "./media/characters/sprisk/back.svg",
  23071. extra: 1247 / 1200,
  23072. bottom: 5.6 / 1253.04
  23073. }
  23074. },
  23075. },
  23076. [
  23077. {
  23078. name: "Tiny",
  23079. height: math.unit(2, "inches")
  23080. },
  23081. {
  23082. name: "Normal",
  23083. height: math.unit(5 + 9 / 12, "feet"),
  23084. default: true
  23085. },
  23086. {
  23087. name: "Mini Macro",
  23088. height: math.unit(18, "feet")
  23089. },
  23090. {
  23091. name: "Macro",
  23092. height: math.unit(100, "feet")
  23093. },
  23094. {
  23095. name: "MACRO",
  23096. height: math.unit(50, "miles")
  23097. },
  23098. {
  23099. name: "M A C R O",
  23100. height: math.unit(300, "miles")
  23101. },
  23102. ]
  23103. ))
  23104. characterMakers.push(() => makeCharacter(
  23105. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23106. {
  23107. side: {
  23108. height: math.unit(15.6, "meters"),
  23109. weight: math.unit(700000, "kg"),
  23110. name: "Side",
  23111. image: {
  23112. source: "./media/characters/bunsen/side.svg",
  23113. extra: 1644 / 358
  23114. }
  23115. },
  23116. foot: {
  23117. height: math.unit(1.611 * 1644 / 358, "meter"),
  23118. name: "Foot",
  23119. image: {
  23120. source: "./media/characters/bunsen/foot.svg"
  23121. }
  23122. },
  23123. },
  23124. [
  23125. {
  23126. name: "Small",
  23127. height: math.unit(10, "feet")
  23128. },
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(15.6, "meters"),
  23132. default: true
  23133. },
  23134. ]
  23135. ))
  23136. characterMakers.push(() => makeCharacter(
  23137. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23138. {
  23139. front: {
  23140. height: math.unit(4 + 11 / 12, "feet"),
  23141. weight: math.unit(140, "lb"),
  23142. name: "Front",
  23143. image: {
  23144. source: "./media/characters/sesh/front.svg",
  23145. extra: 3420 / 3231,
  23146. bottom: 72 / 3949.5
  23147. }
  23148. },
  23149. },
  23150. [
  23151. {
  23152. name: "Normal",
  23153. height: math.unit(4 + 11 / 12, "feet")
  23154. },
  23155. {
  23156. name: "Grown",
  23157. height: math.unit(15, "feet"),
  23158. default: true
  23159. },
  23160. {
  23161. name: "Macro",
  23162. height: math.unit(1500, "feet")
  23163. },
  23164. {
  23165. name: "Megamacro",
  23166. height: math.unit(30, "miles")
  23167. },
  23168. {
  23169. name: "Continental",
  23170. height: math.unit(3000, "miles")
  23171. },
  23172. {
  23173. name: "Gravity Mass",
  23174. height: math.unit(300000, "miles")
  23175. },
  23176. {
  23177. name: "Planet Buster",
  23178. height: math.unit(30000000, "miles")
  23179. },
  23180. {
  23181. name: "Big",
  23182. height: math.unit(3000000000, "miles")
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23188. {
  23189. front: {
  23190. height: math.unit(9, "feet"),
  23191. weight: math.unit(350, "lb"),
  23192. name: "Front",
  23193. image: {
  23194. source: "./media/characters/pepper/front.svg",
  23195. extra: 1448 / 1312,
  23196. bottom: 9.4 / 1457.88
  23197. }
  23198. },
  23199. back: {
  23200. height: math.unit(9, "feet"),
  23201. weight: math.unit(350, "lb"),
  23202. name: "Back",
  23203. image: {
  23204. source: "./media/characters/pepper/back.svg",
  23205. extra: 1423 / 1300,
  23206. bottom: 4.6 / 1429
  23207. }
  23208. },
  23209. maw: {
  23210. height: math.unit(0.932, "feet"),
  23211. name: "Maw",
  23212. image: {
  23213. source: "./media/characters/pepper/maw.svg"
  23214. }
  23215. },
  23216. },
  23217. [
  23218. {
  23219. name: "Normal",
  23220. height: math.unit(9, "feet"),
  23221. default: true
  23222. },
  23223. ]
  23224. ))
  23225. characterMakers.push(() => makeCharacter(
  23226. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23227. {
  23228. front: {
  23229. height: math.unit(6, "feet"),
  23230. weight: math.unit(150, "lb"),
  23231. name: "Front",
  23232. image: {
  23233. source: "./media/characters/maelstrom/front.svg",
  23234. extra: 2100 / 1883,
  23235. bottom: 94 / 2196.7
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Less Kaiju",
  23242. height: math.unit(200, "feet")
  23243. },
  23244. {
  23245. name: "Kaiju",
  23246. height: math.unit(400, "feet"),
  23247. default: true
  23248. },
  23249. {
  23250. name: "Kaiju-er",
  23251. height: math.unit(600, "feet")
  23252. },
  23253. ]
  23254. ))
  23255. characterMakers.push(() => makeCharacter(
  23256. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23257. {
  23258. front: {
  23259. height: math.unit(6 + 5 / 12, "feet"),
  23260. weight: math.unit(180, "lb"),
  23261. name: "Front",
  23262. image: {
  23263. source: "./media/characters/lexir/front.svg",
  23264. extra: 180 / 172,
  23265. bottom: 12 / 192
  23266. }
  23267. },
  23268. back: {
  23269. height: math.unit(6 + 5 / 12, "feet"),
  23270. weight: math.unit(180, "lb"),
  23271. name: "Back",
  23272. image: {
  23273. source: "./media/characters/lexir/back.svg",
  23274. extra: 183.84 / 175.5,
  23275. bottom: 3.1 / 187
  23276. }
  23277. },
  23278. },
  23279. [
  23280. {
  23281. name: "Very Smal",
  23282. height: math.unit(1, "nm")
  23283. },
  23284. {
  23285. name: "Normal",
  23286. height: math.unit(6 + 5 / 12, "feet"),
  23287. default: true
  23288. },
  23289. {
  23290. name: "Macro",
  23291. height: math.unit(1, "mile")
  23292. },
  23293. {
  23294. name: "Megamacro",
  23295. height: math.unit(50, "miles")
  23296. },
  23297. ]
  23298. ))
  23299. characterMakers.push(() => makeCharacter(
  23300. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23301. {
  23302. front: {
  23303. height: math.unit(1.5, "meters"),
  23304. weight: math.unit(100, "lb"),
  23305. name: "Front",
  23306. image: {
  23307. source: "./media/characters/maksio/front.svg",
  23308. extra: 1549 / 1531,
  23309. bottom: 123.7 / 1674.5429
  23310. }
  23311. },
  23312. back: {
  23313. height: math.unit(1.5, "meters"),
  23314. weight: math.unit(100, "lb"),
  23315. name: "Back",
  23316. image: {
  23317. source: "./media/characters/maksio/back.svg",
  23318. extra: 1541 / 1509,
  23319. bottom: 97 / 1639
  23320. }
  23321. },
  23322. hand: {
  23323. height: math.unit(0.621, "feet"),
  23324. name: "Hand",
  23325. image: {
  23326. source: "./media/characters/maksio/hand.svg"
  23327. }
  23328. },
  23329. foot: {
  23330. height: math.unit(1.611, "feet"),
  23331. name: "Foot",
  23332. image: {
  23333. source: "./media/characters/maksio/foot.svg"
  23334. }
  23335. },
  23336. },
  23337. [
  23338. {
  23339. name: "Shrunken",
  23340. height: math.unit(10, "cm")
  23341. },
  23342. {
  23343. name: "Normal",
  23344. height: math.unit(150, "cm"),
  23345. default: true
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23351. {
  23352. front: {
  23353. height: math.unit(100, "feet"),
  23354. name: "Front",
  23355. image: {
  23356. source: "./media/characters/erza-bear/front.svg",
  23357. extra: 2449 / 2390,
  23358. bottom: 46 / 2494
  23359. }
  23360. },
  23361. back: {
  23362. height: math.unit(100, "feet"),
  23363. name: "Back",
  23364. image: {
  23365. source: "./media/characters/erza-bear/back.svg",
  23366. extra: 2489 / 2430,
  23367. bottom: 85.4 / 2480
  23368. }
  23369. },
  23370. tail: {
  23371. height: math.unit(42, "feet"),
  23372. name: "Tail",
  23373. image: {
  23374. source: "./media/characters/erza-bear/tail.svg"
  23375. }
  23376. },
  23377. tongue: {
  23378. height: math.unit(8, "feet"),
  23379. name: "Tongue",
  23380. image: {
  23381. source: "./media/characters/erza-bear/tongue.svg"
  23382. }
  23383. },
  23384. dick: {
  23385. height: math.unit(10.5, "feet"),
  23386. name: "Dick",
  23387. image: {
  23388. source: "./media/characters/erza-bear/dick.svg"
  23389. }
  23390. },
  23391. dickVertical: {
  23392. height: math.unit(16.9, "feet"),
  23393. name: "Dick (Vertical)",
  23394. image: {
  23395. source: "./media/characters/erza-bear/dick-vertical.svg"
  23396. }
  23397. },
  23398. },
  23399. [
  23400. {
  23401. name: "Macro",
  23402. height: math.unit(100, "feet"),
  23403. default: true
  23404. },
  23405. ]
  23406. ))
  23407. characterMakers.push(() => makeCharacter(
  23408. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23409. {
  23410. front: {
  23411. height: math.unit(172, "cm"),
  23412. weight: math.unit(73, "kg"),
  23413. name: "Front",
  23414. image: {
  23415. source: "./media/characters/violet-flor/front.svg",
  23416. extra: 1530 / 1442,
  23417. bottom: 61.9 / 1588.8
  23418. }
  23419. },
  23420. back: {
  23421. height: math.unit(180, "cm"),
  23422. weight: math.unit(73, "kg"),
  23423. name: "Back",
  23424. image: {
  23425. source: "./media/characters/violet-flor/back.svg",
  23426. extra: 1692 / 1630,
  23427. bottom: 20 / 1712
  23428. }
  23429. },
  23430. },
  23431. [
  23432. {
  23433. name: "Normal",
  23434. height: math.unit(172, "cm"),
  23435. default: true
  23436. },
  23437. ]
  23438. ))
  23439. characterMakers.push(() => makeCharacter(
  23440. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23441. {
  23442. front: {
  23443. height: math.unit(6, "feet"),
  23444. weight: math.unit(220, "lb"),
  23445. name: "Front",
  23446. image: {
  23447. source: "./media/characters/lynn-rhea/front.svg",
  23448. extra: 310 / 273
  23449. }
  23450. },
  23451. back: {
  23452. height: math.unit(6, "feet"),
  23453. weight: math.unit(220, "lb"),
  23454. name: "Back",
  23455. image: {
  23456. source: "./media/characters/lynn-rhea/back.svg",
  23457. extra: 310 / 273
  23458. }
  23459. },
  23460. dicks: {
  23461. height: math.unit(0.9, "feet"),
  23462. name: "Dicks",
  23463. image: {
  23464. source: "./media/characters/lynn-rhea/dicks.svg"
  23465. }
  23466. },
  23467. slit: {
  23468. height: math.unit(0.4, "feet"),
  23469. name: "Slit",
  23470. image: {
  23471. source: "./media/characters/lynn-rhea/slit.svg"
  23472. }
  23473. },
  23474. },
  23475. [
  23476. {
  23477. name: "Micro",
  23478. height: math.unit(1, "inch")
  23479. },
  23480. {
  23481. name: "Macro",
  23482. height: math.unit(60, "feet"),
  23483. default: true
  23484. },
  23485. {
  23486. name: "Megamacro",
  23487. height: math.unit(2, "miles")
  23488. },
  23489. {
  23490. name: "Gigamacro",
  23491. height: math.unit(3, "earths")
  23492. },
  23493. {
  23494. name: "Galactic",
  23495. height: math.unit(0.8, "galaxies")
  23496. },
  23497. ]
  23498. ))
  23499. characterMakers.push(() => makeCharacter(
  23500. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23501. {
  23502. front: {
  23503. height: math.unit(1600, "feet"),
  23504. weight: math.unit(85758785169, "kg"),
  23505. name: "Front",
  23506. image: {
  23507. source: "./media/characters/valathos/front.svg",
  23508. extra: 1451 / 1339
  23509. }
  23510. },
  23511. },
  23512. [
  23513. {
  23514. name: "Macro",
  23515. height: math.unit(1600, "feet"),
  23516. default: true
  23517. },
  23518. ]
  23519. ))
  23520. characterMakers.push(() => makeCharacter(
  23521. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23522. {
  23523. front: {
  23524. height: math.unit(7 + 5 / 12, "feet"),
  23525. weight: math.unit(300, "lb"),
  23526. name: "Front",
  23527. image: {
  23528. source: "./media/characters/azula/front.svg",
  23529. extra: 3208 / 2880,
  23530. bottom: 80.2 / 3277
  23531. }
  23532. },
  23533. back: {
  23534. height: math.unit(7 + 5 / 12, "feet"),
  23535. weight: math.unit(300, "lb"),
  23536. name: "Back",
  23537. image: {
  23538. source: "./media/characters/azula/back.svg",
  23539. extra: 3169 / 2822,
  23540. bottom: 150.6 / 3321
  23541. }
  23542. },
  23543. },
  23544. [
  23545. {
  23546. name: "Normal",
  23547. height: math.unit(7 + 5 / 12, "feet"),
  23548. default: true
  23549. },
  23550. {
  23551. name: "Big",
  23552. height: math.unit(20, "feet")
  23553. },
  23554. ]
  23555. ))
  23556. characterMakers.push(() => makeCharacter(
  23557. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23558. {
  23559. front: {
  23560. height: math.unit(5 + 1 / 12, "feet"),
  23561. weight: math.unit(110, "lb"),
  23562. name: "Front",
  23563. image: {
  23564. source: "./media/characters/rupert/front.svg",
  23565. extra: 1549 / 1495,
  23566. bottom: 54.2 / 1604.4
  23567. }
  23568. },
  23569. },
  23570. [
  23571. {
  23572. name: "Normal",
  23573. height: math.unit(5 + 1 / 12, "feet"),
  23574. default: true
  23575. },
  23576. ]
  23577. ))
  23578. characterMakers.push(() => makeCharacter(
  23579. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23580. {
  23581. front: {
  23582. height: math.unit(8 + 4 / 12, "feet"),
  23583. weight: math.unit(350, "lb"),
  23584. name: "Front",
  23585. image: {
  23586. source: "./media/characters/sheera-castellar/front.svg",
  23587. extra: 1957 / 1894,
  23588. bottom: 26.97 / 1975.017
  23589. }
  23590. },
  23591. side: {
  23592. height: math.unit(8 + 4 / 12, "feet"),
  23593. weight: math.unit(350, "lb"),
  23594. name: "Side",
  23595. image: {
  23596. source: "./media/characters/sheera-castellar/side.svg",
  23597. extra: 1957 / 1894
  23598. }
  23599. },
  23600. back: {
  23601. height: math.unit(8 + 4 / 12, "feet"),
  23602. weight: math.unit(350, "lb"),
  23603. name: "Back",
  23604. image: {
  23605. source: "./media/characters/sheera-castellar/back.svg",
  23606. extra: 1957 / 1894
  23607. }
  23608. },
  23609. angled: {
  23610. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23611. weight: math.unit(350, "lb"),
  23612. name: "Angled",
  23613. image: {
  23614. source: "./media/characters/sheera-castellar/angled.svg",
  23615. extra: 1807 / 1707,
  23616. bottom: 68 / 1875
  23617. }
  23618. },
  23619. genitals: {
  23620. height: math.unit(2.2, "feet"),
  23621. name: "Genitals",
  23622. image: {
  23623. source: "./media/characters/sheera-castellar/genitals.svg"
  23624. }
  23625. },
  23626. taur: {
  23627. height: math.unit(10 + 6/12, "feet"),
  23628. name: "Taur",
  23629. image: {
  23630. source: "./media/characters/sheera-castellar/taur.svg",
  23631. extra: 2017/1909,
  23632. bottom: 185/2202
  23633. }
  23634. },
  23635. },
  23636. [
  23637. {
  23638. name: "Normal",
  23639. height: math.unit(8 + 4 / 12, "feet")
  23640. },
  23641. {
  23642. name: "Macro",
  23643. height: math.unit(150, "feet"),
  23644. default: true
  23645. },
  23646. {
  23647. name: "Macro+",
  23648. height: math.unit(800, "feet")
  23649. },
  23650. ]
  23651. ))
  23652. characterMakers.push(() => makeCharacter(
  23653. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23654. {
  23655. front: {
  23656. height: math.unit(6, "feet"),
  23657. weight: math.unit(150, "lb"),
  23658. name: "Front",
  23659. image: {
  23660. source: "./media/characters/jaipur/front.svg",
  23661. extra: 3860 / 3731,
  23662. bottom: 287 / 4140
  23663. }
  23664. },
  23665. back: {
  23666. height: math.unit(6, "feet"),
  23667. weight: math.unit(150, "lb"),
  23668. name: "Back",
  23669. image: {
  23670. source: "./media/characters/jaipur/back.svg",
  23671. extra: 4060 / 3930,
  23672. bottom: 151 / 4200
  23673. }
  23674. },
  23675. },
  23676. [
  23677. {
  23678. name: "Normal",
  23679. height: math.unit(1.85, "meters"),
  23680. default: true
  23681. },
  23682. {
  23683. name: "Macro",
  23684. height: math.unit(150, "meters")
  23685. },
  23686. {
  23687. name: "Macro+",
  23688. height: math.unit(0.5, "miles")
  23689. },
  23690. {
  23691. name: "Macro++",
  23692. height: math.unit(2.5, "miles")
  23693. },
  23694. {
  23695. name: "Macro+++",
  23696. height: math.unit(12, "miles")
  23697. },
  23698. {
  23699. name: "Macro++++",
  23700. height: math.unit(120, "miles")
  23701. },
  23702. {
  23703. name: "Macro+++++",
  23704. height: math.unit(1200, "miles")
  23705. },
  23706. ]
  23707. ))
  23708. characterMakers.push(() => makeCharacter(
  23709. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23710. {
  23711. front: {
  23712. height: math.unit(6, "feet"),
  23713. weight: math.unit(150, "lb"),
  23714. name: "Front",
  23715. image: {
  23716. source: "./media/characters/sheila-wolf/front.svg",
  23717. extra: 1931 / 1808,
  23718. bottom: 29.5 / 1960
  23719. }
  23720. },
  23721. dick: {
  23722. height: math.unit(1.464, "feet"),
  23723. name: "Dick",
  23724. image: {
  23725. source: "./media/characters/sheila-wolf/dick.svg"
  23726. }
  23727. },
  23728. muzzle: {
  23729. height: math.unit(0.513, "feet"),
  23730. name: "Muzzle",
  23731. image: {
  23732. source: "./media/characters/sheila-wolf/muzzle.svg"
  23733. }
  23734. },
  23735. },
  23736. [
  23737. {
  23738. name: "Macro",
  23739. height: math.unit(70, "feet"),
  23740. default: true
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23746. {
  23747. front: {
  23748. height: math.unit(32, "meters"),
  23749. weight: math.unit(300000, "kg"),
  23750. name: "Front",
  23751. image: {
  23752. source: "./media/characters/almor/front.svg",
  23753. extra: 1408 / 1322,
  23754. bottom: 94.6 / 1506.5
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Macro",
  23761. height: math.unit(32, "meters"),
  23762. default: true
  23763. },
  23764. ]
  23765. ))
  23766. characterMakers.push(() => makeCharacter(
  23767. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23768. {
  23769. front: {
  23770. height: math.unit(7, "feet"),
  23771. weight: math.unit(200, "lb"),
  23772. name: "Front",
  23773. image: {
  23774. source: "./media/characters/silver/front.svg",
  23775. extra: 472.1 / 450.5,
  23776. bottom: 26.5 / 499.424
  23777. }
  23778. },
  23779. },
  23780. [
  23781. {
  23782. name: "Normal",
  23783. height: math.unit(7, "feet"),
  23784. default: true
  23785. },
  23786. {
  23787. name: "Macro",
  23788. height: math.unit(800, "feet")
  23789. },
  23790. {
  23791. name: "Megamacro",
  23792. height: math.unit(250, "miles")
  23793. },
  23794. ]
  23795. ))
  23796. characterMakers.push(() => makeCharacter(
  23797. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23798. {
  23799. front: {
  23800. height: math.unit(6, "feet"),
  23801. weight: math.unit(150, "lb"),
  23802. name: "Front",
  23803. image: {
  23804. source: "./media/characters/pliskin/front.svg",
  23805. extra: 1469 / 1359,
  23806. bottom: 70 / 1540
  23807. }
  23808. },
  23809. },
  23810. [
  23811. {
  23812. name: "Micro",
  23813. height: math.unit(3, "inches")
  23814. },
  23815. {
  23816. name: "Normal",
  23817. height: math.unit(5 + 11 / 12, "feet"),
  23818. default: true
  23819. },
  23820. {
  23821. name: "Macro",
  23822. height: math.unit(120, "feet")
  23823. },
  23824. ]
  23825. ))
  23826. characterMakers.push(() => makeCharacter(
  23827. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23828. {
  23829. front: {
  23830. height: math.unit(6, "feet"),
  23831. weight: math.unit(150, "lb"),
  23832. name: "Front",
  23833. image: {
  23834. source: "./media/characters/sammy/front.svg",
  23835. extra: 1193 / 1089,
  23836. bottom: 30.5 / 1226
  23837. }
  23838. },
  23839. },
  23840. [
  23841. {
  23842. name: "Macro",
  23843. height: math.unit(1700, "feet"),
  23844. default: true
  23845. },
  23846. {
  23847. name: "Examacro",
  23848. height: math.unit(2.5e9, "lightyears")
  23849. },
  23850. ]
  23851. ))
  23852. characterMakers.push(() => makeCharacter(
  23853. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23854. {
  23855. front: {
  23856. height: math.unit(21, "meters"),
  23857. weight: math.unit(12, "tonnes"),
  23858. name: "Front",
  23859. image: {
  23860. source: "./media/characters/kuru/front.svg",
  23861. extra: 4301 / 3785,
  23862. bottom: 371.3 / 4691
  23863. }
  23864. },
  23865. },
  23866. [
  23867. {
  23868. name: "Macro",
  23869. height: math.unit(21, "meters"),
  23870. default: true
  23871. },
  23872. ]
  23873. ))
  23874. characterMakers.push(() => makeCharacter(
  23875. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23876. {
  23877. front: {
  23878. height: math.unit(23, "meters"),
  23879. weight: math.unit(12.2, "tonnes"),
  23880. name: "Front",
  23881. image: {
  23882. source: "./media/characters/rakka/front.svg",
  23883. extra: 4670 / 4169,
  23884. bottom: 301 / 4968.7
  23885. }
  23886. },
  23887. },
  23888. [
  23889. {
  23890. name: "Macro",
  23891. height: math.unit(23, "meters"),
  23892. default: true
  23893. },
  23894. ]
  23895. ))
  23896. characterMakers.push(() => makeCharacter(
  23897. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23898. {
  23899. front: {
  23900. height: math.unit(6, "feet"),
  23901. weight: math.unit(150, "lb"),
  23902. name: "Front",
  23903. image: {
  23904. source: "./media/characters/rhys-feline/front.svg",
  23905. extra: 2488 / 2308,
  23906. bottom: 35.67 / 2519.19
  23907. }
  23908. },
  23909. },
  23910. [
  23911. {
  23912. name: "Really Small",
  23913. height: math.unit(1, "nm")
  23914. },
  23915. {
  23916. name: "Micro",
  23917. height: math.unit(4, "inches")
  23918. },
  23919. {
  23920. name: "Normal",
  23921. height: math.unit(4 + 10 / 12, "feet"),
  23922. default: true
  23923. },
  23924. {
  23925. name: "Macro",
  23926. height: math.unit(100, "feet")
  23927. },
  23928. {
  23929. name: "Megamacto",
  23930. height: math.unit(50, "miles")
  23931. },
  23932. ]
  23933. ))
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23936. {
  23937. side: {
  23938. height: math.unit(30, "feet"),
  23939. weight: math.unit(35000, "kg"),
  23940. name: "Side",
  23941. image: {
  23942. source: "./media/characters/alydar/side.svg",
  23943. extra: 234 / 222,
  23944. bottom: 6.5 / 241
  23945. }
  23946. },
  23947. front: {
  23948. height: math.unit(30, "feet"),
  23949. weight: math.unit(35000, "kg"),
  23950. name: "Front",
  23951. image: {
  23952. source: "./media/characters/alydar/front.svg",
  23953. extra: 223.37 / 210.2,
  23954. bottom: 22.3 / 246.76
  23955. }
  23956. },
  23957. top: {
  23958. height: math.unit(64.54, "feet"),
  23959. weight: math.unit(35000, "kg"),
  23960. name: "Top",
  23961. image: {
  23962. source: "./media/characters/alydar/top.svg"
  23963. }
  23964. },
  23965. anthro: {
  23966. height: math.unit(30, "feet"),
  23967. weight: math.unit(9000, "kg"),
  23968. name: "Anthro",
  23969. image: {
  23970. source: "./media/characters/alydar/anthro.svg",
  23971. extra: 432 / 421,
  23972. bottom: 7.18 / 440
  23973. }
  23974. },
  23975. maw: {
  23976. height: math.unit(11.693, "feet"),
  23977. name: "Maw",
  23978. image: {
  23979. source: "./media/characters/alydar/maw.svg"
  23980. }
  23981. },
  23982. head: {
  23983. height: math.unit(11.693, "feet"),
  23984. name: "Head",
  23985. image: {
  23986. source: "./media/characters/alydar/head.svg"
  23987. }
  23988. },
  23989. headAlt: {
  23990. height: math.unit(12.861, "feet"),
  23991. name: "Head (Alt)",
  23992. image: {
  23993. source: "./media/characters/alydar/head-alt.svg"
  23994. }
  23995. },
  23996. wing: {
  23997. height: math.unit(20.712, "feet"),
  23998. name: "Wing",
  23999. image: {
  24000. source: "./media/characters/alydar/wing.svg"
  24001. }
  24002. },
  24003. wingFeather: {
  24004. height: math.unit(9.662, "feet"),
  24005. name: "Wing Feather",
  24006. image: {
  24007. source: "./media/characters/alydar/wing-feather.svg"
  24008. }
  24009. },
  24010. countourFeather: {
  24011. height: math.unit(4.154, "feet"),
  24012. name: "Contour Feather",
  24013. image: {
  24014. source: "./media/characters/alydar/contour-feather.svg"
  24015. }
  24016. },
  24017. },
  24018. [
  24019. {
  24020. name: "Diplomatic",
  24021. height: math.unit(13, "feet"),
  24022. default: true
  24023. },
  24024. {
  24025. name: "Small",
  24026. height: math.unit(30, "feet")
  24027. },
  24028. {
  24029. name: "Normal",
  24030. height: math.unit(95, "feet"),
  24031. default: true
  24032. },
  24033. {
  24034. name: "Large",
  24035. height: math.unit(285, "feet")
  24036. },
  24037. {
  24038. name: "Incomprehensible",
  24039. height: math.unit(450, "megameters")
  24040. },
  24041. ]
  24042. ))
  24043. characterMakers.push(() => makeCharacter(
  24044. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24045. {
  24046. side: {
  24047. height: math.unit(11, "feet"),
  24048. weight: math.unit(1750, "kg"),
  24049. name: "Side",
  24050. image: {
  24051. source: "./media/characters/selicia/side.svg",
  24052. extra: 440 / 396,
  24053. bottom: 24.8 / 465.979
  24054. }
  24055. },
  24056. maw: {
  24057. height: math.unit(4.665, "feet"),
  24058. name: "Maw",
  24059. image: {
  24060. source: "./media/characters/selicia/maw.svg"
  24061. }
  24062. },
  24063. },
  24064. [
  24065. {
  24066. name: "Normal",
  24067. height: math.unit(11, "feet"),
  24068. default: true
  24069. },
  24070. ]
  24071. ))
  24072. characterMakers.push(() => makeCharacter(
  24073. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24074. {
  24075. side: {
  24076. height: math.unit(2 + 6 / 12, "feet"),
  24077. weight: math.unit(30, "lb"),
  24078. name: "Side",
  24079. image: {
  24080. source: "./media/characters/layla/side.svg",
  24081. extra: 244 / 188,
  24082. bottom: 18.2 / 262.1
  24083. }
  24084. },
  24085. back: {
  24086. height: math.unit(2 + 6 / 12, "feet"),
  24087. weight: math.unit(30, "lb"),
  24088. name: "Back",
  24089. image: {
  24090. source: "./media/characters/layla/back.svg",
  24091. extra: 308 / 241.5,
  24092. bottom: 8.9 / 316.8
  24093. }
  24094. },
  24095. cumming: {
  24096. height: math.unit(2 + 6 / 12, "feet"),
  24097. weight: math.unit(30, "lb"),
  24098. name: "Cumming",
  24099. image: {
  24100. source: "./media/characters/layla/cumming.svg",
  24101. extra: 342 / 279,
  24102. bottom: 595 / 938
  24103. }
  24104. },
  24105. dickFlaccid: {
  24106. height: math.unit(2.595, "feet"),
  24107. name: "Flaccid Genitals",
  24108. image: {
  24109. source: "./media/characters/layla/dick-flaccid.svg"
  24110. }
  24111. },
  24112. dickErect: {
  24113. height: math.unit(2.359, "feet"),
  24114. name: "Erect Genitals",
  24115. image: {
  24116. source: "./media/characters/layla/dick-erect.svg"
  24117. }
  24118. },
  24119. dragon: {
  24120. height: math.unit(40, "feet"),
  24121. name: "Dragon",
  24122. image: {
  24123. source: "./media/characters/layla/dragon.svg",
  24124. extra: 610/535,
  24125. bottom: 367/977
  24126. }
  24127. },
  24128. taur: {
  24129. height: math.unit(30, "feet"),
  24130. name: "Taur",
  24131. image: {
  24132. source: "./media/characters/layla/taur.svg",
  24133. extra: 1268/1199,
  24134. bottom: 112/1380
  24135. }
  24136. },
  24137. },
  24138. [
  24139. {
  24140. name: "Micro",
  24141. height: math.unit(1, "inch")
  24142. },
  24143. {
  24144. name: "Small",
  24145. height: math.unit(1, "foot")
  24146. },
  24147. {
  24148. name: "Normal",
  24149. height: math.unit(2 + 6 / 12, "feet"),
  24150. default: true
  24151. },
  24152. {
  24153. name: "Macro",
  24154. height: math.unit(200, "feet")
  24155. },
  24156. {
  24157. name: "Megamacro",
  24158. height: math.unit(1000, "miles")
  24159. },
  24160. {
  24161. name: "Planetary",
  24162. height: math.unit(8000, "miles")
  24163. },
  24164. {
  24165. name: "True Layla",
  24166. height: math.unit(200000 * 7, "multiverses")
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24172. {
  24173. back: {
  24174. height: math.unit(10.5, "feet"),
  24175. weight: math.unit(800, "lb"),
  24176. name: "Back",
  24177. image: {
  24178. source: "./media/characters/knox/back.svg",
  24179. extra: 1486 / 1089,
  24180. bottom: 107 / 1601.4
  24181. }
  24182. },
  24183. side: {
  24184. height: math.unit(10.5, "feet"),
  24185. weight: math.unit(800, "lb"),
  24186. name: "Side",
  24187. image: {
  24188. source: "./media/characters/knox/side.svg",
  24189. extra: 244 / 218,
  24190. bottom: 14 / 260
  24191. }
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Compact",
  24197. height: math.unit(10.5, "feet"),
  24198. default: true
  24199. },
  24200. {
  24201. name: "Dynamax",
  24202. height: math.unit(210, "feet")
  24203. },
  24204. {
  24205. name: "Full Macro",
  24206. height: math.unit(850, "feet")
  24207. },
  24208. ]
  24209. ))
  24210. characterMakers.push(() => makeCharacter(
  24211. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24212. {
  24213. front: {
  24214. height: math.unit(28, "feet"),
  24215. weight: math.unit(10500, "lb"),
  24216. name: "Front",
  24217. image: {
  24218. source: "./media/characters/kayda/front.svg",
  24219. extra: 1536 / 1428,
  24220. bottom: 68.7 / 1603
  24221. }
  24222. },
  24223. back: {
  24224. height: math.unit(28, "feet"),
  24225. weight: math.unit(10500, "lb"),
  24226. name: "Back",
  24227. image: {
  24228. source: "./media/characters/kayda/back.svg",
  24229. extra: 1557 / 1464,
  24230. bottom: 39.5 / 1597.49
  24231. }
  24232. },
  24233. dick: {
  24234. height: math.unit(3.858, "feet"),
  24235. name: "Dick",
  24236. image: {
  24237. source: "./media/characters/kayda/dick.svg"
  24238. }
  24239. },
  24240. },
  24241. [
  24242. {
  24243. name: "Macro",
  24244. height: math.unit(28, "feet"),
  24245. default: true
  24246. },
  24247. ]
  24248. ))
  24249. characterMakers.push(() => makeCharacter(
  24250. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24251. {
  24252. front: {
  24253. height: math.unit(10 + 11 / 12, "feet"),
  24254. weight: math.unit(1400, "lb"),
  24255. name: "Front",
  24256. image: {
  24257. source: "./media/characters/brian/front.svg",
  24258. extra: 737 / 692,
  24259. bottom: 55.4 / 785
  24260. }
  24261. },
  24262. },
  24263. [
  24264. {
  24265. name: "Normal",
  24266. height: math.unit(10 + 11 / 12, "feet"),
  24267. default: true
  24268. },
  24269. ]
  24270. ))
  24271. characterMakers.push(() => makeCharacter(
  24272. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24273. {
  24274. front: {
  24275. height: math.unit(5 + 8 / 12, "feet"),
  24276. weight: math.unit(140, "lb"),
  24277. name: "Front",
  24278. image: {
  24279. source: "./media/characters/khemri/front.svg",
  24280. extra: 4780 / 4059,
  24281. bottom: 80.1 / 4859.25
  24282. }
  24283. },
  24284. },
  24285. [
  24286. {
  24287. name: "Micro",
  24288. height: math.unit(6, "inches")
  24289. },
  24290. {
  24291. name: "Normal",
  24292. height: math.unit(5 + 8 / 12, "feet"),
  24293. default: true
  24294. },
  24295. ]
  24296. ))
  24297. characterMakers.push(() => makeCharacter(
  24298. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24299. {
  24300. front: {
  24301. height: math.unit(13, "feet"),
  24302. weight: math.unit(1700, "lb"),
  24303. name: "Front",
  24304. image: {
  24305. source: "./media/characters/felix-braveheart/front.svg",
  24306. extra: 1222 / 1157,
  24307. bottom: 53.2 / 1280
  24308. }
  24309. },
  24310. back: {
  24311. height: math.unit(13, "feet"),
  24312. weight: math.unit(1700, "lb"),
  24313. name: "Back",
  24314. image: {
  24315. source: "./media/characters/felix-braveheart/back.svg",
  24316. extra: 1277 / 1203,
  24317. bottom: 50.2 / 1327
  24318. }
  24319. },
  24320. feral: {
  24321. height: math.unit(6, "feet"),
  24322. weight: math.unit(400, "lb"),
  24323. name: "Feral",
  24324. image: {
  24325. source: "./media/characters/felix-braveheart/feral.svg",
  24326. extra: 682 / 625,
  24327. bottom: 6.9 / 688
  24328. }
  24329. },
  24330. },
  24331. [
  24332. {
  24333. name: "Normal",
  24334. height: math.unit(13, "feet"),
  24335. default: true
  24336. },
  24337. ]
  24338. ))
  24339. characterMakers.push(() => makeCharacter(
  24340. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24341. {
  24342. side: {
  24343. height: math.unit(5 + 11 / 12, "feet"),
  24344. weight: math.unit(1400, "lb"),
  24345. name: "Side",
  24346. image: {
  24347. source: "./media/characters/shadow-blade/side.svg",
  24348. extra: 1726 / 1267,
  24349. bottom: 58.4 / 1785
  24350. }
  24351. },
  24352. },
  24353. [
  24354. {
  24355. name: "Normal",
  24356. height: math.unit(5 + 11 / 12, "feet"),
  24357. default: true
  24358. },
  24359. ]
  24360. ))
  24361. characterMakers.push(() => makeCharacter(
  24362. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24363. {
  24364. front: {
  24365. height: math.unit(1 + 6 / 12, "feet"),
  24366. weight: math.unit(25, "lb"),
  24367. name: "Front",
  24368. image: {
  24369. source: "./media/characters/karla-halldor/front.svg",
  24370. extra: 1459 / 1383,
  24371. bottom: 12 / 1472
  24372. }
  24373. },
  24374. },
  24375. [
  24376. {
  24377. name: "Normal",
  24378. height: math.unit(1 + 6 / 12, "feet"),
  24379. default: true
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24385. {
  24386. front: {
  24387. height: math.unit(6 + 2 / 12, "feet"),
  24388. weight: math.unit(160, "lb"),
  24389. name: "Front",
  24390. image: {
  24391. source: "./media/characters/ariam/front.svg",
  24392. extra: 1073/976,
  24393. bottom: 52/1125
  24394. }
  24395. },
  24396. back: {
  24397. height: math.unit(6 + 2/12, "feet"),
  24398. weight: math.unit(160, "lb"),
  24399. name: "Back",
  24400. image: {
  24401. source: "./media/characters/ariam/back.svg",
  24402. extra: 1103/1023,
  24403. bottom: 9/1112
  24404. }
  24405. },
  24406. dressed: {
  24407. height: math.unit(6 + 2/12, "feet"),
  24408. weight: math.unit(160, "lb"),
  24409. name: "Dressed",
  24410. image: {
  24411. source: "./media/characters/ariam/dressed.svg",
  24412. extra: 1099/1009,
  24413. bottom: 25/1124
  24414. }
  24415. },
  24416. squatting: {
  24417. height: math.unit(4.1, "feet"),
  24418. weight: math.unit(160, "lb"),
  24419. name: "Squatting",
  24420. image: {
  24421. source: "./media/characters/ariam/squatting.svg",
  24422. extra: 2617 / 2112,
  24423. bottom: 61.2 / 2681,
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Normal",
  24430. height: math.unit(6 + 2 / 12, "feet"),
  24431. default: true
  24432. },
  24433. {
  24434. name: "Normal+",
  24435. height: math.unit(4, "meters")
  24436. },
  24437. {
  24438. name: "Macro",
  24439. height: math.unit(50, "meters")
  24440. },
  24441. {
  24442. name: "Macro+",
  24443. height: math.unit(100, "meters")
  24444. },
  24445. {
  24446. name: "Megamacro",
  24447. height: math.unit(20, "km")
  24448. },
  24449. {
  24450. name: "Caretaker",
  24451. height: math.unit(444, "megameters")
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24457. {
  24458. front: {
  24459. height: math.unit(1.67, "meters"),
  24460. weight: math.unit(140, "lb"),
  24461. name: "Front",
  24462. image: {
  24463. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24464. extra: 438 / 410,
  24465. bottom: 0.75 / 439
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Shrunken",
  24472. height: math.unit(7.6, "cm")
  24473. },
  24474. {
  24475. name: "Human Scale",
  24476. height: math.unit(1.67, "meters")
  24477. },
  24478. {
  24479. name: "Wolxi Scale",
  24480. height: math.unit(36.7, "meters"),
  24481. default: true
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24487. {
  24488. front: {
  24489. height: math.unit(1.73, "meters"),
  24490. weight: math.unit(240, "lb"),
  24491. name: "Front",
  24492. image: {
  24493. source: "./media/characters/izue-two-mothers/front.svg",
  24494. extra: 469 / 437,
  24495. bottom: 1.24 / 470.6
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Shrunken",
  24502. height: math.unit(7.86, "cm")
  24503. },
  24504. {
  24505. name: "Human Scale",
  24506. height: math.unit(1.73, "meters")
  24507. },
  24508. {
  24509. name: "Wolxi Scale",
  24510. height: math.unit(38, "meters"),
  24511. default: true
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24517. {
  24518. front: {
  24519. height: math.unit(1.55, "meters"),
  24520. weight: math.unit(120, "lb"),
  24521. name: "Front",
  24522. image: {
  24523. source: "./media/characters/teeku-love-shack/front.svg",
  24524. extra: 387 / 362,
  24525. bottom: 1.51 / 388
  24526. }
  24527. },
  24528. },
  24529. [
  24530. {
  24531. name: "Shrunken",
  24532. height: math.unit(7, "cm")
  24533. },
  24534. {
  24535. name: "Human Scale",
  24536. height: math.unit(1.55, "meters")
  24537. },
  24538. {
  24539. name: "Wolxi Scale",
  24540. height: math.unit(34.1, "meters"),
  24541. default: true
  24542. },
  24543. ]
  24544. ))
  24545. characterMakers.push(() => makeCharacter(
  24546. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24547. {
  24548. front: {
  24549. height: math.unit(1.83, "meters"),
  24550. weight: math.unit(135, "lb"),
  24551. name: "Front",
  24552. image: {
  24553. source: "./media/characters/dejma-the-red/front.svg",
  24554. extra: 480 / 458,
  24555. bottom: 1.8 / 482
  24556. }
  24557. },
  24558. },
  24559. [
  24560. {
  24561. name: "Shrunken",
  24562. height: math.unit(8.3, "cm")
  24563. },
  24564. {
  24565. name: "Human Scale",
  24566. height: math.unit(1.83, "meters")
  24567. },
  24568. {
  24569. name: "Wolxi Scale",
  24570. height: math.unit(40, "meters"),
  24571. default: true
  24572. },
  24573. ]
  24574. ))
  24575. characterMakers.push(() => makeCharacter(
  24576. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24577. {
  24578. front: {
  24579. height: math.unit(1.78, "meters"),
  24580. weight: math.unit(65, "kg"),
  24581. name: "Front",
  24582. image: {
  24583. source: "./media/characters/aki/front.svg",
  24584. extra: 452 / 415
  24585. }
  24586. },
  24587. frontNsfw: {
  24588. height: math.unit(1.78, "meters"),
  24589. weight: math.unit(65, "kg"),
  24590. name: "Front (NSFW)",
  24591. image: {
  24592. source: "./media/characters/aki/front-nsfw.svg",
  24593. extra: 452 / 415
  24594. }
  24595. },
  24596. back: {
  24597. height: math.unit(1.78, "meters"),
  24598. weight: math.unit(65, "kg"),
  24599. name: "Back",
  24600. image: {
  24601. source: "./media/characters/aki/back.svg",
  24602. extra: 452 / 415
  24603. }
  24604. },
  24605. rump: {
  24606. height: math.unit(2.05, "feet"),
  24607. name: "Rump",
  24608. image: {
  24609. source: "./media/characters/aki/rump.svg"
  24610. }
  24611. },
  24612. dick: {
  24613. height: math.unit(0.95, "feet"),
  24614. name: "Dick",
  24615. image: {
  24616. source: "./media/characters/aki/dick.svg"
  24617. }
  24618. },
  24619. },
  24620. [
  24621. {
  24622. name: "Micro",
  24623. height: math.unit(15, "cm")
  24624. },
  24625. {
  24626. name: "Normal",
  24627. height: math.unit(178, "cm"),
  24628. default: true
  24629. },
  24630. {
  24631. name: "Macro",
  24632. height: math.unit(214, "m")
  24633. },
  24634. {
  24635. name: "Macro+",
  24636. height: math.unit(534, "m")
  24637. },
  24638. ]
  24639. ))
  24640. characterMakers.push(() => makeCharacter(
  24641. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24642. {
  24643. front: {
  24644. height: math.unit(5 + 5 / 12, "feet"),
  24645. weight: math.unit(120, "lb"),
  24646. name: "Front",
  24647. image: {
  24648. source: "./media/characters/ari/front.svg",
  24649. extra: 714.5 / 682,
  24650. bottom: 8 / 722.5
  24651. }
  24652. },
  24653. },
  24654. [
  24655. {
  24656. name: "Normal",
  24657. height: math.unit(5 + 5 / 12, "feet")
  24658. },
  24659. {
  24660. name: "Macro",
  24661. height: math.unit(100, "feet"),
  24662. default: true
  24663. },
  24664. {
  24665. name: "Megamacro",
  24666. height: math.unit(100, "miles")
  24667. },
  24668. {
  24669. name: "Gigamacro",
  24670. height: math.unit(80000, "miles")
  24671. },
  24672. ]
  24673. ))
  24674. characterMakers.push(() => makeCharacter(
  24675. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24676. {
  24677. side: {
  24678. height: math.unit(9, "feet"),
  24679. weight: math.unit(400, "kg"),
  24680. name: "Side",
  24681. image: {
  24682. source: "./media/characters/bolt/side.svg",
  24683. extra: 1126 / 896,
  24684. bottom: 60 / 1187.3,
  24685. }
  24686. },
  24687. },
  24688. [
  24689. {
  24690. name: "Micro",
  24691. height: math.unit(5, "inches")
  24692. },
  24693. {
  24694. name: "Normal",
  24695. height: math.unit(9, "feet"),
  24696. default: true
  24697. },
  24698. {
  24699. name: "Macro",
  24700. height: math.unit(700, "feet")
  24701. },
  24702. {
  24703. name: "Max Size",
  24704. height: math.unit(1.52e22, "yottameters")
  24705. },
  24706. ]
  24707. ))
  24708. characterMakers.push(() => makeCharacter(
  24709. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24710. {
  24711. front: {
  24712. height: math.unit(4.53, "meters"),
  24713. weight: math.unit(3, "tons"),
  24714. name: "Front",
  24715. image: {
  24716. source: "./media/characters/draekon-sylviar/front.svg",
  24717. extra: 1228 / 1068,
  24718. bottom: 41 / 1270
  24719. }
  24720. },
  24721. tail: {
  24722. height: math.unit(1.772, "meter"),
  24723. name: "Tail",
  24724. image: {
  24725. source: "./media/characters/draekon-sylviar/tail.svg"
  24726. }
  24727. },
  24728. head: {
  24729. height: math.unit(1.331, "meter"),
  24730. name: "Head",
  24731. image: {
  24732. source: "./media/characters/draekon-sylviar/head.svg"
  24733. }
  24734. },
  24735. hand: {
  24736. height: math.unit(0.564, "meter"),
  24737. name: "Hand",
  24738. image: {
  24739. source: "./media/characters/draekon-sylviar/hand.svg"
  24740. }
  24741. },
  24742. foot: {
  24743. height: math.unit(0.621, "meter"),
  24744. name: "Foot",
  24745. image: {
  24746. source: "./media/characters/draekon-sylviar/foot.svg",
  24747. bottom: 32 / 324
  24748. }
  24749. },
  24750. dick: {
  24751. height: math.unit(61, "cm"),
  24752. name: "Dick",
  24753. image: {
  24754. source: "./media/characters/draekon-sylviar/dick.svg"
  24755. }
  24756. },
  24757. dickseparated: {
  24758. height: math.unit(61, "cm"),
  24759. name: "Dick-separated",
  24760. image: {
  24761. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24762. }
  24763. },
  24764. },
  24765. [
  24766. {
  24767. name: "Small",
  24768. height: math.unit(4.53 / 2, "meters"),
  24769. default: true
  24770. },
  24771. {
  24772. name: "Normal",
  24773. height: math.unit(4.53, "meters"),
  24774. default: true
  24775. },
  24776. {
  24777. name: "Large",
  24778. height: math.unit(4.53 * 2, "meters"),
  24779. },
  24780. ]
  24781. ))
  24782. characterMakers.push(() => makeCharacter(
  24783. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24784. {
  24785. front: {
  24786. height: math.unit(6 + 2 / 12, "feet"),
  24787. weight: math.unit(180, "lb"),
  24788. name: "Front",
  24789. image: {
  24790. source: "./media/characters/brawler/front.svg",
  24791. extra: 3301 / 3027,
  24792. bottom: 138 / 3439
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Normal",
  24799. height: math.unit(6 + 2 / 12, "feet"),
  24800. default: true
  24801. },
  24802. ]
  24803. ))
  24804. characterMakers.push(() => makeCharacter(
  24805. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24806. {
  24807. front: {
  24808. height: math.unit(11, "feet"),
  24809. weight: math.unit(1000, "lb"),
  24810. name: "Front",
  24811. image: {
  24812. source: "./media/characters/alex/front.svg",
  24813. bottom: 44.5 / 620
  24814. }
  24815. },
  24816. },
  24817. [
  24818. {
  24819. name: "Micro",
  24820. height: math.unit(5, "inches")
  24821. },
  24822. {
  24823. name: "Normal",
  24824. height: math.unit(11, "feet"),
  24825. default: true
  24826. },
  24827. {
  24828. name: "Macro",
  24829. height: math.unit(9.5e9, "feet")
  24830. },
  24831. {
  24832. name: "Max Size",
  24833. height: math.unit(1.4e283, "yottameters")
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24839. {
  24840. female: {
  24841. height: math.unit(29.9, "m"),
  24842. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24843. name: "Female",
  24844. image: {
  24845. source: "./media/characters/zenari/female.svg",
  24846. extra: 3281.6 / 3217,
  24847. bottom: 72.2 / 3353
  24848. }
  24849. },
  24850. male: {
  24851. height: math.unit(27.7, "m"),
  24852. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24853. name: "Male",
  24854. image: {
  24855. source: "./media/characters/zenari/male.svg",
  24856. extra: 3008 / 2991,
  24857. bottom: 54.6 / 3069
  24858. }
  24859. },
  24860. },
  24861. [
  24862. {
  24863. name: "Macro",
  24864. height: math.unit(29.7, "meters"),
  24865. default: true
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24871. {
  24872. female: {
  24873. height: math.unit(23.8, "m"),
  24874. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24875. name: "Female",
  24876. image: {
  24877. source: "./media/characters/mactarian/female.svg",
  24878. extra: 2662 / 2569,
  24879. bottom: 73 / 2736
  24880. }
  24881. },
  24882. male: {
  24883. height: math.unit(23.8, "m"),
  24884. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24885. name: "Male",
  24886. image: {
  24887. source: "./media/characters/mactarian/male.svg",
  24888. extra: 2673 / 2600,
  24889. bottom: 76 / 2750
  24890. }
  24891. },
  24892. },
  24893. [
  24894. {
  24895. name: "Macro",
  24896. height: math.unit(23.8, "meters"),
  24897. default: true
  24898. },
  24899. ]
  24900. ))
  24901. characterMakers.push(() => makeCharacter(
  24902. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24903. {
  24904. female: {
  24905. height: math.unit(19.3, "m"),
  24906. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24907. name: "Female",
  24908. image: {
  24909. source: "./media/characters/umok/female.svg",
  24910. extra: 2186 / 2078,
  24911. bottom: 87 / 2277
  24912. }
  24913. },
  24914. male: {
  24915. height: math.unit(19.5, "m"),
  24916. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24917. name: "Male",
  24918. image: {
  24919. source: "./media/characters/umok/male.svg",
  24920. extra: 2233 / 2140,
  24921. bottom: 24.4 / 2258
  24922. }
  24923. },
  24924. },
  24925. [
  24926. {
  24927. name: "Macro",
  24928. height: math.unit(19.3, "meters"),
  24929. default: true
  24930. },
  24931. ]
  24932. ))
  24933. characterMakers.push(() => makeCharacter(
  24934. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24935. {
  24936. female: {
  24937. height: math.unit(26.15, "m"),
  24938. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24939. name: "Female",
  24940. image: {
  24941. source: "./media/characters/joraxian/female.svg",
  24942. extra: 2912 / 2824,
  24943. bottom: 36 / 2956
  24944. }
  24945. },
  24946. male: {
  24947. height: math.unit(25.4, "m"),
  24948. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24949. name: "Male",
  24950. image: {
  24951. source: "./media/characters/joraxian/male.svg",
  24952. extra: 2877 / 2721,
  24953. bottom: 82 / 2967
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Macro",
  24960. height: math.unit(26.15, "meters"),
  24961. default: true
  24962. },
  24963. ]
  24964. ))
  24965. characterMakers.push(() => makeCharacter(
  24966. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24967. {
  24968. female: {
  24969. height: math.unit(21.6, "m"),
  24970. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24971. name: "Female",
  24972. image: {
  24973. source: "./media/characters/sthara/female.svg",
  24974. extra: 2516 / 2347,
  24975. bottom: 21.5 / 2537
  24976. }
  24977. },
  24978. male: {
  24979. height: math.unit(24, "m"),
  24980. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24981. name: "Male",
  24982. image: {
  24983. source: "./media/characters/sthara/male.svg",
  24984. extra: 2732 / 2607,
  24985. bottom: 23 / 2732
  24986. }
  24987. },
  24988. },
  24989. [
  24990. {
  24991. name: "Macro",
  24992. height: math.unit(21.6, "meters"),
  24993. default: true
  24994. },
  24995. ]
  24996. ))
  24997. characterMakers.push(() => makeCharacter(
  24998. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24999. {
  25000. front: {
  25001. height: math.unit(6 + 4 / 12, "feet"),
  25002. weight: math.unit(175, "lb"),
  25003. name: "Front",
  25004. image: {
  25005. source: "./media/characters/luka-bryzant/front.svg",
  25006. extra: 311 / 289,
  25007. bottom: 4 / 315
  25008. }
  25009. },
  25010. back: {
  25011. height: math.unit(6 + 4 / 12, "feet"),
  25012. weight: math.unit(175, "lb"),
  25013. name: "Back",
  25014. image: {
  25015. source: "./media/characters/luka-bryzant/back.svg",
  25016. extra: 311 / 289,
  25017. bottom: 3.8 / 313.7
  25018. }
  25019. },
  25020. },
  25021. [
  25022. {
  25023. name: "Micro",
  25024. height: math.unit(10, "inches")
  25025. },
  25026. {
  25027. name: "Normal",
  25028. height: math.unit(6 + 4 / 12, "feet"),
  25029. default: true
  25030. },
  25031. {
  25032. name: "Large",
  25033. height: math.unit(12, "feet")
  25034. },
  25035. ]
  25036. ))
  25037. characterMakers.push(() => makeCharacter(
  25038. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25039. {
  25040. front: {
  25041. height: math.unit(5 + 7 / 12, "feet"),
  25042. weight: math.unit(185, "lb"),
  25043. name: "Front",
  25044. image: {
  25045. source: "./media/characters/aman-aquila/front.svg",
  25046. extra: 1013 / 976,
  25047. bottom: 45.6 / 1057
  25048. }
  25049. },
  25050. side: {
  25051. height: math.unit(5 + 7 / 12, "feet"),
  25052. weight: math.unit(185, "lb"),
  25053. name: "Side",
  25054. image: {
  25055. source: "./media/characters/aman-aquila/side.svg",
  25056. extra: 1054 / 1011,
  25057. bottom: 15 / 1070
  25058. }
  25059. },
  25060. back: {
  25061. height: math.unit(5 + 7 / 12, "feet"),
  25062. weight: math.unit(185, "lb"),
  25063. name: "Back",
  25064. image: {
  25065. source: "./media/characters/aman-aquila/back.svg",
  25066. extra: 1026 / 970,
  25067. bottom: 12 / 1039
  25068. }
  25069. },
  25070. head: {
  25071. height: math.unit(1.211, "feet"),
  25072. name: "Head",
  25073. image: {
  25074. source: "./media/characters/aman-aquila/head.svg",
  25075. }
  25076. },
  25077. },
  25078. [
  25079. {
  25080. name: "Minimicro",
  25081. height: math.unit(0.057, "inches")
  25082. },
  25083. {
  25084. name: "Micro",
  25085. height: math.unit(7, "inches")
  25086. },
  25087. {
  25088. name: "Mini",
  25089. height: math.unit(3 + 7 / 12, "feet")
  25090. },
  25091. {
  25092. name: "Normal",
  25093. height: math.unit(5 + 7 / 12, "feet"),
  25094. default: true
  25095. },
  25096. {
  25097. name: "Macro",
  25098. height: math.unit(157 + 7 / 12, "feet")
  25099. },
  25100. {
  25101. name: "Megamacro",
  25102. height: math.unit(1557 + 7 / 12, "feet")
  25103. },
  25104. {
  25105. name: "Gigamacro",
  25106. height: math.unit(15557 + 7 / 12, "feet")
  25107. },
  25108. ]
  25109. ))
  25110. characterMakers.push(() => makeCharacter(
  25111. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25112. {
  25113. front: {
  25114. height: math.unit(3 + 2 / 12, "inches"),
  25115. weight: math.unit(0.3, "ounces"),
  25116. name: "Front",
  25117. image: {
  25118. source: "./media/characters/hiphae/front.svg",
  25119. extra: 1931 / 1683,
  25120. bottom: 24 / 1955
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Normal",
  25127. height: math.unit(3 + 1 / 2, "inches"),
  25128. default: true
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25134. {
  25135. front: {
  25136. height: math.unit(5 + 10 / 12, "feet"),
  25137. weight: math.unit(165, "lb"),
  25138. name: "Front",
  25139. image: {
  25140. source: "./media/characters/nicky/front.svg",
  25141. extra: 3144 / 2886,
  25142. bottom: 45.6 / 3192
  25143. }
  25144. },
  25145. back: {
  25146. height: math.unit(5 + 10 / 12, "feet"),
  25147. weight: math.unit(165, "lb"),
  25148. name: "Back",
  25149. image: {
  25150. source: "./media/characters/nicky/back.svg",
  25151. extra: 3055 / 2804,
  25152. bottom: 28.4 / 3087
  25153. }
  25154. },
  25155. frontclothed: {
  25156. height: math.unit(5 + 10 / 12, "feet"),
  25157. weight: math.unit(165, "lb"),
  25158. name: "Front-clothed",
  25159. image: {
  25160. source: "./media/characters/nicky/front-clothed.svg",
  25161. extra: 3184.9 / 2926.9,
  25162. bottom: 86.5 / 3239.9
  25163. }
  25164. },
  25165. foot: {
  25166. height: math.unit(1.16, "feet"),
  25167. name: "Foot",
  25168. image: {
  25169. source: "./media/characters/nicky/foot.svg"
  25170. }
  25171. },
  25172. feet: {
  25173. height: math.unit(1.34, "feet"),
  25174. name: "Feet",
  25175. image: {
  25176. source: "./media/characters/nicky/feet.svg"
  25177. }
  25178. },
  25179. maw: {
  25180. height: math.unit(0.9, "feet"),
  25181. name: "Maw",
  25182. image: {
  25183. source: "./media/characters/nicky/maw.svg"
  25184. }
  25185. },
  25186. },
  25187. [
  25188. {
  25189. name: "Normal",
  25190. height: math.unit(5 + 10 / 12, "feet"),
  25191. default: true
  25192. },
  25193. {
  25194. name: "Macro",
  25195. height: math.unit(60, "feet")
  25196. },
  25197. {
  25198. name: "Megamacro",
  25199. height: math.unit(1, "mile")
  25200. },
  25201. ]
  25202. ))
  25203. characterMakers.push(() => makeCharacter(
  25204. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25205. {
  25206. side: {
  25207. height: math.unit(10, "feet"),
  25208. weight: math.unit(600, "lb"),
  25209. name: "Side",
  25210. image: {
  25211. source: "./media/characters/blair/side.svg",
  25212. bottom: 16.6 / 475,
  25213. extra: 458 / 431
  25214. }
  25215. },
  25216. },
  25217. [
  25218. {
  25219. name: "Micro",
  25220. height: math.unit(8, "inches")
  25221. },
  25222. {
  25223. name: "Normal",
  25224. height: math.unit(10, "feet"),
  25225. default: true
  25226. },
  25227. {
  25228. name: "Macro",
  25229. height: math.unit(180, "feet")
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(5 + 4 / 12, "feet"),
  25238. weight: math.unit(125, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/fisher/front.svg",
  25242. extra: 444 / 390,
  25243. bottom: 2 / 444.8
  25244. }
  25245. },
  25246. },
  25247. [
  25248. {
  25249. name: "Micro",
  25250. height: math.unit(4, "inches")
  25251. },
  25252. {
  25253. name: "Normal",
  25254. height: math.unit(5 + 4 / 12, "feet"),
  25255. default: true
  25256. },
  25257. {
  25258. name: "Macro",
  25259. height: math.unit(100, "feet")
  25260. },
  25261. ]
  25262. ))
  25263. characterMakers.push(() => makeCharacter(
  25264. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25265. {
  25266. front: {
  25267. height: math.unit(6.71, "feet"),
  25268. weight: math.unit(200, "lb"),
  25269. capacity: math.unit(1000000, "people"),
  25270. name: "Front",
  25271. image: {
  25272. source: "./media/characters/gliss/front.svg",
  25273. extra: 2347 / 2231,
  25274. bottom: 113 / 2462
  25275. }
  25276. },
  25277. hammerspaceSize: {
  25278. height: math.unit(6.71 * 717, "feet"),
  25279. weight: math.unit(200, "lb"),
  25280. capacity: math.unit(1000000, "people"),
  25281. name: "Hammerspace Size",
  25282. image: {
  25283. source: "./media/characters/gliss/front.svg",
  25284. extra: 2347 / 2231,
  25285. bottom: 113 / 2462
  25286. }
  25287. },
  25288. },
  25289. [
  25290. {
  25291. name: "Normal",
  25292. height: math.unit(6.71, "feet"),
  25293. default: true
  25294. },
  25295. ]
  25296. ))
  25297. characterMakers.push(() => makeCharacter(
  25298. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25299. {
  25300. side: {
  25301. height: math.unit(1.44, "m"),
  25302. weight: math.unit(80, "kg"),
  25303. name: "Side",
  25304. image: {
  25305. source: "./media/characters/dune-anderson/side.svg",
  25306. bottom: 49 / 1426
  25307. }
  25308. },
  25309. },
  25310. [
  25311. {
  25312. name: "Wolf-sized",
  25313. height: math.unit(1.44, "meters")
  25314. },
  25315. {
  25316. name: "Normal",
  25317. height: math.unit(5.05, "meters"),
  25318. default: true
  25319. },
  25320. {
  25321. name: "Big",
  25322. height: math.unit(14.4, "meters")
  25323. },
  25324. {
  25325. name: "Huge",
  25326. height: math.unit(144, "meters")
  25327. },
  25328. ]
  25329. ))
  25330. characterMakers.push(() => makeCharacter(
  25331. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25332. {
  25333. front: {
  25334. height: math.unit(7, "feet"),
  25335. weight: math.unit(425, "lb"),
  25336. name: "Front",
  25337. image: {
  25338. source: "./media/characters/hind/front.svg",
  25339. extra: 2091 / 1860,
  25340. bottom: 129 / 2220
  25341. }
  25342. },
  25343. back: {
  25344. height: math.unit(7, "feet"),
  25345. weight: math.unit(425, "lb"),
  25346. name: "Back",
  25347. image: {
  25348. source: "./media/characters/hind/back.svg",
  25349. extra: 2091 / 1860,
  25350. bottom: 24.6 / 2309
  25351. }
  25352. },
  25353. tail: {
  25354. height: math.unit(2.8, "feet"),
  25355. name: "Tail",
  25356. image: {
  25357. source: "./media/characters/hind/tail.svg"
  25358. }
  25359. },
  25360. head: {
  25361. height: math.unit(2.55, "feet"),
  25362. name: "Head",
  25363. image: {
  25364. source: "./media/characters/hind/head.svg"
  25365. }
  25366. },
  25367. },
  25368. [
  25369. {
  25370. name: "XS",
  25371. height: math.unit(0.7, "feet")
  25372. },
  25373. {
  25374. name: "Normal",
  25375. height: math.unit(7, "feet"),
  25376. default: true
  25377. },
  25378. {
  25379. name: "XL",
  25380. height: math.unit(70, "feet")
  25381. },
  25382. ]
  25383. ))
  25384. characterMakers.push(() => makeCharacter(
  25385. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25386. {
  25387. front: {
  25388. height: math.unit(2.1, "meters"),
  25389. weight: math.unit(150, "lb"),
  25390. name: "Front",
  25391. image: {
  25392. source: "./media/characters/tharquench-sizestealer/front.svg",
  25393. extra: 1605/1470,
  25394. bottom: 36/1641
  25395. }
  25396. },
  25397. frontAlt: {
  25398. height: math.unit(2.1, "meters"),
  25399. weight: math.unit(150, "lb"),
  25400. name: "Front (Alt)",
  25401. image: {
  25402. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25403. extra: 2318 / 2063,
  25404. bottom: 93.4 / 2410
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Nano",
  25411. height: math.unit(1, "mm")
  25412. },
  25413. {
  25414. name: "Micro",
  25415. height: math.unit(1, "cm")
  25416. },
  25417. {
  25418. name: "Normal",
  25419. height: math.unit(2.1, "meters"),
  25420. default: true
  25421. },
  25422. ]
  25423. ))
  25424. characterMakers.push(() => makeCharacter(
  25425. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25426. {
  25427. front: {
  25428. height: math.unit(7 + 5 / 12, "feet"),
  25429. weight: math.unit(357, "lb"),
  25430. name: "Front",
  25431. image: {
  25432. source: "./media/characters/solex-draconov/front.svg",
  25433. extra: 1993 / 1865,
  25434. bottom: 117 / 2111
  25435. }
  25436. },
  25437. },
  25438. [
  25439. {
  25440. name: "Natural Height",
  25441. height: math.unit(7 + 5 / 12, "feet"),
  25442. default: true
  25443. },
  25444. {
  25445. name: "Macro",
  25446. height: math.unit(350, "feet")
  25447. },
  25448. {
  25449. name: "Macro+",
  25450. height: math.unit(1000, "feet")
  25451. },
  25452. {
  25453. name: "Megamacro",
  25454. height: math.unit(20, "km")
  25455. },
  25456. {
  25457. name: "Megamacro+",
  25458. height: math.unit(1000, "km")
  25459. },
  25460. {
  25461. name: "Gigamacro",
  25462. height: math.unit(2.5, "Gm")
  25463. },
  25464. {
  25465. name: "Teramacro",
  25466. height: math.unit(15, "Tm")
  25467. },
  25468. {
  25469. name: "Galactic",
  25470. height: math.unit(30, "Zm")
  25471. },
  25472. {
  25473. name: "Universal",
  25474. height: math.unit(21000, "Ym")
  25475. },
  25476. {
  25477. name: "Omniversal",
  25478. height: math.unit(9.861e50, "Ym")
  25479. },
  25480. {
  25481. name: "Existential",
  25482. height: math.unit(1e300, "meters")
  25483. },
  25484. ]
  25485. ))
  25486. characterMakers.push(() => makeCharacter(
  25487. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25488. {
  25489. side: {
  25490. height: math.unit(25, "feet"),
  25491. weight: math.unit(90000, "lb"),
  25492. name: "Side",
  25493. image: {
  25494. source: "./media/characters/mandarax/side.svg",
  25495. extra: 614 / 332,
  25496. bottom: 55 / 630
  25497. }
  25498. },
  25499. head: {
  25500. height: math.unit(11.4, "feet"),
  25501. name: "Head",
  25502. image: {
  25503. source: "./media/characters/mandarax/head.svg"
  25504. }
  25505. },
  25506. belly: {
  25507. height: math.unit(33, "feet"),
  25508. name: "Belly",
  25509. capacity: math.unit(500, "people"),
  25510. image: {
  25511. source: "./media/characters/mandarax/belly.svg"
  25512. }
  25513. },
  25514. dick: {
  25515. height: math.unit(8.46, "feet"),
  25516. name: "Dick",
  25517. image: {
  25518. source: "./media/characters/mandarax/dick.svg"
  25519. }
  25520. },
  25521. top: {
  25522. height: math.unit(28, "meters"),
  25523. name: "Top",
  25524. image: {
  25525. source: "./media/characters/mandarax/top.svg"
  25526. }
  25527. },
  25528. },
  25529. [
  25530. {
  25531. name: "Normal",
  25532. height: math.unit(25, "feet"),
  25533. default: true
  25534. },
  25535. ]
  25536. ))
  25537. characterMakers.push(() => makeCharacter(
  25538. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25539. {
  25540. front: {
  25541. height: math.unit(5, "feet"),
  25542. weight: math.unit(90, "lb"),
  25543. name: "Front",
  25544. image: {
  25545. source: "./media/characters/pixil/front.svg",
  25546. extra: 2000 / 1618,
  25547. bottom: 12.3 / 2011
  25548. }
  25549. },
  25550. },
  25551. [
  25552. {
  25553. name: "Normal",
  25554. height: math.unit(5, "feet"),
  25555. default: true
  25556. },
  25557. {
  25558. name: "Megamacro",
  25559. height: math.unit(10, "miles"),
  25560. },
  25561. ]
  25562. ))
  25563. characterMakers.push(() => makeCharacter(
  25564. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25565. {
  25566. front: {
  25567. height: math.unit(7 + 2 / 12, "feet"),
  25568. weight: math.unit(200, "lb"),
  25569. name: "Front",
  25570. image: {
  25571. source: "./media/characters/angel/front.svg",
  25572. extra: 1830 / 1737,
  25573. bottom: 22.6 / 1854,
  25574. }
  25575. },
  25576. },
  25577. [
  25578. {
  25579. name: "Normal",
  25580. height: math.unit(7 + 2 / 12, "feet"),
  25581. default: true
  25582. },
  25583. {
  25584. name: "Macro",
  25585. height: math.unit(1000, "feet")
  25586. },
  25587. {
  25588. name: "Megamacro",
  25589. height: math.unit(2, "miles")
  25590. },
  25591. {
  25592. name: "Gigamacro",
  25593. height: math.unit(20, "earths")
  25594. },
  25595. ]
  25596. ))
  25597. characterMakers.push(() => makeCharacter(
  25598. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25599. {
  25600. front: {
  25601. height: math.unit(5, "feet"),
  25602. weight: math.unit(180, "lb"),
  25603. name: "Front",
  25604. image: {
  25605. source: "./media/characters/mekana/front.svg",
  25606. extra: 1671 / 1605,
  25607. bottom: 3.5 / 1691
  25608. }
  25609. },
  25610. side: {
  25611. height: math.unit(5, "feet"),
  25612. weight: math.unit(180, "lb"),
  25613. name: "Side",
  25614. image: {
  25615. source: "./media/characters/mekana/side.svg",
  25616. extra: 1671 / 1605,
  25617. bottom: 3.5 / 1691
  25618. }
  25619. },
  25620. back: {
  25621. height: math.unit(5, "feet"),
  25622. weight: math.unit(180, "lb"),
  25623. name: "Back",
  25624. image: {
  25625. source: "./media/characters/mekana/back.svg",
  25626. extra: 1671 / 1605,
  25627. bottom: 3.5 / 1691
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Normal",
  25634. height: math.unit(5, "feet"),
  25635. default: true
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25641. {
  25642. front: {
  25643. height: math.unit(4 + 6 / 12, "feet"),
  25644. weight: math.unit(80, "lb"),
  25645. name: "Front",
  25646. image: {
  25647. source: "./media/characters/pixie/front.svg",
  25648. extra: 1924 / 1825,
  25649. bottom: 22.4 / 1946
  25650. }
  25651. },
  25652. },
  25653. [
  25654. {
  25655. name: "Normal",
  25656. height: math.unit(4 + 6 / 12, "feet"),
  25657. default: true
  25658. },
  25659. {
  25660. name: "Macro",
  25661. height: math.unit(40, "feet")
  25662. },
  25663. ]
  25664. ))
  25665. characterMakers.push(() => makeCharacter(
  25666. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25667. {
  25668. front: {
  25669. height: math.unit(2.1, "meters"),
  25670. weight: math.unit(200, "lb"),
  25671. name: "Front",
  25672. image: {
  25673. source: "./media/characters/the-lascivious/front.svg",
  25674. extra: 1 / 0.893,
  25675. bottom: 3.5 / 573.7
  25676. }
  25677. },
  25678. },
  25679. [
  25680. {
  25681. name: "Human Scale",
  25682. height: math.unit(2.1, "meters")
  25683. },
  25684. {
  25685. name: "Wolxi Scale",
  25686. height: math.unit(46.2, "m"),
  25687. default: true
  25688. },
  25689. {
  25690. name: "Boinker of Buildings",
  25691. height: math.unit(10, "km")
  25692. },
  25693. {
  25694. name: "Shagger of Skyscrapers",
  25695. height: math.unit(40, "km")
  25696. },
  25697. {
  25698. name: "Banger of Boroughs",
  25699. height: math.unit(4000, "km")
  25700. },
  25701. {
  25702. name: "Screwer of States",
  25703. height: math.unit(100000, "km")
  25704. },
  25705. {
  25706. name: "Pounder of Planets",
  25707. height: math.unit(2000000, "km")
  25708. },
  25709. ]
  25710. ))
  25711. characterMakers.push(() => makeCharacter(
  25712. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25713. {
  25714. front: {
  25715. height: math.unit(6, "feet"),
  25716. weight: math.unit(150, "lb"),
  25717. name: "Front",
  25718. image: {
  25719. source: "./media/characters/aj/front.svg",
  25720. extra: 2039 / 1562,
  25721. bottom: 40 / 2079
  25722. }
  25723. },
  25724. },
  25725. [
  25726. {
  25727. name: "Normal",
  25728. height: math.unit(11 + 6 / 12, "feet"),
  25729. default: true
  25730. },
  25731. {
  25732. name: "Megamacro",
  25733. height: math.unit(60, "megameters")
  25734. },
  25735. ]
  25736. ))
  25737. characterMakers.push(() => makeCharacter(
  25738. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25739. {
  25740. side: {
  25741. height: math.unit(31 + 8 / 12, "feet"),
  25742. weight: math.unit(75000, "kg"),
  25743. name: "Side",
  25744. image: {
  25745. source: "./media/characters/koros/side.svg",
  25746. extra: 1442 / 1297,
  25747. bottom: 122.7 / 1562
  25748. }
  25749. },
  25750. dicksKingsCrown: {
  25751. height: math.unit(6, "feet"),
  25752. name: "Dicks (King's Crown)",
  25753. image: {
  25754. source: "./media/characters/koros/dicks-kings-crown.svg"
  25755. }
  25756. },
  25757. dicksTailSet: {
  25758. height: math.unit(3, "feet"),
  25759. name: "Dicks (Tail Set)",
  25760. image: {
  25761. source: "./media/characters/koros/dicks-tail-set.svg"
  25762. }
  25763. },
  25764. dickCumming: {
  25765. height: math.unit(7.98, "feet"),
  25766. name: "Dick (Cumming)",
  25767. image: {
  25768. source: "./media/characters/koros/dick-cumming.svg"
  25769. }
  25770. },
  25771. dicksBack: {
  25772. height: math.unit(5.9, "feet"),
  25773. name: "Dicks (Back)",
  25774. image: {
  25775. source: "./media/characters/koros/dicks-back.svg"
  25776. }
  25777. },
  25778. dicksFront: {
  25779. height: math.unit(3.72, "feet"),
  25780. name: "Dicks (Front)",
  25781. image: {
  25782. source: "./media/characters/koros/dicks-front.svg"
  25783. }
  25784. },
  25785. dicksPeeking: {
  25786. height: math.unit(3.0, "feet"),
  25787. name: "Dicks (Peeking)",
  25788. image: {
  25789. source: "./media/characters/koros/dicks-peeking.svg"
  25790. }
  25791. },
  25792. eye: {
  25793. height: math.unit(1.7, "feet"),
  25794. name: "Eye",
  25795. image: {
  25796. source: "./media/characters/koros/eye.svg"
  25797. }
  25798. },
  25799. headFront: {
  25800. height: math.unit(11.69, "feet"),
  25801. name: "Head (Front)",
  25802. image: {
  25803. source: "./media/characters/koros/head-front.svg"
  25804. }
  25805. },
  25806. headSide: {
  25807. height: math.unit(14, "feet"),
  25808. name: "Head (Side)",
  25809. image: {
  25810. source: "./media/characters/koros/head-side.svg"
  25811. }
  25812. },
  25813. leg: {
  25814. height: math.unit(17, "feet"),
  25815. name: "Leg",
  25816. image: {
  25817. source: "./media/characters/koros/leg.svg"
  25818. }
  25819. },
  25820. mawSide: {
  25821. height: math.unit(12.8, "feet"),
  25822. name: "Maw (Side)",
  25823. image: {
  25824. source: "./media/characters/koros/maw-side.svg"
  25825. }
  25826. },
  25827. mawSpitting: {
  25828. height: math.unit(17, "feet"),
  25829. name: "Maw (Spitting)",
  25830. image: {
  25831. source: "./media/characters/koros/maw-spitting.svg"
  25832. }
  25833. },
  25834. slit: {
  25835. height: math.unit(2.8, "feet"),
  25836. name: "Slit",
  25837. image: {
  25838. source: "./media/characters/koros/slit.svg"
  25839. }
  25840. },
  25841. stomach: {
  25842. height: math.unit(6.8, "feet"),
  25843. capacity: math.unit(20, "people"),
  25844. name: "Stomach",
  25845. image: {
  25846. source: "./media/characters/koros/stomach.svg"
  25847. }
  25848. },
  25849. wingspanBottom: {
  25850. height: math.unit(114, "feet"),
  25851. name: "Wingspan (Bottom)",
  25852. image: {
  25853. source: "./media/characters/koros/wingspan-bottom.svg"
  25854. }
  25855. },
  25856. wingspanTop: {
  25857. height: math.unit(104, "feet"),
  25858. name: "Wingspan (Top)",
  25859. image: {
  25860. source: "./media/characters/koros/wingspan-top.svg"
  25861. }
  25862. },
  25863. },
  25864. [
  25865. {
  25866. name: "Normal",
  25867. height: math.unit(31 + 8 / 12, "feet"),
  25868. default: true
  25869. },
  25870. ]
  25871. ))
  25872. characterMakers.push(() => makeCharacter(
  25873. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25874. {
  25875. front: {
  25876. height: math.unit(18 + 5 / 12, "feet"),
  25877. weight: math.unit(3750, "kg"),
  25878. name: "Front",
  25879. image: {
  25880. source: "./media/characters/vexx/front.svg",
  25881. extra: 426 / 396,
  25882. bottom: 31.5 / 458
  25883. }
  25884. },
  25885. maw: {
  25886. height: math.unit(6, "feet"),
  25887. name: "Maw",
  25888. image: {
  25889. source: "./media/characters/vexx/maw.svg"
  25890. }
  25891. },
  25892. },
  25893. [
  25894. {
  25895. name: "Normal",
  25896. height: math.unit(18 + 5 / 12, "feet"),
  25897. default: true
  25898. },
  25899. ]
  25900. ))
  25901. characterMakers.push(() => makeCharacter(
  25902. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25903. {
  25904. front: {
  25905. height: math.unit(17 + 6 / 12, "feet"),
  25906. weight: math.unit(150, "lb"),
  25907. name: "Front",
  25908. image: {
  25909. source: "./media/characters/baadra/front.svg",
  25910. extra: 3137 / 2890,
  25911. bottom: 168.4 / 3305
  25912. }
  25913. },
  25914. back: {
  25915. height: math.unit(17 + 6 / 12, "feet"),
  25916. weight: math.unit(150, "lb"),
  25917. name: "Back",
  25918. image: {
  25919. source: "./media/characters/baadra/back.svg",
  25920. extra: 3142 / 2890,
  25921. bottom: 220 / 3371
  25922. }
  25923. },
  25924. head: {
  25925. height: math.unit(5.45, "feet"),
  25926. name: "Head",
  25927. image: {
  25928. source: "./media/characters/baadra/head.svg"
  25929. }
  25930. },
  25931. headAngry: {
  25932. height: math.unit(4.95, "feet"),
  25933. name: "Head (Angry)",
  25934. image: {
  25935. source: "./media/characters/baadra/head-angry.svg"
  25936. }
  25937. },
  25938. headOpen: {
  25939. height: math.unit(6, "feet"),
  25940. name: "Head (Open)",
  25941. image: {
  25942. source: "./media/characters/baadra/head-open.svg"
  25943. }
  25944. },
  25945. },
  25946. [
  25947. {
  25948. name: "Normal",
  25949. height: math.unit(17 + 6 / 12, "feet"),
  25950. default: true
  25951. },
  25952. ]
  25953. ))
  25954. characterMakers.push(() => makeCharacter(
  25955. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25956. {
  25957. front: {
  25958. height: math.unit(7 + 3 / 12, "feet"),
  25959. weight: math.unit(180, "lb"),
  25960. name: "Front",
  25961. image: {
  25962. source: "./media/characters/juri/front.svg",
  25963. extra: 1401 / 1237,
  25964. bottom: 18.5 / 1418
  25965. }
  25966. },
  25967. side: {
  25968. height: math.unit(7 + 3 / 12, "feet"),
  25969. weight: math.unit(180, "lb"),
  25970. name: "Side",
  25971. image: {
  25972. source: "./media/characters/juri/side.svg",
  25973. extra: 1424 / 1242,
  25974. bottom: 18.5 / 1447
  25975. }
  25976. },
  25977. sitting: {
  25978. height: math.unit(6, "feet"),
  25979. weight: math.unit(180, "lb"),
  25980. name: "Sitting",
  25981. image: {
  25982. source: "./media/characters/juri/sitting.svg",
  25983. extra: 1270 / 1143,
  25984. bottom: 100 / 1343
  25985. }
  25986. },
  25987. back: {
  25988. height: math.unit(7 + 3 / 12, "feet"),
  25989. weight: math.unit(180, "lb"),
  25990. name: "Back",
  25991. image: {
  25992. source: "./media/characters/juri/back.svg",
  25993. extra: 1377 / 1240,
  25994. bottom: 23.7 / 1405
  25995. }
  25996. },
  25997. maw: {
  25998. height: math.unit(2.8, "feet"),
  25999. name: "Maw",
  26000. image: {
  26001. source: "./media/characters/juri/maw.svg"
  26002. }
  26003. },
  26004. stomach: {
  26005. height: math.unit(0.89, "feet"),
  26006. capacity: math.unit(4, "liters"),
  26007. name: "Stomach",
  26008. image: {
  26009. source: "./media/characters/juri/stomach.svg"
  26010. }
  26011. },
  26012. },
  26013. [
  26014. {
  26015. name: "Normal",
  26016. height: math.unit(7 + 3 / 12, "feet"),
  26017. default: true
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26023. {
  26024. fox: {
  26025. height: math.unit(5 + 6 / 12, "feet"),
  26026. weight: math.unit(140, "lb"),
  26027. name: "Fox",
  26028. image: {
  26029. source: "./media/characters/maxene-sita/fox.svg",
  26030. extra: 146 / 138,
  26031. bottom: 2.1 / 148.19
  26032. }
  26033. },
  26034. foxLaying: {
  26035. height: math.unit(1.70, "feet"),
  26036. weight: math.unit(140, "lb"),
  26037. name: "Fox (Laying)",
  26038. image: {
  26039. source: "./media/characters/maxene-sita/fox-laying.svg",
  26040. extra: 910 / 572,
  26041. bottom: 71 / 981
  26042. }
  26043. },
  26044. kitsune: {
  26045. height: math.unit(10, "feet"),
  26046. weight: math.unit(800, "lb"),
  26047. name: "Kitsune",
  26048. image: {
  26049. source: "./media/characters/maxene-sita/kitsune.svg",
  26050. extra: 185 / 176,
  26051. bottom: 4.7 / 189.9
  26052. }
  26053. },
  26054. hellhound: {
  26055. height: math.unit(10, "feet"),
  26056. weight: math.unit(700, "lb"),
  26057. name: "Hellhound",
  26058. image: {
  26059. source: "./media/characters/maxene-sita/hellhound.svg",
  26060. extra: 1600 / 1545,
  26061. bottom: 81 / 1681
  26062. }
  26063. },
  26064. },
  26065. [
  26066. {
  26067. name: "Normal",
  26068. height: math.unit(5 + 6 / 12, "feet"),
  26069. default: true
  26070. },
  26071. ]
  26072. ))
  26073. characterMakers.push(() => makeCharacter(
  26074. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26075. {
  26076. front: {
  26077. height: math.unit(3 + 4 / 12, "feet"),
  26078. weight: math.unit(70, "lb"),
  26079. name: "Front",
  26080. image: {
  26081. source: "./media/characters/maia/front.svg",
  26082. extra: 227 / 219.5,
  26083. bottom: 40 / 267
  26084. }
  26085. },
  26086. back: {
  26087. height: math.unit(3 + 4 / 12, "feet"),
  26088. weight: math.unit(70, "lb"),
  26089. name: "Back",
  26090. image: {
  26091. source: "./media/characters/maia/back.svg",
  26092. extra: 237 / 225
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "Normal",
  26099. height: math.unit(3 + 4 / 12, "feet"),
  26100. default: true
  26101. },
  26102. ]
  26103. ))
  26104. characterMakers.push(() => makeCharacter(
  26105. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26106. {
  26107. front: {
  26108. height: math.unit(5 + 10 / 12, "feet"),
  26109. weight: math.unit(197, "lb"),
  26110. name: "Front",
  26111. image: {
  26112. source: "./media/characters/jabaro/front.svg",
  26113. extra: 225 / 216,
  26114. bottom: 5.06 / 230
  26115. }
  26116. },
  26117. back: {
  26118. height: math.unit(5 + 10 / 12, "feet"),
  26119. weight: math.unit(197, "lb"),
  26120. name: "Back",
  26121. image: {
  26122. source: "./media/characters/jabaro/back.svg",
  26123. extra: 225 / 219,
  26124. bottom: 1.9 / 227
  26125. }
  26126. },
  26127. },
  26128. [
  26129. {
  26130. name: "Normal",
  26131. height: math.unit(5 + 10 / 12, "feet"),
  26132. default: true
  26133. },
  26134. ]
  26135. ))
  26136. characterMakers.push(() => makeCharacter(
  26137. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26138. {
  26139. front: {
  26140. height: math.unit(5 + 8 / 12, "feet"),
  26141. weight: math.unit(139, "lb"),
  26142. name: "Front",
  26143. image: {
  26144. source: "./media/characters/risa/front.svg",
  26145. extra: 270 / 260,
  26146. bottom: 11.2 / 282
  26147. }
  26148. },
  26149. back: {
  26150. height: math.unit(5 + 8 / 12, "feet"),
  26151. weight: math.unit(139, "lb"),
  26152. name: "Back",
  26153. image: {
  26154. source: "./media/characters/risa/back.svg",
  26155. extra: 264 / 255,
  26156. bottom: 4 / 268
  26157. }
  26158. },
  26159. },
  26160. [
  26161. {
  26162. name: "Normal",
  26163. height: math.unit(5 + 8 / 12, "feet"),
  26164. default: true
  26165. },
  26166. ]
  26167. ))
  26168. characterMakers.push(() => makeCharacter(
  26169. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26170. {
  26171. front: {
  26172. height: math.unit(2 + 11 / 12, "feet"),
  26173. weight: math.unit(30, "lb"),
  26174. name: "Front",
  26175. image: {
  26176. source: "./media/characters/weatley/front.svg",
  26177. bottom: 10.7 / 414,
  26178. extra: 403.5 / 362
  26179. }
  26180. },
  26181. back: {
  26182. height: math.unit(2 + 11 / 12, "feet"),
  26183. weight: math.unit(30, "lb"),
  26184. name: "Back",
  26185. image: {
  26186. source: "./media/characters/weatley/back.svg",
  26187. bottom: 10.7 / 414,
  26188. extra: 403.5 / 362
  26189. }
  26190. },
  26191. },
  26192. [
  26193. {
  26194. name: "Normal",
  26195. height: math.unit(2 + 11 / 12, "feet"),
  26196. default: true
  26197. },
  26198. ]
  26199. ))
  26200. characterMakers.push(() => makeCharacter(
  26201. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26202. {
  26203. front: {
  26204. height: math.unit(5 + 2 / 12, "feet"),
  26205. weight: math.unit(50, "kg"),
  26206. name: "Front",
  26207. image: {
  26208. source: "./media/characters/mercury-crescent/front.svg",
  26209. extra: 1088 / 1033,
  26210. bottom: 18.9 / 1109
  26211. }
  26212. },
  26213. },
  26214. [
  26215. {
  26216. name: "Normal",
  26217. height: math.unit(5 + 2 / 12, "feet"),
  26218. default: true
  26219. },
  26220. ]
  26221. ))
  26222. characterMakers.push(() => makeCharacter(
  26223. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26224. {
  26225. front: {
  26226. height: math.unit(2, "feet"),
  26227. weight: math.unit(15, "kg"),
  26228. name: "Front",
  26229. image: {
  26230. source: "./media/characters/diamond-jones/front.svg",
  26231. extra: 727/723,
  26232. bottom: 46/773
  26233. }
  26234. },
  26235. },
  26236. [
  26237. {
  26238. name: "Normal",
  26239. height: math.unit(2, "feet"),
  26240. default: true
  26241. },
  26242. ]
  26243. ))
  26244. characterMakers.push(() => makeCharacter(
  26245. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26246. {
  26247. front: {
  26248. height: math.unit(3, "feet"),
  26249. weight: math.unit(30, "kg"),
  26250. name: "Front",
  26251. image: {
  26252. source: "./media/characters/sweet-bit/front.svg",
  26253. extra: 675 / 567,
  26254. bottom: 27.7 / 703
  26255. }
  26256. },
  26257. },
  26258. [
  26259. {
  26260. name: "Normal",
  26261. height: math.unit(3, "feet"),
  26262. default: true
  26263. },
  26264. ]
  26265. ))
  26266. characterMakers.push(() => makeCharacter(
  26267. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26268. {
  26269. side: {
  26270. height: math.unit(9.178, "feet"),
  26271. weight: math.unit(500, "lb"),
  26272. name: "Side",
  26273. image: {
  26274. source: "./media/characters/umbrazen/side.svg",
  26275. extra: 1730 / 1473,
  26276. bottom: 34.6 / 1765
  26277. }
  26278. },
  26279. },
  26280. [
  26281. {
  26282. name: "Normal",
  26283. height: math.unit(9.178, "feet"),
  26284. default: true
  26285. },
  26286. ]
  26287. ))
  26288. characterMakers.push(() => makeCharacter(
  26289. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26290. {
  26291. front: {
  26292. height: math.unit(10, "feet"),
  26293. weight: math.unit(750, "lb"),
  26294. name: "Front",
  26295. image: {
  26296. source: "./media/characters/arlist/front.svg",
  26297. extra: 961 / 778,
  26298. bottom: 6.2 / 986
  26299. }
  26300. },
  26301. },
  26302. [
  26303. {
  26304. name: "Normal",
  26305. height: math.unit(10, "feet"),
  26306. default: true
  26307. },
  26308. ]
  26309. ))
  26310. characterMakers.push(() => makeCharacter(
  26311. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26312. {
  26313. front: {
  26314. height: math.unit(5 + 1 / 12, "feet"),
  26315. weight: math.unit(110, "lb"),
  26316. name: "Front",
  26317. image: {
  26318. source: "./media/characters/aradel/front.svg",
  26319. extra: 324 / 303,
  26320. bottom: 3.6 / 329.4
  26321. }
  26322. },
  26323. },
  26324. [
  26325. {
  26326. name: "Normal",
  26327. height: math.unit(5 + 1 / 12, "feet"),
  26328. default: true
  26329. },
  26330. ]
  26331. ))
  26332. characterMakers.push(() => makeCharacter(
  26333. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26334. {
  26335. front: {
  26336. height: math.unit(3 + 8 / 12, "feet"),
  26337. weight: math.unit(50, "lb"),
  26338. name: "Front",
  26339. image: {
  26340. source: "./media/characters/serryn/front.svg",
  26341. extra: 1792 / 1656,
  26342. bottom: 43.5 / 1840
  26343. }
  26344. },
  26345. },
  26346. [
  26347. {
  26348. name: "Normal",
  26349. height: math.unit(3 + 8 / 12, "feet"),
  26350. default: true
  26351. },
  26352. ]
  26353. ))
  26354. characterMakers.push(() => makeCharacter(
  26355. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26356. {
  26357. front: {
  26358. height: math.unit(7 + 10 / 12, "feet"),
  26359. weight: math.unit(255, "lb"),
  26360. name: "Front",
  26361. image: {
  26362. source: "./media/characters/xavier-thyme/front.svg",
  26363. extra: 3733 / 3642,
  26364. bottom: 131 / 3869
  26365. }
  26366. },
  26367. frontRaven: {
  26368. height: math.unit(7 + 10 / 12, "feet"),
  26369. weight: math.unit(255, "lb"),
  26370. name: "Front (Raven)",
  26371. image: {
  26372. source: "./media/characters/xavier-thyme/front-raven.svg",
  26373. extra: 4385 / 3642,
  26374. bottom: 131 / 4517
  26375. }
  26376. },
  26377. },
  26378. [
  26379. {
  26380. name: "Normal",
  26381. height: math.unit(7 + 10 / 12, "feet"),
  26382. default: true
  26383. },
  26384. ]
  26385. ))
  26386. characterMakers.push(() => makeCharacter(
  26387. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26388. {
  26389. front: {
  26390. height: math.unit(1.6, "m"),
  26391. weight: math.unit(50, "kg"),
  26392. name: "Front",
  26393. image: {
  26394. source: "./media/characters/kiki/front.svg",
  26395. extra: 4682 / 3610,
  26396. bottom: 115 / 4777
  26397. }
  26398. },
  26399. },
  26400. [
  26401. {
  26402. name: "Normal",
  26403. height: math.unit(1.6, "meters"),
  26404. default: true
  26405. },
  26406. ]
  26407. ))
  26408. characterMakers.push(() => makeCharacter(
  26409. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26410. {
  26411. front: {
  26412. height: math.unit(50, "m"),
  26413. weight: math.unit(500, "tonnes"),
  26414. name: "Front",
  26415. image: {
  26416. source: "./media/characters/ryoko/front.svg",
  26417. extra: 4632 / 3926,
  26418. bottom: 193 / 4823
  26419. }
  26420. },
  26421. },
  26422. [
  26423. {
  26424. name: "Normal",
  26425. height: math.unit(50, "meters"),
  26426. default: true
  26427. },
  26428. ]
  26429. ))
  26430. characterMakers.push(() => makeCharacter(
  26431. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26432. {
  26433. front: {
  26434. height: math.unit(30, "m"),
  26435. weight: math.unit(22, "tonnes"),
  26436. name: "Front",
  26437. image: {
  26438. source: "./media/characters/elio/front.svg",
  26439. extra: 4582 / 3720,
  26440. bottom: 236 / 4828
  26441. }
  26442. },
  26443. },
  26444. [
  26445. {
  26446. name: "Normal",
  26447. height: math.unit(30, "meters"),
  26448. default: true
  26449. },
  26450. ]
  26451. ))
  26452. characterMakers.push(() => makeCharacter(
  26453. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26454. {
  26455. front: {
  26456. height: math.unit(6 + 3 / 12, "feet"),
  26457. weight: math.unit(120, "lb"),
  26458. name: "Front",
  26459. image: {
  26460. source: "./media/characters/azura/front.svg",
  26461. extra: 1149 / 1135,
  26462. bottom: 45 / 1194
  26463. }
  26464. },
  26465. frontClothed: {
  26466. height: math.unit(6 + 3 / 12, "feet"),
  26467. weight: math.unit(120, "lb"),
  26468. name: "Front (Clothed)",
  26469. image: {
  26470. source: "./media/characters/azura/front-clothed.svg",
  26471. extra: 1149 / 1135,
  26472. bottom: 45 / 1194
  26473. }
  26474. },
  26475. },
  26476. [
  26477. {
  26478. name: "Normal",
  26479. height: math.unit(6 + 3 / 12, "feet"),
  26480. default: true
  26481. },
  26482. {
  26483. name: "Macro",
  26484. height: math.unit(20 + 6 / 12, "feet")
  26485. },
  26486. {
  26487. name: "Megamacro",
  26488. height: math.unit(12, "miles")
  26489. },
  26490. {
  26491. name: "Gigamacro",
  26492. height: math.unit(10000, "miles")
  26493. },
  26494. {
  26495. name: "Teramacro",
  26496. height: math.unit(900000, "miles")
  26497. },
  26498. ]
  26499. ))
  26500. characterMakers.push(() => makeCharacter(
  26501. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26502. {
  26503. front: {
  26504. height: math.unit(12, "feet"),
  26505. weight: math.unit(1, "ton"),
  26506. capacity: math.unit(660000, "gallons"),
  26507. name: "Front",
  26508. image: {
  26509. source: "./media/characters/zeus/front.svg",
  26510. extra: 5005 / 4717,
  26511. bottom: 363 / 5388
  26512. }
  26513. },
  26514. },
  26515. [
  26516. {
  26517. name: "Normal",
  26518. height: math.unit(12, "feet")
  26519. },
  26520. {
  26521. name: "Preferred Size",
  26522. height: math.unit(0.5, "miles"),
  26523. default: true
  26524. },
  26525. {
  26526. name: "Giga Horse",
  26527. height: math.unit(300, "miles")
  26528. },
  26529. {
  26530. name: "Riding Planets",
  26531. height: math.unit(30, "megameters")
  26532. },
  26533. {
  26534. name: "Cosmic Giant",
  26535. height: math.unit(3, "zettameters")
  26536. },
  26537. {
  26538. name: "Breeding God",
  26539. height: math.unit(9.92e22, "yottameters")
  26540. },
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26545. {
  26546. side: {
  26547. height: math.unit(9, "feet"),
  26548. weight: math.unit(1500, "kg"),
  26549. name: "Side",
  26550. image: {
  26551. source: "./media/characters/fang/side.svg",
  26552. extra: 924 / 866,
  26553. bottom: 47.5 / 972.3
  26554. }
  26555. },
  26556. },
  26557. [
  26558. {
  26559. name: "Normal",
  26560. height: math.unit(9, "feet"),
  26561. default: true
  26562. },
  26563. {
  26564. name: "Macro",
  26565. height: math.unit(75 + 6 / 12, "feet")
  26566. },
  26567. {
  26568. name: "Teramacro",
  26569. height: math.unit(50000, "miles")
  26570. },
  26571. ]
  26572. ))
  26573. characterMakers.push(() => makeCharacter(
  26574. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26575. {
  26576. front: {
  26577. height: math.unit(10, "feet"),
  26578. weight: math.unit(2, "tons"),
  26579. name: "Front",
  26580. image: {
  26581. source: "./media/characters/rekhit/front.svg",
  26582. extra: 2796 / 2590,
  26583. bottom: 225 / 3022
  26584. }
  26585. },
  26586. },
  26587. [
  26588. {
  26589. name: "Normal",
  26590. height: math.unit(10, "feet"),
  26591. default: true
  26592. },
  26593. {
  26594. name: "Macro",
  26595. height: math.unit(500, "feet")
  26596. },
  26597. ]
  26598. ))
  26599. characterMakers.push(() => makeCharacter(
  26600. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26601. {
  26602. front: {
  26603. height: math.unit(7 + 6.451 / 12, "feet"),
  26604. weight: math.unit(310, "lb"),
  26605. name: "Front",
  26606. image: {
  26607. source: "./media/characters/dahlia-verrick/front.svg",
  26608. extra: 1488 / 1365,
  26609. bottom: 6.2 / 1495
  26610. }
  26611. },
  26612. back: {
  26613. height: math.unit(7 + 6.451 / 12, "feet"),
  26614. weight: math.unit(310, "lb"),
  26615. name: "Back",
  26616. image: {
  26617. source: "./media/characters/dahlia-verrick/back.svg",
  26618. extra: 1472 / 1351,
  26619. bottom: 5.28 / 1477
  26620. }
  26621. },
  26622. frontBusiness: {
  26623. height: math.unit(7 + 6.451 / 12, "feet"),
  26624. weight: math.unit(200, "lb"),
  26625. name: "Front (Business)",
  26626. image: {
  26627. source: "./media/characters/dahlia-verrick/front-business.svg",
  26628. extra: 1478 / 1381,
  26629. bottom: 5.5 / 1484
  26630. }
  26631. },
  26632. frontCasual: {
  26633. height: math.unit(7 + 6.451 / 12, "feet"),
  26634. weight: math.unit(200, "lb"),
  26635. name: "Front (Casual)",
  26636. image: {
  26637. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26638. extra: 1478 / 1381,
  26639. bottom: 5.5 / 1484
  26640. }
  26641. },
  26642. },
  26643. [
  26644. {
  26645. name: "Travel-Sized",
  26646. height: math.unit(7.45, "inches")
  26647. },
  26648. {
  26649. name: "Normal",
  26650. height: math.unit(7 + 6.451 / 12, "feet"),
  26651. default: true
  26652. },
  26653. {
  26654. name: "Hitting the Town",
  26655. height: math.unit(37 + 8 / 12, "feet")
  26656. },
  26657. {
  26658. name: "Stomp in the Suburbs",
  26659. height: math.unit(964 + 9.728 / 12, "feet")
  26660. },
  26661. {
  26662. name: "Sit on the City",
  26663. height: math.unit(61747 + 10.592 / 12, "feet")
  26664. },
  26665. {
  26666. name: "Glomp the Globe",
  26667. height: math.unit(252919327 + 4.832 / 12, "feet")
  26668. },
  26669. ]
  26670. ))
  26671. characterMakers.push(() => makeCharacter(
  26672. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26673. {
  26674. front: {
  26675. height: math.unit(6 + 4 / 12, "feet"),
  26676. weight: math.unit(320, "lb"),
  26677. name: "Front",
  26678. image: {
  26679. source: "./media/characters/balina-mahigan/front.svg",
  26680. extra: 447 / 428,
  26681. bottom: 18 / 466
  26682. }
  26683. },
  26684. back: {
  26685. height: math.unit(6 + 4 / 12, "feet"),
  26686. weight: math.unit(320, "lb"),
  26687. name: "Back",
  26688. image: {
  26689. source: "./media/characters/balina-mahigan/back.svg",
  26690. extra: 445 / 428,
  26691. bottom: 4.07 / 448
  26692. }
  26693. },
  26694. arm: {
  26695. height: math.unit(1.88, "feet"),
  26696. name: "Arm",
  26697. image: {
  26698. source: "./media/characters/balina-mahigan/arm.svg"
  26699. }
  26700. },
  26701. backPort: {
  26702. height: math.unit(0.685, "feet"),
  26703. name: "Back Port",
  26704. image: {
  26705. source: "./media/characters/balina-mahigan/back-port.svg"
  26706. }
  26707. },
  26708. hoofpaw: {
  26709. height: math.unit(1.41, "feet"),
  26710. name: "Hoofpaw",
  26711. image: {
  26712. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26713. }
  26714. },
  26715. leftHandBack: {
  26716. height: math.unit(0.938, "feet"),
  26717. name: "Left Hand (Back)",
  26718. image: {
  26719. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26720. }
  26721. },
  26722. leftHandFront: {
  26723. height: math.unit(0.938, "feet"),
  26724. name: "Left Hand (Front)",
  26725. image: {
  26726. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26727. }
  26728. },
  26729. rightHandBack: {
  26730. height: math.unit(0.95, "feet"),
  26731. name: "Right Hand (Back)",
  26732. image: {
  26733. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26734. }
  26735. },
  26736. rightHandFront: {
  26737. height: math.unit(0.95, "feet"),
  26738. name: "Right Hand (Front)",
  26739. image: {
  26740. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26741. }
  26742. },
  26743. },
  26744. [
  26745. {
  26746. name: "Normal",
  26747. height: math.unit(6 + 4 / 12, "feet"),
  26748. default: true
  26749. },
  26750. ]
  26751. ))
  26752. characterMakers.push(() => makeCharacter(
  26753. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26754. {
  26755. front: {
  26756. height: math.unit(6, "feet"),
  26757. weight: math.unit(320, "lb"),
  26758. name: "Front",
  26759. image: {
  26760. source: "./media/characters/balina-mejeri/front.svg",
  26761. extra: 517 / 488,
  26762. bottom: 44.2 / 561
  26763. }
  26764. },
  26765. },
  26766. [
  26767. {
  26768. name: "Normal",
  26769. height: math.unit(6 + 4 / 12, "feet")
  26770. },
  26771. {
  26772. name: "Business",
  26773. height: math.unit(155, "feet"),
  26774. default: true
  26775. },
  26776. ]
  26777. ))
  26778. characterMakers.push(() => makeCharacter(
  26779. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26780. {
  26781. kneeling: {
  26782. height: math.unit(6 + 4 / 12, "feet"),
  26783. weight: math.unit(300 * 20, "lb"),
  26784. name: "Kneeling",
  26785. image: {
  26786. source: "./media/characters/balbarian/kneeling.svg",
  26787. extra: 922 / 862,
  26788. bottom: 42.4 / 965
  26789. }
  26790. },
  26791. },
  26792. [
  26793. {
  26794. name: "Normal",
  26795. height: math.unit(6 + 4 / 12, "feet")
  26796. },
  26797. {
  26798. name: "Treasured",
  26799. height: math.unit(18 + 9 / 12, "feet"),
  26800. default: true
  26801. },
  26802. {
  26803. name: "Macro",
  26804. height: math.unit(900, "feet")
  26805. },
  26806. ]
  26807. ))
  26808. characterMakers.push(() => makeCharacter(
  26809. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26810. {
  26811. front: {
  26812. height: math.unit(6 + 4 / 12, "feet"),
  26813. weight: math.unit(325, "lb"),
  26814. name: "Front",
  26815. image: {
  26816. source: "./media/characters/balina-amarini/front.svg",
  26817. extra: 415 / 403,
  26818. bottom: 19 / 433.4
  26819. }
  26820. },
  26821. back: {
  26822. height: math.unit(6 + 4 / 12, "feet"),
  26823. weight: math.unit(325, "lb"),
  26824. name: "Back",
  26825. image: {
  26826. source: "./media/characters/balina-amarini/back.svg",
  26827. extra: 415 / 403,
  26828. bottom: 13.5 / 432
  26829. }
  26830. },
  26831. overdrive: {
  26832. height: math.unit(6 + 4 / 12, "feet"),
  26833. weight: math.unit(400, "lb"),
  26834. name: "Overdrive",
  26835. image: {
  26836. source: "./media/characters/balina-amarini/overdrive.svg",
  26837. extra: 269 / 259,
  26838. bottom: 12 / 282
  26839. }
  26840. },
  26841. },
  26842. [
  26843. {
  26844. name: "Boom",
  26845. height: math.unit(9 + 10 / 12, "feet"),
  26846. default: true
  26847. },
  26848. {
  26849. name: "Macro",
  26850. height: math.unit(280, "feet")
  26851. },
  26852. ]
  26853. ))
  26854. characterMakers.push(() => makeCharacter(
  26855. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26856. {
  26857. goddess: {
  26858. height: math.unit(600, "feet"),
  26859. weight: math.unit(2000000, "tons"),
  26860. name: "Goddess",
  26861. image: {
  26862. source: "./media/characters/lady-kubwa/goddess.svg",
  26863. extra: 1240.5 / 1223,
  26864. bottom: 22 / 1263
  26865. }
  26866. },
  26867. goddesser: {
  26868. height: math.unit(900, "feet"),
  26869. weight: math.unit(20000000, "lb"),
  26870. name: "Goddess-er",
  26871. image: {
  26872. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26873. extra: 899 / 888,
  26874. bottom: 12.6 / 912
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Macro",
  26881. height: math.unit(600, "feet"),
  26882. default: true
  26883. },
  26884. {
  26885. name: "Megamacro",
  26886. height: math.unit(250, "miles")
  26887. },
  26888. ]
  26889. ))
  26890. characterMakers.push(() => makeCharacter(
  26891. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26892. {
  26893. front: {
  26894. height: math.unit(7 + 7 / 12, "feet"),
  26895. weight: math.unit(250, "lb"),
  26896. name: "Front",
  26897. image: {
  26898. source: "./media/characters/tala-grovehorn/front.svg",
  26899. extra: 2636 / 2525,
  26900. bottom: 147 / 2781
  26901. }
  26902. },
  26903. back: {
  26904. height: math.unit(7 + 7 / 12, "feet"),
  26905. weight: math.unit(250, "lb"),
  26906. name: "Back",
  26907. image: {
  26908. source: "./media/characters/tala-grovehorn/back.svg",
  26909. extra: 2635 / 2539,
  26910. bottom: 100 / 2732.8
  26911. }
  26912. },
  26913. mouth: {
  26914. height: math.unit(1.15, "feet"),
  26915. name: "Mouth",
  26916. image: {
  26917. source: "./media/characters/tala-grovehorn/mouth.svg"
  26918. }
  26919. },
  26920. dick: {
  26921. height: math.unit(2.36, "feet"),
  26922. name: "Dick",
  26923. image: {
  26924. source: "./media/characters/tala-grovehorn/dick.svg"
  26925. }
  26926. },
  26927. slit: {
  26928. height: math.unit(0.61, "feet"),
  26929. name: "Slit",
  26930. image: {
  26931. source: "./media/characters/tala-grovehorn/slit.svg"
  26932. }
  26933. },
  26934. },
  26935. [
  26936. ]
  26937. ))
  26938. characterMakers.push(() => makeCharacter(
  26939. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26940. {
  26941. front: {
  26942. height: math.unit(7 + 7 / 12, "feet"),
  26943. weight: math.unit(225, "lb"),
  26944. name: "Front",
  26945. image: {
  26946. source: "./media/characters/epona/front.svg",
  26947. extra: 2445 / 2290,
  26948. bottom: 251 / 2696
  26949. }
  26950. },
  26951. back: {
  26952. height: math.unit(7 + 7 / 12, "feet"),
  26953. weight: math.unit(225, "lb"),
  26954. name: "Back",
  26955. image: {
  26956. source: "./media/characters/epona/back.svg",
  26957. extra: 2546 / 2408,
  26958. bottom: 44 / 2589
  26959. }
  26960. },
  26961. genitals: {
  26962. height: math.unit(1.5, "feet"),
  26963. name: "Genitals",
  26964. image: {
  26965. source: "./media/characters/epona/genitals.svg"
  26966. }
  26967. },
  26968. },
  26969. [
  26970. {
  26971. name: "Normal",
  26972. height: math.unit(7 + 7 / 12, "feet"),
  26973. default: true
  26974. },
  26975. ]
  26976. ))
  26977. characterMakers.push(() => makeCharacter(
  26978. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26979. {
  26980. front: {
  26981. height: math.unit(7, "feet"),
  26982. weight: math.unit(518, "lb"),
  26983. name: "Front",
  26984. image: {
  26985. source: "./media/characters/avia-bloodbourn/front.svg",
  26986. extra: 1466 / 1350,
  26987. bottom: 65 / 1527
  26988. }
  26989. },
  26990. },
  26991. [
  26992. ]
  26993. ))
  26994. characterMakers.push(() => makeCharacter(
  26995. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26996. {
  26997. front: {
  26998. height: math.unit(9.35, "feet"),
  26999. weight: math.unit(600, "lb"),
  27000. name: "Front",
  27001. image: {
  27002. source: "./media/characters/amera/front.svg",
  27003. extra: 891 / 818,
  27004. bottom: 30 / 922.7
  27005. }
  27006. },
  27007. back: {
  27008. height: math.unit(9.35, "feet"),
  27009. weight: math.unit(600, "lb"),
  27010. name: "Back",
  27011. image: {
  27012. source: "./media/characters/amera/back.svg",
  27013. extra: 876 / 824,
  27014. bottom: 6.8 / 884
  27015. }
  27016. },
  27017. dick: {
  27018. height: math.unit(2.14, "feet"),
  27019. name: "Dick",
  27020. image: {
  27021. source: "./media/characters/amera/dick.svg"
  27022. }
  27023. },
  27024. },
  27025. [
  27026. {
  27027. name: "Normal",
  27028. height: math.unit(9.35, "feet"),
  27029. default: true
  27030. },
  27031. ]
  27032. ))
  27033. characterMakers.push(() => makeCharacter(
  27034. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27035. {
  27036. kneeling: {
  27037. height: math.unit(3 + 4 / 12, "feet"),
  27038. weight: math.unit(90, "lb"),
  27039. name: "Kneeling",
  27040. image: {
  27041. source: "./media/characters/rosewen/kneeling.svg",
  27042. extra: 1835 / 1571,
  27043. bottom: 27.7 / 1862
  27044. }
  27045. },
  27046. },
  27047. [
  27048. {
  27049. name: "Normal",
  27050. height: math.unit(3 + 4 / 12, "feet"),
  27051. default: true
  27052. },
  27053. ]
  27054. ))
  27055. characterMakers.push(() => makeCharacter(
  27056. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27057. {
  27058. front: {
  27059. height: math.unit(5 + 10 / 12, "feet"),
  27060. weight: math.unit(200, "lb"),
  27061. name: "Front",
  27062. image: {
  27063. source: "./media/characters/sabah/front.svg",
  27064. extra: 849 / 763,
  27065. bottom: 33.9 / 881
  27066. }
  27067. },
  27068. },
  27069. [
  27070. {
  27071. name: "Normal",
  27072. height: math.unit(5 + 10 / 12, "feet"),
  27073. default: true
  27074. },
  27075. ]
  27076. ))
  27077. characterMakers.push(() => makeCharacter(
  27078. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27079. {
  27080. front: {
  27081. height: math.unit(3 + 5 / 12, "feet"),
  27082. weight: math.unit(40, "kg"),
  27083. name: "Front",
  27084. image: {
  27085. source: "./media/characters/purple-flame/front.svg",
  27086. extra: 1577 / 1412,
  27087. bottom: 97 / 1694
  27088. }
  27089. },
  27090. frontDressed: {
  27091. height: math.unit(3 + 5 / 12, "feet"),
  27092. weight: math.unit(40, "kg"),
  27093. name: "Front (Dressed)",
  27094. image: {
  27095. source: "./media/characters/purple-flame/front-dressed.svg",
  27096. extra: 1577 / 1412,
  27097. bottom: 97 / 1694
  27098. }
  27099. },
  27100. headphones: {
  27101. height: math.unit(0.85, "feet"),
  27102. name: "Headphones",
  27103. image: {
  27104. source: "./media/characters/purple-flame/headphones.svg"
  27105. }
  27106. },
  27107. },
  27108. [
  27109. {
  27110. name: "Really Small",
  27111. height: math.unit(5, "cm")
  27112. },
  27113. {
  27114. name: "Micro",
  27115. height: math.unit(1 + 5 / 12, "feet")
  27116. },
  27117. {
  27118. name: "Normal",
  27119. height: math.unit(3 + 5 / 12, "feet"),
  27120. default: true
  27121. },
  27122. {
  27123. name: "Minimacro",
  27124. height: math.unit(125, "feet")
  27125. },
  27126. {
  27127. name: "Macro",
  27128. height: math.unit(0.5, "miles")
  27129. },
  27130. {
  27131. name: "Megamacro",
  27132. height: math.unit(50, "miles")
  27133. },
  27134. {
  27135. name: "Gigantic",
  27136. height: math.unit(750, "miles")
  27137. },
  27138. {
  27139. name: "Planetary",
  27140. height: math.unit(15000, "miles")
  27141. },
  27142. ]
  27143. ))
  27144. characterMakers.push(() => makeCharacter(
  27145. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27146. {
  27147. front: {
  27148. height: math.unit(14, "feet"),
  27149. weight: math.unit(959, "lb"),
  27150. name: "Front",
  27151. image: {
  27152. source: "./media/characters/arsenal/front.svg",
  27153. extra: 2357 / 2157,
  27154. bottom: 93 / 2458
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(14, "feet"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(6, "feet"),
  27171. weight: math.unit(150, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/adira/front.svg",
  27175. extra: 1078 / 1029,
  27176. bottom: 87 / 1166
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Micro",
  27183. height: math.unit(4, "inches"),
  27184. default: true
  27185. },
  27186. {
  27187. name: "Macro",
  27188. height: math.unit(50, "feet")
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(16, "feet"),
  27197. weight: math.unit(1000, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/grim/front.svg",
  27201. extra: 622 / 614,
  27202. bottom: 18.1 / 642
  27203. }
  27204. },
  27205. back: {
  27206. height: math.unit(16, "feet"),
  27207. weight: math.unit(1000, "lb"),
  27208. name: "Back",
  27209. image: {
  27210. source: "./media/characters/grim/back.svg",
  27211. extra: 610.6 / 602,
  27212. bottom: 40.8 / 652
  27213. }
  27214. },
  27215. hunched: {
  27216. height: math.unit(9.75, "feet"),
  27217. weight: math.unit(1000, "lb"),
  27218. name: "Hunched",
  27219. image: {
  27220. source: "./media/characters/grim/hunched.svg",
  27221. extra: 304 / 297,
  27222. bottom: 35.4 / 394
  27223. }
  27224. },
  27225. },
  27226. [
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(16, "feet"),
  27230. default: true
  27231. },
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27236. {
  27237. front: {
  27238. height: math.unit(2.3, "meters"),
  27239. weight: math.unit(300, "lb"),
  27240. name: "Front",
  27241. image: {
  27242. source: "./media/characters/sinja/front-sfw.svg",
  27243. extra: 1393 / 1294,
  27244. bottom: 70 / 1463
  27245. }
  27246. },
  27247. frontNsfw: {
  27248. height: math.unit(2.3, "meters"),
  27249. weight: math.unit(300, "lb"),
  27250. name: "Front (NSFW)",
  27251. image: {
  27252. source: "./media/characters/sinja/front-nsfw.svg",
  27253. extra: 1393 / 1294,
  27254. bottom: 70 / 1463
  27255. }
  27256. },
  27257. back: {
  27258. height: math.unit(2.3, "meters"),
  27259. weight: math.unit(300, "lb"),
  27260. name: "Back",
  27261. image: {
  27262. source: "./media/characters/sinja/back.svg",
  27263. extra: 1393 / 1294,
  27264. bottom: 70 / 1463
  27265. }
  27266. },
  27267. head: {
  27268. height: math.unit(1.771, "feet"),
  27269. name: "Head",
  27270. image: {
  27271. source: "./media/characters/sinja/head.svg"
  27272. }
  27273. },
  27274. slit: {
  27275. height: math.unit(0.8, "feet"),
  27276. name: "Slit",
  27277. image: {
  27278. source: "./media/characters/sinja/slit.svg"
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(2.3, "meters")
  27286. },
  27287. {
  27288. name: "Macro",
  27289. height: math.unit(91, "meters"),
  27290. default: true
  27291. },
  27292. {
  27293. name: "Megamacro",
  27294. height: math.unit(91440, "meters")
  27295. },
  27296. {
  27297. name: "Gigamacro",
  27298. height: math.unit(60960000, "meters")
  27299. },
  27300. {
  27301. name: "Teramacro",
  27302. height: math.unit(9144000000, "meters")
  27303. },
  27304. ]
  27305. ))
  27306. characterMakers.push(() => makeCharacter(
  27307. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27308. {
  27309. front: {
  27310. height: math.unit(1.7, "meters"),
  27311. weight: math.unit(130, "lb"),
  27312. name: "Front",
  27313. image: {
  27314. source: "./media/characters/kyu/front.svg",
  27315. extra: 415 / 395,
  27316. bottom: 5 / 420
  27317. }
  27318. },
  27319. head: {
  27320. height: math.unit(1.75, "feet"),
  27321. name: "Head",
  27322. image: {
  27323. source: "./media/characters/kyu/head.svg"
  27324. }
  27325. },
  27326. foot: {
  27327. height: math.unit(0.81, "feet"),
  27328. name: "Foot",
  27329. image: {
  27330. source: "./media/characters/kyu/foot.svg"
  27331. }
  27332. },
  27333. },
  27334. [
  27335. {
  27336. name: "Normal",
  27337. height: math.unit(1.7, "meters")
  27338. },
  27339. {
  27340. name: "Macro",
  27341. height: math.unit(131, "feet"),
  27342. default: true
  27343. },
  27344. {
  27345. name: "Megamacro",
  27346. height: math.unit(91440, "meters")
  27347. },
  27348. {
  27349. name: "Gigamacro",
  27350. height: math.unit(60960000, "meters")
  27351. },
  27352. {
  27353. name: "Teramacro",
  27354. height: math.unit(9144000000, "meters")
  27355. },
  27356. ]
  27357. ))
  27358. characterMakers.push(() => makeCharacter(
  27359. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27360. {
  27361. front: {
  27362. height: math.unit(7 + 1 / 12, "feet"),
  27363. weight: math.unit(250, "lb"),
  27364. name: "Front",
  27365. image: {
  27366. source: "./media/characters/joey/front.svg",
  27367. extra: 1791 / 1537,
  27368. bottom: 28 / 1816
  27369. }
  27370. },
  27371. },
  27372. [
  27373. {
  27374. name: "Micro",
  27375. height: math.unit(3, "inches")
  27376. },
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(7 + 1 / 12, "feet"),
  27380. default: true
  27381. },
  27382. ]
  27383. ))
  27384. characterMakers.push(() => makeCharacter(
  27385. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27386. {
  27387. front: {
  27388. height: math.unit(165, "cm"),
  27389. weight: math.unit(140, "lb"),
  27390. name: "Front",
  27391. image: {
  27392. source: "./media/characters/sam-evans/front.svg",
  27393. extra: 3417 / 3230,
  27394. bottom: 41.3 / 3417
  27395. }
  27396. },
  27397. frontSixTails: {
  27398. height: math.unit(165, "cm"),
  27399. weight: math.unit(140, "lb"),
  27400. name: "Front-six-tails",
  27401. image: {
  27402. source: "./media/characters/sam-evans/front-six-tails.svg",
  27403. extra: 3417 / 3230,
  27404. bottom: 41.3 / 3417
  27405. }
  27406. },
  27407. back: {
  27408. height: math.unit(165, "cm"),
  27409. weight: math.unit(140, "lb"),
  27410. name: "Back",
  27411. image: {
  27412. source: "./media/characters/sam-evans/back.svg",
  27413. extra: 3227 / 3032,
  27414. bottom: 6.8 / 3234
  27415. }
  27416. },
  27417. face: {
  27418. height: math.unit(0.68, "feet"),
  27419. name: "Face",
  27420. image: {
  27421. source: "./media/characters/sam-evans/face.svg"
  27422. }
  27423. },
  27424. },
  27425. [
  27426. {
  27427. name: "Normal",
  27428. height: math.unit(165, "cm"),
  27429. default: true
  27430. },
  27431. {
  27432. name: "Macro",
  27433. height: math.unit(100, "meters")
  27434. },
  27435. {
  27436. name: "Macro+",
  27437. height: math.unit(800, "meters")
  27438. },
  27439. {
  27440. name: "Macro++",
  27441. height: math.unit(3, "km")
  27442. },
  27443. {
  27444. name: "Macro+++",
  27445. height: math.unit(30, "km")
  27446. },
  27447. ]
  27448. ))
  27449. characterMakers.push(() => makeCharacter(
  27450. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27451. {
  27452. front: {
  27453. height: math.unit(10, "feet"),
  27454. weight: math.unit(750, "lb"),
  27455. name: "Front",
  27456. image: {
  27457. source: "./media/characters/juliet-a/front.svg",
  27458. extra: 1766 / 1720,
  27459. bottom: 43 / 1809
  27460. }
  27461. },
  27462. back: {
  27463. height: math.unit(10, "feet"),
  27464. weight: math.unit(750, "lb"),
  27465. name: "Back",
  27466. image: {
  27467. source: "./media/characters/juliet-a/back.svg",
  27468. extra: 1781 / 1734,
  27469. bottom: 35 / 1810,
  27470. }
  27471. },
  27472. },
  27473. [
  27474. {
  27475. name: "Normal",
  27476. height: math.unit(10, "feet"),
  27477. default: true
  27478. },
  27479. {
  27480. name: "Dragon Form",
  27481. height: math.unit(250, "feet")
  27482. },
  27483. {
  27484. name: "Macro",
  27485. height: math.unit(1000, "feet")
  27486. },
  27487. {
  27488. name: "Megamacro",
  27489. height: math.unit(10000, "feet")
  27490. }
  27491. ]
  27492. ))
  27493. characterMakers.push(() => makeCharacter(
  27494. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27495. {
  27496. regular: {
  27497. height: math.unit(7 + 3 / 12, "feet"),
  27498. weight: math.unit(260, "lb"),
  27499. name: "Regular",
  27500. image: {
  27501. source: "./media/characters/wild/regular.svg",
  27502. extra: 97.45 / 92,
  27503. bottom: 6.8 / 104.3
  27504. }
  27505. },
  27506. biggums: {
  27507. height: math.unit(8 + 6 / 12, "feet"),
  27508. weight: math.unit(425, "lb"),
  27509. name: "Biggums",
  27510. image: {
  27511. source: "./media/characters/wild/biggums.svg",
  27512. extra: 97.45 / 92,
  27513. bottom: 7.5 / 132.34
  27514. }
  27515. },
  27516. mawRegular: {
  27517. height: math.unit(1.24, "feet"),
  27518. name: "Maw (Regular)",
  27519. image: {
  27520. source: "./media/characters/wild/maw.svg"
  27521. }
  27522. },
  27523. mawBiggums: {
  27524. height: math.unit(1.47, "feet"),
  27525. name: "Maw (Biggums)",
  27526. image: {
  27527. source: "./media/characters/wild/maw.svg"
  27528. }
  27529. },
  27530. },
  27531. [
  27532. {
  27533. name: "Normal",
  27534. height: math.unit(7 + 3 / 12, "feet"),
  27535. default: true
  27536. },
  27537. ]
  27538. ))
  27539. characterMakers.push(() => makeCharacter(
  27540. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27541. {
  27542. front: {
  27543. height: math.unit(2.5, "meters"),
  27544. weight: math.unit(200, "kg"),
  27545. name: "Front",
  27546. image: {
  27547. source: "./media/characters/vidar/front.svg",
  27548. extra: 2994 / 2795,
  27549. bottom: 56 / 3061
  27550. }
  27551. },
  27552. back: {
  27553. height: math.unit(2.5, "meters"),
  27554. weight: math.unit(200, "kg"),
  27555. name: "Back",
  27556. image: {
  27557. source: "./media/characters/vidar/back.svg",
  27558. extra: 3131 / 2928,
  27559. bottom: 13.5 / 3141.5
  27560. }
  27561. },
  27562. feral: {
  27563. height: math.unit(2.5, "meters"),
  27564. weight: math.unit(2000, "kg"),
  27565. name: "Feral",
  27566. image: {
  27567. source: "./media/characters/vidar/feral.svg",
  27568. extra: 2790 / 1765,
  27569. bottom: 6 / 2796
  27570. }
  27571. },
  27572. },
  27573. [
  27574. {
  27575. name: "Normal",
  27576. height: math.unit(2.5, "meters"),
  27577. default: true
  27578. },
  27579. {
  27580. name: "Macro",
  27581. height: math.unit(100, "meters")
  27582. },
  27583. ]
  27584. ))
  27585. characterMakers.push(() => makeCharacter(
  27586. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27587. {
  27588. front: {
  27589. height: math.unit(5 + 9 / 12, "feet"),
  27590. weight: math.unit(120, "lb"),
  27591. name: "Front",
  27592. image: {
  27593. source: "./media/characters/ash/front.svg",
  27594. extra: 2189 / 1961,
  27595. bottom: 5.2 / 2194
  27596. }
  27597. },
  27598. },
  27599. [
  27600. {
  27601. name: "Normal",
  27602. height: math.unit(5 + 9 / 12, "feet"),
  27603. default: true
  27604. },
  27605. ]
  27606. ))
  27607. characterMakers.push(() => makeCharacter(
  27608. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27609. {
  27610. front: {
  27611. height: math.unit(9, "feet"),
  27612. weight: math.unit(10000, "lb"),
  27613. name: "Front",
  27614. image: {
  27615. source: "./media/characters/gygabite/front.svg",
  27616. bottom: 31.7 / 537.8,
  27617. extra: 505 / 370
  27618. }
  27619. },
  27620. },
  27621. [
  27622. {
  27623. name: "Normal",
  27624. height: math.unit(9, "feet"),
  27625. default: true
  27626. },
  27627. ]
  27628. ))
  27629. characterMakers.push(() => makeCharacter(
  27630. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27631. {
  27632. front: {
  27633. height: math.unit(12, "feet"),
  27634. weight: math.unit(35000, "lb"),
  27635. name: "Front",
  27636. image: {
  27637. source: "./media/characters/p0tat0/front.svg",
  27638. extra: 1065 / 921,
  27639. bottom: 55.7 / 1121.25
  27640. }
  27641. },
  27642. },
  27643. [
  27644. {
  27645. name: "Normal",
  27646. height: math.unit(12, "feet"),
  27647. default: true
  27648. },
  27649. ]
  27650. ))
  27651. characterMakers.push(() => makeCharacter(
  27652. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27653. {
  27654. side: {
  27655. height: math.unit(6.5, "feet"),
  27656. weight: math.unit(800, "lb"),
  27657. name: "Side",
  27658. image: {
  27659. source: "./media/characters/dusk/side.svg",
  27660. extra: 615 / 373,
  27661. bottom: 53 / 664
  27662. }
  27663. },
  27664. sitting: {
  27665. height: math.unit(7, "feet"),
  27666. weight: math.unit(800, "lb"),
  27667. name: "Sitting",
  27668. image: {
  27669. source: "./media/characters/dusk/sitting.svg",
  27670. extra: 753 / 425,
  27671. bottom: 33 / 774
  27672. }
  27673. },
  27674. head: {
  27675. height: math.unit(6.1, "feet"),
  27676. name: "Head",
  27677. image: {
  27678. source: "./media/characters/dusk/head.svg"
  27679. }
  27680. },
  27681. },
  27682. [
  27683. {
  27684. name: "Normal",
  27685. height: math.unit(7, "feet"),
  27686. default: true
  27687. },
  27688. ]
  27689. ))
  27690. characterMakers.push(() => makeCharacter(
  27691. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27692. {
  27693. front: {
  27694. height: math.unit(15, "feet"),
  27695. weight: math.unit(7000, "lb"),
  27696. name: "Front",
  27697. image: {
  27698. source: "./media/characters/jay-direwolf/front.svg",
  27699. extra: 1810 / 1732,
  27700. bottom: 66 / 1892
  27701. }
  27702. },
  27703. },
  27704. [
  27705. {
  27706. name: "Normal",
  27707. height: math.unit(15, "feet"),
  27708. default: true
  27709. },
  27710. ]
  27711. ))
  27712. characterMakers.push(() => makeCharacter(
  27713. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27714. {
  27715. front: {
  27716. height: math.unit(4 + 9 / 12, "feet"),
  27717. weight: math.unit(130, "lb"),
  27718. name: "Front",
  27719. image: {
  27720. source: "./media/characters/anchovie/front.svg",
  27721. extra: 382 / 350,
  27722. bottom: 25 / 409
  27723. }
  27724. },
  27725. back: {
  27726. height: math.unit(4 + 9 / 12, "feet"),
  27727. weight: math.unit(130, "lb"),
  27728. name: "Back",
  27729. image: {
  27730. source: "./media/characters/anchovie/back.svg",
  27731. extra: 385 / 352,
  27732. bottom: 16.6 / 402
  27733. }
  27734. },
  27735. frontDressed: {
  27736. height: math.unit(4 + 9 / 12, "feet"),
  27737. weight: math.unit(130, "lb"),
  27738. name: "Front (Dressed)",
  27739. image: {
  27740. source: "./media/characters/anchovie/front-dressed.svg",
  27741. extra: 382 / 350,
  27742. bottom: 25 / 409
  27743. }
  27744. },
  27745. backDressed: {
  27746. height: math.unit(4 + 9 / 12, "feet"),
  27747. weight: math.unit(130, "lb"),
  27748. name: "Back (Dressed)",
  27749. image: {
  27750. source: "./media/characters/anchovie/back-dressed.svg",
  27751. extra: 385 / 352,
  27752. bottom: 16.6 / 402
  27753. }
  27754. },
  27755. },
  27756. [
  27757. {
  27758. name: "Micro",
  27759. height: math.unit(6.4, "inches")
  27760. },
  27761. {
  27762. name: "Normal",
  27763. height: math.unit(4 + 9 / 12, "feet"),
  27764. default: true
  27765. },
  27766. ]
  27767. ))
  27768. characterMakers.push(() => makeCharacter(
  27769. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27770. {
  27771. front: {
  27772. height: math.unit(2, "meters"),
  27773. weight: math.unit(180, "lb"),
  27774. name: "Front",
  27775. image: {
  27776. source: "./media/characters/acidrenamon/front.svg",
  27777. extra: 987 / 890,
  27778. bottom: 22.8 / 1009
  27779. }
  27780. },
  27781. back: {
  27782. height: math.unit(2, "meters"),
  27783. weight: math.unit(180, "lb"),
  27784. name: "Back",
  27785. image: {
  27786. source: "./media/characters/acidrenamon/back.svg",
  27787. extra: 983 / 891,
  27788. bottom: 8.4 / 992
  27789. }
  27790. },
  27791. head: {
  27792. height: math.unit(1.92, "feet"),
  27793. name: "Head",
  27794. image: {
  27795. source: "./media/characters/acidrenamon/head.svg"
  27796. }
  27797. },
  27798. rump: {
  27799. height: math.unit(1.72, "feet"),
  27800. name: "Rump",
  27801. image: {
  27802. source: "./media/characters/acidrenamon/rump.svg"
  27803. }
  27804. },
  27805. tail: {
  27806. height: math.unit(4.2, "feet"),
  27807. name: "Tail",
  27808. image: {
  27809. source: "./media/characters/acidrenamon/tail.svg"
  27810. }
  27811. },
  27812. },
  27813. [
  27814. {
  27815. name: "Normal",
  27816. height: math.unit(2, "meters"),
  27817. default: true
  27818. },
  27819. {
  27820. name: "Minimacro",
  27821. height: math.unit(7, "meters")
  27822. },
  27823. {
  27824. name: "Macro",
  27825. height: math.unit(200, "meters")
  27826. },
  27827. {
  27828. name: "Gigamacro",
  27829. height: math.unit(0.2, "earths")
  27830. },
  27831. ]
  27832. ))
  27833. characterMakers.push(() => makeCharacter(
  27834. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27835. {
  27836. front: {
  27837. height: math.unit(152, "feet"),
  27838. name: "Front",
  27839. image: {
  27840. source: "./media/characters/kenzie-lee/front.svg",
  27841. extra: 1869/1774,
  27842. bottom: 128/1997
  27843. }
  27844. },
  27845. side: {
  27846. height: math.unit(86, "feet"),
  27847. name: "Side",
  27848. image: {
  27849. source: "./media/characters/kenzie-lee/side.svg",
  27850. extra: 930/815,
  27851. bottom: 177/1107
  27852. }
  27853. },
  27854. paw: {
  27855. height: math.unit(15, "feet"),
  27856. name: "Paw",
  27857. image: {
  27858. source: "./media/characters/kenzie-lee/paw.svg"
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Micro",
  27865. height: math.unit(1.5, "inches")
  27866. },
  27867. {
  27868. name: "Normal",
  27869. height: math.unit(152, "feet"),
  27870. default: true
  27871. },
  27872. {
  27873. name: "Megamacro",
  27874. height: math.unit(7, "miles")
  27875. },
  27876. {
  27877. name: "Gigamacro",
  27878. height: math.unit(8000, "miles")
  27879. },
  27880. ]
  27881. ))
  27882. characterMakers.push(() => makeCharacter(
  27883. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27884. {
  27885. side: {
  27886. height: math.unit(6, "feet"),
  27887. weight: math.unit(150, "lb"),
  27888. name: "Side",
  27889. image: {
  27890. source: "./media/characters/withers/side.svg",
  27891. extra: 1830 / 1728,
  27892. bottom: 96 / 1927
  27893. }
  27894. },
  27895. front: {
  27896. height: math.unit(6, "feet"),
  27897. weight: math.unit(150, "lb"),
  27898. name: "Front",
  27899. image: {
  27900. source: "./media/characters/withers/front.svg",
  27901. extra: 1514 / 1438,
  27902. bottom: 118 / 1632
  27903. }
  27904. },
  27905. },
  27906. [
  27907. {
  27908. name: "Macro",
  27909. height: math.unit(168, "feet"),
  27910. default: true
  27911. },
  27912. {
  27913. name: "Megamacro",
  27914. height: math.unit(15, "miles")
  27915. }
  27916. ]
  27917. ))
  27918. characterMakers.push(() => makeCharacter(
  27919. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27920. {
  27921. front: {
  27922. height: math.unit(6 + 7 / 12, "feet"),
  27923. weight: math.unit(250, "lb"),
  27924. name: "Front",
  27925. image: {
  27926. source: "./media/characters/nemoskii/front.svg",
  27927. extra: 2270 / 1734,
  27928. bottom: 86 / 2354
  27929. }
  27930. },
  27931. back: {
  27932. height: math.unit(6 + 7 / 12, "feet"),
  27933. weight: math.unit(250, "lb"),
  27934. name: "Back",
  27935. image: {
  27936. source: "./media/characters/nemoskii/back.svg",
  27937. extra: 1845 / 1788,
  27938. bottom: 10.5 / 1852
  27939. }
  27940. },
  27941. head: {
  27942. height: math.unit(1.31, "feet"),
  27943. name: "Head",
  27944. image: {
  27945. source: "./media/characters/nemoskii/head.svg"
  27946. }
  27947. },
  27948. },
  27949. [
  27950. {
  27951. name: "Micro",
  27952. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27953. },
  27954. {
  27955. name: "Normal",
  27956. height: math.unit(6 + 7 / 12, "feet"),
  27957. default: true
  27958. },
  27959. {
  27960. name: "Macro",
  27961. height: math.unit((6 + 7 / 12) * 150, "feet")
  27962. },
  27963. {
  27964. name: "Macro+",
  27965. height: math.unit((6 + 7 / 12) * 500, "feet")
  27966. },
  27967. {
  27968. name: "Megamacro",
  27969. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27970. },
  27971. ]
  27972. ))
  27973. characterMakers.push(() => makeCharacter(
  27974. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27975. {
  27976. front: {
  27977. height: math.unit(1, "mile"),
  27978. weight: math.unit(265261.9, "lb"),
  27979. name: "Front",
  27980. image: {
  27981. source: "./media/characters/shui/front.svg",
  27982. extra: 1633 / 1564,
  27983. bottom: 91.5 / 1726
  27984. }
  27985. },
  27986. },
  27987. [
  27988. {
  27989. name: "Macro",
  27990. height: math.unit(1, "mile"),
  27991. default: true
  27992. },
  27993. ]
  27994. ))
  27995. characterMakers.push(() => makeCharacter(
  27996. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27997. {
  27998. front: {
  27999. height: math.unit(12 + 6 / 12, "feet"),
  28000. weight: math.unit(1342, "lb"),
  28001. name: "Front",
  28002. image: {
  28003. source: "./media/characters/arokh-takakura/front.svg",
  28004. extra: 1089 / 1043,
  28005. bottom: 77.4 / 1176.7
  28006. }
  28007. },
  28008. back: {
  28009. height: math.unit(12 + 6 / 12, "feet"),
  28010. weight: math.unit(1342, "lb"),
  28011. name: "Back",
  28012. image: {
  28013. source: "./media/characters/arokh-takakura/back.svg",
  28014. extra: 1046 / 1019,
  28015. bottom: 102 / 1150
  28016. }
  28017. },
  28018. },
  28019. [
  28020. {
  28021. name: "Big",
  28022. height: math.unit(12 + 6 / 12, "feet"),
  28023. default: true
  28024. },
  28025. ]
  28026. ))
  28027. characterMakers.push(() => makeCharacter(
  28028. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28029. {
  28030. front: {
  28031. height: math.unit(5 + 6 / 12, "feet"),
  28032. weight: math.unit(150, "lb"),
  28033. name: "Front",
  28034. image: {
  28035. source: "./media/characters/theo/front.svg",
  28036. extra: 1184 / 1131,
  28037. bottom: 7.4 / 1191
  28038. }
  28039. },
  28040. },
  28041. [
  28042. {
  28043. name: "Micro",
  28044. height: math.unit(5, "inches")
  28045. },
  28046. {
  28047. name: "Normal",
  28048. height: math.unit(5 + 6 / 12, "feet"),
  28049. default: true
  28050. },
  28051. ]
  28052. ))
  28053. characterMakers.push(() => makeCharacter(
  28054. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28055. {
  28056. front: {
  28057. height: math.unit(5 + 9 / 12, "feet"),
  28058. weight: math.unit(130, "lb"),
  28059. name: "Front",
  28060. image: {
  28061. source: "./media/characters/cecelia-swift/front.svg",
  28062. extra: 502 / 484,
  28063. bottom: 23 / 523
  28064. }
  28065. },
  28066. back: {
  28067. height: math.unit(5 + 9 / 12, "feet"),
  28068. weight: math.unit(130, "lb"),
  28069. name: "Back",
  28070. image: {
  28071. source: "./media/characters/cecelia-swift/back.svg",
  28072. extra: 499 / 485,
  28073. bottom: 12 / 511
  28074. }
  28075. },
  28076. head: {
  28077. height: math.unit(0.90, "feet"),
  28078. name: "Head",
  28079. image: {
  28080. source: "./media/characters/cecelia-swift/head.svg"
  28081. }
  28082. },
  28083. rump: {
  28084. height: math.unit(1.75, "feet"),
  28085. name: "Rump",
  28086. image: {
  28087. source: "./media/characters/cecelia-swift/rump.svg"
  28088. }
  28089. },
  28090. },
  28091. [
  28092. {
  28093. name: "Normal",
  28094. height: math.unit(5 + 9 / 12, "feet"),
  28095. default: true
  28096. },
  28097. {
  28098. name: "Big",
  28099. height: math.unit(50, "feet")
  28100. },
  28101. {
  28102. name: "Macro",
  28103. height: math.unit(100, "feet")
  28104. },
  28105. {
  28106. name: "Macro+",
  28107. height: math.unit(500, "feet")
  28108. },
  28109. {
  28110. name: "Macro++",
  28111. height: math.unit(1000, "feet")
  28112. },
  28113. ]
  28114. ))
  28115. characterMakers.push(() => makeCharacter(
  28116. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28117. {
  28118. front: {
  28119. height: math.unit(6, "feet"),
  28120. weight: math.unit(150, "lb"),
  28121. name: "Front",
  28122. image: {
  28123. source: "./media/characters/kaunan/front.svg",
  28124. extra: 2890 / 2523,
  28125. bottom: 49 / 2939
  28126. }
  28127. },
  28128. },
  28129. [
  28130. {
  28131. name: "Macro",
  28132. height: math.unit(150, "feet"),
  28133. default: true
  28134. },
  28135. ]
  28136. ))
  28137. characterMakers.push(() => makeCharacter(
  28138. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28139. {
  28140. front: {
  28141. height: math.unit(175, "cm"),
  28142. weight: math.unit(60, "kg"),
  28143. name: "Front",
  28144. image: {
  28145. source: "./media/characters/fei/front.svg",
  28146. extra: 1873/1723,
  28147. bottom: 53/1926
  28148. }
  28149. },
  28150. },
  28151. [
  28152. {
  28153. name: "Mortal",
  28154. height: math.unit(175, "cm")
  28155. },
  28156. {
  28157. name: "Normal",
  28158. height: math.unit(3500, "m"),
  28159. default: true
  28160. },
  28161. {
  28162. name: "Stroll",
  28163. height: math.unit(17.5, "km")
  28164. },
  28165. {
  28166. name: "Showoff",
  28167. height: math.unit(175, "km")
  28168. },
  28169. ]
  28170. ))
  28171. characterMakers.push(() => makeCharacter(
  28172. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28173. {
  28174. front: {
  28175. height: math.unit(7, "feet"),
  28176. weight: math.unit(1000, "kg"),
  28177. name: "Front",
  28178. image: {
  28179. source: "./media/characters/edrax/front.svg",
  28180. extra: 2838 / 2550,
  28181. bottom: 130 / 2968
  28182. }
  28183. },
  28184. },
  28185. [
  28186. {
  28187. name: "Small",
  28188. height: math.unit(7, "feet")
  28189. },
  28190. {
  28191. name: "Normal",
  28192. height: math.unit(1500, "meters")
  28193. },
  28194. {
  28195. name: "Mega",
  28196. height: math.unit(12000000, "km"),
  28197. default: true
  28198. },
  28199. {
  28200. name: "Megamacro",
  28201. height: math.unit(10600000, "lightyears")
  28202. },
  28203. {
  28204. name: "Hypermacro",
  28205. height: math.unit(256, "yottameters")
  28206. },
  28207. ]
  28208. ))
  28209. characterMakers.push(() => makeCharacter(
  28210. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28211. {
  28212. front: {
  28213. height: math.unit(10, "feet"),
  28214. weight: math.unit(750, "lb"),
  28215. name: "Front",
  28216. image: {
  28217. source: "./media/characters/clove/front.svg",
  28218. extra: 1918/1751,
  28219. bottom: 52/1970
  28220. }
  28221. },
  28222. back: {
  28223. height: math.unit(10, "feet"),
  28224. weight: math.unit(750, "lb"),
  28225. name: "Back",
  28226. image: {
  28227. source: "./media/characters/clove/back.svg",
  28228. extra: 1912/1747,
  28229. bottom: 50/1962
  28230. }
  28231. },
  28232. },
  28233. [
  28234. {
  28235. name: "Normal",
  28236. height: math.unit(10, "feet"),
  28237. default: true
  28238. },
  28239. ]
  28240. ))
  28241. characterMakers.push(() => makeCharacter(
  28242. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28243. {
  28244. front: {
  28245. height: math.unit(4, "feet"),
  28246. weight: math.unit(50, "lb"),
  28247. name: "Front",
  28248. image: {
  28249. source: "./media/characters/alex-rabbit/front.svg",
  28250. extra: 507 / 458,
  28251. bottom: 18.5 / 527
  28252. }
  28253. },
  28254. back: {
  28255. height: math.unit(4, "feet"),
  28256. weight: math.unit(50, "lb"),
  28257. name: "Back",
  28258. image: {
  28259. source: "./media/characters/alex-rabbit/back.svg",
  28260. extra: 502 / 460,
  28261. bottom: 18.9 / 521
  28262. }
  28263. },
  28264. },
  28265. [
  28266. {
  28267. name: "Normal",
  28268. height: math.unit(4, "feet"),
  28269. default: true
  28270. },
  28271. ]
  28272. ))
  28273. characterMakers.push(() => makeCharacter(
  28274. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28275. {
  28276. front: {
  28277. height: math.unit(1 + 3 / 12, "feet"),
  28278. weight: math.unit(80, "lb"),
  28279. name: "Front",
  28280. image: {
  28281. source: "./media/characters/zander-rose/front.svg",
  28282. extra: 916 / 797,
  28283. bottom: 17 / 933
  28284. }
  28285. },
  28286. back: {
  28287. height: math.unit(1 + 3 / 12, "feet"),
  28288. weight: math.unit(80, "lb"),
  28289. name: "Back",
  28290. image: {
  28291. source: "./media/characters/zander-rose/back.svg",
  28292. extra: 903 / 779,
  28293. bottom: 31 / 934
  28294. }
  28295. },
  28296. },
  28297. [
  28298. {
  28299. name: "Normal",
  28300. height: math.unit(1 + 3 / 12, "feet"),
  28301. default: true
  28302. },
  28303. ]
  28304. ))
  28305. characterMakers.push(() => makeCharacter(
  28306. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28307. {
  28308. anthro: {
  28309. height: math.unit(6, "feet"),
  28310. weight: math.unit(150, "lb"),
  28311. name: "Anthro",
  28312. image: {
  28313. source: "./media/characters/razz/anthro.svg",
  28314. extra: 1437 / 1343,
  28315. bottom: 48 / 1485
  28316. }
  28317. },
  28318. feral: {
  28319. height: math.unit(6, "feet"),
  28320. weight: math.unit(150, "lb"),
  28321. name: "Feral",
  28322. image: {
  28323. source: "./media/characters/razz/feral.svg",
  28324. extra: 2569 / 1385,
  28325. bottom: 95 / 2664
  28326. }
  28327. },
  28328. },
  28329. [
  28330. {
  28331. name: "Normal",
  28332. height: math.unit(6, "feet"),
  28333. default: true
  28334. },
  28335. ]
  28336. ))
  28337. characterMakers.push(() => makeCharacter(
  28338. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28339. {
  28340. front: {
  28341. height: math.unit(9 + 4 / 12, "feet"),
  28342. weight: math.unit(500, "lb"),
  28343. name: "Front",
  28344. image: {
  28345. source: "./media/characters/morrigan/front.svg",
  28346. extra: 2707 / 2579,
  28347. bottom: 156 / 2863
  28348. }
  28349. },
  28350. },
  28351. [
  28352. {
  28353. name: "Normal",
  28354. height: math.unit(9 + 4 / 12, "feet"),
  28355. default: true
  28356. },
  28357. ]
  28358. ))
  28359. characterMakers.push(() => makeCharacter(
  28360. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28361. {
  28362. front: {
  28363. height: math.unit(5, "stories"),
  28364. weight: math.unit(4000, "lb"),
  28365. name: "Front",
  28366. image: {
  28367. source: "./media/characters/jenene/front.svg",
  28368. extra: 1780 / 1710,
  28369. bottom: 57 / 1837
  28370. }
  28371. },
  28372. },
  28373. [
  28374. {
  28375. name: "Normal",
  28376. height: math.unit(5, "stories"),
  28377. default: true
  28378. },
  28379. ]
  28380. ))
  28381. characterMakers.push(() => makeCharacter(
  28382. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28383. {
  28384. taurSfw: {
  28385. height: math.unit(10, "meters"),
  28386. weight: math.unit(17500, "kg"),
  28387. name: "Taur",
  28388. image: {
  28389. source: "./media/characters/faey/taur-sfw.svg",
  28390. extra: 1200 / 968,
  28391. bottom: 41 / 1241
  28392. }
  28393. },
  28394. chestmaw: {
  28395. height: math.unit(2.01, "meters"),
  28396. name: "Chestmaw",
  28397. image: {
  28398. source: "./media/characters/faey/chestmaw.svg"
  28399. }
  28400. },
  28401. foot: {
  28402. height: math.unit(2.43, "meters"),
  28403. name: "Foot",
  28404. image: {
  28405. source: "./media/characters/faey/foot.svg"
  28406. }
  28407. },
  28408. jaws: {
  28409. height: math.unit(1.66, "meters"),
  28410. name: "Jaws",
  28411. image: {
  28412. source: "./media/characters/faey/jaws.svg"
  28413. }
  28414. },
  28415. tongues: {
  28416. height: math.unit(2.01, "meters"),
  28417. name: "Tongues",
  28418. image: {
  28419. source: "./media/characters/faey/tongues.svg"
  28420. }
  28421. },
  28422. },
  28423. [
  28424. {
  28425. name: "Small",
  28426. height: math.unit(10, "meters"),
  28427. default: true
  28428. },
  28429. {
  28430. name: "Big",
  28431. height: math.unit(500000, "km")
  28432. },
  28433. ]
  28434. ))
  28435. characterMakers.push(() => makeCharacter(
  28436. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28437. {
  28438. front: {
  28439. height: math.unit(7, "feet"),
  28440. weight: math.unit(275, "lb"),
  28441. name: "Front",
  28442. image: {
  28443. source: "./media/characters/roku/front.svg",
  28444. extra: 903 / 878,
  28445. bottom: 37 / 940
  28446. }
  28447. },
  28448. },
  28449. [
  28450. {
  28451. name: "Normal",
  28452. height: math.unit(7, "feet"),
  28453. default: true
  28454. },
  28455. {
  28456. name: "Macro",
  28457. height: math.unit(500, "feet")
  28458. },
  28459. {
  28460. name: "Megamacro",
  28461. height: math.unit(200, "miles")
  28462. },
  28463. ]
  28464. ))
  28465. characterMakers.push(() => makeCharacter(
  28466. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28467. {
  28468. front: {
  28469. height: math.unit(6 + 2 / 12, "feet"),
  28470. weight: math.unit(150, "lb"),
  28471. name: "Front",
  28472. image: {
  28473. source: "./media/characters/lira/front.svg",
  28474. extra: 1727 / 1605,
  28475. bottom: 26 / 1753
  28476. }
  28477. },
  28478. back: {
  28479. height: math.unit(6 + 2 / 12, "feet"),
  28480. weight: math.unit(150, "lb"),
  28481. name: "Back",
  28482. image: {
  28483. source: "./media/characters/lira/back.svg",
  28484. extra: 1713/1621,
  28485. bottom: 20/1733
  28486. }
  28487. },
  28488. hand: {
  28489. height: math.unit(0.75, "feet"),
  28490. name: "Hand",
  28491. image: {
  28492. source: "./media/characters/lira/hand.svg"
  28493. }
  28494. },
  28495. maw: {
  28496. height: math.unit(0.65, "feet"),
  28497. name: "Maw",
  28498. image: {
  28499. source: "./media/characters/lira/maw.svg"
  28500. }
  28501. },
  28502. pawDigi: {
  28503. height: math.unit(1.6, "feet"),
  28504. name: "Paw Digi",
  28505. image: {
  28506. source: "./media/characters/lira/paw-digi.svg"
  28507. }
  28508. },
  28509. pawPlanti: {
  28510. height: math.unit(1.4, "feet"),
  28511. name: "Paw Planti",
  28512. image: {
  28513. source: "./media/characters/lira/paw-planti.svg"
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Normal",
  28520. height: math.unit(6 + 2 / 12, "feet"),
  28521. default: true
  28522. },
  28523. {
  28524. name: "Macro",
  28525. height: math.unit(100, "feet")
  28526. },
  28527. {
  28528. name: "Macro²",
  28529. height: math.unit(1600, "feet")
  28530. },
  28531. {
  28532. name: "Planetary",
  28533. height: math.unit(20, "earths")
  28534. },
  28535. ]
  28536. ))
  28537. characterMakers.push(() => makeCharacter(
  28538. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28539. {
  28540. front: {
  28541. height: math.unit(6, "feet"),
  28542. weight: math.unit(150, "lb"),
  28543. name: "Front",
  28544. image: {
  28545. source: "./media/characters/hadjet/front.svg",
  28546. extra: 1480 / 1346,
  28547. bottom: 26 / 1506
  28548. }
  28549. },
  28550. frontNsfw: {
  28551. height: math.unit(6, "feet"),
  28552. weight: math.unit(150, "lb"),
  28553. name: "Front (NSFW)",
  28554. image: {
  28555. source: "./media/characters/hadjet/front-nsfw.svg",
  28556. extra: 1440 / 1358,
  28557. bottom: 52 / 1492
  28558. }
  28559. },
  28560. },
  28561. [
  28562. {
  28563. name: "Macro",
  28564. height: math.unit(10, "stories"),
  28565. default: true
  28566. },
  28567. {
  28568. name: "Megamacro",
  28569. height: math.unit(1.5, "miles")
  28570. },
  28571. {
  28572. name: "Megamacro+",
  28573. height: math.unit(5, "miles")
  28574. },
  28575. ]
  28576. ))
  28577. characterMakers.push(() => makeCharacter(
  28578. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28579. {
  28580. side: {
  28581. height: math.unit(106, "feet"),
  28582. weight: math.unit(500, "tonnes"),
  28583. name: "Side",
  28584. image: {
  28585. source: "./media/characters/kodran/side.svg",
  28586. extra: 553 / 480,
  28587. bottom: 33 / 586
  28588. }
  28589. },
  28590. front: {
  28591. height: math.unit(132, "feet"),
  28592. weight: math.unit(500, "tonnes"),
  28593. name: "Front",
  28594. image: {
  28595. source: "./media/characters/kodran/front.svg",
  28596. extra: 667 / 643,
  28597. bottom: 42 / 709
  28598. }
  28599. },
  28600. flying: {
  28601. height: math.unit(350, "feet"),
  28602. weight: math.unit(500, "tonnes"),
  28603. name: "Flying",
  28604. image: {
  28605. source: "./media/characters/kodran/flying.svg"
  28606. }
  28607. },
  28608. foot: {
  28609. height: math.unit(33, "feet"),
  28610. name: "Foot",
  28611. image: {
  28612. source: "./media/characters/kodran/foot.svg"
  28613. }
  28614. },
  28615. footFront: {
  28616. height: math.unit(19, "feet"),
  28617. name: "Foot (Front)",
  28618. image: {
  28619. source: "./media/characters/kodran/foot-front.svg",
  28620. extra: 261 / 261,
  28621. bottom: 91 / 352
  28622. }
  28623. },
  28624. headFront: {
  28625. height: math.unit(53, "feet"),
  28626. name: "Head (Front)",
  28627. image: {
  28628. source: "./media/characters/kodran/head-front.svg"
  28629. }
  28630. },
  28631. headSide: {
  28632. height: math.unit(65, "feet"),
  28633. name: "Head (Side)",
  28634. image: {
  28635. source: "./media/characters/kodran/head-side.svg"
  28636. }
  28637. },
  28638. throat: {
  28639. height: math.unit(79, "feet"),
  28640. name: "Throat",
  28641. image: {
  28642. source: "./media/characters/kodran/throat.svg"
  28643. }
  28644. },
  28645. },
  28646. [
  28647. {
  28648. name: "Large",
  28649. height: math.unit(106, "feet"),
  28650. default: true
  28651. },
  28652. ]
  28653. ))
  28654. characterMakers.push(() => makeCharacter(
  28655. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28656. {
  28657. side: {
  28658. height: math.unit(11, "feet"),
  28659. weight: math.unit(150, "lb"),
  28660. name: "Side",
  28661. image: {
  28662. source: "./media/characters/pyxaron/side.svg",
  28663. extra: 305 / 195,
  28664. bottom: 17 / 322
  28665. }
  28666. },
  28667. },
  28668. [
  28669. {
  28670. name: "Normal",
  28671. height: math.unit(11, "feet"),
  28672. default: true
  28673. },
  28674. ]
  28675. ))
  28676. characterMakers.push(() => makeCharacter(
  28677. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28678. {
  28679. front: {
  28680. height: math.unit(6, "feet"),
  28681. weight: math.unit(150, "lb"),
  28682. name: "Front",
  28683. image: {
  28684. source: "./media/characters/meep/front.svg",
  28685. extra: 88 / 80,
  28686. bottom: 6 / 94
  28687. }
  28688. },
  28689. },
  28690. [
  28691. {
  28692. name: "Fun Sized",
  28693. height: math.unit(2, "inches"),
  28694. default: true
  28695. },
  28696. {
  28697. name: "Friend Sized",
  28698. height: math.unit(8, "inches")
  28699. },
  28700. ]
  28701. ))
  28702. characterMakers.push(() => makeCharacter(
  28703. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28704. {
  28705. front: {
  28706. height: math.unit(15, "feet"),
  28707. weight: math.unit(2500, "lb"),
  28708. name: "Front",
  28709. image: {
  28710. source: "./media/characters/holly-rabbit/front.svg",
  28711. extra: 1433 / 1233,
  28712. bottom: 125 / 1558
  28713. }
  28714. },
  28715. dick: {
  28716. height: math.unit(4.6, "feet"),
  28717. name: "Dick",
  28718. image: {
  28719. source: "./media/characters/holly-rabbit/dick.svg"
  28720. }
  28721. },
  28722. },
  28723. [
  28724. {
  28725. name: "Normal",
  28726. height: math.unit(15, "feet"),
  28727. default: true
  28728. },
  28729. {
  28730. name: "Macro",
  28731. height: math.unit(250, "feet")
  28732. },
  28733. {
  28734. name: "Macro+",
  28735. height: math.unit(2500, "feet")
  28736. },
  28737. ]
  28738. ))
  28739. characterMakers.push(() => makeCharacter(
  28740. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28741. {
  28742. front: {
  28743. height: math.unit(3.02, "meters"),
  28744. weight: math.unit(500, "kg"),
  28745. name: "Front",
  28746. image: {
  28747. source: "./media/characters/drena/front.svg",
  28748. extra: 282 / 243,
  28749. bottom: 8 / 290
  28750. }
  28751. },
  28752. side: {
  28753. height: math.unit(3.02, "meters"),
  28754. weight: math.unit(500, "kg"),
  28755. name: "Side",
  28756. image: {
  28757. source: "./media/characters/drena/side.svg",
  28758. extra: 280 / 245,
  28759. bottom: 10 / 290
  28760. }
  28761. },
  28762. back: {
  28763. height: math.unit(3.02, "meters"),
  28764. weight: math.unit(500, "kg"),
  28765. name: "Back",
  28766. image: {
  28767. source: "./media/characters/drena/back.svg",
  28768. extra: 278 / 243,
  28769. bottom: 2 / 280
  28770. }
  28771. },
  28772. foot: {
  28773. height: math.unit(0.75, "meters"),
  28774. name: "Foot",
  28775. image: {
  28776. source: "./media/characters/drena/foot.svg"
  28777. }
  28778. },
  28779. maw: {
  28780. height: math.unit(0.82, "meters"),
  28781. name: "Maw",
  28782. image: {
  28783. source: "./media/characters/drena/maw.svg"
  28784. }
  28785. },
  28786. rump: {
  28787. height: math.unit(0.93, "meters"),
  28788. name: "Rump",
  28789. image: {
  28790. source: "./media/characters/drena/rump.svg"
  28791. }
  28792. },
  28793. },
  28794. [
  28795. {
  28796. name: "Normal",
  28797. height: math.unit(3.02, "meters"),
  28798. default: true
  28799. },
  28800. ]
  28801. ))
  28802. characterMakers.push(() => makeCharacter(
  28803. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28804. {
  28805. front: {
  28806. height: math.unit(6 + 4 / 12, "feet"),
  28807. weight: math.unit(250, "lb"),
  28808. name: "Front",
  28809. image: {
  28810. source: "./media/characters/remmyzilla/front.svg",
  28811. extra: 4033 / 3588,
  28812. bottom: 123 / 4156
  28813. }
  28814. },
  28815. back: {
  28816. height: math.unit(6 + 4 / 12, "feet"),
  28817. weight: math.unit(250, "lb"),
  28818. name: "Back",
  28819. image: {
  28820. source: "./media/characters/remmyzilla/back.svg",
  28821. extra: 2687 / 2555,
  28822. bottom: 48 / 2735
  28823. }
  28824. },
  28825. paw: {
  28826. height: math.unit(1.73, "feet"),
  28827. name: "Paw",
  28828. image: {
  28829. source: "./media/characters/remmyzilla/paw.svg"
  28830. }
  28831. },
  28832. maw: {
  28833. height: math.unit(1.73, "feet"),
  28834. name: "Maw",
  28835. image: {
  28836. source: "./media/characters/remmyzilla/maw.svg"
  28837. }
  28838. },
  28839. },
  28840. [
  28841. {
  28842. name: "Normal",
  28843. height: math.unit(6 + 4 / 12, "feet")
  28844. },
  28845. {
  28846. name: "Minimacro",
  28847. height: math.unit(12 + 8 / 12, "feet")
  28848. },
  28849. {
  28850. name: "Normal",
  28851. height: math.unit(640, "feet"),
  28852. default: true
  28853. },
  28854. {
  28855. name: "Megamacro",
  28856. height: math.unit(6400, "feet")
  28857. },
  28858. {
  28859. name: "Gigamacro",
  28860. height: math.unit(64000, "miles")
  28861. },
  28862. ]
  28863. ))
  28864. characterMakers.push(() => makeCharacter(
  28865. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28866. {
  28867. front: {
  28868. height: math.unit(2.5, "meters"),
  28869. weight: math.unit(300, "lb"),
  28870. name: "Front",
  28871. image: {
  28872. source: "./media/characters/lawrence/front.svg",
  28873. extra: 357 / 335,
  28874. bottom: 30 / 387
  28875. }
  28876. },
  28877. back: {
  28878. height: math.unit(2.5, "meters"),
  28879. weight: math.unit(300, "lb"),
  28880. name: "Back",
  28881. image: {
  28882. source: "./media/characters/lawrence/back.svg",
  28883. extra: 357 / 338,
  28884. bottom: 16 / 373
  28885. }
  28886. },
  28887. head: {
  28888. height: math.unit(0.9, "meter"),
  28889. name: "Head",
  28890. image: {
  28891. source: "./media/characters/lawrence/head.svg"
  28892. }
  28893. },
  28894. maw: {
  28895. height: math.unit(0.7, "meter"),
  28896. name: "Maw",
  28897. image: {
  28898. source: "./media/characters/lawrence/maw.svg"
  28899. }
  28900. },
  28901. footBottom: {
  28902. height: math.unit(0.5, "meter"),
  28903. name: "Foot (Bottom)",
  28904. image: {
  28905. source: "./media/characters/lawrence/foot-bottom.svg"
  28906. }
  28907. },
  28908. footTop: {
  28909. height: math.unit(0.5, "meter"),
  28910. name: "Foot (Top)",
  28911. image: {
  28912. source: "./media/characters/lawrence/foot-top.svg"
  28913. }
  28914. },
  28915. },
  28916. [
  28917. {
  28918. name: "Normal",
  28919. height: math.unit(2.5, "meters"),
  28920. default: true
  28921. },
  28922. {
  28923. name: "Macro",
  28924. height: math.unit(95, "meters")
  28925. },
  28926. {
  28927. name: "Megamacro",
  28928. height: math.unit(150, "km")
  28929. },
  28930. ]
  28931. ))
  28932. characterMakers.push(() => makeCharacter(
  28933. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28934. {
  28935. front: {
  28936. height: math.unit(4.2, "meters"),
  28937. name: "Front",
  28938. image: {
  28939. source: "./media/characters/sydney/front.svg",
  28940. extra: 1323 / 1277,
  28941. bottom: 111 / 1434
  28942. }
  28943. },
  28944. },
  28945. [
  28946. {
  28947. name: "Normal",
  28948. height: math.unit(4.2, "meters"),
  28949. default: true
  28950. },
  28951. ]
  28952. ))
  28953. characterMakers.push(() => makeCharacter(
  28954. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28955. {
  28956. back: {
  28957. height: math.unit(201, "feet"),
  28958. name: "Back",
  28959. image: {
  28960. source: "./media/characters/jessica/back.svg",
  28961. extra: 273 / 259,
  28962. bottom: 7 / 280
  28963. }
  28964. },
  28965. },
  28966. [
  28967. {
  28968. name: "Normal",
  28969. height: math.unit(201, "feet"),
  28970. default: true
  28971. },
  28972. {
  28973. name: "Megamacro",
  28974. height: math.unit(8, "miles")
  28975. },
  28976. ]
  28977. ))
  28978. characterMakers.push(() => makeCharacter(
  28979. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28980. {
  28981. side: {
  28982. height: math.unit(5.6, "m"),
  28983. weight: math.unit(8000, "kg"),
  28984. name: "Side",
  28985. image: {
  28986. source: "./media/characters/victoria/side.svg",
  28987. extra: 1542/1229,
  28988. bottom: 124/1666
  28989. }
  28990. },
  28991. maw: {
  28992. height: math.unit(7.14, "feet"),
  28993. name: "Maw",
  28994. image: {
  28995. source: "./media/characters/victoria/maw.svg"
  28996. }
  28997. },
  28998. },
  28999. [
  29000. {
  29001. name: "Normal",
  29002. height: math.unit(5.6, "m"),
  29003. default: true
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29009. {
  29010. front: {
  29011. height: math.unit(5 + 6 / 12, "feet"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/cat/front.svg",
  29015. extra: 1449/1295,
  29016. bottom: 34/1483
  29017. },
  29018. form: "cat",
  29019. default: true
  29020. },
  29021. back: {
  29022. height: math.unit(5 + 6 / 12, "feet"),
  29023. name: "Back",
  29024. image: {
  29025. source: "./media/characters/cat/back.svg",
  29026. extra: 1466/1301,
  29027. bottom: 19/1485
  29028. },
  29029. form: "cat"
  29030. },
  29031. taur: {
  29032. height: math.unit(7, "feet"),
  29033. name: "Taur",
  29034. image: {
  29035. source: "./media/characters/cat/taur.svg",
  29036. extra: 1389/1233,
  29037. bottom: 83/1472
  29038. },
  29039. form: "taur",
  29040. default: true
  29041. },
  29042. lucarioFront: {
  29043. height: math.unit(4, "feet"),
  29044. name: "Lucario (Front)",
  29045. image: {
  29046. source: "./media/characters/cat/lucario-front.svg",
  29047. extra: 1149/1019,
  29048. bottom: 84/1233
  29049. },
  29050. form: "lucario",
  29051. default: true
  29052. },
  29053. lucarioBack: {
  29054. height: math.unit(4, "feet"),
  29055. name: "Lucario (Back)",
  29056. image: {
  29057. source: "./media/characters/cat/lucario-back.svg",
  29058. extra: 1190/1059,
  29059. bottom: 33/1223
  29060. },
  29061. form: "lucario"
  29062. },
  29063. megaLucario: {
  29064. height: math.unit(4, "feet"),
  29065. name: "Mega Lucario",
  29066. image: {
  29067. source: "./media/characters/cat/mega-lucario.svg",
  29068. extra: 1515 / 1319,
  29069. bottom: 63 / 1578
  29070. },
  29071. form: "lucario"
  29072. },
  29073. nickit: {
  29074. height: math.unit(2, "feet"),
  29075. name: "Nickit",
  29076. image: {
  29077. source: "./media/characters/cat/nickit.svg",
  29078. extra: 1980 / 1585,
  29079. bottom: 102 / 2082
  29080. },
  29081. form: "nickit",
  29082. default: true
  29083. },
  29084. lopunnyFront: {
  29085. height: math.unit(5, "feet"),
  29086. name: "Lopunny (Front)",
  29087. image: {
  29088. source: "./media/characters/cat/lopunny-front.svg",
  29089. extra: 1782 / 1469,
  29090. bottom: 38 / 1820
  29091. },
  29092. form: "lopunny",
  29093. default: true
  29094. },
  29095. lopunnyBack: {
  29096. height: math.unit(5, "feet"),
  29097. name: "Lopunny (Back)",
  29098. image: {
  29099. source: "./media/characters/cat/lopunny-back.svg",
  29100. extra: 1660 / 1490,
  29101. bottom: 25 / 1685
  29102. },
  29103. form: "lopunny"
  29104. },
  29105. },
  29106. [
  29107. {
  29108. name: "Really small",
  29109. height: math.unit(1, "nm")
  29110. },
  29111. {
  29112. name: "Micro",
  29113. height: math.unit(5, "inches")
  29114. },
  29115. {
  29116. name: "Normal",
  29117. height: math.unit(5 + 6 / 12, "feet"),
  29118. default: true
  29119. },
  29120. {
  29121. name: "Macro",
  29122. height: math.unit(50, "feet")
  29123. },
  29124. {
  29125. name: "Macro+",
  29126. height: math.unit(150, "feet")
  29127. },
  29128. {
  29129. name: "Megamacro",
  29130. height: math.unit(100, "miles")
  29131. },
  29132. ]
  29133. ))
  29134. characterMakers.push(() => makeCharacter(
  29135. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29136. {
  29137. front: {
  29138. height: math.unit(63.4, "meters"),
  29139. weight: math.unit(3.28349e+6, "kilograms"),
  29140. name: "Front",
  29141. image: {
  29142. source: "./media/characters/kirina-violet/front.svg",
  29143. extra: 2812 / 2725,
  29144. bottom: 0 / 2812
  29145. }
  29146. },
  29147. back: {
  29148. height: math.unit(63.4, "meters"),
  29149. weight: math.unit(3.28349e+6, "kilograms"),
  29150. name: "Back",
  29151. image: {
  29152. source: "./media/characters/kirina-violet/back.svg",
  29153. extra: 2812 / 2725,
  29154. bottom: 0 / 2812
  29155. }
  29156. },
  29157. mouth: {
  29158. height: math.unit(4.35, "meters"),
  29159. name: "Mouth",
  29160. image: {
  29161. source: "./media/characters/kirina-violet/mouth.svg"
  29162. }
  29163. },
  29164. paw: {
  29165. height: math.unit(5.6, "meters"),
  29166. name: "Paw",
  29167. image: {
  29168. source: "./media/characters/kirina-violet/paw.svg"
  29169. }
  29170. },
  29171. tail: {
  29172. height: math.unit(18, "meters"),
  29173. name: "Tail",
  29174. image: {
  29175. source: "./media/characters/kirina-violet/tail.svg"
  29176. }
  29177. },
  29178. },
  29179. [
  29180. {
  29181. name: "Macro",
  29182. height: math.unit(63.4, "meters"),
  29183. default: true
  29184. },
  29185. ]
  29186. ))
  29187. characterMakers.push(() => makeCharacter(
  29188. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29189. {
  29190. front: {
  29191. height: math.unit(75, "feet"),
  29192. name: "Front",
  29193. image: {
  29194. source: "./media/characters/cat-gigachu/front.svg",
  29195. extra: 1239/1027,
  29196. bottom: 32/1271
  29197. }
  29198. },
  29199. back: {
  29200. height: math.unit(75, "feet"),
  29201. name: "Back",
  29202. image: {
  29203. source: "./media/characters/cat-gigachu/back.svg",
  29204. extra: 1229/1030,
  29205. bottom: 9/1238
  29206. }
  29207. },
  29208. },
  29209. [
  29210. {
  29211. name: "Dynamax",
  29212. height: math.unit(75, "feet"),
  29213. default: true
  29214. },
  29215. ]
  29216. ))
  29217. characterMakers.push(() => makeCharacter(
  29218. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29219. {
  29220. front: {
  29221. height: math.unit(6, "feet"),
  29222. weight: math.unit(150, "lb"),
  29223. name: "Front",
  29224. image: {
  29225. source: "./media/characters/sfaiyan/front.svg",
  29226. extra: 999 / 978,
  29227. bottom: 5 / 1004
  29228. }
  29229. },
  29230. },
  29231. [
  29232. {
  29233. name: "Normal",
  29234. height: math.unit(1.82, "meters")
  29235. },
  29236. {
  29237. name: "Giant",
  29238. height: math.unit(2.27, "km"),
  29239. default: true
  29240. },
  29241. ]
  29242. ))
  29243. characterMakers.push(() => makeCharacter(
  29244. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29245. {
  29246. front: {
  29247. height: math.unit(179, "cm"),
  29248. weight: math.unit(100, "kg"),
  29249. name: "Front",
  29250. image: {
  29251. source: "./media/characters/raunehkeli/front.svg",
  29252. extra: 1934 / 1926,
  29253. bottom: 0 / 1934
  29254. }
  29255. },
  29256. },
  29257. [
  29258. {
  29259. name: "Normal",
  29260. height: math.unit(179, "cm")
  29261. },
  29262. {
  29263. name: "Maximum",
  29264. height: math.unit(575, "meters"),
  29265. default: true
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29271. {
  29272. front: {
  29273. height: math.unit(6, "feet"),
  29274. weight: math.unit(150, "lb"),
  29275. name: "Front",
  29276. image: {
  29277. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29278. extra: 2625 / 2518,
  29279. bottom: 60 / 2685
  29280. }
  29281. },
  29282. },
  29283. [
  29284. {
  29285. name: "Normal",
  29286. height: math.unit(6 + 2 / 12, "feet")
  29287. },
  29288. {
  29289. name: "Macro",
  29290. height: math.unit(1180, "feet"),
  29291. default: true
  29292. },
  29293. ]
  29294. ))
  29295. characterMakers.push(() => makeCharacter(
  29296. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29297. {
  29298. front: {
  29299. height: math.unit(5 + 6 / 12, "feet"),
  29300. weight: math.unit(108, "lb"),
  29301. name: "Front",
  29302. image: {
  29303. source: "./media/characters/lilith-zott/front.svg",
  29304. extra: 2510 / 2238,
  29305. bottom: 100 / 2610
  29306. }
  29307. },
  29308. frontDressed: {
  29309. height: math.unit(5 + 6 / 12, "feet"),
  29310. weight: math.unit(108, "lb"),
  29311. name: "Front (Dressed)",
  29312. image: {
  29313. source: "./media/characters/lilith-zott/front-dressed.svg",
  29314. extra: 2510 / 2238,
  29315. bottom: 100 / 2610
  29316. }
  29317. },
  29318. },
  29319. [
  29320. {
  29321. name: "Normal",
  29322. height: math.unit(5 + 6 / 12, "feet")
  29323. },
  29324. {
  29325. name: "Macro",
  29326. height: math.unit(1030, "feet"),
  29327. default: true
  29328. },
  29329. ]
  29330. ))
  29331. characterMakers.push(() => makeCharacter(
  29332. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29333. {
  29334. front: {
  29335. height: math.unit(6, "feet"),
  29336. weight: math.unit(150, "lb"),
  29337. name: "Front",
  29338. image: {
  29339. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29340. extra: 2567 / 2435,
  29341. bottom: 39 / 2606
  29342. }
  29343. },
  29344. frontSuper: {
  29345. height: math.unit(6, "feet"),
  29346. name: "Front (Super)",
  29347. image: {
  29348. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29349. extra: 2567 / 2435,
  29350. bottom: 39 / 2606
  29351. }
  29352. },
  29353. },
  29354. [
  29355. {
  29356. name: "Normal",
  29357. height: math.unit(5 + 10 / 12, "feet")
  29358. },
  29359. {
  29360. name: "Macro",
  29361. height: math.unit(1100, "feet"),
  29362. default: true
  29363. },
  29364. ]
  29365. ))
  29366. characterMakers.push(() => makeCharacter(
  29367. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29368. {
  29369. front: {
  29370. height: math.unit(100, "miles"),
  29371. name: "Front",
  29372. image: {
  29373. source: "./media/characters/sona/front.svg",
  29374. extra: 2433 / 2201,
  29375. bottom: 53 / 2486
  29376. }
  29377. },
  29378. foot: {
  29379. height: math.unit(16.1, "miles"),
  29380. name: "Foot",
  29381. image: {
  29382. source: "./media/characters/sona/foot.svg"
  29383. }
  29384. },
  29385. },
  29386. [
  29387. {
  29388. name: "Macro",
  29389. height: math.unit(100, "miles"),
  29390. default: true
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29396. {
  29397. front: {
  29398. height: math.unit(6, "feet"),
  29399. weight: math.unit(150, "lb"),
  29400. name: "Front",
  29401. image: {
  29402. source: "./media/characters/bailey/front.svg",
  29403. extra: 1778 / 1724,
  29404. bottom: 30 / 1808
  29405. }
  29406. },
  29407. },
  29408. [
  29409. {
  29410. name: "Micro",
  29411. height: math.unit(4, "inches")
  29412. },
  29413. {
  29414. name: "Normal",
  29415. height: math.unit(5 + 5 / 12, "feet"),
  29416. default: true
  29417. },
  29418. {
  29419. name: "Macro",
  29420. height: math.unit(250, "feet")
  29421. },
  29422. {
  29423. name: "Megamacro",
  29424. height: math.unit(100, "miles")
  29425. },
  29426. ]
  29427. ))
  29428. characterMakers.push(() => makeCharacter(
  29429. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29430. {
  29431. front: {
  29432. height: math.unit(5 + 2 / 12, "feet"),
  29433. weight: math.unit(120, "lb"),
  29434. name: "Front",
  29435. image: {
  29436. source: "./media/characters/snaps/front.svg",
  29437. extra: 2370 / 2177,
  29438. bottom: 48 / 2418
  29439. }
  29440. },
  29441. back: {
  29442. height: math.unit(5 + 2 / 12, "feet"),
  29443. weight: math.unit(120, "lb"),
  29444. name: "Back",
  29445. image: {
  29446. source: "./media/characters/snaps/back.svg",
  29447. extra: 2408 / 2258,
  29448. bottom: 15 / 2423
  29449. }
  29450. },
  29451. },
  29452. [
  29453. {
  29454. name: "Micro",
  29455. height: math.unit(9, "inches")
  29456. },
  29457. {
  29458. name: "Normal",
  29459. height: math.unit(5 + 2 / 12, "feet"),
  29460. default: true
  29461. },
  29462. {
  29463. name: "Mini Macro",
  29464. height: math.unit(10, "feet")
  29465. },
  29466. ]
  29467. ))
  29468. characterMakers.push(() => makeCharacter(
  29469. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29470. {
  29471. front: {
  29472. height: math.unit(1.8, "meters"),
  29473. weight: math.unit(85, "kg"),
  29474. name: "Front",
  29475. image: {
  29476. source: "./media/characters/azteck/front.svg",
  29477. extra: 2815 / 2625,
  29478. bottom: 89 / 2904
  29479. }
  29480. },
  29481. back: {
  29482. height: math.unit(1.8, "meters"),
  29483. weight: math.unit(85, "kg"),
  29484. name: "Back",
  29485. image: {
  29486. source: "./media/characters/azteck/back.svg",
  29487. extra: 2856 / 2648,
  29488. bottom: 85 / 2941
  29489. }
  29490. },
  29491. frontDressed: {
  29492. height: math.unit(1.8, "meters"),
  29493. weight: math.unit(85, "kg"),
  29494. name: "Front (Dressed)",
  29495. image: {
  29496. source: "./media/characters/azteck/front-dressed.svg",
  29497. extra: 2147 / 2003,
  29498. bottom: 68 / 2215
  29499. }
  29500. },
  29501. head: {
  29502. height: math.unit(0.47, "meters"),
  29503. weight: math.unit(85, "kg"),
  29504. name: "Head",
  29505. image: {
  29506. source: "./media/characters/azteck/head.svg"
  29507. }
  29508. },
  29509. },
  29510. [
  29511. {
  29512. name: "Bite sized",
  29513. height: math.unit(16, "cm")
  29514. },
  29515. {
  29516. name: "Normal",
  29517. height: math.unit(1.8, "meters"),
  29518. default: true
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29524. {
  29525. front: {
  29526. height: math.unit(6, "feet"),
  29527. weight: math.unit(150, "lb"),
  29528. name: "Front",
  29529. image: {
  29530. source: "./media/characters/pidge/front.svg",
  29531. extra: 620 / 588,
  29532. bottom: 9 / 629
  29533. }
  29534. },
  29535. back: {
  29536. height: math.unit(6, "feet"),
  29537. weight: math.unit(150, "lb"),
  29538. name: "Back",
  29539. image: {
  29540. source: "./media/characters/pidge/back.svg",
  29541. extra: 620 / 588,
  29542. bottom: 9 / 629
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Macro",
  29549. height: math.unit(1, "mile"),
  29550. default: true
  29551. },
  29552. ]
  29553. ))
  29554. characterMakers.push(() => makeCharacter(
  29555. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29556. {
  29557. front: {
  29558. height: math.unit(6, "feet"),
  29559. weight: math.unit(150, "lb"),
  29560. name: "Front",
  29561. image: {
  29562. source: "./media/characters/en/front.svg",
  29563. extra: 1697 / 1563,
  29564. bottom: 103 / 1800
  29565. }
  29566. },
  29567. back: {
  29568. height: math.unit(6, "feet"),
  29569. weight: math.unit(150, "lb"),
  29570. name: "Back",
  29571. image: {
  29572. source: "./media/characters/en/back.svg",
  29573. extra: 1700 / 1570,
  29574. bottom: 51 / 1751
  29575. }
  29576. },
  29577. frontDressed: {
  29578. height: math.unit(6, "feet"),
  29579. weight: math.unit(150, "lb"),
  29580. name: "Front (Dressed)",
  29581. image: {
  29582. source: "./media/characters/en/front-dressed.svg",
  29583. extra: 1697 / 1563,
  29584. bottom: 103 / 1800
  29585. }
  29586. },
  29587. backDressed: {
  29588. height: math.unit(6, "feet"),
  29589. weight: math.unit(150, "lb"),
  29590. name: "Back (Dressed)",
  29591. image: {
  29592. source: "./media/characters/en/back-dressed.svg",
  29593. extra: 1700 / 1570,
  29594. bottom: 51 / 1751
  29595. }
  29596. },
  29597. },
  29598. [
  29599. {
  29600. name: "Macro",
  29601. height: math.unit(210, "feet"),
  29602. default: true
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Haze Orris", species: ["cat", "undead"], 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/haze-orris/front.svg",
  29615. extra: 3975 / 3525,
  29616. bottom: 137 / 4112
  29617. }
  29618. },
  29619. },
  29620. [
  29621. {
  29622. name: "Micro",
  29623. height: math.unit(150, "mm"),
  29624. default: true
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29630. {
  29631. front: {
  29632. height: math.unit(6, "feet"),
  29633. weight: math.unit(150, "lb"),
  29634. name: "Front",
  29635. image: {
  29636. source: "./media/characters/casselene-yaro/front.svg",
  29637. extra: 4721 / 4541,
  29638. bottom: 82 / 4803
  29639. }
  29640. },
  29641. back: {
  29642. height: math.unit(6, "feet"),
  29643. weight: math.unit(150, "lb"),
  29644. name: "Back",
  29645. image: {
  29646. source: "./media/characters/casselene-yaro/back.svg",
  29647. extra: 4569 / 4377,
  29648. bottom: 69 / 4638
  29649. }
  29650. },
  29651. frontDressed: {
  29652. height: math.unit(6, "feet"),
  29653. weight: math.unit(150, "lb"),
  29654. name: "Front-dressed",
  29655. image: {
  29656. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29657. extra: 4721 / 4541,
  29658. bottom: 82 / 4803
  29659. }
  29660. },
  29661. },
  29662. [
  29663. {
  29664. name: "Macro",
  29665. height: math.unit(190, "feet"),
  29666. default: true
  29667. },
  29668. ]
  29669. ))
  29670. characterMakers.push(() => makeCharacter(
  29671. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29672. {
  29673. front: {
  29674. height: math.unit(6, "feet"),
  29675. weight: math.unit(150, "lb"),
  29676. name: "Front",
  29677. image: {
  29678. source: "./media/characters/myra-rue-delore/front.svg",
  29679. extra: 1340 / 1308,
  29680. bottom: 67 / 1407
  29681. }
  29682. },
  29683. back: {
  29684. height: math.unit(6, "feet"),
  29685. weight: math.unit(150, "lb"),
  29686. name: "Back",
  29687. image: {
  29688. source: "./media/characters/myra-rue-delore/back.svg",
  29689. extra: 1341 / 1310,
  29690. bottom: 40 / 1381
  29691. }
  29692. },
  29693. frontDressed: {
  29694. height: math.unit(6, "feet"),
  29695. weight: math.unit(150, "lb"),
  29696. name: "Front (Dressed)",
  29697. image: {
  29698. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29699. extra: 1340 / 1308,
  29700. bottom: 67 / 1407
  29701. }
  29702. },
  29703. },
  29704. [
  29705. {
  29706. name: "Macro",
  29707. height: math.unit(150, "feet"),
  29708. default: true
  29709. },
  29710. ]
  29711. ))
  29712. characterMakers.push(() => makeCharacter(
  29713. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29714. {
  29715. front: {
  29716. height: math.unit(10, "feet"),
  29717. weight: math.unit(15015, "lb"),
  29718. name: "Front",
  29719. image: {
  29720. source: "./media/characters/fem!plat/front.svg",
  29721. extra: 2799 / 2604,
  29722. bottom: 149 / 2948
  29723. }
  29724. },
  29725. },
  29726. [
  29727. {
  29728. name: "Normal",
  29729. height: math.unit(10, "feet"),
  29730. default: true
  29731. },
  29732. {
  29733. name: "Macro",
  29734. height: math.unit(100, "feet")
  29735. },
  29736. {
  29737. name: "Megamacro",
  29738. height: math.unit(1000, "feet")
  29739. },
  29740. ]
  29741. ))
  29742. characterMakers.push(() => makeCharacter(
  29743. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29744. {
  29745. front: {
  29746. height: math.unit(15 + 5 / 12, "feet"),
  29747. weight: math.unit(4600, "lb"),
  29748. name: "Front",
  29749. image: {
  29750. source: "./media/characters/neapolitan-ananassa/front.svg",
  29751. extra: 2903 / 2736,
  29752. bottom: 0 / 2903
  29753. }
  29754. },
  29755. side: {
  29756. height: math.unit(15 + 5 / 12, "feet"),
  29757. weight: math.unit(4600, "lb"),
  29758. name: "Side",
  29759. image: {
  29760. source: "./media/characters/neapolitan-ananassa/side.svg",
  29761. extra: 2925 / 2719,
  29762. bottom: 0 / 2925
  29763. }
  29764. },
  29765. back: {
  29766. height: math.unit(15 + 5 / 12, "feet"),
  29767. weight: math.unit(4600, "lb"),
  29768. name: "Back",
  29769. image: {
  29770. source: "./media/characters/neapolitan-ananassa/back.svg",
  29771. extra: 2903 / 2736,
  29772. bottom: 0 / 2903
  29773. }
  29774. },
  29775. },
  29776. [
  29777. {
  29778. name: "Normal",
  29779. height: math.unit(15 + 5 / 12, "feet"),
  29780. default: true
  29781. },
  29782. {
  29783. name: "Post-Millenium",
  29784. height: math.unit(35 + 5 / 12, "feet")
  29785. },
  29786. {
  29787. name: "Post-Era",
  29788. height: math.unit(450 + 5 / 12, "feet")
  29789. },
  29790. ]
  29791. ))
  29792. characterMakers.push(() => makeCharacter(
  29793. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29794. {
  29795. front: {
  29796. height: math.unit(300, "meters"),
  29797. weight: math.unit(125000, "tonnes"),
  29798. name: "Front",
  29799. image: {
  29800. source: "./media/characters/pazuzu/front.svg",
  29801. extra: 877 / 794,
  29802. bottom: 47 / 924
  29803. }
  29804. },
  29805. },
  29806. [
  29807. {
  29808. name: "Macro",
  29809. height: math.unit(300, "meters"),
  29810. default: true
  29811. },
  29812. ]
  29813. ))
  29814. characterMakers.push(() => makeCharacter(
  29815. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29816. {
  29817. side: {
  29818. height: math.unit(10 + 7 / 12, "feet"),
  29819. weight: math.unit(2.5, "tons"),
  29820. name: "Side",
  29821. image: {
  29822. source: "./media/characters/aasha/side.svg",
  29823. extra: 1345 / 1245,
  29824. bottom: 111 / 1456
  29825. }
  29826. },
  29827. back: {
  29828. height: math.unit(10 + 7 / 12, "feet"),
  29829. weight: math.unit(2.5, "tons"),
  29830. name: "Back",
  29831. image: {
  29832. source: "./media/characters/aasha/back.svg",
  29833. extra: 1133 / 1057,
  29834. bottom: 257 / 1390
  29835. }
  29836. },
  29837. },
  29838. [
  29839. {
  29840. name: "Normal",
  29841. height: math.unit(10 + 7 / 12, "feet"),
  29842. default: true
  29843. },
  29844. ]
  29845. ))
  29846. characterMakers.push(() => makeCharacter(
  29847. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29848. {
  29849. front: {
  29850. height: math.unit(6 + 3 / 12, "feet"),
  29851. name: "Front",
  29852. image: {
  29853. source: "./media/characters/nevan/front.svg",
  29854. extra: 704 / 704,
  29855. bottom: 28 / 732
  29856. }
  29857. },
  29858. back: {
  29859. height: math.unit(6 + 3 / 12, "feet"),
  29860. name: "Back",
  29861. image: {
  29862. source: "./media/characters/nevan/back.svg",
  29863. extra: 714 / 714,
  29864. bottom: 21 / 735
  29865. }
  29866. },
  29867. frontFlaccid: {
  29868. height: math.unit(6 + 3 / 12, "feet"),
  29869. name: "Front (Flaccid)",
  29870. image: {
  29871. source: "./media/characters/nevan/front-flaccid.svg",
  29872. extra: 704 / 704,
  29873. bottom: 28 / 732
  29874. }
  29875. },
  29876. frontErect: {
  29877. height: math.unit(6 + 3 / 12, "feet"),
  29878. name: "Front (Erect)",
  29879. image: {
  29880. source: "./media/characters/nevan/front-erect.svg",
  29881. extra: 704 / 704,
  29882. bottom: 28 / 732
  29883. }
  29884. },
  29885. backFlaccid: {
  29886. height: math.unit(6 + 3 / 12, "feet"),
  29887. name: "Back (Flaccid)",
  29888. image: {
  29889. source: "./media/characters/nevan/back-flaccid.svg",
  29890. extra: 714 / 714,
  29891. bottom: 21 / 735
  29892. }
  29893. },
  29894. },
  29895. [
  29896. {
  29897. name: "Normal",
  29898. height: math.unit(6 + 3 / 12, "feet"),
  29899. default: true
  29900. },
  29901. ]
  29902. ))
  29903. characterMakers.push(() => makeCharacter(
  29904. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29905. {
  29906. front: {
  29907. height: math.unit(4, "feet"),
  29908. name: "Front",
  29909. image: {
  29910. source: "./media/characters/arhan/front.svg",
  29911. extra: 3368 / 3133,
  29912. bottom: 0 / 3368
  29913. }
  29914. },
  29915. side: {
  29916. height: math.unit(4, "feet"),
  29917. name: "Side",
  29918. image: {
  29919. source: "./media/characters/arhan/side.svg",
  29920. extra: 3347 / 3105,
  29921. bottom: 0 / 3347
  29922. }
  29923. },
  29924. tongue: {
  29925. height: math.unit(1.42, "feet"),
  29926. name: "Tongue",
  29927. image: {
  29928. source: "./media/characters/arhan/tongue.svg"
  29929. }
  29930. },
  29931. head: {
  29932. height: math.unit(0.85, "feet"),
  29933. name: "Head",
  29934. image: {
  29935. source: "./media/characters/arhan/head.svg"
  29936. }
  29937. },
  29938. },
  29939. [
  29940. {
  29941. name: "Normal",
  29942. height: math.unit(4, "feet"),
  29943. default: true
  29944. },
  29945. ]
  29946. ))
  29947. characterMakers.push(() => makeCharacter(
  29948. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29949. {
  29950. front: {
  29951. height: math.unit(5 + 7.5 / 12, "feet"),
  29952. weight: math.unit(120, "lb"),
  29953. name: "Front",
  29954. image: {
  29955. source: "./media/characters/digi-duncan/front.svg",
  29956. extra: 330 / 326,
  29957. bottom: 16 / 346
  29958. }
  29959. },
  29960. side: {
  29961. height: math.unit(5 + 7.5 / 12, "feet"),
  29962. weight: math.unit(120, "lb"),
  29963. name: "Side",
  29964. image: {
  29965. source: "./media/characters/digi-duncan/side.svg",
  29966. extra: 341 / 337,
  29967. bottom: 1 / 342
  29968. }
  29969. },
  29970. back: {
  29971. height: math.unit(5 + 7.5 / 12, "feet"),
  29972. weight: math.unit(120, "lb"),
  29973. name: "Back",
  29974. image: {
  29975. source: "./media/characters/digi-duncan/back.svg",
  29976. extra: 330 / 326,
  29977. bottom: 12 / 342
  29978. }
  29979. },
  29980. },
  29981. [
  29982. {
  29983. name: "Speck",
  29984. height: math.unit(0.25, "mm")
  29985. },
  29986. {
  29987. name: "Micro",
  29988. height: math.unit(5, "mm")
  29989. },
  29990. {
  29991. name: "Tiny",
  29992. height: math.unit(0.5, "inches"),
  29993. default: true
  29994. },
  29995. {
  29996. name: "Human",
  29997. height: math.unit(5 + 7.5 / 12, "feet")
  29998. },
  29999. {
  30000. name: "Minigiant",
  30001. height: math.unit(8 + 5.25, "feet")
  30002. },
  30003. {
  30004. name: "Giant",
  30005. height: math.unit(2000, "feet")
  30006. },
  30007. {
  30008. name: "Mega",
  30009. height: math.unit(371.1, "miles")
  30010. },
  30011. ]
  30012. ))
  30013. characterMakers.push(() => makeCharacter(
  30014. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30015. {
  30016. front: {
  30017. height: math.unit(2, "meters"),
  30018. weight: math.unit(350, "kg"),
  30019. name: "Front",
  30020. image: {
  30021. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30022. extra: 898 / 838,
  30023. bottom: 9 / 907
  30024. }
  30025. },
  30026. },
  30027. [
  30028. {
  30029. name: "Micro",
  30030. height: math.unit(8, "meters")
  30031. },
  30032. {
  30033. name: "Normal",
  30034. height: math.unit(50, "meters"),
  30035. default: true
  30036. },
  30037. {
  30038. name: "Macro",
  30039. height: math.unit(500, "meters")
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30045. {
  30046. front: {
  30047. height: math.unit(6 + 6 / 12, "feet"),
  30048. name: "Front",
  30049. image: {
  30050. source: "./media/characters/khardesh/front.svg",
  30051. extra: 1788/1596,
  30052. bottom: 66/1854
  30053. }
  30054. },
  30055. back: {
  30056. height: math.unit(6 + 6 / 12, "feet"),
  30057. name: "Back",
  30058. image: {
  30059. source: "./media/characters/khardesh/back.svg",
  30060. extra: 1781/1584,
  30061. bottom: 68/1849
  30062. }
  30063. },
  30064. },
  30065. [
  30066. {
  30067. name: "Normal",
  30068. height: math.unit(6 + 6 / 12, "feet"),
  30069. default: true
  30070. },
  30071. {
  30072. name: "Normal+",
  30073. height: math.unit(4, "meters")
  30074. },
  30075. {
  30076. name: "Macro",
  30077. height: math.unit(50, "meters")
  30078. },
  30079. {
  30080. name: "Macro+",
  30081. height: math.unit(100, "meters")
  30082. },
  30083. {
  30084. name: "Megamacro",
  30085. height: math.unit(20, "km")
  30086. },
  30087. ]
  30088. ))
  30089. characterMakers.push(() => makeCharacter(
  30090. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30091. {
  30092. front: {
  30093. height: math.unit(6, "feet"),
  30094. weight: math.unit(150, "lb"),
  30095. name: "Front",
  30096. image: {
  30097. source: "./media/characters/kosho/front.svg",
  30098. extra: 1847 / 1847,
  30099. bottom: 86 / 1933
  30100. }
  30101. },
  30102. },
  30103. [
  30104. {
  30105. name: "Second-stage micro",
  30106. height: math.unit(0.5, "inches")
  30107. },
  30108. {
  30109. name: "First-stage micro",
  30110. height: math.unit(6, "inches")
  30111. },
  30112. {
  30113. name: "Normal",
  30114. height: math.unit(6, "feet"),
  30115. default: true
  30116. },
  30117. {
  30118. name: "First-stage macro",
  30119. height: math.unit(72, "feet")
  30120. },
  30121. {
  30122. name: "Second-stage macro",
  30123. height: math.unit(864, "feet")
  30124. },
  30125. ]
  30126. ))
  30127. characterMakers.push(() => makeCharacter(
  30128. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30129. {
  30130. normal: {
  30131. height: math.unit(4 + 6 / 12, "feet"),
  30132. name: "Normal",
  30133. image: {
  30134. source: "./media/characters/hydra/normal.svg",
  30135. extra: 2833 / 2634,
  30136. bottom: 68 / 2901
  30137. }
  30138. },
  30139. smol: {
  30140. height: math.unit(0.705, "inches"),
  30141. name: "Smol",
  30142. image: {
  30143. source: "./media/characters/hydra/smol.svg",
  30144. extra: 2715 / 2540,
  30145. bottom: 0 / 2715
  30146. }
  30147. },
  30148. },
  30149. [
  30150. {
  30151. name: "Normal",
  30152. height: math.unit(4 + 6 / 12, "feet"),
  30153. default: true
  30154. }
  30155. ]
  30156. ))
  30157. characterMakers.push(() => makeCharacter(
  30158. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30159. {
  30160. front: {
  30161. height: math.unit(0.6, "cm"),
  30162. name: "Front",
  30163. image: {
  30164. source: "./media/characters/daz/front.svg",
  30165. extra: 1682 / 1164,
  30166. bottom: 42 / 1724
  30167. }
  30168. },
  30169. },
  30170. [
  30171. {
  30172. name: "Normal",
  30173. height: math.unit(0.6, "cm"),
  30174. default: true
  30175. },
  30176. ]
  30177. ))
  30178. characterMakers.push(() => makeCharacter(
  30179. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30180. {
  30181. front: {
  30182. height: math.unit(6, "feet"),
  30183. weight: math.unit(235, "lb"),
  30184. name: "Front",
  30185. image: {
  30186. source: "./media/characters/theo-pangolin/front.svg",
  30187. extra: 1996 / 1969,
  30188. bottom: 115 / 2111
  30189. }
  30190. },
  30191. back: {
  30192. height: math.unit(6, "feet"),
  30193. weight: math.unit(235, "lb"),
  30194. name: "Back",
  30195. image: {
  30196. source: "./media/characters/theo-pangolin/back.svg",
  30197. extra: 1979 / 1979,
  30198. bottom: 40 / 2019
  30199. }
  30200. },
  30201. feral: {
  30202. height: math.unit(2, "feet"),
  30203. weight: math.unit(30, "lb"),
  30204. name: "Feral",
  30205. image: {
  30206. source: "./media/characters/theo-pangolin/feral.svg",
  30207. extra: 803 / 791,
  30208. bottom: 181 / 984
  30209. }
  30210. },
  30211. footFive: {
  30212. height: math.unit(1.43, "feet"),
  30213. name: "Foot (Five Toes)",
  30214. image: {
  30215. source: "./media/characters/theo-pangolin/foot-five.svg"
  30216. }
  30217. },
  30218. footFour: {
  30219. height: math.unit(1.43, "feet"),
  30220. name: "Foot (Four Toes)",
  30221. image: {
  30222. source: "./media/characters/theo-pangolin/foot-four.svg"
  30223. }
  30224. },
  30225. handFour: {
  30226. height: math.unit(0.81, "feet"),
  30227. name: "Hand (Four Fingers)",
  30228. image: {
  30229. source: "./media/characters/theo-pangolin/hand-four.svg"
  30230. }
  30231. },
  30232. handThree: {
  30233. height: math.unit(0.81, "feet"),
  30234. name: "Hand (Three Fingers)",
  30235. image: {
  30236. source: "./media/characters/theo-pangolin/hand-three.svg"
  30237. }
  30238. },
  30239. headFront: {
  30240. height: math.unit(1.37, "feet"),
  30241. name: "Head (Front)",
  30242. image: {
  30243. source: "./media/characters/theo-pangolin/head-front.svg"
  30244. }
  30245. },
  30246. headSide: {
  30247. height: math.unit(1.43, "feet"),
  30248. name: "Head (Side)",
  30249. image: {
  30250. source: "./media/characters/theo-pangolin/head-side.svg"
  30251. }
  30252. },
  30253. tongue: {
  30254. height: math.unit(2.29, "feet"),
  30255. name: "Tongue",
  30256. image: {
  30257. source: "./media/characters/theo-pangolin/tongue.svg"
  30258. }
  30259. },
  30260. },
  30261. [
  30262. {
  30263. name: "Normal",
  30264. height: math.unit(6, "feet")
  30265. },
  30266. {
  30267. name: "Macro",
  30268. height: math.unit(400, "feet"),
  30269. default: true
  30270. },
  30271. ]
  30272. ))
  30273. characterMakers.push(() => makeCharacter(
  30274. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30275. {
  30276. front: {
  30277. height: math.unit(6, "inches"),
  30278. weight: math.unit(0.036, "kg"),
  30279. name: "Front",
  30280. image: {
  30281. source: "./media/characters/renée/front.svg",
  30282. extra: 900 / 886,
  30283. bottom: 8 / 908
  30284. }
  30285. },
  30286. },
  30287. [
  30288. {
  30289. name: "Nano",
  30290. height: math.unit(1, "nm")
  30291. },
  30292. {
  30293. name: "Micro",
  30294. height: math.unit(1, "mm")
  30295. },
  30296. {
  30297. name: "Normal",
  30298. height: math.unit(6, "inches")
  30299. },
  30300. {
  30301. name: "Macro",
  30302. height: math.unit(2000, "feet"),
  30303. default: true
  30304. },
  30305. {
  30306. name: "Megamacro",
  30307. height: math.unit(2, "km")
  30308. },
  30309. {
  30310. name: "Gigamacro",
  30311. height: math.unit(2000, "km")
  30312. },
  30313. {
  30314. name: "Teramacro",
  30315. height: math.unit(250000, "km")
  30316. },
  30317. ]
  30318. ))
  30319. characterMakers.push(() => makeCharacter(
  30320. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30321. {
  30322. front: {
  30323. height: math.unit(4, "meters"),
  30324. weight: math.unit(150, "kg"),
  30325. name: "Front",
  30326. image: {
  30327. source: "./media/characters/caledvwlch/front.svg",
  30328. extra: 1760 / 1551,
  30329. bottom: 28 / 1788
  30330. }
  30331. },
  30332. side: {
  30333. height: math.unit(4, "meters"),
  30334. weight: math.unit(150, "kg"),
  30335. name: "Side",
  30336. image: {
  30337. source: "./media/characters/caledvwlch/side.svg",
  30338. extra: 1605 / 1536,
  30339. bottom: 31 / 1636
  30340. }
  30341. },
  30342. back: {
  30343. height: math.unit(4, "meters"),
  30344. weight: math.unit(150, "kg"),
  30345. name: "Back",
  30346. image: {
  30347. source: "./media/characters/caledvwlch/back.svg",
  30348. extra: 1635 / 1565,
  30349. bottom: 27 / 1662
  30350. }
  30351. },
  30352. },
  30353. [
  30354. {
  30355. name: "\"Incognito\"",
  30356. height: math.unit(4, "meters")
  30357. },
  30358. {
  30359. name: "Small rampage",
  30360. height: math.unit(600, "meters")
  30361. },
  30362. {
  30363. name: "Mega",
  30364. height: math.unit(30, "km")
  30365. },
  30366. {
  30367. name: "Home-size",
  30368. height: math.unit(50, "km"),
  30369. default: true
  30370. },
  30371. {
  30372. name: "Giga",
  30373. height: math.unit(300, "km")
  30374. },
  30375. {
  30376. name: "Lounging",
  30377. height: math.unit(11000, "km")
  30378. },
  30379. {
  30380. name: "Planet snacking",
  30381. height: math.unit(2000000, "km")
  30382. },
  30383. ]
  30384. ))
  30385. characterMakers.push(() => makeCharacter(
  30386. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30387. {
  30388. front: {
  30389. height: math.unit(6, "feet"),
  30390. weight: math.unit(215, "lb"),
  30391. name: "Front",
  30392. image: {
  30393. source: "./media/characters/sapphire-svell/front.svg",
  30394. extra: 495 / 455,
  30395. bottom: 20 / 515
  30396. }
  30397. },
  30398. back: {
  30399. height: math.unit(6, "feet"),
  30400. weight: math.unit(216, "lb"),
  30401. name: "Back",
  30402. image: {
  30403. source: "./media/characters/sapphire-svell/back.svg",
  30404. extra: 497 / 477,
  30405. bottom: 7 / 504
  30406. }
  30407. },
  30408. maw: {
  30409. height: math.unit(1.57, "feet"),
  30410. name: "Maw",
  30411. image: {
  30412. source: "./media/characters/sapphire-svell/maw.svg"
  30413. }
  30414. },
  30415. foot: {
  30416. height: math.unit(1.07, "feet"),
  30417. name: "Foot",
  30418. image: {
  30419. source: "./media/characters/sapphire-svell/foot.svg"
  30420. }
  30421. },
  30422. toering: {
  30423. height: math.unit(1.7, "inch"),
  30424. name: "Toering",
  30425. image: {
  30426. source: "./media/characters/sapphire-svell/toering.svg"
  30427. }
  30428. },
  30429. },
  30430. [
  30431. {
  30432. name: "Normal",
  30433. height: math.unit(300, "feet"),
  30434. default: true
  30435. },
  30436. {
  30437. name: "Augmented",
  30438. height: math.unit(1250, "feet")
  30439. },
  30440. {
  30441. name: "Unleashed",
  30442. height: math.unit(3000, "feet")
  30443. },
  30444. ]
  30445. ))
  30446. characterMakers.push(() => makeCharacter(
  30447. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30448. {
  30449. side: {
  30450. height: math.unit(2 + 3 / 12, "feet"),
  30451. weight: math.unit(110, "lb"),
  30452. name: "Side",
  30453. image: {
  30454. source: "./media/characters/glitch-flux/side.svg",
  30455. extra: 997 / 805,
  30456. bottom: 20 / 1017
  30457. }
  30458. },
  30459. },
  30460. [
  30461. {
  30462. name: "Normal",
  30463. height: math.unit(2 + 3 / 12, "feet"),
  30464. default: true
  30465. },
  30466. ]
  30467. ))
  30468. characterMakers.push(() => makeCharacter(
  30469. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30470. {
  30471. front: {
  30472. height: math.unit(4, "meters"),
  30473. name: "Front",
  30474. image: {
  30475. source: "./media/characters/mid/front.svg",
  30476. extra: 507 / 476,
  30477. bottom: 17 / 524
  30478. }
  30479. },
  30480. back: {
  30481. height: math.unit(4, "meters"),
  30482. name: "Back",
  30483. image: {
  30484. source: "./media/characters/mid/back.svg",
  30485. extra: 519 / 487,
  30486. bottom: 7 / 526
  30487. }
  30488. },
  30489. stuck: {
  30490. height: math.unit(2.2, "meters"),
  30491. name: "Stuck",
  30492. image: {
  30493. source: "./media/characters/mid/stuck.svg",
  30494. extra: 1951 / 1869,
  30495. bottom: 88 / 2039
  30496. }
  30497. }
  30498. },
  30499. [
  30500. {
  30501. name: "Normal",
  30502. height: math.unit(4, "meters"),
  30503. default: true
  30504. },
  30505. {
  30506. name: "Big",
  30507. height: math.unit(10, "meters")
  30508. },
  30509. {
  30510. name: "Macro",
  30511. height: math.unit(800, "meters")
  30512. },
  30513. {
  30514. name: "Megamacro",
  30515. height: math.unit(100, "km")
  30516. },
  30517. {
  30518. name: "Overgrown",
  30519. height: math.unit(1, "parsec")
  30520. },
  30521. ]
  30522. ))
  30523. characterMakers.push(() => makeCharacter(
  30524. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30525. {
  30526. front: {
  30527. height: math.unit(2.5, "meters"),
  30528. weight: math.unit(225, "kg"),
  30529. name: "Front",
  30530. image: {
  30531. source: "./media/characters/iris/front.svg",
  30532. extra: 3348 / 3251,
  30533. bottom: 205 / 3553
  30534. }
  30535. },
  30536. maw: {
  30537. height: math.unit(0.56, "meter"),
  30538. name: "Maw",
  30539. image: {
  30540. source: "./media/characters/iris/maw.svg"
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Mewter cat",
  30547. height: math.unit(1.2, "meters")
  30548. },
  30549. {
  30550. name: "Minimacro",
  30551. height: math.unit(2.5, "meters"),
  30552. default: true
  30553. },
  30554. {
  30555. name: "Macro",
  30556. height: math.unit(180, "meters")
  30557. },
  30558. {
  30559. name: "Megamacro",
  30560. height: math.unit(2746, "meters")
  30561. },
  30562. ]
  30563. ))
  30564. characterMakers.push(() => makeCharacter(
  30565. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30566. {
  30567. front: {
  30568. height: math.unit(6, "feet"),
  30569. weight: math.unit(135, "lb"),
  30570. name: "Front",
  30571. image: {
  30572. source: "./media/characters/axel/front.svg",
  30573. extra: 908 / 908,
  30574. bottom: 58 / 966
  30575. }
  30576. },
  30577. side: {
  30578. height: math.unit(6, "feet"),
  30579. weight: math.unit(135, "lb"),
  30580. name: "Side",
  30581. image: {
  30582. source: "./media/characters/axel/side.svg",
  30583. extra: 958 / 958,
  30584. bottom: 11 / 969
  30585. }
  30586. },
  30587. back: {
  30588. height: math.unit(6, "feet"),
  30589. weight: math.unit(135, "lb"),
  30590. name: "Back",
  30591. image: {
  30592. source: "./media/characters/axel/back.svg",
  30593. extra: 887 / 887,
  30594. bottom: 34 / 921
  30595. }
  30596. },
  30597. head: {
  30598. height: math.unit(1.07, "feet"),
  30599. name: "Head",
  30600. image: {
  30601. source: "./media/characters/axel/head.svg"
  30602. }
  30603. },
  30604. beak: {
  30605. height: math.unit(1.4, "feet"),
  30606. name: "Beak",
  30607. image: {
  30608. source: "./media/characters/axel/beak.svg"
  30609. }
  30610. },
  30611. beakSide: {
  30612. height: math.unit(1.4, "feet"),
  30613. name: "Beak Side",
  30614. image: {
  30615. source: "./media/characters/axel/beak-side.svg"
  30616. }
  30617. },
  30618. sheath: {
  30619. height: math.unit(0.5, "feet"),
  30620. name: "Sheath",
  30621. image: {
  30622. source: "./media/characters/axel/sheath.svg"
  30623. }
  30624. },
  30625. dick: {
  30626. height: math.unit(0.98, "feet"),
  30627. name: "Dick",
  30628. image: {
  30629. source: "./media/characters/axel/dick.svg"
  30630. }
  30631. },
  30632. },
  30633. [
  30634. {
  30635. name: "Macro",
  30636. height: math.unit(68, "meters"),
  30637. default: true
  30638. },
  30639. ]
  30640. ))
  30641. characterMakers.push(() => makeCharacter(
  30642. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30643. {
  30644. front: {
  30645. height: math.unit(3.5, "meters"),
  30646. weight: math.unit(1200, "kg"),
  30647. name: "Front",
  30648. image: {
  30649. source: "./media/characters/joanna/front.svg",
  30650. extra: 1596 / 1488,
  30651. bottom: 29 / 1625
  30652. }
  30653. },
  30654. back: {
  30655. height: math.unit(3.5, "meters"),
  30656. weight: math.unit(1200, "kg"),
  30657. name: "Back",
  30658. image: {
  30659. source: "./media/characters/joanna/back.svg",
  30660. extra: 1594 / 1495,
  30661. bottom: 26 / 1620
  30662. }
  30663. },
  30664. frontShorts: {
  30665. height: math.unit(3.5, "meters"),
  30666. weight: math.unit(1200, "kg"),
  30667. name: "Front (Shorts)",
  30668. image: {
  30669. source: "./media/characters/joanna/front-shorts.svg",
  30670. extra: 1596 / 1488,
  30671. bottom: 29 / 1625
  30672. }
  30673. },
  30674. frontBiker: {
  30675. height: math.unit(3.5, "meters"),
  30676. weight: math.unit(1200, "kg"),
  30677. name: "Front (Biker)",
  30678. image: {
  30679. source: "./media/characters/joanna/front-biker.svg",
  30680. extra: 1596 / 1488,
  30681. bottom: 29 / 1625
  30682. }
  30683. },
  30684. backBiker: {
  30685. height: math.unit(3.5, "meters"),
  30686. weight: math.unit(1200, "kg"),
  30687. name: "Back (Biker)",
  30688. image: {
  30689. source: "./media/characters/joanna/back-biker.svg",
  30690. extra: 1594 / 1495,
  30691. bottom: 88 / 1682
  30692. }
  30693. },
  30694. bikeLeft: {
  30695. height: math.unit(2.4, "meters"),
  30696. weight: math.unit(1600, "kg"),
  30697. name: "Bike (Left)",
  30698. image: {
  30699. source: "./media/characters/joanna/bike-left.svg",
  30700. extra: 720 / 720,
  30701. bottom: 8 / 728
  30702. }
  30703. },
  30704. bikeRight: {
  30705. height: math.unit(2.4, "meters"),
  30706. weight: math.unit(1600, "kg"),
  30707. name: "Bike (Right)",
  30708. image: {
  30709. source: "./media/characters/joanna/bike-right.svg",
  30710. extra: 720 / 720,
  30711. bottom: 8 / 728
  30712. }
  30713. },
  30714. },
  30715. [
  30716. {
  30717. name: "Incognito",
  30718. height: math.unit(3.5, "meters")
  30719. },
  30720. {
  30721. name: "Casual Big",
  30722. height: math.unit(200, "meters")
  30723. },
  30724. {
  30725. name: "Macro",
  30726. height: math.unit(600, "meters")
  30727. },
  30728. {
  30729. name: "Original",
  30730. height: math.unit(20, "km"),
  30731. default: true
  30732. },
  30733. {
  30734. name: "Giga",
  30735. height: math.unit(400, "km")
  30736. },
  30737. {
  30738. name: "Lounging",
  30739. height: math.unit(1500, "km")
  30740. },
  30741. {
  30742. name: "Planetary",
  30743. height: math.unit(200000, "km")
  30744. },
  30745. ]
  30746. ))
  30747. characterMakers.push(() => makeCharacter(
  30748. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30749. {
  30750. front: {
  30751. height: math.unit(6, "feet"),
  30752. weight: math.unit(150, "lb"),
  30753. name: "Front",
  30754. image: {
  30755. source: "./media/characters/hugo-sigil/front.svg",
  30756. extra: 522 / 500,
  30757. bottom: 2 / 524
  30758. }
  30759. },
  30760. back: {
  30761. height: math.unit(6, "feet"),
  30762. weight: math.unit(150, "lb"),
  30763. name: "Back",
  30764. image: {
  30765. source: "./media/characters/hugo-sigil/back.svg",
  30766. extra: 519 / 495,
  30767. bottom: 5 / 524
  30768. }
  30769. },
  30770. maw: {
  30771. height: math.unit(1.4, "feet"),
  30772. weight: math.unit(150, "lb"),
  30773. name: "Maw",
  30774. image: {
  30775. source: "./media/characters/hugo-sigil/maw.svg"
  30776. }
  30777. },
  30778. feet: {
  30779. height: math.unit(1.56, "feet"),
  30780. weight: math.unit(150, "lb"),
  30781. name: "Feet",
  30782. image: {
  30783. source: "./media/characters/hugo-sigil/feet.svg",
  30784. extra: 177 / 177,
  30785. bottom: 12 / 189
  30786. }
  30787. },
  30788. },
  30789. [
  30790. {
  30791. name: "Normal",
  30792. height: math.unit(6, "feet")
  30793. },
  30794. {
  30795. name: "Macro",
  30796. height: math.unit(200, "feet"),
  30797. default: true
  30798. },
  30799. ]
  30800. ))
  30801. characterMakers.push(() => makeCharacter(
  30802. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30803. {
  30804. front: {
  30805. height: math.unit(6, "feet"),
  30806. weight: math.unit(150, "lb"),
  30807. name: "Front",
  30808. image: {
  30809. source: "./media/characters/peri/front.svg",
  30810. extra: 2354 / 2233,
  30811. bottom: 49 / 2403
  30812. }
  30813. },
  30814. },
  30815. [
  30816. {
  30817. name: "Really Small",
  30818. height: math.unit(1, "nm")
  30819. },
  30820. {
  30821. name: "Micro",
  30822. height: math.unit(4, "inches")
  30823. },
  30824. {
  30825. name: "Normal",
  30826. height: math.unit(7, "inches"),
  30827. default: true
  30828. },
  30829. {
  30830. name: "Macro",
  30831. height: math.unit(400, "feet")
  30832. },
  30833. {
  30834. name: "Megamacro",
  30835. height: math.unit(100, "miles")
  30836. },
  30837. ]
  30838. ))
  30839. characterMakers.push(() => makeCharacter(
  30840. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30841. {
  30842. frontSlim: {
  30843. height: math.unit(7, "feet"),
  30844. name: "Front (Slim)",
  30845. image: {
  30846. source: "./media/characters/issilora/front-slim.svg",
  30847. extra: 529 / 449,
  30848. bottom: 53 / 582
  30849. }
  30850. },
  30851. sideSlim: {
  30852. height: math.unit(7, "feet"),
  30853. name: "Side (Slim)",
  30854. image: {
  30855. source: "./media/characters/issilora/side-slim.svg",
  30856. extra: 570 / 480,
  30857. bottom: 30 / 600
  30858. }
  30859. },
  30860. backSlim: {
  30861. height: math.unit(7, "feet"),
  30862. name: "Back (Slim)",
  30863. image: {
  30864. source: "./media/characters/issilora/back-slim.svg",
  30865. extra: 537 / 455,
  30866. bottom: 46 / 583
  30867. }
  30868. },
  30869. frontBuff: {
  30870. height: math.unit(7, "feet"),
  30871. name: "Front (Buff)",
  30872. image: {
  30873. source: "./media/characters/issilora/front-buff.svg",
  30874. extra: 2310 / 2035,
  30875. bottom: 335 / 2645
  30876. }
  30877. },
  30878. head: {
  30879. height: math.unit(1.94, "feet"),
  30880. name: "Head",
  30881. image: {
  30882. source: "./media/characters/issilora/head.svg"
  30883. }
  30884. },
  30885. },
  30886. [
  30887. {
  30888. name: "Minimum",
  30889. height: math.unit(7, "feet")
  30890. },
  30891. {
  30892. name: "Comfortable",
  30893. height: math.unit(17, "feet")
  30894. },
  30895. {
  30896. name: "Fun Size",
  30897. height: math.unit(47, "feet")
  30898. },
  30899. {
  30900. name: "Natural Macro",
  30901. height: math.unit(137, "feet"),
  30902. default: true
  30903. },
  30904. {
  30905. name: "Maximum Kaiju",
  30906. height: math.unit(397, "feet")
  30907. },
  30908. ]
  30909. ))
  30910. characterMakers.push(() => makeCharacter(
  30911. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30912. {
  30913. front: {
  30914. height: math.unit(50 + 9/12, "feet"),
  30915. weight: math.unit(32.8, "tons"),
  30916. name: "Front",
  30917. image: {
  30918. source: "./media/characters/irb'iiritaahn/front.svg",
  30919. extra: 1878/1826,
  30920. bottom: 326/2204
  30921. }
  30922. },
  30923. back: {
  30924. height: math.unit(50 + 9/12, "feet"),
  30925. weight: math.unit(32.8, "tons"),
  30926. name: "Back",
  30927. image: {
  30928. source: "./media/characters/irb'iiritaahn/back.svg",
  30929. extra: 2052/2018,
  30930. bottom: 152/2204
  30931. }
  30932. },
  30933. head: {
  30934. height: math.unit(12.86, "feet"),
  30935. name: "Head",
  30936. image: {
  30937. source: "./media/characters/irb'iiritaahn/head.svg"
  30938. }
  30939. },
  30940. maw: {
  30941. height: math.unit(9.66, "feet"),
  30942. name: "Maw",
  30943. image: {
  30944. source: "./media/characters/irb'iiritaahn/maw.svg"
  30945. }
  30946. },
  30947. frontDick: {
  30948. height: math.unit(8.78461, "feet"),
  30949. name: "Front Dick",
  30950. image: {
  30951. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30952. }
  30953. },
  30954. rearDick: {
  30955. height: math.unit(8.78461, "feet"),
  30956. name: "Rear Dick",
  30957. image: {
  30958. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30959. }
  30960. },
  30961. rearDickUnfolded: {
  30962. height: math.unit(8.78, "feet"),
  30963. name: "Rear Dick (Unfolded)",
  30964. image: {
  30965. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30966. }
  30967. },
  30968. wings: {
  30969. height: math.unit(43, "feet"),
  30970. name: "Wings",
  30971. image: {
  30972. source: "./media/characters/irb'iiritaahn/wings.svg"
  30973. }
  30974. },
  30975. },
  30976. [
  30977. {
  30978. name: "Macro",
  30979. height: math.unit(50 + 9/12, "feet"),
  30980. default: true
  30981. },
  30982. ]
  30983. ))
  30984. characterMakers.push(() => makeCharacter(
  30985. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30986. {
  30987. front: {
  30988. height: math.unit(205, "cm"),
  30989. weight: math.unit(102, "kg"),
  30990. name: "Front",
  30991. image: {
  30992. source: "./media/characters/irbisgreif/front.svg",
  30993. extra: 785/706,
  30994. bottom: 13/798
  30995. }
  30996. },
  30997. back: {
  30998. height: math.unit(205, "cm"),
  30999. weight: math.unit(102, "kg"),
  31000. name: "Back",
  31001. image: {
  31002. source: "./media/characters/irbisgreif/back.svg",
  31003. extra: 713/701,
  31004. bottom: 26/739
  31005. }
  31006. },
  31007. frontDressed: {
  31008. height: math.unit(216, "cm"),
  31009. weight: math.unit(102, "kg"),
  31010. name: "Front-dressed",
  31011. image: {
  31012. source: "./media/characters/irbisgreif/front-dressed.svg",
  31013. extra: 902/776,
  31014. bottom: 14/916
  31015. }
  31016. },
  31017. sideDressed: {
  31018. height: math.unit(195, "cm"),
  31019. weight: math.unit(102, "kg"),
  31020. name: "Side-dressed",
  31021. image: {
  31022. source: "./media/characters/irbisgreif/side-dressed.svg",
  31023. extra: 788/688,
  31024. bottom: 21/809
  31025. }
  31026. },
  31027. backDressed: {
  31028. height: math.unit(216, "cm"),
  31029. weight: math.unit(102, "kg"),
  31030. name: "Back-dressed",
  31031. image: {
  31032. source: "./media/characters/irbisgreif/back-dressed.svg",
  31033. extra: 901/783,
  31034. bottom: 10/911
  31035. }
  31036. },
  31037. dick: {
  31038. height: math.unit(0.49, "feet"),
  31039. name: "Dick",
  31040. image: {
  31041. source: "./media/characters/irbisgreif/dick.svg"
  31042. }
  31043. },
  31044. wingTop: {
  31045. height: math.unit(1.93 , "feet"),
  31046. name: "Wing-top",
  31047. image: {
  31048. source: "./media/characters/irbisgreif/wing-top.svg"
  31049. }
  31050. },
  31051. wingBottom: {
  31052. height: math.unit(1.93 , "feet"),
  31053. name: "Wing-bottom",
  31054. image: {
  31055. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31056. }
  31057. },
  31058. },
  31059. [
  31060. {
  31061. name: "Normal",
  31062. height: math.unit(216, "cm"),
  31063. default: true
  31064. },
  31065. ]
  31066. ))
  31067. characterMakers.push(() => makeCharacter(
  31068. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31069. {
  31070. front: {
  31071. height: math.unit(6, "feet"),
  31072. weight: math.unit(150, "lb"),
  31073. name: "Front",
  31074. image: {
  31075. source: "./media/characters/pride/front.svg",
  31076. extra: 1299/1230,
  31077. bottom: 18/1317
  31078. }
  31079. },
  31080. },
  31081. [
  31082. {
  31083. name: "Normal",
  31084. height: math.unit(7, "feet")
  31085. },
  31086. {
  31087. name: "Mini-macro",
  31088. height: math.unit(11, "feet")
  31089. },
  31090. {
  31091. name: "Macro",
  31092. height: math.unit(15, "meters"),
  31093. default: true
  31094. },
  31095. {
  31096. name: "Macro+",
  31097. height: math.unit(40, "meters")
  31098. },
  31099. ]
  31100. ))
  31101. characterMakers.push(() => makeCharacter(
  31102. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31103. {
  31104. front: {
  31105. height: math.unit(4 + 2 / 12, "feet"),
  31106. weight: math.unit(95, "lb"),
  31107. name: "Front",
  31108. image: {
  31109. source: "./media/characters/vaelophis-nyx/front.svg",
  31110. extra: 2532/2330,
  31111. bottom: 0/2532
  31112. }
  31113. },
  31114. back: {
  31115. height: math.unit(4 + 2 / 12, "feet"),
  31116. weight: math.unit(95, "lb"),
  31117. name: "Back",
  31118. image: {
  31119. source: "./media/characters/vaelophis-nyx/back.svg",
  31120. extra: 2484/2361,
  31121. bottom: 0/2484
  31122. }
  31123. },
  31124. feralSide: {
  31125. height: math.unit(2 + 1/12, "feet"),
  31126. weight: math.unit(20, "lb"),
  31127. name: "Feral (Side)",
  31128. image: {
  31129. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31130. extra: 1721/1581,
  31131. bottom: 70/1791
  31132. }
  31133. },
  31134. feralLazing: {
  31135. height: math.unit(1.08, "feet"),
  31136. weight: math.unit(20, "lb"),
  31137. name: "Feral (Lazing)",
  31138. image: {
  31139. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31140. extra: 822/822,
  31141. bottom: 248/1070
  31142. }
  31143. },
  31144. ear: {
  31145. height: math.unit(0.416, "feet"),
  31146. name: "Ear",
  31147. image: {
  31148. source: "./media/characters/vaelophis-nyx/ear.svg"
  31149. }
  31150. },
  31151. eye: {
  31152. height: math.unit(0.0748, "feet"),
  31153. name: "Eye",
  31154. image: {
  31155. source: "./media/characters/vaelophis-nyx/eye.svg"
  31156. }
  31157. },
  31158. mouth: {
  31159. height: math.unit(0.378, "feet"),
  31160. name: "Mouth",
  31161. image: {
  31162. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31163. }
  31164. },
  31165. spade: {
  31166. height: math.unit(0.55, "feet"),
  31167. name: "Spade",
  31168. image: {
  31169. source: "./media/characters/vaelophis-nyx/spade.svg"
  31170. }
  31171. },
  31172. },
  31173. [
  31174. {
  31175. name: "Normal",
  31176. height: math.unit(4 + 2/12, "feet"),
  31177. default: true
  31178. },
  31179. ]
  31180. ))
  31181. characterMakers.push(() => makeCharacter(
  31182. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31183. {
  31184. front: {
  31185. height: math.unit(7, "feet"),
  31186. weight: math.unit(231, "lb"),
  31187. name: "Front",
  31188. image: {
  31189. source: "./media/characters/flux/front.svg",
  31190. extra: 919/871,
  31191. bottom: 0/919
  31192. }
  31193. },
  31194. back: {
  31195. height: math.unit(7, "feet"),
  31196. weight: math.unit(231, "lb"),
  31197. name: "Back",
  31198. image: {
  31199. source: "./media/characters/flux/back.svg",
  31200. extra: 1040/992,
  31201. bottom: 0/1040
  31202. }
  31203. },
  31204. frontDressed: {
  31205. height: math.unit(7, "feet"),
  31206. weight: math.unit(231, "lb"),
  31207. name: "Front (Dressed)",
  31208. image: {
  31209. source: "./media/characters/flux/front-dressed.svg",
  31210. extra: 919/871,
  31211. bottom: 0/919
  31212. }
  31213. },
  31214. feralSide: {
  31215. height: math.unit(5, "feet"),
  31216. weight: math.unit(150, "lb"),
  31217. name: "Feral (Side)",
  31218. image: {
  31219. source: "./media/characters/flux/feral-side.svg",
  31220. extra: 598/528,
  31221. bottom: 28/626
  31222. }
  31223. },
  31224. head: {
  31225. height: math.unit(1.585, "feet"),
  31226. name: "Head",
  31227. image: {
  31228. source: "./media/characters/flux/head.svg"
  31229. }
  31230. },
  31231. headSide: {
  31232. height: math.unit(1.74, "feet"),
  31233. name: "Head (Side)",
  31234. image: {
  31235. source: "./media/characters/flux/head-side.svg"
  31236. }
  31237. },
  31238. headSideFire: {
  31239. height: math.unit(1.76, "feet"),
  31240. name: "Head (Side, Fire)",
  31241. image: {
  31242. source: "./media/characters/flux/head-side-fire.svg"
  31243. }
  31244. },
  31245. },
  31246. [
  31247. {
  31248. name: "Normal",
  31249. height: math.unit(7, "feet"),
  31250. default: true
  31251. },
  31252. ]
  31253. ))
  31254. characterMakers.push(() => makeCharacter(
  31255. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31256. {
  31257. front: {
  31258. height: math.unit(9, "feet"),
  31259. weight: math.unit(1012, "lb"),
  31260. name: "Front",
  31261. image: {
  31262. source: "./media/characters/ulfra-lupae/front.svg",
  31263. extra: 1083/1011,
  31264. bottom: 67/1150
  31265. }
  31266. },
  31267. },
  31268. [
  31269. {
  31270. name: "Micro",
  31271. height: math.unit(6, "inches")
  31272. },
  31273. {
  31274. name: "Socializing",
  31275. height: math.unit(6 + 5/12, "feet")
  31276. },
  31277. {
  31278. name: "Normal",
  31279. height: math.unit(9, "feet"),
  31280. default: true
  31281. },
  31282. {
  31283. name: "Macro",
  31284. height: math.unit(150, "feet")
  31285. },
  31286. ]
  31287. ))
  31288. characterMakers.push(() => makeCharacter(
  31289. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31290. {
  31291. front: {
  31292. height: math.unit(5 + 2/12, "feet"),
  31293. weight: math.unit(120, "lb"),
  31294. name: "Front",
  31295. image: {
  31296. source: "./media/characters/timber/front.svg",
  31297. extra: 2814/2705,
  31298. bottom: 181/2995
  31299. }
  31300. },
  31301. },
  31302. [
  31303. {
  31304. name: "Normal",
  31305. height: math.unit(5 + 2/12, "feet"),
  31306. default: true
  31307. },
  31308. ]
  31309. ))
  31310. characterMakers.push(() => makeCharacter(
  31311. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31312. {
  31313. front: {
  31314. height: math.unit(5 + 7/12, "feet"),
  31315. weight: math.unit(220, "lb"),
  31316. name: "Front",
  31317. image: {
  31318. source: "./media/characters/nicki/front.svg",
  31319. extra: 453/419,
  31320. bottom: 7/460
  31321. }
  31322. },
  31323. frontAlt: {
  31324. height: math.unit(5 + 7/12, "feet"),
  31325. weight: math.unit(220, "lb"),
  31326. name: "Front-alt",
  31327. image: {
  31328. source: "./media/characters/nicki/front-alt.svg",
  31329. extra: 435/411,
  31330. bottom: 12/447
  31331. }
  31332. },
  31333. back: {
  31334. height: math.unit(5 + 7/12, "feet"),
  31335. weight: math.unit(220, "lb"),
  31336. name: "Back",
  31337. image: {
  31338. source: "./media/characters/nicki/back.svg",
  31339. extra: 440/413,
  31340. bottom: 19/459
  31341. }
  31342. },
  31343. taur: {
  31344. height: math.unit(7 + 6/12, "feet"),
  31345. weight: math.unit(700, "lb"),
  31346. name: "Taur",
  31347. image: {
  31348. source: "./media/characters/nicki/taur.svg",
  31349. extra: 975/773,
  31350. bottom: 0/975
  31351. }
  31352. },
  31353. frontNsfw: {
  31354. height: math.unit(5 + 7/12, "feet"),
  31355. weight: math.unit(220, "lb"),
  31356. name: "Front (NSFW)",
  31357. image: {
  31358. source: "./media/characters/nicki/front-nsfw.svg",
  31359. extra: 453/419,
  31360. bottom: 7/460
  31361. }
  31362. },
  31363. frontNsfwAlt: {
  31364. height: math.unit(5 + 7/12, "feet"),
  31365. weight: math.unit(220, "lb"),
  31366. name: "Front (Alt, NSFW)",
  31367. image: {
  31368. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31369. extra: 435/411,
  31370. bottom: 12/447
  31371. }
  31372. },
  31373. backNsfw: {
  31374. height: math.unit(5 + 7/12, "feet"),
  31375. weight: math.unit(220, "lb"),
  31376. name: "Back (NSFW)",
  31377. image: {
  31378. source: "./media/characters/nicki/back-nsfw.svg",
  31379. extra: 440/413,
  31380. bottom: 19/459
  31381. }
  31382. },
  31383. head: {
  31384. height: math.unit(2.1, "feet"),
  31385. name: "Head",
  31386. image: {
  31387. source: "./media/characters/nicki/head.svg"
  31388. }
  31389. },
  31390. paw: {
  31391. height: math.unit(1.88, "feet"),
  31392. name: "Paw",
  31393. image: {
  31394. source: "./media/characters/nicki/paw.svg"
  31395. }
  31396. },
  31397. },
  31398. [
  31399. {
  31400. name: "Normal",
  31401. height: math.unit(5 + 7/12, "feet"),
  31402. default: true
  31403. },
  31404. ]
  31405. ))
  31406. characterMakers.push(() => makeCharacter(
  31407. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31408. {
  31409. front: {
  31410. height: math.unit(7 + 10/12, "feet"),
  31411. weight: math.unit(3.5, "tons"),
  31412. name: "Front",
  31413. image: {
  31414. source: "./media/characters/lee/front.svg",
  31415. extra: 1773/1615,
  31416. bottom: 86/1859
  31417. }
  31418. },
  31419. hand: {
  31420. height: math.unit(1.78, "feet"),
  31421. name: "Hand",
  31422. image: {
  31423. source: "./media/characters/lee/hand.svg"
  31424. }
  31425. },
  31426. maw: {
  31427. height: math.unit(1.18, "feet"),
  31428. name: "Maw",
  31429. image: {
  31430. source: "./media/characters/lee/maw.svg"
  31431. }
  31432. },
  31433. },
  31434. [
  31435. {
  31436. name: "Normal",
  31437. height: math.unit(7 + 10/12, "feet"),
  31438. default: true
  31439. },
  31440. ]
  31441. ))
  31442. characterMakers.push(() => makeCharacter(
  31443. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31444. {
  31445. front: {
  31446. height: math.unit(9, "feet"),
  31447. name: "Front",
  31448. image: {
  31449. source: "./media/characters/guti/front.svg",
  31450. extra: 4551/4355,
  31451. bottom: 123/4674
  31452. }
  31453. },
  31454. tongue: {
  31455. height: math.unit(1, "feet"),
  31456. name: "Tongue",
  31457. image: {
  31458. source: "./media/characters/guti/tongue.svg"
  31459. }
  31460. },
  31461. paw: {
  31462. height: math.unit(1.18, "feet"),
  31463. name: "Paw",
  31464. image: {
  31465. source: "./media/characters/guti/paw.svg"
  31466. }
  31467. },
  31468. },
  31469. [
  31470. {
  31471. name: "Normal",
  31472. height: math.unit(9, "feet"),
  31473. default: true
  31474. },
  31475. ]
  31476. ))
  31477. characterMakers.push(() => makeCharacter(
  31478. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31479. {
  31480. side: {
  31481. height: math.unit(5, "meters"),
  31482. name: "Side",
  31483. image: {
  31484. source: "./media/characters/vesper/side.svg",
  31485. extra: 1605/1518,
  31486. bottom: 0/1605
  31487. }
  31488. },
  31489. },
  31490. [
  31491. {
  31492. name: "Small",
  31493. height: math.unit(5, "meters")
  31494. },
  31495. {
  31496. name: "Sage",
  31497. height: math.unit(100, "meters"),
  31498. default: true
  31499. },
  31500. {
  31501. name: "Fun Size",
  31502. height: math.unit(600, "meters")
  31503. },
  31504. {
  31505. name: "Goddess",
  31506. height: math.unit(20000, "km")
  31507. },
  31508. {
  31509. name: "Maximum",
  31510. height: math.unit(5, "galaxies")
  31511. },
  31512. ]
  31513. ))
  31514. characterMakers.push(() => makeCharacter(
  31515. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31516. {
  31517. front: {
  31518. height: math.unit(6 + 3/12, "feet"),
  31519. weight: math.unit(190, "lb"),
  31520. name: "Front",
  31521. image: {
  31522. source: "./media/characters/gawain/front.svg",
  31523. extra: 2222/2139,
  31524. bottom: 90/2312
  31525. }
  31526. },
  31527. back: {
  31528. height: math.unit(6 + 3/12, "feet"),
  31529. weight: math.unit(190, "lb"),
  31530. name: "Back",
  31531. image: {
  31532. source: "./media/characters/gawain/back.svg",
  31533. extra: 2199/2111,
  31534. bottom: 73/2272
  31535. }
  31536. },
  31537. },
  31538. [
  31539. {
  31540. name: "Normal",
  31541. height: math.unit(6 + 3/12, "feet"),
  31542. default: true
  31543. },
  31544. ]
  31545. ))
  31546. characterMakers.push(() => makeCharacter(
  31547. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31548. {
  31549. side: {
  31550. height: math.unit(3.5, "meters"),
  31551. weight: math.unit(16000, "lb"),
  31552. name: "Side",
  31553. image: {
  31554. source: "./media/characters/dascalti/side.svg",
  31555. extra: 392/273,
  31556. bottom: 47/439
  31557. }
  31558. },
  31559. breath: {
  31560. height: math.unit(7.4, "feet"),
  31561. name: "Breath",
  31562. image: {
  31563. source: "./media/characters/dascalti/breath.svg"
  31564. }
  31565. },
  31566. fed: {
  31567. height: math.unit(3.6, "meters"),
  31568. weight: math.unit(16000, "lb"),
  31569. name: "Fed",
  31570. image: {
  31571. source: "./media/characters/dascalti/fed.svg",
  31572. extra: 1419/820,
  31573. bottom: 95/1514
  31574. }
  31575. },
  31576. },
  31577. [
  31578. {
  31579. name: "Normal",
  31580. height: math.unit(3.5, "meters"),
  31581. default: true
  31582. },
  31583. ]
  31584. ))
  31585. characterMakers.push(() => makeCharacter(
  31586. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31587. {
  31588. front: {
  31589. height: math.unit(3 + 5/12, "feet"),
  31590. name: "Front",
  31591. image: {
  31592. source: "./media/characters/mauve/front.svg",
  31593. extra: 1126/1033,
  31594. bottom: 65/1191
  31595. }
  31596. },
  31597. side: {
  31598. height: math.unit(3 + 5/12, "feet"),
  31599. name: "Side",
  31600. image: {
  31601. source: "./media/characters/mauve/side.svg",
  31602. extra: 1089/1001,
  31603. bottom: 29/1118
  31604. }
  31605. },
  31606. back: {
  31607. height: math.unit(3 + 5/12, "feet"),
  31608. name: "Back",
  31609. image: {
  31610. source: "./media/characters/mauve/back.svg",
  31611. extra: 1173/1053,
  31612. bottom: 109/1282
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Normal",
  31619. height: math.unit(3 + 5/12, "feet"),
  31620. default: true
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31626. {
  31627. front: {
  31628. height: math.unit(6 + 3/12, "feet"),
  31629. weight: math.unit(430, "lb"),
  31630. name: "Front",
  31631. image: {
  31632. source: "./media/characters/carlos/front.svg",
  31633. extra: 1964/1913,
  31634. bottom: 70/2034
  31635. }
  31636. },
  31637. },
  31638. [
  31639. {
  31640. name: "Normal",
  31641. height: math.unit(6 + 3/12, "feet"),
  31642. default: true
  31643. },
  31644. ]
  31645. ))
  31646. characterMakers.push(() => makeCharacter(
  31647. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31648. {
  31649. back: {
  31650. height: math.unit(5 + 10/12, "feet"),
  31651. weight: math.unit(200, "lb"),
  31652. name: "Back",
  31653. image: {
  31654. source: "./media/characters/jax/back.svg",
  31655. extra: 764/739,
  31656. bottom: 25/789
  31657. }
  31658. },
  31659. },
  31660. [
  31661. {
  31662. name: "Normal",
  31663. height: math.unit(5 + 10/12, "feet"),
  31664. default: true
  31665. },
  31666. ]
  31667. ))
  31668. characterMakers.push(() => makeCharacter(
  31669. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31670. {
  31671. front: {
  31672. height: math.unit(8, "feet"),
  31673. weight: math.unit(250, "lb"),
  31674. name: "Front",
  31675. image: {
  31676. source: "./media/characters/eikthynir/front.svg",
  31677. extra: 1332/1166,
  31678. bottom: 82/1414
  31679. }
  31680. },
  31681. back: {
  31682. height: math.unit(8, "feet"),
  31683. weight: math.unit(250, "lb"),
  31684. name: "Back",
  31685. image: {
  31686. source: "./media/characters/eikthynir/back.svg",
  31687. extra: 1342/1190,
  31688. bottom: 19/1361
  31689. }
  31690. },
  31691. dick: {
  31692. height: math.unit(2.35, "feet"),
  31693. name: "Dick",
  31694. image: {
  31695. source: "./media/characters/eikthynir/dick.svg"
  31696. }
  31697. },
  31698. },
  31699. [
  31700. {
  31701. name: "Normal",
  31702. height: math.unit(8, "feet"),
  31703. default: true
  31704. },
  31705. ]
  31706. ))
  31707. characterMakers.push(() => makeCharacter(
  31708. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31709. {
  31710. front: {
  31711. height: math.unit(99, "meters"),
  31712. weight: math.unit(13000, "tons"),
  31713. name: "Front",
  31714. image: {
  31715. source: "./media/characters/zlmos/front.svg",
  31716. extra: 2202/1992,
  31717. bottom: 315/2517
  31718. }
  31719. },
  31720. },
  31721. [
  31722. {
  31723. name: "Macro",
  31724. height: math.unit(99, "meters"),
  31725. default: true
  31726. },
  31727. ]
  31728. ))
  31729. characterMakers.push(() => makeCharacter(
  31730. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31731. {
  31732. front: {
  31733. height: math.unit(6 + 5/12, "feet"),
  31734. name: "Front",
  31735. image: {
  31736. source: "./media/characters/purri/front.svg",
  31737. extra: 1698/1610,
  31738. bottom: 32/1730
  31739. }
  31740. },
  31741. frontAlt: {
  31742. height: math.unit(6 + 5/12, "feet"),
  31743. name: "Front (Alt)",
  31744. image: {
  31745. source: "./media/characters/purri/front-alt.svg",
  31746. extra: 450/420,
  31747. bottom: 26/476
  31748. }
  31749. },
  31750. boots: {
  31751. height: math.unit(5.5, "feet"),
  31752. name: "Boots",
  31753. image: {
  31754. source: "./media/characters/purri/boots.svg",
  31755. extra: 905/853,
  31756. bottom: 18/923
  31757. }
  31758. },
  31759. lying: {
  31760. height: math.unit(2, "feet"),
  31761. name: "Lying",
  31762. image: {
  31763. source: "./media/characters/purri/lying.svg",
  31764. extra: 940/843,
  31765. bottom: 146/1086
  31766. }
  31767. },
  31768. devious: {
  31769. height: math.unit(1.77, "feet"),
  31770. name: "Devious",
  31771. image: {
  31772. source: "./media/characters/purri/devious.svg",
  31773. extra: 1440/1155,
  31774. bottom: 147/1587
  31775. }
  31776. },
  31777. bean: {
  31778. height: math.unit(1.94, "feet"),
  31779. name: "Bean",
  31780. image: {
  31781. source: "./media/characters/purri/bean.svg"
  31782. }
  31783. },
  31784. },
  31785. [
  31786. {
  31787. name: "Micro",
  31788. height: math.unit(1, "mm")
  31789. },
  31790. {
  31791. name: "Normal",
  31792. height: math.unit(6 + 5/12, "feet"),
  31793. default: true
  31794. },
  31795. {
  31796. name: "Macro :3c",
  31797. height: math.unit(2, "miles")
  31798. },
  31799. ]
  31800. ))
  31801. characterMakers.push(() => makeCharacter(
  31802. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31803. {
  31804. front: {
  31805. height: math.unit(6 + 2/12, "feet"),
  31806. weight: math.unit(250, "lb"),
  31807. name: "Front",
  31808. image: {
  31809. source: "./media/characters/moonlight/front.svg",
  31810. extra: 1044/908,
  31811. bottom: 56/1100
  31812. }
  31813. },
  31814. feral: {
  31815. height: math.unit(3 + 1/12, "feet"),
  31816. weight: math.unit(50, "kg"),
  31817. name: "Feral",
  31818. image: {
  31819. source: "./media/characters/moonlight/feral.svg",
  31820. extra: 3705/2791,
  31821. bottom: 145/3850
  31822. }
  31823. },
  31824. paw: {
  31825. height: math.unit(1, "feet"),
  31826. name: "Paw",
  31827. image: {
  31828. source: "./media/characters/moonlight/paw.svg"
  31829. }
  31830. },
  31831. paws: {
  31832. height: math.unit(0.98, "feet"),
  31833. name: "Paws",
  31834. image: {
  31835. source: "./media/characters/moonlight/paws.svg",
  31836. extra: 939/939,
  31837. bottom: 50/989
  31838. }
  31839. },
  31840. mouth: {
  31841. height: math.unit(0.48, "feet"),
  31842. name: "Mouth",
  31843. image: {
  31844. source: "./media/characters/moonlight/mouth.svg"
  31845. }
  31846. },
  31847. dick: {
  31848. height: math.unit(1.46, "feet"),
  31849. name: "Dick",
  31850. image: {
  31851. source: "./media/characters/moonlight/dick.svg"
  31852. }
  31853. },
  31854. },
  31855. [
  31856. {
  31857. name: "Normal",
  31858. height: math.unit(6 + 2/12, "feet"),
  31859. default: true
  31860. },
  31861. {
  31862. name: "Macro",
  31863. height: math.unit(300, "feet")
  31864. },
  31865. {
  31866. name: "Macro+",
  31867. height: math.unit(1, "mile")
  31868. },
  31869. {
  31870. name: "Mt. Moon",
  31871. height: math.unit(5, "miles")
  31872. },
  31873. {
  31874. name: "Megamacro",
  31875. height: math.unit(15, "miles")
  31876. },
  31877. ]
  31878. ))
  31879. characterMakers.push(() => makeCharacter(
  31880. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31881. {
  31882. back: {
  31883. height: math.unit(6, "feet"),
  31884. weight: math.unit(150, "lb"),
  31885. name: "Back",
  31886. image: {
  31887. source: "./media/characters/sylen/back.svg",
  31888. extra: 1335/1273,
  31889. bottom: 107/1442
  31890. }
  31891. },
  31892. },
  31893. [
  31894. {
  31895. name: "Normal",
  31896. height: math.unit(5 + 5/12, "feet")
  31897. },
  31898. {
  31899. name: "Megamacro",
  31900. height: math.unit(3, "miles"),
  31901. default: true
  31902. },
  31903. ]
  31904. ))
  31905. characterMakers.push(() => makeCharacter(
  31906. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31907. {
  31908. front: {
  31909. height: math.unit(6, "feet"),
  31910. weight: math.unit(190, "lb"),
  31911. name: "Front",
  31912. image: {
  31913. source: "./media/characters/huttser/front.svg",
  31914. extra: 1152/1058,
  31915. bottom: 23/1175
  31916. }
  31917. },
  31918. side: {
  31919. height: math.unit(6, "feet"),
  31920. weight: math.unit(190, "lb"),
  31921. name: "Side",
  31922. image: {
  31923. source: "./media/characters/huttser/side.svg",
  31924. extra: 1174/1065,
  31925. bottom: 18/1192
  31926. }
  31927. },
  31928. back: {
  31929. height: math.unit(6, "feet"),
  31930. weight: math.unit(190, "lb"),
  31931. name: "Back",
  31932. image: {
  31933. source: "./media/characters/huttser/back.svg",
  31934. extra: 1158/1056,
  31935. bottom: 12/1170
  31936. }
  31937. },
  31938. },
  31939. [
  31940. ]
  31941. ))
  31942. characterMakers.push(() => makeCharacter(
  31943. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31944. {
  31945. side: {
  31946. height: math.unit(12 + 9/12, "feet"),
  31947. weight: math.unit(15000, "lb"),
  31948. name: "Side",
  31949. image: {
  31950. source: "./media/characters/faan/side.svg",
  31951. extra: 2747/2697,
  31952. bottom: 0/2747
  31953. }
  31954. },
  31955. front: {
  31956. height: math.unit(12 + 9/12, "feet"),
  31957. weight: math.unit(15000, "lb"),
  31958. name: "Front",
  31959. image: {
  31960. source: "./media/characters/faan/front.svg",
  31961. extra: 607/571,
  31962. bottom: 24/631
  31963. }
  31964. },
  31965. head: {
  31966. height: math.unit(2.85, "feet"),
  31967. name: "Head",
  31968. image: {
  31969. source: "./media/characters/faan/head.svg"
  31970. }
  31971. },
  31972. headAlt: {
  31973. height: math.unit(3.13, "feet"),
  31974. name: "Head-alt",
  31975. image: {
  31976. source: "./media/characters/faan/head-alt.svg"
  31977. }
  31978. },
  31979. },
  31980. [
  31981. {
  31982. name: "Normal",
  31983. height: math.unit(12 + 9/12, "feet"),
  31984. default: true
  31985. },
  31986. ]
  31987. ))
  31988. characterMakers.push(() => makeCharacter(
  31989. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31990. {
  31991. front: {
  31992. height: math.unit(6, "feet"),
  31993. weight: math.unit(300, "lb"),
  31994. name: "Front",
  31995. image: {
  31996. source: "./media/characters/tanio/front.svg",
  31997. extra: 711/673,
  31998. bottom: 25/736
  31999. }
  32000. },
  32001. },
  32002. [
  32003. {
  32004. name: "Normal",
  32005. height: math.unit(6, "feet"),
  32006. default: true
  32007. },
  32008. ]
  32009. ))
  32010. characterMakers.push(() => makeCharacter(
  32011. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32012. {
  32013. front: {
  32014. height: math.unit(3, "inches"),
  32015. name: "Front",
  32016. image: {
  32017. source: "./media/characters/noboru/front.svg",
  32018. extra: 1039/932,
  32019. bottom: 18/1057
  32020. }
  32021. },
  32022. },
  32023. [
  32024. {
  32025. name: "Micro",
  32026. height: math.unit(3, "inches"),
  32027. default: true
  32028. },
  32029. ]
  32030. ))
  32031. characterMakers.push(() => makeCharacter(
  32032. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32033. {
  32034. front: {
  32035. height: math.unit(1.85, "meters"),
  32036. weight: math.unit(80, "kg"),
  32037. name: "Front",
  32038. image: {
  32039. source: "./media/characters/daniel-barrett/front.svg",
  32040. extra: 355/337,
  32041. bottom: 9/364
  32042. }
  32043. },
  32044. },
  32045. [
  32046. {
  32047. name: "Pico",
  32048. height: math.unit(0.0433, "mm")
  32049. },
  32050. {
  32051. name: "Nano",
  32052. height: math.unit(1.5, "mm")
  32053. },
  32054. {
  32055. name: "Micro",
  32056. height: math.unit(5.3, "cm"),
  32057. default: true
  32058. },
  32059. {
  32060. name: "Normal",
  32061. height: math.unit(1.85, "meters")
  32062. },
  32063. {
  32064. name: "Macro",
  32065. height: math.unit(64.7, "meters")
  32066. },
  32067. {
  32068. name: "Megamacro",
  32069. height: math.unit(2.26, "km")
  32070. },
  32071. {
  32072. name: "Gigamacro",
  32073. height: math.unit(79, "km")
  32074. },
  32075. {
  32076. name: "Teramacro",
  32077. height: math.unit(2765, "km")
  32078. },
  32079. {
  32080. name: "Petamacro",
  32081. height: math.unit(96678, "km")
  32082. },
  32083. ]
  32084. ))
  32085. characterMakers.push(() => makeCharacter(
  32086. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32087. {
  32088. front: {
  32089. height: math.unit(30, "meters"),
  32090. weight: math.unit(400, "tons"),
  32091. name: "Front",
  32092. image: {
  32093. source: "./media/characters/zeel/front.svg",
  32094. extra: 2599/2599,
  32095. bottom: 226/2825
  32096. }
  32097. },
  32098. },
  32099. [
  32100. {
  32101. name: "Macro",
  32102. height: math.unit(30, "meters"),
  32103. default: true
  32104. },
  32105. ]
  32106. ))
  32107. characterMakers.push(() => makeCharacter(
  32108. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32109. {
  32110. front: {
  32111. height: math.unit(6 + 7/12, "feet"),
  32112. weight: math.unit(210, "lb"),
  32113. name: "Front",
  32114. image: {
  32115. source: "./media/characters/tarn/front.svg",
  32116. extra: 3517/3220,
  32117. bottom: 91/3608
  32118. }
  32119. },
  32120. back: {
  32121. height: math.unit(6 + 7/12, "feet"),
  32122. weight: math.unit(210, "lb"),
  32123. name: "Back",
  32124. image: {
  32125. source: "./media/characters/tarn/back.svg",
  32126. extra: 3566/3241,
  32127. bottom: 34/3600
  32128. }
  32129. },
  32130. dick: {
  32131. height: math.unit(1.65, "feet"),
  32132. name: "Dick",
  32133. image: {
  32134. source: "./media/characters/tarn/dick.svg"
  32135. }
  32136. },
  32137. paw: {
  32138. height: math.unit(1.80, "feet"),
  32139. name: "Paw",
  32140. image: {
  32141. source: "./media/characters/tarn/paw.svg"
  32142. }
  32143. },
  32144. tongue: {
  32145. height: math.unit(0.97, "feet"),
  32146. name: "Tongue",
  32147. image: {
  32148. source: "./media/characters/tarn/tongue.svg"
  32149. }
  32150. },
  32151. },
  32152. [
  32153. {
  32154. name: "Micro",
  32155. height: math.unit(4, "inches")
  32156. },
  32157. {
  32158. name: "Normal",
  32159. height: math.unit(6 + 7/12, "feet"),
  32160. default: true
  32161. },
  32162. {
  32163. name: "Macro",
  32164. height: math.unit(300, "feet")
  32165. },
  32166. ]
  32167. ))
  32168. characterMakers.push(() => makeCharacter(
  32169. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32170. {
  32171. front: {
  32172. height: math.unit(5 + 7/12, "feet"),
  32173. weight: math.unit(80, "kg"),
  32174. name: "Front",
  32175. image: {
  32176. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32177. extra: 3023/2865,
  32178. bottom: 33/3056
  32179. }
  32180. },
  32181. back: {
  32182. height: math.unit(5 + 7/12, "feet"),
  32183. weight: math.unit(80, "kg"),
  32184. name: "Back",
  32185. image: {
  32186. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32187. extra: 3020/2886,
  32188. bottom: 30/3050
  32189. }
  32190. },
  32191. dick: {
  32192. height: math.unit(0.98, "feet"),
  32193. name: "Dick",
  32194. image: {
  32195. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32196. }
  32197. },
  32198. anatomy: {
  32199. height: math.unit(2.86, "feet"),
  32200. name: "Anatomy",
  32201. image: {
  32202. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32203. }
  32204. },
  32205. },
  32206. [
  32207. {
  32208. name: "Really Small",
  32209. height: math.unit(2, "inches")
  32210. },
  32211. {
  32212. name: "Micro",
  32213. height: math.unit(5.583, "inches")
  32214. },
  32215. {
  32216. name: "Normal",
  32217. height: math.unit(5 + 7/12, "feet"),
  32218. default: true
  32219. },
  32220. {
  32221. name: "Macro",
  32222. height: math.unit(67, "feet")
  32223. },
  32224. {
  32225. name: "Megamacro",
  32226. height: math.unit(134, "feet")
  32227. },
  32228. ]
  32229. ))
  32230. characterMakers.push(() => makeCharacter(
  32231. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32232. {
  32233. front: {
  32234. height: math.unit(9, "feet"),
  32235. weight: math.unit(120, "lb"),
  32236. name: "Front",
  32237. image: {
  32238. source: "./media/characters/sally/front.svg",
  32239. extra: 1506/1349,
  32240. bottom: 66/1572
  32241. }
  32242. },
  32243. },
  32244. [
  32245. {
  32246. name: "Normal",
  32247. height: math.unit(9, "feet"),
  32248. default: true
  32249. },
  32250. ]
  32251. ))
  32252. characterMakers.push(() => makeCharacter(
  32253. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32254. {
  32255. front: {
  32256. height: math.unit(8, "feet"),
  32257. weight: math.unit(900, "lb"),
  32258. name: "Front",
  32259. image: {
  32260. source: "./media/characters/owen/front.svg",
  32261. extra: 1761/1657,
  32262. bottom: 74/1835
  32263. }
  32264. },
  32265. side: {
  32266. height: math.unit(8, "feet"),
  32267. weight: math.unit(900, "lb"),
  32268. name: "Side",
  32269. image: {
  32270. source: "./media/characters/owen/side.svg",
  32271. extra: 1797/1734,
  32272. bottom: 30/1827
  32273. }
  32274. },
  32275. back: {
  32276. height: math.unit(8, "feet"),
  32277. weight: math.unit(900, "lb"),
  32278. name: "Back",
  32279. image: {
  32280. source: "./media/characters/owen/back.svg",
  32281. extra: 1796/1706,
  32282. bottom: 59/1855
  32283. }
  32284. },
  32285. maw: {
  32286. height: math.unit(1.76, "feet"),
  32287. name: "Maw",
  32288. image: {
  32289. source: "./media/characters/owen/maw.svg"
  32290. }
  32291. },
  32292. },
  32293. [
  32294. {
  32295. name: "Normal",
  32296. height: math.unit(8, "feet"),
  32297. default: true
  32298. },
  32299. ]
  32300. ))
  32301. characterMakers.push(() => makeCharacter(
  32302. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32303. {
  32304. front: {
  32305. height: math.unit(4, "feet"),
  32306. weight: math.unit(400, "lb"),
  32307. name: "Front",
  32308. image: {
  32309. source: "./media/characters/ryth/front.svg",
  32310. extra: 1920/1748,
  32311. bottom: 42/1962
  32312. }
  32313. },
  32314. back: {
  32315. height: math.unit(4, "feet"),
  32316. weight: math.unit(400, "lb"),
  32317. name: "Back",
  32318. image: {
  32319. source: "./media/characters/ryth/back.svg",
  32320. extra: 1897/1690,
  32321. bottom: 89/1986
  32322. }
  32323. },
  32324. mouth: {
  32325. height: math.unit(1.39, "feet"),
  32326. name: "Mouth",
  32327. image: {
  32328. source: "./media/characters/ryth/mouth.svg"
  32329. }
  32330. },
  32331. tailmaw: {
  32332. height: math.unit(1.23, "feet"),
  32333. name: "Tailmaw",
  32334. image: {
  32335. source: "./media/characters/ryth/tailmaw.svg"
  32336. }
  32337. },
  32338. goia: {
  32339. height: math.unit(4, "meters"),
  32340. weight: math.unit(10800, "lb"),
  32341. name: "Goia",
  32342. image: {
  32343. source: "./media/characters/ryth/goia.svg",
  32344. extra: 745/640,
  32345. bottom: 107/852
  32346. }
  32347. },
  32348. goiaFront: {
  32349. height: math.unit(4, "meters"),
  32350. weight: math.unit(10800, "lb"),
  32351. name: "Goia (Front)",
  32352. image: {
  32353. source: "./media/characters/ryth/goia-front.svg",
  32354. extra: 750/586,
  32355. bottom: 114/864
  32356. }
  32357. },
  32358. goiaMaw: {
  32359. height: math.unit(5.55, "feet"),
  32360. name: "Goia Maw",
  32361. image: {
  32362. source: "./media/characters/ryth/goia-maw.svg"
  32363. }
  32364. },
  32365. goiaForepaw: {
  32366. height: math.unit(3.5, "feet"),
  32367. name: "Goia Forepaw",
  32368. image: {
  32369. source: "./media/characters/ryth/goia-forepaw.svg"
  32370. }
  32371. },
  32372. goiaHindpaw: {
  32373. height: math.unit(5.55, "feet"),
  32374. name: "Goia Hindpaw",
  32375. image: {
  32376. source: "./media/characters/ryth/goia-hindpaw.svg"
  32377. }
  32378. },
  32379. },
  32380. [
  32381. {
  32382. name: "Normal",
  32383. height: math.unit(4, "feet"),
  32384. default: true
  32385. },
  32386. ]
  32387. ))
  32388. characterMakers.push(() => makeCharacter(
  32389. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32390. {
  32391. front: {
  32392. height: math.unit(7, "feet"),
  32393. weight: math.unit(180, "lb"),
  32394. name: "Front",
  32395. image: {
  32396. source: "./media/characters/necrolance/front.svg",
  32397. extra: 1062/947,
  32398. bottom: 41/1103
  32399. }
  32400. },
  32401. back: {
  32402. height: math.unit(7, "feet"),
  32403. weight: math.unit(180, "lb"),
  32404. name: "Back",
  32405. image: {
  32406. source: "./media/characters/necrolance/back.svg",
  32407. extra: 1045/984,
  32408. bottom: 14/1059
  32409. }
  32410. },
  32411. wing: {
  32412. height: math.unit(2.67, "feet"),
  32413. name: "Wing",
  32414. image: {
  32415. source: "./media/characters/necrolance/wing.svg"
  32416. }
  32417. },
  32418. },
  32419. [
  32420. {
  32421. name: "Normal",
  32422. height: math.unit(7, "feet"),
  32423. default: true
  32424. },
  32425. ]
  32426. ))
  32427. characterMakers.push(() => makeCharacter(
  32428. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32429. {
  32430. front: {
  32431. height: math.unit(76, "meters"),
  32432. weight: math.unit(30000, "tons"),
  32433. name: "Front",
  32434. image: {
  32435. source: "./media/characters/tyler/front.svg",
  32436. extra: 1640/1640,
  32437. bottom: 114/1754
  32438. }
  32439. },
  32440. },
  32441. [
  32442. {
  32443. name: "Macro",
  32444. height: math.unit(76, "meters"),
  32445. default: true
  32446. },
  32447. ]
  32448. ))
  32449. characterMakers.push(() => makeCharacter(
  32450. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32451. {
  32452. front: {
  32453. height: math.unit(4 + 11/12, "feet"),
  32454. weight: math.unit(132, "lb"),
  32455. name: "Front",
  32456. image: {
  32457. source: "./media/characters/icey/front.svg",
  32458. extra: 2750/2550,
  32459. bottom: 33/2783
  32460. }
  32461. },
  32462. back: {
  32463. height: math.unit(4 + 11/12, "feet"),
  32464. weight: math.unit(132, "lb"),
  32465. name: "Back",
  32466. image: {
  32467. source: "./media/characters/icey/back.svg",
  32468. extra: 2624/2481,
  32469. bottom: 35/2659
  32470. }
  32471. },
  32472. },
  32473. [
  32474. {
  32475. name: "Normal",
  32476. height: math.unit(4 + 11/12, "feet"),
  32477. default: true
  32478. },
  32479. ]
  32480. ))
  32481. characterMakers.push(() => makeCharacter(
  32482. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32483. {
  32484. front: {
  32485. height: math.unit(100, "feet"),
  32486. weight: math.unit(0, "lb"),
  32487. name: "Front",
  32488. image: {
  32489. source: "./media/characters/smile/front.svg",
  32490. extra: 2983/2912,
  32491. bottom: 162/3145
  32492. }
  32493. },
  32494. back: {
  32495. height: math.unit(100, "feet"),
  32496. weight: math.unit(0, "lb"),
  32497. name: "Back",
  32498. image: {
  32499. source: "./media/characters/smile/back.svg",
  32500. extra: 3143/3031,
  32501. bottom: 91/3234
  32502. }
  32503. },
  32504. head: {
  32505. height: math.unit(26.3, "feet"),
  32506. weight: math.unit(0, "lb"),
  32507. name: "Head",
  32508. image: {
  32509. source: "./media/characters/smile/head.svg"
  32510. }
  32511. },
  32512. collar: {
  32513. height: math.unit(5.3, "feet"),
  32514. weight: math.unit(0, "lb"),
  32515. name: "Collar",
  32516. image: {
  32517. source: "./media/characters/smile/collar.svg"
  32518. }
  32519. },
  32520. },
  32521. [
  32522. {
  32523. name: "Macro",
  32524. height: math.unit(100, "feet"),
  32525. default: true
  32526. },
  32527. ]
  32528. ))
  32529. characterMakers.push(() => makeCharacter(
  32530. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32531. {
  32532. dragon: {
  32533. height: math.unit(26, "feet"),
  32534. weight: math.unit(36, "tons"),
  32535. name: "Dragon",
  32536. image: {
  32537. source: "./media/characters/arimphae/dragon.svg",
  32538. extra: 1574/983,
  32539. bottom: 357/1931
  32540. }
  32541. },
  32542. drake: {
  32543. height: math.unit(9, "feet"),
  32544. weight: math.unit(1.5, "tons"),
  32545. name: "Drake",
  32546. image: {
  32547. source: "./media/characters/arimphae/drake.svg",
  32548. extra: 1120/925,
  32549. bottom: 435/1555
  32550. }
  32551. },
  32552. },
  32553. [
  32554. {
  32555. name: "Small",
  32556. height: math.unit(26*5/9, "feet")
  32557. },
  32558. {
  32559. name: "Normal",
  32560. height: math.unit(26, "feet"),
  32561. default: true
  32562. },
  32563. ]
  32564. ))
  32565. characterMakers.push(() => makeCharacter(
  32566. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32567. {
  32568. front: {
  32569. height: math.unit(8 + 9/12, "feet"),
  32570. name: "Front",
  32571. image: {
  32572. source: "./media/characters/xander/front.svg",
  32573. extra: 1237/974,
  32574. bottom: 94/1331
  32575. }
  32576. },
  32577. },
  32578. [
  32579. {
  32580. name: "Normal",
  32581. height: math.unit(8 + 9/12, "feet"),
  32582. default: true
  32583. },
  32584. {
  32585. name: "Gaze Grabber",
  32586. height: math.unit(13 + 8/12, "feet")
  32587. },
  32588. {
  32589. name: "Jaw Dropper",
  32590. height: math.unit(27, "feet")
  32591. },
  32592. {
  32593. name: "Show Stopper",
  32594. height: math.unit(136, "feet")
  32595. },
  32596. {
  32597. name: "Superstar",
  32598. height: math.unit(1.9e6, "miles")
  32599. },
  32600. ]
  32601. ))
  32602. characterMakers.push(() => makeCharacter(
  32603. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32604. {
  32605. side: {
  32606. height: math.unit(2100, "feet"),
  32607. name: "Side",
  32608. image: {
  32609. source: "./media/characters/osiris/side.svg",
  32610. extra: 1105/939,
  32611. bottom: 167/1272
  32612. }
  32613. },
  32614. },
  32615. [
  32616. {
  32617. name: "Macro",
  32618. height: math.unit(2100, "feet"),
  32619. default: true
  32620. },
  32621. ]
  32622. ))
  32623. characterMakers.push(() => makeCharacter(
  32624. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32625. {
  32626. front: {
  32627. height: math.unit(6 + 8/12, "feet"),
  32628. weight: math.unit(225, "lb"),
  32629. name: "Front",
  32630. image: {
  32631. source: "./media/characters/rhys-londe/front.svg",
  32632. extra: 2258/2141,
  32633. bottom: 188/2446
  32634. }
  32635. },
  32636. back: {
  32637. height: math.unit(6 + 8/12, "feet"),
  32638. weight: math.unit(225, "lb"),
  32639. name: "Back",
  32640. image: {
  32641. source: "./media/characters/rhys-londe/back.svg",
  32642. extra: 2237/2137,
  32643. bottom: 63/2300
  32644. }
  32645. },
  32646. frontNsfw: {
  32647. height: math.unit(6 + 8/12, "feet"),
  32648. weight: math.unit(225, "lb"),
  32649. name: "Front (NSFW)",
  32650. image: {
  32651. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32652. extra: 2258/2141,
  32653. bottom: 188/2446
  32654. }
  32655. },
  32656. backNsfw: {
  32657. height: math.unit(6 + 8/12, "feet"),
  32658. weight: math.unit(225, "lb"),
  32659. name: "Back (NSFW)",
  32660. image: {
  32661. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32662. extra: 2237/2137,
  32663. bottom: 63/2300
  32664. }
  32665. },
  32666. dick: {
  32667. height: math.unit(30, "inches"),
  32668. name: "Dick",
  32669. image: {
  32670. source: "./media/characters/rhys-londe/dick.svg"
  32671. }
  32672. },
  32673. maw: {
  32674. height: math.unit(1.6, "feet"),
  32675. name: "Maw",
  32676. image: {
  32677. source: "./media/characters/rhys-londe/maw.svg"
  32678. }
  32679. },
  32680. },
  32681. [
  32682. {
  32683. name: "Normal",
  32684. height: math.unit(6 + 8/12, "feet"),
  32685. default: true
  32686. },
  32687. ]
  32688. ))
  32689. characterMakers.push(() => makeCharacter(
  32690. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32691. {
  32692. front: {
  32693. height: math.unit(3 + 10/12, "feet"),
  32694. weight: math.unit(90, "lb"),
  32695. name: "Front",
  32696. image: {
  32697. source: "./media/characters/taivas-ensim/front.svg",
  32698. extra: 1327/1216,
  32699. bottom: 96/1423
  32700. }
  32701. },
  32702. back: {
  32703. height: math.unit(3 + 10/12, "feet"),
  32704. weight: math.unit(90, "lb"),
  32705. name: "Back",
  32706. image: {
  32707. source: "./media/characters/taivas-ensim/back.svg",
  32708. extra: 1355/1247,
  32709. bottom: 11/1366
  32710. }
  32711. },
  32712. frontNsfw: {
  32713. height: math.unit(3 + 10/12, "feet"),
  32714. weight: math.unit(90, "lb"),
  32715. name: "Front (NSFW)",
  32716. image: {
  32717. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32718. extra: 1327/1216,
  32719. bottom: 96/1423
  32720. }
  32721. },
  32722. backNsfw: {
  32723. height: math.unit(3 + 10/12, "feet"),
  32724. weight: math.unit(90, "lb"),
  32725. name: "Back (NSFW)",
  32726. image: {
  32727. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32728. extra: 1355/1247,
  32729. bottom: 11/1366
  32730. }
  32731. },
  32732. },
  32733. [
  32734. {
  32735. name: "Normal",
  32736. height: math.unit(3 + 10/12, "feet"),
  32737. default: true
  32738. },
  32739. ]
  32740. ))
  32741. characterMakers.push(() => makeCharacter(
  32742. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32743. {
  32744. front: {
  32745. height: math.unit(9 + 6/12, "feet"),
  32746. weight: math.unit(940, "lb"),
  32747. name: "Front",
  32748. image: {
  32749. source: "./media/characters/byliss/front.svg",
  32750. extra: 1327/1290,
  32751. bottom: 82/1409
  32752. }
  32753. },
  32754. back: {
  32755. height: math.unit(9 + 6/12, "feet"),
  32756. weight: math.unit(940, "lb"),
  32757. name: "Back",
  32758. image: {
  32759. source: "./media/characters/byliss/back.svg",
  32760. extra: 1376/1349,
  32761. bottom: 9/1385
  32762. }
  32763. },
  32764. frontNsfw: {
  32765. height: math.unit(9 + 6/12, "feet"),
  32766. weight: math.unit(940, "lb"),
  32767. name: "Front (NSFW)",
  32768. image: {
  32769. source: "./media/characters/byliss/front-nsfw.svg",
  32770. extra: 1327/1290,
  32771. bottom: 82/1409
  32772. }
  32773. },
  32774. backNsfw: {
  32775. height: math.unit(9 + 6/12, "feet"),
  32776. weight: math.unit(940, "lb"),
  32777. name: "Back (NSFW)",
  32778. image: {
  32779. source: "./media/characters/byliss/back-nsfw.svg",
  32780. extra: 1376/1349,
  32781. bottom: 9/1385
  32782. }
  32783. },
  32784. },
  32785. [
  32786. {
  32787. name: "Normal",
  32788. height: math.unit(9 + 6/12, "feet"),
  32789. default: true
  32790. },
  32791. ]
  32792. ))
  32793. characterMakers.push(() => makeCharacter(
  32794. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32795. {
  32796. front: {
  32797. height: math.unit(5 + 2/12, "feet"),
  32798. weight: math.unit(200, "lb"),
  32799. name: "Front",
  32800. image: {
  32801. source: "./media/characters/noraly/front.svg",
  32802. extra: 4985/4773,
  32803. bottom: 150/5135
  32804. }
  32805. },
  32806. full: {
  32807. height: math.unit(5 + 2/12, "feet"),
  32808. weight: math.unit(164, "lb"),
  32809. name: "Full",
  32810. image: {
  32811. source: "./media/characters/noraly/full.svg",
  32812. extra: 1114/1059,
  32813. bottom: 35/1149
  32814. }
  32815. },
  32816. fuller: {
  32817. height: math.unit(5 + 2/12, "feet"),
  32818. weight: math.unit(230, "lb"),
  32819. name: "Fuller",
  32820. image: {
  32821. source: "./media/characters/noraly/fuller.svg",
  32822. extra: 1114/1059,
  32823. bottom: 35/1149
  32824. }
  32825. },
  32826. fullest: {
  32827. height: math.unit(5 + 2/12, "feet"),
  32828. weight: math.unit(300, "lb"),
  32829. name: "Fullest",
  32830. image: {
  32831. source: "./media/characters/noraly/fullest.svg",
  32832. extra: 1114/1059,
  32833. bottom: 35/1149
  32834. }
  32835. },
  32836. },
  32837. [
  32838. {
  32839. name: "Normal",
  32840. height: math.unit(5 + 2/12, "feet"),
  32841. default: true
  32842. },
  32843. ]
  32844. ))
  32845. characterMakers.push(() => makeCharacter(
  32846. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32847. {
  32848. front: {
  32849. height: math.unit(5 + 2/12, "feet"),
  32850. weight: math.unit(210, "lb"),
  32851. name: "Front",
  32852. image: {
  32853. source: "./media/characters/pera/front.svg",
  32854. extra: 1560/1531,
  32855. bottom: 165/1725
  32856. }
  32857. },
  32858. back: {
  32859. height: math.unit(5 + 2/12, "feet"),
  32860. weight: math.unit(210, "lb"),
  32861. name: "Back",
  32862. image: {
  32863. source: "./media/characters/pera/back.svg",
  32864. extra: 1523/1493,
  32865. bottom: 152/1675
  32866. }
  32867. },
  32868. dick: {
  32869. height: math.unit(2.4, "feet"),
  32870. name: "Dick",
  32871. image: {
  32872. source: "./media/characters/pera/dick.svg"
  32873. }
  32874. },
  32875. },
  32876. [
  32877. {
  32878. name: "Normal",
  32879. height: math.unit(5 + 2/12, "feet"),
  32880. default: true
  32881. },
  32882. ]
  32883. ))
  32884. characterMakers.push(() => makeCharacter(
  32885. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32886. {
  32887. front: {
  32888. height: math.unit(12, "feet"),
  32889. weight: math.unit(3200, "lb"),
  32890. name: "Front",
  32891. image: {
  32892. source: "./media/characters/julian/front.svg",
  32893. extra: 2962/2701,
  32894. bottom: 184/3146
  32895. }
  32896. },
  32897. maw: {
  32898. height: math.unit(5.35, "feet"),
  32899. name: "Maw",
  32900. image: {
  32901. source: "./media/characters/julian/maw.svg"
  32902. }
  32903. },
  32904. paw: {
  32905. height: math.unit(3.07, "feet"),
  32906. name: "Paw",
  32907. image: {
  32908. source: "./media/characters/julian/paw.svg"
  32909. }
  32910. },
  32911. },
  32912. [
  32913. {
  32914. name: "Default",
  32915. height: math.unit(12, "feet"),
  32916. default: true
  32917. },
  32918. {
  32919. name: "Big",
  32920. height: math.unit(50, "feet")
  32921. },
  32922. {
  32923. name: "Really Big",
  32924. height: math.unit(1, "mile")
  32925. },
  32926. {
  32927. name: "Extremely Big",
  32928. height: math.unit(100, "miles")
  32929. },
  32930. {
  32931. name: "Planet Hugger",
  32932. height: math.unit(200, "megameters")
  32933. },
  32934. {
  32935. name: "Unreasonably Big",
  32936. height: math.unit(1e300, "meters")
  32937. },
  32938. ]
  32939. ))
  32940. characterMakers.push(() => makeCharacter(
  32941. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32942. {
  32943. solgooleo: {
  32944. height: math.unit(4, "meters"),
  32945. weight: math.unit(6000*1.5, "kg"),
  32946. volume: math.unit(6000, "liters"),
  32947. name: "Solgooleo",
  32948. image: {
  32949. source: "./media/characters/pi/solgooleo.svg",
  32950. extra: 388/331,
  32951. bottom: 29/417
  32952. }
  32953. },
  32954. },
  32955. [
  32956. {
  32957. name: "Normal",
  32958. height: math.unit(4, "meters"),
  32959. default: true
  32960. },
  32961. ]
  32962. ))
  32963. characterMakers.push(() => makeCharacter(
  32964. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32965. {
  32966. front: {
  32967. height: math.unit(8, "feet"),
  32968. weight: math.unit(4, "tons"),
  32969. name: "Front",
  32970. image: {
  32971. source: "./media/characters/shaun/front.svg",
  32972. extra: 503/495,
  32973. bottom: 20/523
  32974. }
  32975. },
  32976. back: {
  32977. height: math.unit(8, "feet"),
  32978. weight: math.unit(4, "tons"),
  32979. name: "Back",
  32980. image: {
  32981. source: "./media/characters/shaun/back.svg",
  32982. extra: 487/480,
  32983. bottom: 20/507
  32984. }
  32985. },
  32986. },
  32987. [
  32988. {
  32989. name: "Lorg",
  32990. height: math.unit(8, "feet"),
  32991. default: true
  32992. },
  32993. ]
  32994. ))
  32995. characterMakers.push(() => makeCharacter(
  32996. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32997. {
  32998. frontAnthro: {
  32999. height: math.unit(7, "feet"),
  33000. name: "Front",
  33001. image: {
  33002. source: "./media/characters/sini/front-anthro.svg",
  33003. extra: 726/678,
  33004. bottom: 35/761
  33005. },
  33006. form: "anthro",
  33007. default: true
  33008. },
  33009. backAnthro: {
  33010. height: math.unit(7, "feet"),
  33011. name: "Back",
  33012. image: {
  33013. source: "./media/characters/sini/back-anthro.svg",
  33014. extra: 743/701,
  33015. bottom: 12/755
  33016. },
  33017. form: "anthro",
  33018. },
  33019. frontAnthroNsfw: {
  33020. height: math.unit(7, "feet"),
  33021. name: "Front (NSFW)",
  33022. image: {
  33023. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33024. extra: 726/678,
  33025. bottom: 35/761
  33026. },
  33027. form: "anthro"
  33028. },
  33029. backAnthroNsfw: {
  33030. height: math.unit(7, "feet"),
  33031. name: "Back (NSFW)",
  33032. image: {
  33033. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33034. extra: 743/701,
  33035. bottom: 12/755
  33036. },
  33037. form: "anthro",
  33038. },
  33039. mawAnthro: {
  33040. height: math.unit(2.14, "feet"),
  33041. name: "Maw",
  33042. image: {
  33043. source: "./media/characters/sini/maw-anthro.svg"
  33044. },
  33045. form: "anthro"
  33046. },
  33047. dick: {
  33048. height: math.unit(1.45, "feet"),
  33049. name: "Dick",
  33050. image: {
  33051. source: "./media/characters/sini/dick-anthro.svg"
  33052. },
  33053. form: "anthro"
  33054. },
  33055. feral: {
  33056. height: math.unit(16, "feet"),
  33057. name: "Feral",
  33058. image: {
  33059. source: "./media/characters/sini/feral.svg",
  33060. extra: 814/605,
  33061. bottom: 11/825
  33062. },
  33063. form: "feral",
  33064. default: true
  33065. },
  33066. feralNsfw: {
  33067. height: math.unit(16, "feet"),
  33068. name: "Feral (NSFW)",
  33069. image: {
  33070. source: "./media/characters/sini/feral-nsfw.svg",
  33071. extra: 814/605,
  33072. bottom: 11/825
  33073. },
  33074. form: "feral"
  33075. },
  33076. mawFeral: {
  33077. height: math.unit(5.66, "feet"),
  33078. name: "Maw",
  33079. image: {
  33080. source: "./media/characters/sini/maw-feral.svg"
  33081. },
  33082. form: "feral",
  33083. },
  33084. pawFeral: {
  33085. height: math.unit(5.17, "feet"),
  33086. name: "Paw",
  33087. image: {
  33088. source: "./media/characters/sini/paw-feral.svg"
  33089. },
  33090. form: "feral",
  33091. },
  33092. rumpFeral: {
  33093. height: math.unit(13.11, "feet"),
  33094. name: "Rump",
  33095. image: {
  33096. source: "./media/characters/sini/rump-feral.svg"
  33097. },
  33098. form: "feral",
  33099. },
  33100. dickFeral: {
  33101. height: math.unit(1, "feet"),
  33102. name: "Dick",
  33103. image: {
  33104. source: "./media/characters/sini/dick-feral.svg"
  33105. },
  33106. form: "feral",
  33107. },
  33108. eyeFeral: {
  33109. height: math.unit(1.23, "feet"),
  33110. name: "Eye",
  33111. image: {
  33112. source: "./media/characters/sini/eye-feral.svg"
  33113. },
  33114. form: "feral",
  33115. },
  33116. },
  33117. [
  33118. {
  33119. name: "Normal",
  33120. height: math.unit(7, "feet"),
  33121. default: true,
  33122. form: "anthro"
  33123. },
  33124. {
  33125. name: "Normal",
  33126. height: math.unit(16, "feet"),
  33127. default: true,
  33128. form: "feral"
  33129. },
  33130. ],
  33131. {
  33132. "anthro": {
  33133. name: "Anthro",
  33134. default: true
  33135. },
  33136. "feral": {
  33137. name: "Feral",
  33138. }
  33139. }
  33140. ))
  33141. characterMakers.push(() => makeCharacter(
  33142. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33143. {
  33144. side: {
  33145. height: math.unit(13, "meters"),
  33146. weight: math.unit(9072, "kg"),
  33147. name: "Side",
  33148. image: {
  33149. source: "./media/characters/raylldo/side.svg",
  33150. extra: 403/344,
  33151. bottom: 42/445
  33152. }
  33153. },
  33154. leaping: {
  33155. height: math.unit(12.3, "meters"),
  33156. weight: math.unit(9072, "kg"),
  33157. name: "Leaping",
  33158. image: {
  33159. source: "./media/characters/raylldo/leaping.svg",
  33160. extra: 470/249,
  33161. bottom: 13/483
  33162. }
  33163. },
  33164. flying: {
  33165. height: math.unit(18, "meters"),
  33166. weight: math.unit(9072, "kg"),
  33167. name: "Flying",
  33168. image: {
  33169. source: "./media/characters/raylldo/flying.svg"
  33170. }
  33171. },
  33172. head: {
  33173. height: math.unit(5.85, "meters"),
  33174. name: "Head",
  33175. image: {
  33176. source: "./media/characters/raylldo/head.svg"
  33177. }
  33178. },
  33179. maw: {
  33180. height: math.unit(5.32, "meters"),
  33181. name: "Maw",
  33182. image: {
  33183. source: "./media/characters/raylldo/maw.svg"
  33184. }
  33185. },
  33186. eye: {
  33187. height: math.unit(0.54, "meters"),
  33188. name: "Eye",
  33189. image: {
  33190. source: "./media/characters/raylldo/eye.svg"
  33191. }
  33192. },
  33193. },
  33194. [
  33195. {
  33196. name: "Normal",
  33197. height: math.unit(13, "meters"),
  33198. default: true
  33199. },
  33200. ]
  33201. ))
  33202. characterMakers.push(() => makeCharacter(
  33203. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33204. {
  33205. anthroFront: {
  33206. height: math.unit(9, "feet"),
  33207. weight: math.unit(600, "lb"),
  33208. name: "Anthro (Front)",
  33209. image: {
  33210. source: "./media/characters/glint/anthro-front.svg",
  33211. extra: 1097/1018,
  33212. bottom: 28/1125
  33213. }
  33214. },
  33215. anthroBack: {
  33216. height: math.unit(9, "feet"),
  33217. weight: math.unit(600, "lb"),
  33218. name: "Anthro (Back)",
  33219. image: {
  33220. source: "./media/characters/glint/anthro-back.svg",
  33221. extra: 1154/997,
  33222. bottom: 36/1190
  33223. }
  33224. },
  33225. feral: {
  33226. height: math.unit(11, "feet"),
  33227. weight: math.unit(50000, "lb"),
  33228. name: "Feral",
  33229. image: {
  33230. source: "./media/characters/glint/feral.svg",
  33231. extra: 3035/1585,
  33232. bottom: 1169/4204
  33233. }
  33234. },
  33235. dickAnthro: {
  33236. height: math.unit(0.7, "meters"),
  33237. name: "Dick (Anthro)",
  33238. image: {
  33239. source: "./media/characters/glint/dick-anthro.svg"
  33240. }
  33241. },
  33242. dickFeral: {
  33243. height: math.unit(2.65, "meters"),
  33244. name: "Dick (Feral)",
  33245. image: {
  33246. source: "./media/characters/glint/dick-feral.svg"
  33247. }
  33248. },
  33249. slitHidden: {
  33250. height: math.unit(5.85, "meters"),
  33251. name: "Slit (Hidden)",
  33252. image: {
  33253. source: "./media/characters/glint/slit-hidden.svg"
  33254. }
  33255. },
  33256. slitErect: {
  33257. height: math.unit(5.85, "meters"),
  33258. name: "Slit (Erect)",
  33259. image: {
  33260. source: "./media/characters/glint/slit-erect.svg"
  33261. }
  33262. },
  33263. mawAnthro: {
  33264. height: math.unit(0.63, "meters"),
  33265. name: "Maw (Anthro)",
  33266. image: {
  33267. source: "./media/characters/glint/maw.svg"
  33268. }
  33269. },
  33270. mawFeral: {
  33271. height: math.unit(2.89, "meters"),
  33272. name: "Maw (Feral)",
  33273. image: {
  33274. source: "./media/characters/glint/maw.svg"
  33275. }
  33276. },
  33277. },
  33278. [
  33279. {
  33280. name: "Normal",
  33281. height: math.unit(9, "feet"),
  33282. default: true
  33283. },
  33284. ]
  33285. ))
  33286. characterMakers.push(() => makeCharacter(
  33287. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33288. {
  33289. side: {
  33290. height: math.unit(15, "feet"),
  33291. weight: math.unit(5000, "kg"),
  33292. name: "Side",
  33293. image: {
  33294. source: "./media/characters/kairne/side.svg",
  33295. extra: 979/811,
  33296. bottom: 13/992
  33297. }
  33298. },
  33299. front: {
  33300. height: math.unit(15, "feet"),
  33301. weight: math.unit(5000, "kg"),
  33302. name: "Front",
  33303. image: {
  33304. source: "./media/characters/kairne/front.svg",
  33305. extra: 908/814,
  33306. bottom: 26/934
  33307. }
  33308. },
  33309. sideNsfw: {
  33310. height: math.unit(15, "feet"),
  33311. weight: math.unit(5000, "kg"),
  33312. name: "Side (NSFW)",
  33313. image: {
  33314. source: "./media/characters/kairne/side-nsfw.svg",
  33315. extra: 979/811,
  33316. bottom: 13/992
  33317. }
  33318. },
  33319. frontNsfw: {
  33320. height: math.unit(15, "feet"),
  33321. weight: math.unit(5000, "kg"),
  33322. name: "Front (NSFW)",
  33323. image: {
  33324. source: "./media/characters/kairne/front-nsfw.svg",
  33325. extra: 908/814,
  33326. bottom: 26/934
  33327. }
  33328. },
  33329. dickCaged: {
  33330. height: math.unit(0.65, "meters"),
  33331. name: "Dick-caged",
  33332. image: {
  33333. source: "./media/characters/kairne/dick-caged.svg"
  33334. }
  33335. },
  33336. dick: {
  33337. height: math.unit(0.79, "meters"),
  33338. name: "Dick",
  33339. image: {
  33340. source: "./media/characters/kairne/dick.svg"
  33341. }
  33342. },
  33343. genitals: {
  33344. height: math.unit(1.29, "meters"),
  33345. name: "Genitals",
  33346. image: {
  33347. source: "./media/characters/kairne/genitals.svg"
  33348. }
  33349. },
  33350. maw: {
  33351. height: math.unit(1.73, "meters"),
  33352. name: "Maw",
  33353. image: {
  33354. source: "./media/characters/kairne/maw.svg"
  33355. }
  33356. },
  33357. },
  33358. [
  33359. {
  33360. name: "Normal",
  33361. height: math.unit(15, "feet"),
  33362. default: true
  33363. },
  33364. ]
  33365. ))
  33366. characterMakers.push(() => makeCharacter(
  33367. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33368. {
  33369. front: {
  33370. height: math.unit(5 + 8/12, "feet"),
  33371. weight: math.unit(139, "lb"),
  33372. name: "Front",
  33373. image: {
  33374. source: "./media/characters/biscuit-jackal/front.svg",
  33375. extra: 2106/1961,
  33376. bottom: 58/2164
  33377. }
  33378. },
  33379. back: {
  33380. height: math.unit(5 + 8/12, "feet"),
  33381. weight: math.unit(139, "lb"),
  33382. name: "Back",
  33383. image: {
  33384. source: "./media/characters/biscuit-jackal/back.svg",
  33385. extra: 2132/1976,
  33386. bottom: 57/2189
  33387. }
  33388. },
  33389. werejackal: {
  33390. height: math.unit(6 + 3/12, "feet"),
  33391. weight: math.unit(188, "lb"),
  33392. name: "Werejackal",
  33393. image: {
  33394. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33395. extra: 2373/2178,
  33396. bottom: 53/2426
  33397. }
  33398. },
  33399. },
  33400. [
  33401. {
  33402. name: "Normal",
  33403. height: math.unit(5 + 8/12, "feet"),
  33404. default: true
  33405. },
  33406. ]
  33407. ))
  33408. characterMakers.push(() => makeCharacter(
  33409. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33410. {
  33411. front: {
  33412. height: math.unit(140, "cm"),
  33413. weight: math.unit(45, "kg"),
  33414. name: "Front",
  33415. image: {
  33416. source: "./media/characters/tayra-white/front.svg",
  33417. extra: 2229/2192,
  33418. bottom: 75/2304
  33419. }
  33420. },
  33421. },
  33422. [
  33423. {
  33424. name: "Normal",
  33425. height: math.unit(140, "cm"),
  33426. default: true
  33427. },
  33428. ]
  33429. ))
  33430. characterMakers.push(() => makeCharacter(
  33431. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33432. {
  33433. front: {
  33434. height: math.unit(4 + 5/12, "feet"),
  33435. name: "Front",
  33436. image: {
  33437. source: "./media/characters/scoop/front.svg",
  33438. extra: 1257/1136,
  33439. bottom: 69/1326
  33440. }
  33441. },
  33442. back: {
  33443. height: math.unit(4 + 5/12, "feet"),
  33444. name: "Back",
  33445. image: {
  33446. source: "./media/characters/scoop/back.svg",
  33447. extra: 1321/1152,
  33448. bottom: 32/1353
  33449. }
  33450. },
  33451. maw: {
  33452. height: math.unit(0.68, "feet"),
  33453. name: "Maw",
  33454. image: {
  33455. source: "./media/characters/scoop/maw.svg"
  33456. }
  33457. },
  33458. },
  33459. [
  33460. {
  33461. name: "Really Small",
  33462. height: math.unit(1, "mm")
  33463. },
  33464. {
  33465. name: "Micro",
  33466. height: math.unit(1, "inch")
  33467. },
  33468. {
  33469. name: "Normal",
  33470. height: math.unit(4 + 5/12, "feet"),
  33471. default: true
  33472. },
  33473. {
  33474. name: "Macro",
  33475. height: math.unit(200, "feet")
  33476. },
  33477. {
  33478. name: "Megamacro",
  33479. height: math.unit(3240, "feet")
  33480. },
  33481. {
  33482. name: "Teramacro",
  33483. height: math.unit(2500, "miles")
  33484. },
  33485. ]
  33486. ))
  33487. characterMakers.push(() => makeCharacter(
  33488. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33489. {
  33490. front: {
  33491. height: math.unit(15 + 7/12, "feet"),
  33492. name: "Front",
  33493. image: {
  33494. source: "./media/characters/saphinara/front.svg",
  33495. extra: 604/546,
  33496. bottom: 19/623
  33497. }
  33498. },
  33499. side: {
  33500. height: math.unit(15 + 7/12, "feet"),
  33501. name: "Side",
  33502. image: {
  33503. source: "./media/characters/saphinara/side.svg",
  33504. extra: 605/547,
  33505. bottom: 6/611
  33506. }
  33507. },
  33508. back: {
  33509. height: math.unit(15 + 7/12, "feet"),
  33510. name: "Back",
  33511. image: {
  33512. source: "./media/characters/saphinara/back.svg",
  33513. extra: 591/531,
  33514. bottom: 13/604
  33515. }
  33516. },
  33517. frontTail: {
  33518. height: math.unit(15 + 7/12, "feet"),
  33519. name: "Front (Full Tail)",
  33520. image: {
  33521. source: "./media/characters/saphinara/front-tail.svg",
  33522. extra: 748/547,
  33523. bottom: 66/814
  33524. }
  33525. },
  33526. },
  33527. [
  33528. {
  33529. name: "Normal",
  33530. height: math.unit(15 + 7/12, "feet"),
  33531. default: true
  33532. },
  33533. {
  33534. name: "Angry",
  33535. height: math.unit(30 + 6/12, "feet")
  33536. },
  33537. {
  33538. name: "Enraged",
  33539. height: math.unit(102 + 1/12, "feet")
  33540. },
  33541. ]
  33542. ))
  33543. characterMakers.push(() => makeCharacter(
  33544. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33545. {
  33546. front: {
  33547. height: math.unit(6 + 8/12, "feet"),
  33548. weight: math.unit(300, "lb"),
  33549. name: "Front",
  33550. image: {
  33551. source: "./media/characters/jrain/front.svg",
  33552. extra: 3039/2865,
  33553. bottom: 399/3438
  33554. }
  33555. },
  33556. back: {
  33557. height: math.unit(6 + 8/12, "feet"),
  33558. weight: math.unit(300, "lb"),
  33559. name: "Back",
  33560. image: {
  33561. source: "./media/characters/jrain/back.svg",
  33562. extra: 3089/2938,
  33563. bottom: 172/3261
  33564. }
  33565. },
  33566. head: {
  33567. height: math.unit(2.14, "feet"),
  33568. name: "Head",
  33569. image: {
  33570. source: "./media/characters/jrain/head.svg"
  33571. }
  33572. },
  33573. maw: {
  33574. height: math.unit(1.77, "feet"),
  33575. name: "Maw",
  33576. image: {
  33577. source: "./media/characters/jrain/maw.svg"
  33578. }
  33579. },
  33580. leftHand: {
  33581. height: math.unit(1.1, "feet"),
  33582. name: "Left Hand",
  33583. image: {
  33584. source: "./media/characters/jrain/left-hand.svg"
  33585. }
  33586. },
  33587. rightHand: {
  33588. height: math.unit(1.1, "feet"),
  33589. name: "Right Hand",
  33590. image: {
  33591. source: "./media/characters/jrain/right-hand.svg"
  33592. }
  33593. },
  33594. eye: {
  33595. height: math.unit(0.35, "feet"),
  33596. name: "Eye",
  33597. image: {
  33598. source: "./media/characters/jrain/eye.svg"
  33599. }
  33600. },
  33601. },
  33602. [
  33603. {
  33604. name: "Normal",
  33605. height: math.unit(6 + 8/12, "feet"),
  33606. default: true
  33607. },
  33608. {
  33609. name: "Casually Large",
  33610. height: math.unit(25, "feet")
  33611. },
  33612. {
  33613. name: "Giant",
  33614. height: math.unit(100, "feet")
  33615. },
  33616. {
  33617. name: "Kaiju",
  33618. height: math.unit(300, "feet")
  33619. },
  33620. ]
  33621. ))
  33622. characterMakers.push(() => makeCharacter(
  33623. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33624. {
  33625. dragon: {
  33626. height: math.unit(5, "meters"),
  33627. name: "Dragon",
  33628. image: {
  33629. source: "./media/characters/sabrina/dragon.svg",
  33630. extra: 3670 / 2365,
  33631. bottom: 333 / 4003
  33632. }
  33633. },
  33634. gryphon: {
  33635. height: math.unit(3, "meters"),
  33636. name: "Gryphon",
  33637. image: {
  33638. source: "./media/characters/sabrina/gryphon.svg",
  33639. extra: 1576 / 945,
  33640. bottom: 71 / 1647
  33641. }
  33642. },
  33643. snake: {
  33644. height: math.unit(12, "meters"),
  33645. name: "Snake",
  33646. image: {
  33647. source: "./media/characters/sabrina/snake.svg",
  33648. extra: 1758 / 1320,
  33649. bottom: 186 / 1944
  33650. }
  33651. },
  33652. collar: {
  33653. height: math.unit(1.86, "meters"),
  33654. name: "Collar",
  33655. image: {
  33656. source: "./media/characters/sabrina/collar.svg"
  33657. }
  33658. },
  33659. eye: {
  33660. height: math.unit(0.53, "meters"),
  33661. name: "Eye",
  33662. image: {
  33663. source: "./media/characters/sabrina/eye.svg"
  33664. }
  33665. },
  33666. foot: {
  33667. height: math.unit(1.86, "meters"),
  33668. name: "Foot",
  33669. image: {
  33670. source: "./media/characters/sabrina/foot.svg"
  33671. }
  33672. },
  33673. hand: {
  33674. height: math.unit(1.32, "meters"),
  33675. name: "Hand",
  33676. image: {
  33677. source: "./media/characters/sabrina/hand.svg"
  33678. }
  33679. },
  33680. head: {
  33681. height: math.unit(2.44, "meters"),
  33682. name: "Head",
  33683. image: {
  33684. source: "./media/characters/sabrina/head.svg"
  33685. }
  33686. },
  33687. headAngry: {
  33688. height: math.unit(2.44, "meters"),
  33689. name: "Head (Angry))",
  33690. image: {
  33691. source: "./media/characters/sabrina/head-angry.svg"
  33692. }
  33693. },
  33694. maw: {
  33695. height: math.unit(1.65, "meters"),
  33696. name: "Maw",
  33697. image: {
  33698. source: "./media/characters/sabrina/maw.svg"
  33699. }
  33700. },
  33701. spikes: {
  33702. height: math.unit(1.69, "meters"),
  33703. name: "Spikes",
  33704. image: {
  33705. source: "./media/characters/sabrina/spikes.svg"
  33706. }
  33707. },
  33708. stomach: {
  33709. height: math.unit(1.15, "meters"),
  33710. name: "Stomach",
  33711. image: {
  33712. source: "./media/characters/sabrina/stomach.svg"
  33713. }
  33714. },
  33715. tongue: {
  33716. height: math.unit(1.27, "meters"),
  33717. name: "Tongue",
  33718. image: {
  33719. source: "./media/characters/sabrina/tongue.svg"
  33720. }
  33721. },
  33722. wingDorsal: {
  33723. height: math.unit(4.85, "meters"),
  33724. name: "Wing (Dorsal)",
  33725. image: {
  33726. source: "./media/characters/sabrina/wing-dorsal.svg"
  33727. }
  33728. },
  33729. wingVentral: {
  33730. height: math.unit(4.85, "meters"),
  33731. name: "Wing (Ventral)",
  33732. image: {
  33733. source: "./media/characters/sabrina/wing-ventral.svg"
  33734. }
  33735. },
  33736. },
  33737. [
  33738. {
  33739. name: "Normal",
  33740. height: math.unit(5, "meters"),
  33741. default: true
  33742. },
  33743. ]
  33744. ))
  33745. characterMakers.push(() => makeCharacter(
  33746. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33747. {
  33748. frontMaid: {
  33749. height: math.unit(5 + 5/12, "feet"),
  33750. weight: math.unit(130, "lb"),
  33751. name: "Front (Maid)",
  33752. image: {
  33753. source: "./media/characters/midnight-tales/front-maid.svg",
  33754. extra: 489/454,
  33755. bottom: 61/550
  33756. }
  33757. },
  33758. frontFormal: {
  33759. height: math.unit(5 + 5/12, "feet"),
  33760. weight: math.unit(130, "lb"),
  33761. name: "Front (Formal)",
  33762. image: {
  33763. source: "./media/characters/midnight-tales/front-formal.svg",
  33764. extra: 489/454,
  33765. bottom: 61/550
  33766. }
  33767. },
  33768. back: {
  33769. height: math.unit(5 + 5/12, "feet"),
  33770. weight: math.unit(130, "lb"),
  33771. name: "Back",
  33772. image: {
  33773. source: "./media/characters/midnight-tales/back.svg",
  33774. extra: 498/456,
  33775. bottom: 33/531
  33776. }
  33777. },
  33778. frontBeast: {
  33779. height: math.unit(40, "feet"),
  33780. weight: math.unit(64000, "lb"),
  33781. name: "Front (Beast)",
  33782. image: {
  33783. source: "./media/characters/midnight-tales/front-beast.svg",
  33784. extra: 927/860,
  33785. bottom: 53/980
  33786. }
  33787. },
  33788. backBeast: {
  33789. height: math.unit(40, "feet"),
  33790. weight: math.unit(64000, "lb"),
  33791. name: "Back (Beast)",
  33792. image: {
  33793. source: "./media/characters/midnight-tales/back-beast.svg",
  33794. extra: 929/855,
  33795. bottom: 16/945
  33796. }
  33797. },
  33798. footBeast: {
  33799. height: math.unit(6.7, "feet"),
  33800. name: "Foot (Beast)",
  33801. image: {
  33802. source: "./media/characters/midnight-tales/foot-beast.svg"
  33803. }
  33804. },
  33805. headBeast: {
  33806. height: math.unit(8, "feet"),
  33807. name: "Head (Beast)",
  33808. image: {
  33809. source: "./media/characters/midnight-tales/head-beast.svg"
  33810. }
  33811. },
  33812. },
  33813. [
  33814. {
  33815. name: "Normal",
  33816. height: math.unit(5 + 5 / 12, "feet"),
  33817. default: true
  33818. },
  33819. {
  33820. name: "Macro",
  33821. height: math.unit(25, "feet")
  33822. },
  33823. ]
  33824. ))
  33825. characterMakers.push(() => makeCharacter(
  33826. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33827. {
  33828. front: {
  33829. height: math.unit(5 + 10/12, "feet"),
  33830. name: "Front",
  33831. image: {
  33832. source: "./media/characters/argon/front.svg",
  33833. extra: 2009/1935,
  33834. bottom: 118/2127
  33835. }
  33836. },
  33837. back: {
  33838. height: math.unit(5 + 10/12, "feet"),
  33839. name: "Back",
  33840. image: {
  33841. source: "./media/characters/argon/back.svg",
  33842. extra: 2047/1992,
  33843. bottom: 20/2067
  33844. }
  33845. },
  33846. frontDressed: {
  33847. height: math.unit(5 + 10/12, "feet"),
  33848. name: "Front (Dressed)",
  33849. image: {
  33850. source: "./media/characters/argon/front-dressed.svg",
  33851. extra: 2009/1935,
  33852. bottom: 118/2127
  33853. }
  33854. },
  33855. },
  33856. [
  33857. {
  33858. name: "Normal",
  33859. height: math.unit(5 + 10/12, "feet"),
  33860. default: true
  33861. },
  33862. ]
  33863. ))
  33864. characterMakers.push(() => makeCharacter(
  33865. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33866. {
  33867. front: {
  33868. height: math.unit(8 + 6/12, "feet"),
  33869. weight: math.unit(1150, "lb"),
  33870. name: "Front",
  33871. image: {
  33872. source: "./media/characters/kichi/front.svg",
  33873. extra: 1267/1164,
  33874. bottom: 61/1328
  33875. }
  33876. },
  33877. back: {
  33878. height: math.unit(8 + 6/12, "feet"),
  33879. weight: math.unit(1150, "lb"),
  33880. name: "Back",
  33881. image: {
  33882. source: "./media/characters/kichi/back.svg",
  33883. extra: 1273/1166,
  33884. bottom: 33/1306
  33885. }
  33886. },
  33887. },
  33888. [
  33889. {
  33890. name: "Normal",
  33891. height: math.unit(8 + 6/12, "feet"),
  33892. default: true
  33893. },
  33894. ]
  33895. ))
  33896. characterMakers.push(() => makeCharacter(
  33897. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33898. {
  33899. front: {
  33900. height: math.unit(6, "feet"),
  33901. weight: math.unit(210, "lb"),
  33902. name: "Front",
  33903. image: {
  33904. source: "./media/characters/manetel-greyscale/front.svg",
  33905. extra: 350/312,
  33906. bottom: 8/358
  33907. }
  33908. },
  33909. },
  33910. [
  33911. {
  33912. name: "Micro",
  33913. height: math.unit(2, "inches")
  33914. },
  33915. {
  33916. name: "Normal",
  33917. height: math.unit(6, "feet"),
  33918. default: true
  33919. },
  33920. {
  33921. name: "Minimacro",
  33922. height: math.unit(17, "feet")
  33923. },
  33924. {
  33925. name: "Macro",
  33926. height: math.unit(117, "feet")
  33927. },
  33928. ]
  33929. ))
  33930. characterMakers.push(() => makeCharacter(
  33931. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33932. {
  33933. side: {
  33934. height: math.unit(5 + 1/12, "feet"),
  33935. weight: math.unit(418, "lb"),
  33936. name: "Side",
  33937. image: {
  33938. source: "./media/characters/softpurr/side.svg",
  33939. extra: 1993/1945,
  33940. bottom: 134/2127
  33941. }
  33942. },
  33943. front: {
  33944. height: math.unit(5 + 1/12, "feet"),
  33945. weight: math.unit(418, "lb"),
  33946. name: "Front",
  33947. image: {
  33948. source: "./media/characters/softpurr/front.svg",
  33949. extra: 1950/1856,
  33950. bottom: 174/2124
  33951. }
  33952. },
  33953. paw: {
  33954. height: math.unit(1, "feet"),
  33955. name: "Paw",
  33956. image: {
  33957. source: "./media/characters/softpurr/paw.svg"
  33958. }
  33959. },
  33960. },
  33961. [
  33962. {
  33963. name: "Normal",
  33964. height: math.unit(5 + 1/12, "feet"),
  33965. default: true
  33966. },
  33967. ]
  33968. ))
  33969. characterMakers.push(() => makeCharacter(
  33970. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33971. {
  33972. front: {
  33973. height: math.unit(260, "meters"),
  33974. name: "Front",
  33975. image: {
  33976. source: "./media/characters/anahita/front.svg",
  33977. extra: 665/635,
  33978. bottom: 89/754
  33979. }
  33980. },
  33981. },
  33982. [
  33983. {
  33984. name: "Macro",
  33985. height: math.unit(260, "meters"),
  33986. default: true
  33987. },
  33988. ]
  33989. ))
  33990. characterMakers.push(() => makeCharacter(
  33991. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33992. {
  33993. front: {
  33994. height: math.unit(4 + 10/12, "feet"),
  33995. weight: math.unit(160, "lb"),
  33996. name: "Front",
  33997. image: {
  33998. source: "./media/characters/chip-mouse/front.svg",
  33999. extra: 3528/3408,
  34000. bottom: 0/3528
  34001. }
  34002. },
  34003. frontNsfw: {
  34004. height: math.unit(4 + 10/12, "feet"),
  34005. weight: math.unit(160, "lb"),
  34006. name: "Front (NSFW)",
  34007. image: {
  34008. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34009. extra: 3528/3408,
  34010. bottom: 0/3528
  34011. }
  34012. },
  34013. },
  34014. [
  34015. {
  34016. name: "Normal",
  34017. height: math.unit(4 + 10/12, "feet"),
  34018. default: true
  34019. },
  34020. ]
  34021. ))
  34022. characterMakers.push(() => makeCharacter(
  34023. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34024. {
  34025. side: {
  34026. height: math.unit(10, "feet"),
  34027. weight: math.unit(14000, "lb"),
  34028. name: "Side",
  34029. image: {
  34030. source: "./media/characters/kremm/side.svg",
  34031. extra: 1390/1053,
  34032. bottom: 90/1480
  34033. }
  34034. },
  34035. gut: {
  34036. height: math.unit(5.8, "feet"),
  34037. name: "Gut",
  34038. image: {
  34039. source: "./media/characters/kremm/gut.svg"
  34040. }
  34041. },
  34042. ass: {
  34043. height: math.unit(6.1, "feet"),
  34044. name: "Ass",
  34045. image: {
  34046. source: "./media/characters/kremm/ass.svg"
  34047. }
  34048. },
  34049. jaws: {
  34050. height: math.unit(2.2, "feet"),
  34051. name: "Jaws",
  34052. image: {
  34053. source: "./media/characters/kremm/jaws.svg"
  34054. }
  34055. },
  34056. dick: {
  34057. height: math.unit(4.26, "feet"),
  34058. name: "Dick",
  34059. image: {
  34060. source: "./media/characters/kremm/dick.svg"
  34061. }
  34062. },
  34063. },
  34064. [
  34065. {
  34066. name: "Normal",
  34067. height: math.unit(10, "feet"),
  34068. default: true
  34069. },
  34070. ]
  34071. ))
  34072. characterMakers.push(() => makeCharacter(
  34073. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34074. {
  34075. front: {
  34076. height: math.unit(30, "stories"),
  34077. name: "Front",
  34078. image: {
  34079. source: "./media/characters/kai/front.svg",
  34080. extra: 1892/1718,
  34081. bottom: 162/2054
  34082. }
  34083. },
  34084. },
  34085. [
  34086. {
  34087. name: "Macro",
  34088. height: math.unit(30, "stories"),
  34089. default: true
  34090. },
  34091. ]
  34092. ))
  34093. characterMakers.push(() => makeCharacter(
  34094. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34095. {
  34096. front: {
  34097. height: math.unit(6 + 4/12, "feet"),
  34098. weight: math.unit(145, "lb"),
  34099. name: "Front",
  34100. image: {
  34101. source: "./media/characters/sykes/front.svg",
  34102. extra: 1321 / 1187,
  34103. bottom: 66 / 1387
  34104. }
  34105. },
  34106. back: {
  34107. height: math.unit(6 + 4/12, "feet"),
  34108. weight: math.unit(145, "lb"),
  34109. name: "Back",
  34110. image: {
  34111. source: "./media/characters/sykes/back.svg",
  34112. extra: 1326/1181,
  34113. bottom: 31/1357
  34114. }
  34115. },
  34116. handBack: {
  34117. height: math.unit(0.9, "feet"),
  34118. name: "Hand (Back)",
  34119. image: {
  34120. source: "./media/characters/sykes/hand-back.svg"
  34121. }
  34122. },
  34123. handFront: {
  34124. height: math.unit(0.839, "feet"),
  34125. name: "Hand (Front)",
  34126. image: {
  34127. source: "./media/characters/sykes/hand-front.svg"
  34128. }
  34129. },
  34130. leftFoot: {
  34131. height: math.unit(1.2, "feet"),
  34132. name: "Foot (Left)",
  34133. image: {
  34134. source: "./media/characters/sykes/foot-left.svg"
  34135. }
  34136. },
  34137. rightFoot: {
  34138. height: math.unit(1.2, "feet"),
  34139. name: "Foot (Right)",
  34140. image: {
  34141. source: "./media/characters/sykes/foot-right.svg"
  34142. }
  34143. },
  34144. maw: {
  34145. height: math.unit(1.93, "feet"),
  34146. name: "Maw",
  34147. image: {
  34148. source: "./media/characters/sykes/maw.svg"
  34149. }
  34150. },
  34151. teeth: {
  34152. height: math.unit(0.51, "feet"),
  34153. name: "Teeth",
  34154. image: {
  34155. source: "./media/characters/sykes/teeth.svg"
  34156. }
  34157. },
  34158. tongue: {
  34159. height: math.unit(2.13, "feet"),
  34160. name: "Tongue",
  34161. image: {
  34162. source: "./media/characters/sykes/tongue.svg"
  34163. }
  34164. },
  34165. uvula: {
  34166. height: math.unit(0.16, "feet"),
  34167. name: "Uvula",
  34168. image: {
  34169. source: "./media/characters/sykes/uvula.svg"
  34170. }
  34171. },
  34172. collar: {
  34173. height: math.unit(0.287, "feet"),
  34174. name: "Collar",
  34175. image: {
  34176. source: "./media/characters/sykes/collar.svg"
  34177. }
  34178. },
  34179. },
  34180. [
  34181. {
  34182. name: "Shrunken",
  34183. height: math.unit(5, "inches")
  34184. },
  34185. {
  34186. name: "Normal",
  34187. height: math.unit(6 + 4 / 12, "feet"),
  34188. default: true
  34189. },
  34190. {
  34191. name: "Big",
  34192. height: math.unit(15, "feet")
  34193. },
  34194. ]
  34195. ))
  34196. characterMakers.push(() => makeCharacter(
  34197. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34198. {
  34199. front: {
  34200. height: math.unit(5 + 8/12, "feet"),
  34201. weight: math.unit(190, "lb"),
  34202. name: "Front",
  34203. image: {
  34204. source: "./media/characters/oven-otter/front.svg",
  34205. extra: 1809/1740,
  34206. bottom: 181/1990
  34207. }
  34208. },
  34209. back: {
  34210. height: math.unit(5 + 8/12, "feet"),
  34211. weight: math.unit(190, "lb"),
  34212. name: "Back",
  34213. image: {
  34214. source: "./media/characters/oven-otter/back.svg",
  34215. extra: 1709/1635,
  34216. bottom: 118/1827
  34217. }
  34218. },
  34219. hand: {
  34220. height: math.unit(1.07, "feet"),
  34221. name: "Hand",
  34222. image: {
  34223. source: "./media/characters/oven-otter/hand.svg"
  34224. }
  34225. },
  34226. beans: {
  34227. height: math.unit(1.74, "feet"),
  34228. name: "Beans",
  34229. image: {
  34230. source: "./media/characters/oven-otter/beans.svg"
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Micro",
  34237. height: math.unit(0.5, "inches")
  34238. },
  34239. {
  34240. name: "Normal",
  34241. height: math.unit(5 + 8/12, "feet"),
  34242. default: true
  34243. },
  34244. {
  34245. name: "Macro",
  34246. height: math.unit(250, "feet")
  34247. },
  34248. {
  34249. name: "Really High",
  34250. height: math.unit(420, "feet")
  34251. },
  34252. ]
  34253. ))
  34254. characterMakers.push(() => makeCharacter(
  34255. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34256. {
  34257. front: {
  34258. height: math.unit(5, "meters"),
  34259. weight: math.unit(292000000000000, "kg"),
  34260. name: "Front",
  34261. image: {
  34262. source: "./media/characters/devourer/front.svg",
  34263. extra: 1800/1733,
  34264. bottom: 211/2011
  34265. }
  34266. },
  34267. maw: {
  34268. height: math.unit(1.1, "meter"),
  34269. name: "Maw",
  34270. image: {
  34271. source: "./media/characters/devourer/maw.svg"
  34272. }
  34273. },
  34274. },
  34275. [
  34276. {
  34277. name: "Small",
  34278. height: math.unit(3, "meters")
  34279. },
  34280. {
  34281. name: "Large",
  34282. height: math.unit(5, "meters"),
  34283. default: true
  34284. },
  34285. ]
  34286. ))
  34287. characterMakers.push(() => makeCharacter(
  34288. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34289. {
  34290. front: {
  34291. height: math.unit(6, "feet"),
  34292. weight: math.unit(400, "lb"),
  34293. name: "Front",
  34294. image: {
  34295. source: "./media/characters/ellarby/front.svg",
  34296. extra: 1909/1763,
  34297. bottom: 80/1989
  34298. }
  34299. },
  34300. back: {
  34301. height: math.unit(6, "feet"),
  34302. weight: math.unit(400, "lb"),
  34303. name: "Back",
  34304. image: {
  34305. source: "./media/characters/ellarby/back.svg",
  34306. extra: 1914/1784,
  34307. bottom: 172/2086
  34308. }
  34309. },
  34310. },
  34311. [
  34312. {
  34313. name: "Mischief",
  34314. height: math.unit(18, "inches")
  34315. },
  34316. {
  34317. name: "Trouble",
  34318. height: math.unit(12, "feet")
  34319. },
  34320. {
  34321. name: "Havoc",
  34322. height: math.unit(200, "feet"),
  34323. default: true
  34324. },
  34325. {
  34326. name: "Pandemonium",
  34327. height: math.unit(1, "mile")
  34328. },
  34329. {
  34330. name: "Catastrophe",
  34331. height: math.unit(100, "miles")
  34332. },
  34333. ]
  34334. ))
  34335. characterMakers.push(() => makeCharacter(
  34336. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34337. {
  34338. front: {
  34339. height: math.unit(4.7, "meters"),
  34340. weight: math.unit(6500, "kg"),
  34341. name: "Front",
  34342. image: {
  34343. source: "./media/characters/vex/front.svg",
  34344. extra: 1288/1140,
  34345. bottom: 100/1388
  34346. }
  34347. },
  34348. },
  34349. [
  34350. {
  34351. name: "Normal",
  34352. height: math.unit(4.7, "meters"),
  34353. default: true
  34354. },
  34355. ]
  34356. ))
  34357. characterMakers.push(() => makeCharacter(
  34358. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34359. {
  34360. normal: {
  34361. height: math.unit(6, "feet"),
  34362. weight: math.unit(350, "lb"),
  34363. name: "Normal",
  34364. image: {
  34365. source: "./media/characters/teshy/normal.svg",
  34366. extra: 1795/1735,
  34367. bottom: 16/1811
  34368. }
  34369. },
  34370. monsterFront: {
  34371. height: math.unit(12, "feet"),
  34372. weight: math.unit(4700, "lb"),
  34373. name: "Monster (Front)",
  34374. image: {
  34375. source: "./media/characters/teshy/monster-front.svg",
  34376. extra: 2042/2034,
  34377. bottom: 128/2170
  34378. }
  34379. },
  34380. monsterSide: {
  34381. height: math.unit(12, "feet"),
  34382. weight: math.unit(4700, "lb"),
  34383. name: "Monster (Side)",
  34384. image: {
  34385. source: "./media/characters/teshy/monster-side.svg",
  34386. extra: 2067/2056,
  34387. bottom: 70/2137
  34388. }
  34389. },
  34390. monsterBack: {
  34391. height: math.unit(12, "feet"),
  34392. weight: math.unit(4700, "lb"),
  34393. name: "Monster (Back)",
  34394. image: {
  34395. source: "./media/characters/teshy/monster-back.svg",
  34396. extra: 1921/1914,
  34397. bottom: 171/2092
  34398. }
  34399. },
  34400. },
  34401. [
  34402. {
  34403. name: "Normal",
  34404. height: math.unit(6, "feet"),
  34405. default: true
  34406. },
  34407. ]
  34408. ))
  34409. characterMakers.push(() => makeCharacter(
  34410. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34411. {
  34412. front: {
  34413. height: math.unit(6, "feet"),
  34414. name: "Front",
  34415. image: {
  34416. source: "./media/characters/ramey/front.svg",
  34417. extra: 790/787,
  34418. bottom: 27/817
  34419. }
  34420. },
  34421. },
  34422. [
  34423. {
  34424. name: "Normal",
  34425. height: math.unit(6, "feet"),
  34426. default: true
  34427. },
  34428. ]
  34429. ))
  34430. characterMakers.push(() => makeCharacter(
  34431. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34432. {
  34433. front: {
  34434. height: math.unit(5 + 5/12, "feet"),
  34435. weight: math.unit(120, "lb"),
  34436. name: "Front",
  34437. image: {
  34438. source: "./media/characters/phirae/front.svg",
  34439. extra: 2491/2436,
  34440. bottom: 38/2529
  34441. }
  34442. },
  34443. },
  34444. [
  34445. {
  34446. name: "Normal",
  34447. height: math.unit(5 + 5/12, "feet"),
  34448. default: true
  34449. },
  34450. ]
  34451. ))
  34452. characterMakers.push(() => makeCharacter(
  34453. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34454. {
  34455. front: {
  34456. height: math.unit(5 + 3/12, "feet"),
  34457. name: "Front",
  34458. image: {
  34459. source: "./media/characters/stagglas/front.svg",
  34460. extra: 962/882,
  34461. bottom: 53/1015
  34462. }
  34463. },
  34464. feral: {
  34465. height: math.unit(335, "cm"),
  34466. name: "Feral",
  34467. image: {
  34468. source: "./media/characters/stagglas/feral.svg",
  34469. extra: 1732/1090,
  34470. bottom: 48/1780
  34471. }
  34472. },
  34473. },
  34474. [
  34475. {
  34476. name: "Normal",
  34477. height: math.unit(5 + 3/12, "feet"),
  34478. default: true
  34479. },
  34480. ]
  34481. ))
  34482. characterMakers.push(() => makeCharacter(
  34483. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34484. {
  34485. front: {
  34486. height: math.unit(5 + 4/12, "feet"),
  34487. weight: math.unit(145, "lb"),
  34488. name: "Front",
  34489. image: {
  34490. source: "./media/characters/starra/front.svg",
  34491. extra: 1790/1691,
  34492. bottom: 91/1881
  34493. }
  34494. },
  34495. },
  34496. [
  34497. {
  34498. name: "Normal",
  34499. height: math.unit(5 + 4/12, "feet"),
  34500. default: true
  34501. },
  34502. ]
  34503. ))
  34504. characterMakers.push(() => makeCharacter(
  34505. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34506. {
  34507. front: {
  34508. height: math.unit(2.2, "meters"),
  34509. name: "Front",
  34510. image: {
  34511. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34512. extra: 1194/1005,
  34513. bottom: 25/1219
  34514. }
  34515. },
  34516. },
  34517. [
  34518. {
  34519. name: "Normal",
  34520. height: math.unit(2.2, "meters"),
  34521. default: true
  34522. },
  34523. ]
  34524. ))
  34525. characterMakers.push(() => makeCharacter(
  34526. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34527. {
  34528. side: {
  34529. height: math.unit(8 + 2/12, "feet"),
  34530. weight: math.unit(1240, "lb"),
  34531. name: "Side",
  34532. image: {
  34533. source: "./media/characters/mika-valentine/side.svg",
  34534. extra: 2670/2501,
  34535. bottom: 250/2920
  34536. }
  34537. },
  34538. },
  34539. [
  34540. {
  34541. name: "Normal",
  34542. height: math.unit(8 + 2/12, "feet"),
  34543. default: true
  34544. },
  34545. ]
  34546. ))
  34547. characterMakers.push(() => makeCharacter(
  34548. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34549. {
  34550. front: {
  34551. height: math.unit(7 + 2/12, "feet"),
  34552. name: "Front",
  34553. image: {
  34554. source: "./media/characters/xoltol/front.svg",
  34555. extra: 2212/2124,
  34556. bottom: 84/2296
  34557. }
  34558. },
  34559. side: {
  34560. height: math.unit(7 + 2/12, "feet"),
  34561. name: "Side",
  34562. image: {
  34563. source: "./media/characters/xoltol/side.svg",
  34564. extra: 2273/2197,
  34565. bottom: 26/2299
  34566. }
  34567. },
  34568. hand: {
  34569. height: math.unit(2.5, "feet"),
  34570. name: "Hand",
  34571. image: {
  34572. source: "./media/characters/xoltol/hand.svg"
  34573. }
  34574. },
  34575. },
  34576. [
  34577. {
  34578. name: "Small-ish",
  34579. height: math.unit(5 + 11/12, "feet")
  34580. },
  34581. {
  34582. name: "Normal",
  34583. height: math.unit(7 + 2/12, "feet")
  34584. },
  34585. {
  34586. name: "\"Macro\"",
  34587. height: math.unit(14 + 9/12, "feet"),
  34588. default: true
  34589. },
  34590. {
  34591. name: "Alternate Height",
  34592. height: math.unit(20, "feet")
  34593. },
  34594. {
  34595. name: "Actually Macro",
  34596. height: math.unit(100, "feet")
  34597. },
  34598. ]
  34599. ))
  34600. characterMakers.push(() => makeCharacter(
  34601. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34602. {
  34603. front: {
  34604. height: math.unit(5 + 2/12, "feet"),
  34605. name: "Front",
  34606. image: {
  34607. source: "./media/characters/kotetsu-redwood/front.svg",
  34608. extra: 1053/942,
  34609. bottom: 60/1113
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Normal",
  34616. height: math.unit(5 + 2/12, "feet"),
  34617. default: true
  34618. },
  34619. ]
  34620. ))
  34621. characterMakers.push(() => makeCharacter(
  34622. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34623. {
  34624. front: {
  34625. height: math.unit(2.4, "meters"),
  34626. weight: math.unit(125, "kg"),
  34627. name: "Front",
  34628. image: {
  34629. source: "./media/characters/lilith/front.svg",
  34630. extra: 1590/1513,
  34631. bottom: 203/1793
  34632. }
  34633. },
  34634. },
  34635. [
  34636. {
  34637. name: "Humanoid",
  34638. height: math.unit(2.4, "meters")
  34639. },
  34640. {
  34641. name: "Normal",
  34642. height: math.unit(6, "meters"),
  34643. default: true
  34644. },
  34645. {
  34646. name: "Largest",
  34647. height: math.unit(55, "meters")
  34648. },
  34649. ]
  34650. ))
  34651. characterMakers.push(() => makeCharacter(
  34652. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34653. {
  34654. front: {
  34655. height: math.unit(8 + 4/12, "feet"),
  34656. weight: math.unit(535, "lb"),
  34657. name: "Front",
  34658. image: {
  34659. source: "./media/characters/beh'kah-bolger/front.svg",
  34660. extra: 1660/1603,
  34661. bottom: 37/1697
  34662. }
  34663. },
  34664. },
  34665. [
  34666. {
  34667. name: "Normal",
  34668. height: math.unit(8 + 4/12, "feet"),
  34669. default: true
  34670. },
  34671. {
  34672. name: "Kaiju",
  34673. height: math.unit(250, "feet")
  34674. },
  34675. {
  34676. name: "Still Growing",
  34677. height: math.unit(10, "miles")
  34678. },
  34679. {
  34680. name: "Continental",
  34681. height: math.unit(5000, "miles")
  34682. },
  34683. {
  34684. name: "Final Form",
  34685. height: math.unit(2500000, "miles")
  34686. },
  34687. ]
  34688. ))
  34689. characterMakers.push(() => makeCharacter(
  34690. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34691. {
  34692. front: {
  34693. height: math.unit(7 + 2/12, "feet"),
  34694. weight: math.unit(230, "kg"),
  34695. name: "Front",
  34696. image: {
  34697. source: "./media/characters/tatyana-milewska/front.svg",
  34698. extra: 1199/1150,
  34699. bottom: 86/1285
  34700. }
  34701. },
  34702. },
  34703. [
  34704. {
  34705. name: "Normal",
  34706. height: math.unit(7 + 2/12, "feet"),
  34707. default: true
  34708. },
  34709. {
  34710. name: "Big",
  34711. height: math.unit(12, "feet")
  34712. },
  34713. {
  34714. name: "Minimacro",
  34715. height: math.unit(20, "feet")
  34716. },
  34717. {
  34718. name: "Macro",
  34719. height: math.unit(120, "feet")
  34720. },
  34721. ]
  34722. ))
  34723. characterMakers.push(() => makeCharacter(
  34724. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34725. {
  34726. front: {
  34727. height: math.unit(7 + 8/12, "feet"),
  34728. weight: math.unit(152, "kg"),
  34729. name: "Front",
  34730. image: {
  34731. source: "./media/characters/helen-arri/front.svg",
  34732. extra: 440/423,
  34733. bottom: 14/454
  34734. }
  34735. },
  34736. back: {
  34737. height: math.unit(7 + 8/12, "feet"),
  34738. weight: math.unit(152, "kg"),
  34739. name: "Back",
  34740. image: {
  34741. source: "./media/characters/helen-arri/back.svg",
  34742. extra: 443/426,
  34743. bottom: 8/451
  34744. }
  34745. },
  34746. },
  34747. [
  34748. {
  34749. name: "Normal",
  34750. height: math.unit(7 + 8/12, "feet"),
  34751. default: true
  34752. },
  34753. {
  34754. name: "Big",
  34755. height: math.unit(14, "feet")
  34756. },
  34757. {
  34758. name: "Minimacro",
  34759. height: math.unit(24, "feet")
  34760. },
  34761. {
  34762. name: "Macro",
  34763. height: math.unit(140, "feet")
  34764. },
  34765. ]
  34766. ))
  34767. characterMakers.push(() => makeCharacter(
  34768. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34769. {
  34770. front: {
  34771. height: math.unit(6, "meters"),
  34772. name: "Front",
  34773. image: {
  34774. source: "./media/characters/ehanu-rehu/front.svg",
  34775. extra: 1800/1800,
  34776. bottom: 59/1859
  34777. }
  34778. },
  34779. },
  34780. [
  34781. {
  34782. name: "Normal",
  34783. height: math.unit(6, "meters"),
  34784. default: true
  34785. },
  34786. ]
  34787. ))
  34788. characterMakers.push(() => makeCharacter(
  34789. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34790. {
  34791. front: {
  34792. height: math.unit(7 + 3/12, "feet"),
  34793. name: "Front",
  34794. image: {
  34795. source: "./media/characters/renholder/front.svg",
  34796. extra: 3096/2960,
  34797. bottom: 250/3346
  34798. }
  34799. },
  34800. },
  34801. [
  34802. {
  34803. name: "Normal Bat",
  34804. height: math.unit(7 + 3/12, "feet"),
  34805. default: true
  34806. },
  34807. {
  34808. name: "Slightly Tall Bat",
  34809. height: math.unit(100, "feet")
  34810. },
  34811. {
  34812. name: "Big Bat",
  34813. height: math.unit(1000, "feet")
  34814. },
  34815. {
  34816. name: "City-Sized Bat",
  34817. height: math.unit(200000, "feet")
  34818. },
  34819. {
  34820. name: "Bigger Bat",
  34821. height: math.unit(10000, "miles")
  34822. },
  34823. {
  34824. name: "Solar Sized Bat",
  34825. height: math.unit(100, "AU")
  34826. },
  34827. {
  34828. name: "Galactic Bat",
  34829. height: math.unit(200000, "lightyears")
  34830. },
  34831. {
  34832. name: "Universally Known Bat",
  34833. height: math.unit(1, "universe")
  34834. },
  34835. ]
  34836. ))
  34837. characterMakers.push(() => makeCharacter(
  34838. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34839. {
  34840. front: {
  34841. height: math.unit(6 + 11/12, "feet"),
  34842. weight: math.unit(250, "lb"),
  34843. name: "Front",
  34844. image: {
  34845. source: "./media/characters/cookiecat/front.svg",
  34846. extra: 893/827,
  34847. bottom: 14/907
  34848. }
  34849. },
  34850. },
  34851. [
  34852. {
  34853. name: "Micro",
  34854. height: math.unit(3, "inches")
  34855. },
  34856. {
  34857. name: "Normal",
  34858. height: math.unit(6 + 11/12, "feet"),
  34859. default: true
  34860. },
  34861. {
  34862. name: "Macro",
  34863. height: math.unit(100, "feet")
  34864. },
  34865. {
  34866. name: "Macro+",
  34867. height: math.unit(404, "feet")
  34868. },
  34869. {
  34870. name: "Megamacro",
  34871. height: math.unit(165, "miles")
  34872. },
  34873. {
  34874. name: "Planetary",
  34875. height: math.unit(4600, "miles")
  34876. },
  34877. ]
  34878. ))
  34879. characterMakers.push(() => makeCharacter(
  34880. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34881. {
  34882. front: {
  34883. height: math.unit(10 + 3/12, "feet"),
  34884. weight: math.unit(1500, "lb"),
  34885. name: "Front",
  34886. image: {
  34887. source: "./media/characters/tux-kusanagi/front.svg",
  34888. extra: 944/840,
  34889. bottom: 39/983
  34890. }
  34891. },
  34892. back: {
  34893. height: math.unit(10 + 3/12, "feet"),
  34894. weight: math.unit(1500, "lb"),
  34895. name: "Back",
  34896. image: {
  34897. source: "./media/characters/tux-kusanagi/back.svg",
  34898. extra: 941/842,
  34899. bottom: 28/969
  34900. }
  34901. },
  34902. rump: {
  34903. height: math.unit(5.25, "feet"),
  34904. name: "Rump",
  34905. image: {
  34906. source: "./media/characters/tux-kusanagi/rump.svg"
  34907. }
  34908. },
  34909. beak: {
  34910. height: math.unit(1.54, "feet"),
  34911. name: "Beak",
  34912. image: {
  34913. source: "./media/characters/tux-kusanagi/beak.svg"
  34914. }
  34915. },
  34916. },
  34917. [
  34918. {
  34919. name: "Normal",
  34920. height: math.unit(10 + 3/12, "feet"),
  34921. default: true
  34922. },
  34923. ]
  34924. ))
  34925. characterMakers.push(() => makeCharacter(
  34926. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34927. {
  34928. front: {
  34929. height: math.unit(58, "feet"),
  34930. weight: math.unit(200, "tons"),
  34931. name: "Front",
  34932. image: {
  34933. source: "./media/characters/uzarmazari/front.svg",
  34934. extra: 1575/1455,
  34935. bottom: 152/1727
  34936. }
  34937. },
  34938. back: {
  34939. height: math.unit(58, "feet"),
  34940. weight: math.unit(200, "tons"),
  34941. name: "Back",
  34942. image: {
  34943. source: "./media/characters/uzarmazari/back.svg",
  34944. extra: 1585/1510,
  34945. bottom: 157/1742
  34946. }
  34947. },
  34948. head: {
  34949. height: math.unit(26, "feet"),
  34950. name: "Head",
  34951. image: {
  34952. source: "./media/characters/uzarmazari/head.svg"
  34953. }
  34954. },
  34955. },
  34956. [
  34957. {
  34958. name: "Normal",
  34959. height: math.unit(58, "feet"),
  34960. default: true
  34961. },
  34962. ]
  34963. ))
  34964. characterMakers.push(() => makeCharacter(
  34965. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34966. {
  34967. side: {
  34968. height: math.unit(15, "feet"),
  34969. name: "Side",
  34970. image: {
  34971. source: "./media/characters/akitu/side.svg",
  34972. extra: 1421/1321,
  34973. bottom: 157/1578
  34974. }
  34975. },
  34976. front: {
  34977. height: math.unit(15, "feet"),
  34978. name: "Front",
  34979. image: {
  34980. source: "./media/characters/akitu/front.svg",
  34981. extra: 1435/1326,
  34982. bottom: 232/1667
  34983. }
  34984. },
  34985. },
  34986. [
  34987. {
  34988. name: "Normal",
  34989. height: math.unit(15, "feet"),
  34990. default: true
  34991. },
  34992. ]
  34993. ))
  34994. characterMakers.push(() => makeCharacter(
  34995. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34996. {
  34997. front: {
  34998. height: math.unit(10 + 8/12, "feet"),
  34999. name: "Front",
  35000. image: {
  35001. source: "./media/characters/azalie-croixland/front.svg",
  35002. extra: 1972/1856,
  35003. bottom: 31/2003
  35004. }
  35005. },
  35006. },
  35007. [
  35008. {
  35009. name: "Original Height",
  35010. height: math.unit(5 + 4/12, "feet")
  35011. },
  35012. {
  35013. name: "Normal Height",
  35014. height: math.unit(10 + 8/12, "feet"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35021. {
  35022. side: {
  35023. height: math.unit(7 + 1/12, "feet"),
  35024. weight: math.unit(245, "lb"),
  35025. name: "Side",
  35026. image: {
  35027. source: "./media/characters/kavus-kazian/side.svg",
  35028. extra: 349/342,
  35029. bottom: 15/364
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Normal",
  35036. height: math.unit(7 + 1/12, "feet"),
  35037. default: true
  35038. },
  35039. ]
  35040. ))
  35041. characterMakers.push(() => makeCharacter(
  35042. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35043. {
  35044. normalFront: {
  35045. height: math.unit(5 + 11/12, "feet"),
  35046. name: "Front",
  35047. image: {
  35048. source: "./media/characters/moonlight-rose/normal-front.svg",
  35049. extra: 1980/1825,
  35050. bottom: 18/1998
  35051. },
  35052. form: "normal",
  35053. default: true
  35054. },
  35055. normalBack: {
  35056. height: math.unit(5 + 11/12, "feet"),
  35057. name: "Back",
  35058. image: {
  35059. source: "./media/characters/moonlight-rose/normal-back.svg",
  35060. extra: 2010/1839,
  35061. bottom: 10/2020
  35062. },
  35063. form: "normal"
  35064. },
  35065. demonFront: {
  35066. height: math.unit(1.5, "earths"),
  35067. name: "Front",
  35068. image: {
  35069. source: "./media/characters/moonlight-rose/demon.svg",
  35070. extra: 1400/1294,
  35071. bottom: 45/1445
  35072. },
  35073. form: "demon",
  35074. default: true
  35075. },
  35076. terraFront: {
  35077. height: math.unit(1.5, "earths"),
  35078. name: "Front",
  35079. image: {
  35080. source: "./media/characters/moonlight-rose/terra.svg"
  35081. },
  35082. form: "terra",
  35083. default: true
  35084. },
  35085. jupiterFront: {
  35086. height: math.unit(69911*2, "km"),
  35087. name: "Front",
  35088. image: {
  35089. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35090. extra: 1367/1286,
  35091. bottom: 55/1422
  35092. },
  35093. form: "jupiter",
  35094. default: true
  35095. },
  35096. neptuneFront: {
  35097. height: math.unit(24622*2, "feet"),
  35098. name: "Front",
  35099. image: {
  35100. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35101. extra: 1851/1712,
  35102. bottom: 0/1851
  35103. },
  35104. form: "neptune",
  35105. default: true
  35106. },
  35107. },
  35108. [
  35109. {
  35110. name: "\"Natural\" Height",
  35111. height: math.unit(5 + 11/12, "feet"),
  35112. form: "normal"
  35113. },
  35114. {
  35115. name: "Smallest comfortable size",
  35116. height: math.unit(40, "meters"),
  35117. form: "normal"
  35118. },
  35119. {
  35120. name: "Common size",
  35121. height: math.unit(50, "km"),
  35122. form: "normal",
  35123. default: true
  35124. },
  35125. {
  35126. name: "Normal",
  35127. height: math.unit(1.5, "earths"),
  35128. form: "demon",
  35129. default: true
  35130. },
  35131. {
  35132. name: "Universal",
  35133. height: math.unit(15, "universes"),
  35134. form: "demon"
  35135. },
  35136. {
  35137. name: "Earth",
  35138. height: math.unit(1.5, "earths"),
  35139. form: "terra",
  35140. default: true
  35141. },
  35142. {
  35143. name: "Super Earth",
  35144. height: math.unit(67.5, "earths"),
  35145. form: "terra"
  35146. },
  35147. {
  35148. name: "Doesn't fit in a solar system...",
  35149. height: math.unit(1, "galaxy"),
  35150. form: "terra"
  35151. },
  35152. {
  35153. name: "Saturn",
  35154. height: math.unit(58232*2, "km"),
  35155. form: "jupiter"
  35156. },
  35157. {
  35158. name: "Jupiter",
  35159. height: math.unit(69911*2, "km"),
  35160. form: "jupiter",
  35161. default: true
  35162. },
  35163. {
  35164. name: "HD 100546 b",
  35165. height: math.unit(482938, "km"),
  35166. form: "jupiter"
  35167. },
  35168. {
  35169. name: "Enceladus",
  35170. height: math.unit(513*2, "km"),
  35171. form: "neptune"
  35172. },
  35173. {
  35174. name: "Europe",
  35175. height: math.unit(1560*2, "km"),
  35176. form: "neptune"
  35177. },
  35178. {
  35179. name: "Neptune",
  35180. height: math.unit(24622*2, "km"),
  35181. form: "neptune",
  35182. default: true
  35183. },
  35184. {
  35185. name: "CoRoT-9b",
  35186. height: math.unit(75067*2, "km"),
  35187. form: "neptune"
  35188. },
  35189. ],
  35190. {
  35191. "normal": {
  35192. name: "Normal",
  35193. default: true
  35194. },
  35195. "demon": {
  35196. name: "Demon"
  35197. },
  35198. "terra": {
  35199. name: "Terra"
  35200. },
  35201. "jupiter": {
  35202. name: "Jupiter"
  35203. },
  35204. "neptune": {
  35205. name: "Neptune"
  35206. }
  35207. }
  35208. ))
  35209. characterMakers.push(() => makeCharacter(
  35210. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35211. {
  35212. front: {
  35213. height: math.unit(16, "feet"),
  35214. weight: math.unit(610, "kg"),
  35215. name: "Front",
  35216. image: {
  35217. source: "./media/characters/huckle/front.svg",
  35218. extra: 1731/1625,
  35219. bottom: 33/1764
  35220. }
  35221. },
  35222. back: {
  35223. height: math.unit(16, "feet"),
  35224. weight: math.unit(610, "kg"),
  35225. name: "Back",
  35226. image: {
  35227. source: "./media/characters/huckle/back.svg",
  35228. extra: 1738/1651,
  35229. bottom: 37/1775
  35230. }
  35231. },
  35232. laughing: {
  35233. height: math.unit(3.75, "feet"),
  35234. name: "Laughing",
  35235. image: {
  35236. source: "./media/characters/huckle/laughing.svg"
  35237. }
  35238. },
  35239. angry: {
  35240. height: math.unit(4.15, "feet"),
  35241. name: "Angry",
  35242. image: {
  35243. source: "./media/characters/huckle/angry.svg"
  35244. }
  35245. },
  35246. },
  35247. [
  35248. {
  35249. name: "Normal",
  35250. height: math.unit(16, "feet"),
  35251. default: true
  35252. },
  35253. {
  35254. name: "Mini Macro",
  35255. height: math.unit(463, "feet")
  35256. },
  35257. {
  35258. name: "Macro",
  35259. height: math.unit(1680, "meters")
  35260. },
  35261. {
  35262. name: "Mega Macro",
  35263. height: math.unit(175, "km")
  35264. },
  35265. {
  35266. name: "Terra Macro",
  35267. height: math.unit(32, "gigameters")
  35268. },
  35269. {
  35270. name: "Multiverse+",
  35271. height: math.unit(2.56e23, "yottameters")
  35272. },
  35273. ]
  35274. ))
  35275. characterMakers.push(() => makeCharacter(
  35276. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35277. {
  35278. front: {
  35279. height: math.unit(6 + 9/12, "feet"),
  35280. weight: math.unit(280, "lb"),
  35281. name: "Front",
  35282. image: {
  35283. source: "./media/characters/candy/front.svg",
  35284. extra: 234/217,
  35285. bottom: 11/245
  35286. }
  35287. },
  35288. },
  35289. [
  35290. {
  35291. name: "Really Small",
  35292. height: math.unit(0.1, "nm")
  35293. },
  35294. {
  35295. name: "Micro",
  35296. height: math.unit(2, "inches")
  35297. },
  35298. {
  35299. name: "Normal",
  35300. height: math.unit(6 + 9/12, "feet"),
  35301. default: true
  35302. },
  35303. {
  35304. name: "Small Macro",
  35305. height: math.unit(69, "feet")
  35306. },
  35307. {
  35308. name: "Macro",
  35309. height: math.unit(160, "feet")
  35310. },
  35311. {
  35312. name: "Megamacro",
  35313. height: math.unit(22000, "miles")
  35314. },
  35315. {
  35316. name: "Gigamacro",
  35317. height: math.unit(50000, "miles")
  35318. },
  35319. ]
  35320. ))
  35321. characterMakers.push(() => makeCharacter(
  35322. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35323. {
  35324. front: {
  35325. height: math.unit(4, "feet"),
  35326. weight: math.unit(90, "lb"),
  35327. name: "Front",
  35328. image: {
  35329. source: "./media/characters/joey-mcdonald/front.svg",
  35330. extra: 1059/852,
  35331. bottom: 33/1092
  35332. }
  35333. },
  35334. back: {
  35335. height: math.unit(4, "feet"),
  35336. weight: math.unit(90, "lb"),
  35337. name: "Back",
  35338. image: {
  35339. source: "./media/characters/joey-mcdonald/back.svg",
  35340. extra: 1077/879,
  35341. bottom: 5/1082
  35342. }
  35343. },
  35344. frontKobold: {
  35345. height: math.unit(4, "feet"),
  35346. weight: math.unit(100, "lb"),
  35347. name: "Front-kobold",
  35348. image: {
  35349. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35350. extra: 1480/1367,
  35351. bottom: 0/1480
  35352. }
  35353. },
  35354. backKobold: {
  35355. height: math.unit(4, "feet"),
  35356. weight: math.unit(100, "lb"),
  35357. name: "Back-kobold",
  35358. image: {
  35359. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35360. extra: 1449/1361,
  35361. bottom: 0/1449
  35362. }
  35363. },
  35364. },
  35365. [
  35366. {
  35367. name: "Normal",
  35368. height: math.unit(4, "feet"),
  35369. default: true
  35370. },
  35371. ]
  35372. ))
  35373. characterMakers.push(() => makeCharacter(
  35374. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35375. {
  35376. front: {
  35377. height: math.unit(12 + 6/12, "feet"),
  35378. name: "Front",
  35379. image: {
  35380. source: "./media/characters/kass-lockheed/front.svg",
  35381. extra: 354/343,
  35382. bottom: 9/363
  35383. }
  35384. },
  35385. back: {
  35386. height: math.unit(12 + 6/12, "feet"),
  35387. name: "Back",
  35388. image: {
  35389. source: "./media/characters/kass-lockheed/back.svg",
  35390. extra: 364/352,
  35391. bottom: 3/367
  35392. }
  35393. },
  35394. dick: {
  35395. height: math.unit(3.12, "feet"),
  35396. name: "Dick",
  35397. image: {
  35398. source: "./media/characters/kass-lockheed/dick.svg"
  35399. }
  35400. },
  35401. head: {
  35402. height: math.unit(2.6, "feet"),
  35403. name: "Head",
  35404. image: {
  35405. source: "./media/characters/kass-lockheed/head.svg"
  35406. }
  35407. },
  35408. bleh: {
  35409. height: math.unit(2.85, "feet"),
  35410. name: "Bleh",
  35411. image: {
  35412. source: "./media/characters/kass-lockheed/bleh.svg"
  35413. }
  35414. },
  35415. smug: {
  35416. height: math.unit(2.85, "feet"),
  35417. name: "Smug",
  35418. image: {
  35419. source: "./media/characters/kass-lockheed/smug.svg"
  35420. }
  35421. },
  35422. },
  35423. [
  35424. {
  35425. name: "Normal",
  35426. height: math.unit(12 + 6/12, "feet"),
  35427. default: true
  35428. },
  35429. ]
  35430. ))
  35431. characterMakers.push(() => makeCharacter(
  35432. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35433. {
  35434. front: {
  35435. height: math.unit(6 + 2/12, "feet"),
  35436. name: "Front",
  35437. image: {
  35438. source: "./media/characters/taylor/front.svg",
  35439. extra: 639/495,
  35440. bottom: 12/651
  35441. }
  35442. },
  35443. },
  35444. [
  35445. {
  35446. name: "Normal",
  35447. height: math.unit(6 + 2/12, "feet"),
  35448. default: true
  35449. },
  35450. {
  35451. name: "Big",
  35452. height: math.unit(15, "feet")
  35453. },
  35454. {
  35455. name: "Lorg",
  35456. height: math.unit(80, "feet")
  35457. },
  35458. {
  35459. name: "Too Lorg",
  35460. height: math.unit(120, "feet")
  35461. },
  35462. ]
  35463. ))
  35464. characterMakers.push(() => makeCharacter(
  35465. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35466. {
  35467. front: {
  35468. height: math.unit(15, "feet"),
  35469. name: "Front",
  35470. image: {
  35471. source: "./media/characters/kaizer/front.svg",
  35472. extra: 1612/1436,
  35473. bottom: 43/1655
  35474. }
  35475. },
  35476. },
  35477. [
  35478. {
  35479. name: "Normal",
  35480. height: math.unit(15, "feet"),
  35481. default: true
  35482. },
  35483. ]
  35484. ))
  35485. characterMakers.push(() => makeCharacter(
  35486. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35487. {
  35488. front: {
  35489. height: math.unit(2, "feet"),
  35490. weight: math.unit(30, "lb"),
  35491. name: "Front",
  35492. image: {
  35493. source: "./media/characters/sandy/front.svg",
  35494. extra: 1439/1307,
  35495. bottom: 194/1633
  35496. }
  35497. },
  35498. },
  35499. [
  35500. {
  35501. name: "Normal",
  35502. height: math.unit(2, "feet"),
  35503. default: true
  35504. },
  35505. ]
  35506. ))
  35507. characterMakers.push(() => makeCharacter(
  35508. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35509. {
  35510. front: {
  35511. height: math.unit(3, "feet"),
  35512. name: "Front",
  35513. image: {
  35514. source: "./media/characters/mellvi/front.svg",
  35515. extra: 1831/1630,
  35516. bottom: 58/1889
  35517. }
  35518. },
  35519. },
  35520. [
  35521. {
  35522. name: "Normal",
  35523. height: math.unit(3, "feet"),
  35524. default: true
  35525. },
  35526. ]
  35527. ))
  35528. characterMakers.push(() => makeCharacter(
  35529. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35530. {
  35531. front: {
  35532. height: math.unit(5 + 11/12, "feet"),
  35533. weight: math.unit(200, "lb"),
  35534. name: "Front",
  35535. image: {
  35536. source: "./media/characters/shirou/front.svg",
  35537. extra: 2491/2383,
  35538. bottom: 189/2680
  35539. }
  35540. },
  35541. back: {
  35542. height: math.unit(5 + 11/12, "feet"),
  35543. weight: math.unit(200, "lb"),
  35544. name: "Back",
  35545. image: {
  35546. source: "./media/characters/shirou/back.svg",
  35547. extra: 2554/2450,
  35548. bottom: 76/2630
  35549. }
  35550. },
  35551. },
  35552. [
  35553. {
  35554. name: "Normal",
  35555. height: math.unit(5 + 11/12, "feet"),
  35556. default: true
  35557. },
  35558. ]
  35559. ))
  35560. characterMakers.push(() => makeCharacter(
  35561. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35562. {
  35563. front: {
  35564. height: math.unit(6 + 3/12, "feet"),
  35565. weight: math.unit(177, "lb"),
  35566. name: "Front",
  35567. image: {
  35568. source: "./media/characters/noryu/front.svg",
  35569. extra: 973/885,
  35570. bottom: 10/983
  35571. }
  35572. },
  35573. },
  35574. [
  35575. {
  35576. name: "Normal",
  35577. height: math.unit(6 + 3/12, "feet"),
  35578. default: true
  35579. },
  35580. ]
  35581. ))
  35582. characterMakers.push(() => makeCharacter(
  35583. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35584. {
  35585. front: {
  35586. height: math.unit(5 + 6/12, "feet"),
  35587. weight: math.unit(170, "lb"),
  35588. name: "Front",
  35589. image: {
  35590. source: "./media/characters/mevolas-rubenido/front.svg",
  35591. extra: 2109/1901,
  35592. bottom: 96/2205
  35593. }
  35594. },
  35595. },
  35596. [
  35597. {
  35598. name: "Normal",
  35599. height: math.unit(5 + 6/12, "feet"),
  35600. default: true
  35601. },
  35602. ]
  35603. ))
  35604. characterMakers.push(() => makeCharacter(
  35605. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35606. {
  35607. front: {
  35608. height: math.unit(100, "feet"),
  35609. name: "Front",
  35610. image: {
  35611. source: "./media/characters/dee/front.svg",
  35612. extra: 2153/2036,
  35613. bottom: 59/2212
  35614. }
  35615. },
  35616. back: {
  35617. height: math.unit(100, "feet"),
  35618. name: "Back",
  35619. image: {
  35620. source: "./media/characters/dee/back.svg",
  35621. extra: 2183/2058,
  35622. bottom: 75/2258
  35623. }
  35624. },
  35625. foot: {
  35626. height: math.unit(19.43, "feet"),
  35627. name: "Foot",
  35628. image: {
  35629. source: "./media/characters/dee/foot.svg"
  35630. }
  35631. },
  35632. hoof: {
  35633. height: math.unit(20.6, "feet"),
  35634. name: "Hoof",
  35635. image: {
  35636. source: "./media/characters/dee/hoof.svg"
  35637. }
  35638. },
  35639. },
  35640. [
  35641. {
  35642. name: "Macro",
  35643. height: math.unit(100, "feet"),
  35644. default: true
  35645. },
  35646. ]
  35647. ))
  35648. characterMakers.push(() => makeCharacter(
  35649. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35650. {
  35651. front: {
  35652. height: math.unit(5 + 6/12, "feet"),
  35653. name: "Front",
  35654. image: {
  35655. source: "./media/characters/teh/front.svg",
  35656. extra: 1002/847,
  35657. bottom: 62/1064
  35658. }
  35659. },
  35660. },
  35661. [
  35662. {
  35663. name: "Normal",
  35664. height: math.unit(5 + 6/12, "feet"),
  35665. default: true
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35671. {
  35672. side: {
  35673. height: math.unit(6 + 1/12, "feet"),
  35674. weight: math.unit(204, "lb"),
  35675. name: "Side",
  35676. image: {
  35677. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35678. extra: 974/775,
  35679. bottom: 169/1143
  35680. }
  35681. },
  35682. sitting: {
  35683. height: math.unit(6 + 2/12, "feet"),
  35684. weight: math.unit(204, "lb"),
  35685. name: "Sitting",
  35686. image: {
  35687. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35688. extra: 1175/964,
  35689. bottom: 378/1553
  35690. }
  35691. },
  35692. },
  35693. [
  35694. {
  35695. name: "Normal",
  35696. height: math.unit(6 + 1/12, "feet"),
  35697. default: true
  35698. },
  35699. ]
  35700. ))
  35701. characterMakers.push(() => makeCharacter(
  35702. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35703. {
  35704. front: {
  35705. height: math.unit(6, "inches"),
  35706. name: "Front",
  35707. image: {
  35708. source: "./media/characters/tululi/front.svg",
  35709. extra: 1997/1876,
  35710. bottom: 20/2017
  35711. }
  35712. },
  35713. },
  35714. [
  35715. {
  35716. name: "Normal",
  35717. height: math.unit(6, "inches"),
  35718. default: true
  35719. },
  35720. ]
  35721. ))
  35722. characterMakers.push(() => makeCharacter(
  35723. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35724. {
  35725. front: {
  35726. height: math.unit(4 + 1/12, "feet"),
  35727. name: "Front",
  35728. image: {
  35729. source: "./media/characters/star/front.svg",
  35730. extra: 1493/1189,
  35731. bottom: 48/1541
  35732. }
  35733. },
  35734. },
  35735. [
  35736. {
  35737. name: "Normal",
  35738. height: math.unit(4 + 1/12, "feet"),
  35739. default: true
  35740. },
  35741. ]
  35742. ))
  35743. characterMakers.push(() => makeCharacter(
  35744. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35745. {
  35746. front: {
  35747. height: math.unit(6 + 3/12, "feet"),
  35748. name: "Front",
  35749. image: {
  35750. source: "./media/characters/comet/front.svg",
  35751. extra: 1681/1462,
  35752. bottom: 26/1707
  35753. }
  35754. },
  35755. },
  35756. [
  35757. {
  35758. name: "Normal",
  35759. height: math.unit(6 + 3/12, "feet"),
  35760. default: true
  35761. },
  35762. ]
  35763. ))
  35764. characterMakers.push(() => makeCharacter(
  35765. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35766. {
  35767. front: {
  35768. height: math.unit(950, "feet"),
  35769. name: "Front",
  35770. image: {
  35771. source: "./media/characters/vortex/front.svg",
  35772. extra: 1497/1434,
  35773. bottom: 56/1553
  35774. }
  35775. },
  35776. maw: {
  35777. height: math.unit(285, "feet"),
  35778. name: "Maw",
  35779. image: {
  35780. source: "./media/characters/vortex/maw.svg"
  35781. }
  35782. },
  35783. },
  35784. [
  35785. {
  35786. name: "Macro",
  35787. height: math.unit(950, "feet"),
  35788. default: true
  35789. },
  35790. ]
  35791. ))
  35792. characterMakers.push(() => makeCharacter(
  35793. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35794. {
  35795. front: {
  35796. height: math.unit(600, "feet"),
  35797. weight: math.unit(0.02, "grams"),
  35798. name: "Front",
  35799. image: {
  35800. source: "./media/characters/doodle/front.svg",
  35801. extra: 1578/1413,
  35802. bottom: 37/1615
  35803. }
  35804. },
  35805. },
  35806. [
  35807. {
  35808. name: "Macro",
  35809. height: math.unit(600, "feet"),
  35810. default: true
  35811. },
  35812. ]
  35813. ))
  35814. characterMakers.push(() => makeCharacter(
  35815. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35816. {
  35817. front: {
  35818. height: math.unit(6 + 6/12, "feet"),
  35819. name: "Front",
  35820. image: {
  35821. source: "./media/characters/jai/front.svg",
  35822. extra: 1645/1534,
  35823. bottom: 115/1760
  35824. }
  35825. },
  35826. },
  35827. [
  35828. {
  35829. name: "Normal",
  35830. height: math.unit(6 + 6/12, "feet"),
  35831. default: true
  35832. },
  35833. ]
  35834. ))
  35835. characterMakers.push(() => makeCharacter(
  35836. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35837. {
  35838. front: {
  35839. height: math.unit(6 + 8/12, "feet"),
  35840. name: "Front",
  35841. image: {
  35842. source: "./media/characters/pixel/front.svg",
  35843. extra: 1900/1735,
  35844. bottom: 63/1963
  35845. }
  35846. },
  35847. },
  35848. [
  35849. {
  35850. name: "Normal",
  35851. height: math.unit(6 + 8/12, "feet"),
  35852. default: true
  35853. },
  35854. ]
  35855. ))
  35856. characterMakers.push(() => makeCharacter(
  35857. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35858. {
  35859. back: {
  35860. height: math.unit(4 + 1/12, "feet"),
  35861. weight: math.unit(75, "lb"),
  35862. name: "Back",
  35863. image: {
  35864. source: "./media/characters/rhett/back.svg",
  35865. extra: 930/878,
  35866. bottom: 25/955
  35867. }
  35868. },
  35869. front: {
  35870. height: math.unit(4 + 1/12, "feet"),
  35871. weight: math.unit(75, "lb"),
  35872. name: "Front",
  35873. image: {
  35874. source: "./media/characters/rhett/front.svg",
  35875. extra: 1682/1586,
  35876. bottom: 92/1774
  35877. }
  35878. },
  35879. },
  35880. [
  35881. {
  35882. name: "Micro",
  35883. height: math.unit(8, "inches")
  35884. },
  35885. {
  35886. name: "Tiny",
  35887. height: math.unit(2, "feet")
  35888. },
  35889. {
  35890. name: "Normal",
  35891. height: math.unit(4 + 1/12, "feet"),
  35892. default: true
  35893. },
  35894. ]
  35895. ))
  35896. characterMakers.push(() => makeCharacter(
  35897. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35898. {
  35899. front: {
  35900. height: math.unit(3 + 3/12, "feet"),
  35901. name: "Front",
  35902. image: {
  35903. source: "./media/characters/penny/front.svg",
  35904. extra: 1406/1311,
  35905. bottom: 26/1432
  35906. }
  35907. },
  35908. },
  35909. [
  35910. {
  35911. name: "Normal",
  35912. height: math.unit(3 + 3/12, "feet"),
  35913. default: true
  35914. },
  35915. ]
  35916. ))
  35917. characterMakers.push(() => makeCharacter(
  35918. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35919. {
  35920. front: {
  35921. height: math.unit(4 + 11/12, "feet"),
  35922. name: "Front",
  35923. image: {
  35924. source: "./media/characters/monty/front.svg",
  35925. extra: 1479/1209,
  35926. bottom: 0/1479
  35927. }
  35928. },
  35929. },
  35930. [
  35931. {
  35932. name: "Normal",
  35933. height: math.unit(4 + 11/12, "feet"),
  35934. default: true
  35935. },
  35936. ]
  35937. ))
  35938. characterMakers.push(() => makeCharacter(
  35939. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35940. {
  35941. front: {
  35942. height: math.unit(8 + 4/12, "feet"),
  35943. name: "Front",
  35944. image: {
  35945. source: "./media/characters/sterling/front.svg",
  35946. extra: 1420/1236,
  35947. bottom: 27/1447
  35948. }
  35949. },
  35950. },
  35951. [
  35952. {
  35953. name: "Normal",
  35954. height: math.unit(8 + 4/12, "feet"),
  35955. default: true
  35956. },
  35957. ]
  35958. ))
  35959. characterMakers.push(() => makeCharacter(
  35960. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35961. {
  35962. front: {
  35963. height: math.unit(15, "feet"),
  35964. name: "Front",
  35965. image: {
  35966. source: "./media/characters/marble/front.svg",
  35967. extra: 973/937,
  35968. bottom: 32/1005
  35969. }
  35970. },
  35971. },
  35972. [
  35973. {
  35974. name: "Normal",
  35975. height: math.unit(15, "feet"),
  35976. default: true
  35977. },
  35978. ]
  35979. ))
  35980. characterMakers.push(() => makeCharacter(
  35981. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35982. {
  35983. front: {
  35984. height: math.unit(3, "inches"),
  35985. name: "Front",
  35986. image: {
  35987. source: "./media/characters/powder/front.svg",
  35988. extra: 1504/1334,
  35989. bottom: 518/2022
  35990. }
  35991. },
  35992. },
  35993. [
  35994. {
  35995. name: "Normal",
  35996. height: math.unit(3, "inches"),
  35997. default: true
  35998. },
  35999. ]
  36000. ))
  36001. characterMakers.push(() => makeCharacter(
  36002. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36003. {
  36004. front: {
  36005. height: math.unit(4 + 5/12, "feet"),
  36006. name: "Front",
  36007. image: {
  36008. source: "./media/characters/joey-raccoon/front.svg",
  36009. extra: 1273/1197,
  36010. bottom: 0/1273
  36011. }
  36012. },
  36013. },
  36014. [
  36015. {
  36016. name: "Normal",
  36017. height: math.unit(4 + 5/12, "feet"),
  36018. default: true
  36019. },
  36020. ]
  36021. ))
  36022. characterMakers.push(() => makeCharacter(
  36023. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36024. {
  36025. front: {
  36026. height: math.unit(8 + 4/12, "feet"),
  36027. name: "Front",
  36028. image: {
  36029. source: "./media/characters/vick/front.svg",
  36030. extra: 2187/2118,
  36031. bottom: 47/2234
  36032. }
  36033. },
  36034. },
  36035. [
  36036. {
  36037. name: "Normal",
  36038. height: math.unit(8 + 4/12, "feet"),
  36039. default: true
  36040. },
  36041. ]
  36042. ))
  36043. characterMakers.push(() => makeCharacter(
  36044. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36045. {
  36046. front: {
  36047. height: math.unit(5 + 5/12, "feet"),
  36048. name: "Front",
  36049. image: {
  36050. source: "./media/characters/mitsy/front.svg",
  36051. extra: 1842/1695,
  36052. bottom: 0/1842
  36053. }
  36054. },
  36055. },
  36056. [
  36057. {
  36058. name: "Normal",
  36059. height: math.unit(5 + 5/12, "feet"),
  36060. default: true
  36061. },
  36062. ]
  36063. ))
  36064. characterMakers.push(() => makeCharacter(
  36065. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36066. {
  36067. front: {
  36068. height: math.unit(6 + 3/12, "feet"),
  36069. name: "Front",
  36070. image: {
  36071. source: "./media/characters/silvy/front.svg",
  36072. extra: 1995/1836,
  36073. bottom: 225/2220
  36074. }
  36075. },
  36076. },
  36077. [
  36078. {
  36079. name: "Normal",
  36080. height: math.unit(6 + 3/12, "feet"),
  36081. default: true
  36082. },
  36083. ]
  36084. ))
  36085. characterMakers.push(() => makeCharacter(
  36086. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36087. {
  36088. front: {
  36089. height: math.unit(3 + 8/12, "feet"),
  36090. name: "Front",
  36091. image: {
  36092. source: "./media/characters/rodney/front.svg",
  36093. extra: 1956/1747,
  36094. bottom: 31/1987
  36095. }
  36096. },
  36097. frontDressed: {
  36098. height: math.unit(2.9, "feet"),
  36099. name: "Front (Dressed)",
  36100. image: {
  36101. source: "./media/characters/rodney/front-dressed.svg",
  36102. extra: 1382/1241,
  36103. bottom: 385/1767
  36104. }
  36105. },
  36106. },
  36107. [
  36108. {
  36109. name: "Normal",
  36110. height: math.unit(3 + 8/12, "feet"),
  36111. default: true
  36112. },
  36113. ]
  36114. ))
  36115. characterMakers.push(() => makeCharacter(
  36116. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36117. {
  36118. front: {
  36119. height: math.unit(5 + 9/12, "feet"),
  36120. weight: math.unit(194, "lbs"),
  36121. name: "Front",
  36122. image: {
  36123. source: "./media/characters/zakail-sudekai/front.svg",
  36124. extra: 2696/2533,
  36125. bottom: 248/2944
  36126. }
  36127. },
  36128. maw: {
  36129. height: math.unit(1.35, "feet"),
  36130. name: "Maw",
  36131. image: {
  36132. source: "./media/characters/zakail-sudekai/maw.svg"
  36133. }
  36134. },
  36135. },
  36136. [
  36137. {
  36138. name: "Normal",
  36139. height: math.unit(5 + 9/12, "feet"),
  36140. default: true
  36141. },
  36142. ]
  36143. ))
  36144. characterMakers.push(() => makeCharacter(
  36145. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36146. {
  36147. front: {
  36148. height: math.unit(8 + 4/12, "feet"),
  36149. weight: math.unit(1200, "lb"),
  36150. name: "Front",
  36151. image: {
  36152. source: "./media/characters/eleanor/front.svg",
  36153. extra: 1226/1192,
  36154. bottom: 52/1278
  36155. }
  36156. },
  36157. back: {
  36158. height: math.unit(8 + 4/12, "feet"),
  36159. weight: math.unit(1200, "lb"),
  36160. name: "Back",
  36161. image: {
  36162. source: "./media/characters/eleanor/back.svg",
  36163. extra: 1242/1184,
  36164. bottom: 60/1302
  36165. }
  36166. },
  36167. head: {
  36168. height: math.unit(2.62, "feet"),
  36169. name: "Head",
  36170. image: {
  36171. source: "./media/characters/eleanor/head.svg"
  36172. }
  36173. },
  36174. },
  36175. [
  36176. {
  36177. name: "Normal",
  36178. height: math.unit(8 + 4/12, "feet"),
  36179. default: true
  36180. },
  36181. ]
  36182. ))
  36183. characterMakers.push(() => makeCharacter(
  36184. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36185. {
  36186. front: {
  36187. height: math.unit(8 + 4/12, "feet"),
  36188. weight: math.unit(750, "lb"),
  36189. name: "Front",
  36190. image: {
  36191. source: "./media/characters/tanya/front.svg",
  36192. extra: 1749/1615,
  36193. bottom: 33/1782
  36194. }
  36195. },
  36196. },
  36197. [
  36198. {
  36199. name: "Normal",
  36200. height: math.unit(8 + 4/12, "feet"),
  36201. default: true
  36202. },
  36203. ]
  36204. ))
  36205. characterMakers.push(() => makeCharacter(
  36206. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36207. {
  36208. front: {
  36209. height: math.unit(5, "feet"),
  36210. weight: math.unit(225, "lb"),
  36211. name: "Front",
  36212. image: {
  36213. source: "./media/characters/cindy/front.svg",
  36214. extra: 1320/1250,
  36215. bottom: 42/1362
  36216. }
  36217. },
  36218. frontDressed: {
  36219. height: math.unit(5, "feet"),
  36220. weight: math.unit(225, "lb"),
  36221. name: "Front (Dressed)",
  36222. image: {
  36223. source: "./media/characters/cindy/front-dressed.svg",
  36224. extra: 1320/1250,
  36225. bottom: 42/1362
  36226. }
  36227. },
  36228. back: {
  36229. height: math.unit(5, "feet"),
  36230. weight: math.unit(225, "lb"),
  36231. name: "Back",
  36232. image: {
  36233. source: "./media/characters/cindy/back.svg",
  36234. extra: 1384/1346,
  36235. bottom: 14/1398
  36236. }
  36237. },
  36238. },
  36239. [
  36240. {
  36241. name: "Normal",
  36242. height: math.unit(5, "feet"),
  36243. default: true
  36244. },
  36245. ]
  36246. ))
  36247. characterMakers.push(() => makeCharacter(
  36248. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36249. {
  36250. front: {
  36251. height: math.unit(6 + 9/12, "feet"),
  36252. weight: math.unit(440, "lb"),
  36253. name: "Front",
  36254. image: {
  36255. source: "./media/characters/wilbur-owen/front.svg",
  36256. extra: 1575/1448,
  36257. bottom: 72/1647
  36258. }
  36259. },
  36260. back: {
  36261. height: math.unit(6 + 9/12, "feet"),
  36262. weight: math.unit(440, "lb"),
  36263. name: "Back",
  36264. image: {
  36265. source: "./media/characters/wilbur-owen/back.svg",
  36266. extra: 1578/1445,
  36267. bottom: 36/1614
  36268. }
  36269. },
  36270. },
  36271. [
  36272. {
  36273. name: "Normal",
  36274. height: math.unit(6 + 9/12, "feet"),
  36275. default: true
  36276. },
  36277. ]
  36278. ))
  36279. characterMakers.push(() => makeCharacter(
  36280. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36281. {
  36282. front: {
  36283. height: math.unit(6 + 5/12, "feet"),
  36284. weight: math.unit(650, "lb"),
  36285. name: "Front",
  36286. image: {
  36287. source: "./media/characters/keegan/front.svg",
  36288. extra: 2387/2198,
  36289. bottom: 33/2420
  36290. }
  36291. },
  36292. side: {
  36293. height: math.unit(6 + 5/12, "feet"),
  36294. weight: math.unit(650, "lb"),
  36295. name: "Side",
  36296. image: {
  36297. source: "./media/characters/keegan/side.svg",
  36298. extra: 2390/2202,
  36299. bottom: 47/2437
  36300. }
  36301. },
  36302. back: {
  36303. height: math.unit(6 + 5/12, "feet"),
  36304. weight: math.unit(650, "lb"),
  36305. name: "Back",
  36306. image: {
  36307. source: "./media/characters/keegan/back.svg",
  36308. extra: 2418/2268,
  36309. bottom: 15/2433
  36310. }
  36311. },
  36312. frontSfw: {
  36313. height: math.unit(6 + 5/12, "feet"),
  36314. weight: math.unit(650, "lb"),
  36315. name: "Front (SFW)",
  36316. image: {
  36317. source: "./media/characters/keegan/front-sfw.svg",
  36318. extra: 2387/2198,
  36319. bottom: 33/2420
  36320. }
  36321. },
  36322. beans: {
  36323. height: math.unit(1.85, "feet"),
  36324. name: "Beans",
  36325. image: {
  36326. source: "./media/characters/keegan/beans.svg"
  36327. }
  36328. },
  36329. },
  36330. [
  36331. {
  36332. name: "Normal",
  36333. height: math.unit(6 + 5/12, "feet"),
  36334. default: true
  36335. },
  36336. ]
  36337. ))
  36338. characterMakers.push(() => makeCharacter(
  36339. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36340. {
  36341. front: {
  36342. height: math.unit(9, "feet"),
  36343. name: "Front",
  36344. image: {
  36345. source: "./media/characters/colton/front.svg",
  36346. extra: 1589/1326,
  36347. bottom: 139/1728
  36348. }
  36349. },
  36350. },
  36351. [
  36352. {
  36353. name: "Normal",
  36354. height: math.unit(9, "feet"),
  36355. default: true
  36356. },
  36357. ]
  36358. ))
  36359. characterMakers.push(() => makeCharacter(
  36360. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36361. {
  36362. front: {
  36363. height: math.unit(2 + 9/12, "feet"),
  36364. name: "Front",
  36365. image: {
  36366. source: "./media/characters/bora/front.svg",
  36367. extra: 1265/1250,
  36368. bottom: 24/1289
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(2 + 9/12, "feet"),
  36376. default: true
  36377. },
  36378. ]
  36379. ))
  36380. characterMakers.push(() => makeCharacter(
  36381. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36382. {
  36383. front: {
  36384. height: math.unit(8, "feet"),
  36385. name: "Front",
  36386. image: {
  36387. source: "./media/characters/myu-myu/front.svg",
  36388. extra: 1949/1857,
  36389. bottom: 90/2039
  36390. }
  36391. },
  36392. },
  36393. [
  36394. {
  36395. name: "Normal",
  36396. height: math.unit(8, "feet"),
  36397. default: true
  36398. },
  36399. {
  36400. name: "Big",
  36401. height: math.unit(15, "feet")
  36402. },
  36403. {
  36404. name: "BIG",
  36405. height: math.unit(25, "feet")
  36406. },
  36407. ]
  36408. ))
  36409. characterMakers.push(() => makeCharacter(
  36410. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36411. {
  36412. side: {
  36413. height: math.unit(7 + 5/12, "feet"),
  36414. weight: math.unit(2800, "lb"),
  36415. name: "Side",
  36416. image: {
  36417. source: "./media/characters/haloren/side.svg",
  36418. extra: 1793/409,
  36419. bottom: 59/1852
  36420. }
  36421. },
  36422. frontPaw: {
  36423. height: math.unit(2.36, "feet"),
  36424. name: "Front paw",
  36425. image: {
  36426. source: "./media/characters/haloren/front-paw.svg"
  36427. }
  36428. },
  36429. hindPaw: {
  36430. height: math.unit(3.18, "feet"),
  36431. name: "Hind paw",
  36432. image: {
  36433. source: "./media/characters/haloren/hind-paw.svg"
  36434. }
  36435. },
  36436. maw: {
  36437. height: math.unit(5.05, "feet"),
  36438. name: "Maw",
  36439. image: {
  36440. source: "./media/characters/haloren/maw.svg"
  36441. }
  36442. },
  36443. dick: {
  36444. height: math.unit(2.90, "feet"),
  36445. name: "Dick",
  36446. image: {
  36447. source: "./media/characters/haloren/dick.svg"
  36448. }
  36449. },
  36450. },
  36451. [
  36452. {
  36453. name: "Normal",
  36454. height: math.unit(7 + 5/12, "feet"),
  36455. default: true
  36456. },
  36457. {
  36458. name: "Enhanced",
  36459. height: math.unit(14 + 3/12, "feet")
  36460. },
  36461. ]
  36462. ))
  36463. characterMakers.push(() => makeCharacter(
  36464. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36465. {
  36466. front: {
  36467. height: math.unit(171, "cm"),
  36468. name: "Front",
  36469. image: {
  36470. source: "./media/characters/kimmy/front.svg",
  36471. extra: 1491/1435,
  36472. bottom: 53/1544
  36473. }
  36474. },
  36475. },
  36476. [
  36477. {
  36478. name: "Small",
  36479. height: math.unit(9, "cm")
  36480. },
  36481. {
  36482. name: "Normal",
  36483. height: math.unit(171, "cm"),
  36484. default: true
  36485. },
  36486. ]
  36487. ))
  36488. characterMakers.push(() => makeCharacter(
  36489. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36490. {
  36491. front: {
  36492. height: math.unit(8, "feet"),
  36493. weight: math.unit(300, "lb"),
  36494. name: "Front",
  36495. image: {
  36496. source: "./media/characters/galeboomer/front.svg",
  36497. extra: 4651/4415,
  36498. bottom: 162/4813
  36499. }
  36500. },
  36501. back: {
  36502. height: math.unit(8, "feet"),
  36503. weight: math.unit(300, "lb"),
  36504. name: "Back",
  36505. image: {
  36506. source: "./media/characters/galeboomer/back.svg",
  36507. extra: 4544/4314,
  36508. bottom: 16/4560
  36509. }
  36510. },
  36511. frontAlt: {
  36512. height: math.unit(8, "feet"),
  36513. weight: math.unit(300, "lb"),
  36514. name: "Front (Alt)",
  36515. image: {
  36516. source: "./media/characters/galeboomer/front-alt.svg",
  36517. extra: 4458/4228,
  36518. bottom: 68/4526
  36519. }
  36520. },
  36521. maw: {
  36522. height: math.unit(1.2, "feet"),
  36523. name: "Maw",
  36524. image: {
  36525. source: "./media/characters/galeboomer/maw.svg"
  36526. }
  36527. },
  36528. },
  36529. [
  36530. {
  36531. name: "Normal",
  36532. height: math.unit(8, "feet"),
  36533. default: true
  36534. },
  36535. ]
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36539. {
  36540. front: {
  36541. height: math.unit(5 + 9/12, "feet"),
  36542. weight: math.unit(120, "lb"),
  36543. name: "Front",
  36544. image: {
  36545. source: "./media/characters/chyr/front.svg",
  36546. extra: 1323/1254,
  36547. bottom: 63/1386
  36548. }
  36549. },
  36550. back: {
  36551. height: math.unit(5 + 9/12, "feet"),
  36552. weight: math.unit(120, "lb"),
  36553. name: "Back",
  36554. image: {
  36555. source: "./media/characters/chyr/back.svg",
  36556. extra: 1323/1252,
  36557. bottom: 48/1371
  36558. }
  36559. },
  36560. },
  36561. [
  36562. {
  36563. name: "Normal",
  36564. height: math.unit(5 + 9/12, "feet"),
  36565. default: true
  36566. },
  36567. ]
  36568. ))
  36569. characterMakers.push(() => makeCharacter(
  36570. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36571. {
  36572. front: {
  36573. height: math.unit(7, "feet"),
  36574. weight: math.unit(310, "lb"),
  36575. name: "Front",
  36576. image: {
  36577. source: "./media/characters/solarus/front.svg",
  36578. extra: 2415/2021,
  36579. bottom: 103/2518
  36580. }
  36581. },
  36582. back: {
  36583. height: math.unit(7, "feet"),
  36584. weight: math.unit(310, "lb"),
  36585. name: "Back",
  36586. image: {
  36587. source: "./media/characters/solarus/back.svg",
  36588. extra: 2463/2089,
  36589. bottom: 79/2542
  36590. }
  36591. },
  36592. },
  36593. [
  36594. {
  36595. name: "Normal",
  36596. height: math.unit(7, "feet"),
  36597. default: true
  36598. },
  36599. ]
  36600. ))
  36601. characterMakers.push(() => makeCharacter(
  36602. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36603. {
  36604. front: {
  36605. height: math.unit(16, "feet"),
  36606. name: "Front",
  36607. image: {
  36608. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36609. extra: 1844/1780,
  36610. bottom: 58/1902
  36611. }
  36612. },
  36613. winterCoat: {
  36614. height: math.unit(16, "feet"),
  36615. name: "Winter Coat",
  36616. image: {
  36617. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36618. extra: 1807/1775,
  36619. bottom: 69/1876
  36620. }
  36621. },
  36622. },
  36623. [
  36624. {
  36625. name: "Normal",
  36626. height: math.unit(16, "feet"),
  36627. default: true
  36628. },
  36629. {
  36630. name: "Chicago Size",
  36631. height: math.unit(560, "feet")
  36632. },
  36633. ]
  36634. ))
  36635. characterMakers.push(() => makeCharacter(
  36636. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36637. {
  36638. front: {
  36639. height: math.unit(11 + 6/12, "feet"),
  36640. weight: math.unit(1366, "lb"),
  36641. name: "Front",
  36642. image: {
  36643. source: "./media/characters/lexor/front.svg",
  36644. extra: 1560/1481,
  36645. bottom: 211/1771
  36646. }
  36647. },
  36648. back: {
  36649. height: math.unit(11 + 6/12, "feet"),
  36650. weight: math.unit(1366, "lb"),
  36651. name: "Back",
  36652. image: {
  36653. source: "./media/characters/lexor/back.svg",
  36654. extra: 1614/1533,
  36655. bottom: 76/1690
  36656. }
  36657. },
  36658. maw: {
  36659. height: math.unit(3, "feet"),
  36660. name: "Maw",
  36661. image: {
  36662. source: "./media/characters/lexor/maw.svg"
  36663. }
  36664. },
  36665. dick: {
  36666. height: math.unit(2.59, "feet"),
  36667. name: "Dick",
  36668. image: {
  36669. source: "./media/characters/lexor/dick.svg"
  36670. }
  36671. },
  36672. },
  36673. [
  36674. {
  36675. name: "Normal",
  36676. height: math.unit(11 + 6/12, "feet"),
  36677. default: true
  36678. },
  36679. ]
  36680. ))
  36681. characterMakers.push(() => makeCharacter(
  36682. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36683. {
  36684. front: {
  36685. height: math.unit(5 + 8/12, "feet"),
  36686. name: "Front",
  36687. image: {
  36688. source: "./media/characters/magnum/front.svg",
  36689. extra: 942/855,
  36690. bottom: 26/968
  36691. }
  36692. },
  36693. },
  36694. [
  36695. {
  36696. name: "Normal",
  36697. height: math.unit(5 + 8/12, "feet"),
  36698. default: true
  36699. },
  36700. ]
  36701. ))
  36702. characterMakers.push(() => makeCharacter(
  36703. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36704. {
  36705. front: {
  36706. height: math.unit(18 + 4/12, "feet"),
  36707. weight: math.unit(1500, "kg"),
  36708. name: "Front",
  36709. image: {
  36710. source: "./media/characters/solas-sharpsman/front.svg",
  36711. extra: 1698/1589,
  36712. bottom: 0/1698
  36713. }
  36714. },
  36715. },
  36716. [
  36717. {
  36718. name: "Normal",
  36719. height: math.unit(18 + 4/12, "feet"),
  36720. default: true
  36721. },
  36722. ]
  36723. ))
  36724. characterMakers.push(() => makeCharacter(
  36725. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36726. {
  36727. front: {
  36728. height: math.unit(5 + 5/12, "feet"),
  36729. weight: math.unit(180, "lb"),
  36730. name: "Front",
  36731. image: {
  36732. source: "./media/characters/october/front.svg",
  36733. extra: 1800/1650,
  36734. bottom: 0/1800
  36735. }
  36736. },
  36737. frontNsfw: {
  36738. height: math.unit(5 + 5/12, "feet"),
  36739. weight: math.unit(180, "lb"),
  36740. name: "Front (NSFW)",
  36741. image: {
  36742. source: "./media/characters/october/front-nsfw.svg",
  36743. extra: 1392/1307,
  36744. bottom: 42/1434
  36745. }
  36746. },
  36747. },
  36748. [
  36749. {
  36750. name: "Normal",
  36751. height: math.unit(5 + 5/12, "feet"),
  36752. default: true
  36753. },
  36754. ]
  36755. ))
  36756. characterMakers.push(() => makeCharacter(
  36757. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36758. {
  36759. front: {
  36760. height: math.unit(8 + 6/12, "feet"),
  36761. name: "Front",
  36762. image: {
  36763. source: "./media/characters/essynkardi/front.svg",
  36764. extra: 1914/1846,
  36765. bottom: 22/1936
  36766. }
  36767. },
  36768. },
  36769. [
  36770. {
  36771. name: "Normal",
  36772. height: math.unit(8 + 6/12, "feet"),
  36773. default: true
  36774. },
  36775. ]
  36776. ))
  36777. characterMakers.push(() => makeCharacter(
  36778. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36779. {
  36780. front: {
  36781. height: math.unit(6 + 6/12, "feet"),
  36782. weight: math.unit(7, "lb"),
  36783. name: "Front",
  36784. image: {
  36785. source: "./media/characters/icky/front.svg",
  36786. extra: 813/782,
  36787. bottom: 66/879
  36788. }
  36789. },
  36790. back: {
  36791. height: math.unit(6 + 6/12, "feet"),
  36792. weight: math.unit(7, "lb"),
  36793. name: "Back",
  36794. image: {
  36795. source: "./media/characters/icky/back.svg",
  36796. extra: 754/735,
  36797. bottom: 56/810
  36798. }
  36799. },
  36800. },
  36801. [
  36802. {
  36803. name: "Normal",
  36804. height: math.unit(6 + 6/12, "feet"),
  36805. default: true
  36806. },
  36807. ]
  36808. ))
  36809. characterMakers.push(() => makeCharacter(
  36810. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36811. {
  36812. front: {
  36813. height: math.unit(15, "feet"),
  36814. name: "Front",
  36815. image: {
  36816. source: "./media/characters/rojas/front.svg",
  36817. extra: 1462/1408,
  36818. bottom: 95/1557
  36819. }
  36820. },
  36821. back: {
  36822. height: math.unit(15, "feet"),
  36823. name: "Back",
  36824. image: {
  36825. source: "./media/characters/rojas/back.svg",
  36826. extra: 1023/954,
  36827. bottom: 28/1051
  36828. }
  36829. },
  36830. },
  36831. [
  36832. {
  36833. name: "Normal",
  36834. height: math.unit(15, "feet"),
  36835. default: true
  36836. },
  36837. ]
  36838. ))
  36839. characterMakers.push(() => makeCharacter(
  36840. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36841. {
  36842. frontHuman: {
  36843. height: math.unit(5 + 7/12, "feet"),
  36844. name: "Front (Human)",
  36845. image: {
  36846. source: "./media/characters/alek-dryagan/front-human.svg",
  36847. extra: 1687/1667,
  36848. bottom: 69/1756
  36849. }
  36850. },
  36851. backHuman: {
  36852. height: math.unit(5 + 7/12, "feet"),
  36853. name: "Back (Human)",
  36854. image: {
  36855. source: "./media/characters/alek-dryagan/back-human.svg",
  36856. extra: 1670/1649,
  36857. bottom: 65/1735
  36858. }
  36859. },
  36860. frontDemi: {
  36861. height: math.unit(65, "feet"),
  36862. name: "Front (Demi)",
  36863. image: {
  36864. source: "./media/characters/alek-dryagan/front-demi.svg",
  36865. extra: 1669/1642,
  36866. bottom: 49/1718
  36867. }
  36868. },
  36869. backDemi: {
  36870. height: math.unit(65, "feet"),
  36871. name: "Back (Demi)",
  36872. image: {
  36873. source: "./media/characters/alek-dryagan/back-demi.svg",
  36874. extra: 1658/1637,
  36875. bottom: 40/1698
  36876. }
  36877. },
  36878. mawHuman: {
  36879. height: math.unit(0.3, "feet"),
  36880. name: "Maw (Human)",
  36881. image: {
  36882. source: "./media/characters/alek-dryagan/maw-human.svg"
  36883. }
  36884. },
  36885. mawDemi: {
  36886. height: math.unit(3.8, "feet"),
  36887. name: "Maw (Demi)",
  36888. image: {
  36889. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36890. }
  36891. },
  36892. },
  36893. [
  36894. {
  36895. name: "Normal",
  36896. height: math.unit(5 + 7/12, "feet"),
  36897. default: true
  36898. },
  36899. ]
  36900. ))
  36901. characterMakers.push(() => makeCharacter(
  36902. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36903. {
  36904. frontHuman: {
  36905. height: math.unit(5 + 2/12, "feet"),
  36906. name: "Front (Human)",
  36907. image: {
  36908. source: "./media/characters/gen/front-human.svg",
  36909. extra: 1627/1538,
  36910. bottom: 71/1698
  36911. }
  36912. },
  36913. backHuman: {
  36914. height: math.unit(5 + 2/12, "feet"),
  36915. name: "Back (Human)",
  36916. image: {
  36917. source: "./media/characters/gen/back-human.svg",
  36918. extra: 1638/1548,
  36919. bottom: 69/1707
  36920. }
  36921. },
  36922. frontDemi: {
  36923. height: math.unit(5 + 2/12, "feet"),
  36924. name: "Front (Demi)",
  36925. image: {
  36926. source: "./media/characters/gen/front-demi.svg",
  36927. extra: 1627/1538,
  36928. bottom: 71/1698
  36929. }
  36930. },
  36931. backDemi: {
  36932. height: math.unit(5 + 2/12, "feet"),
  36933. name: "Back (Demi)",
  36934. image: {
  36935. source: "./media/characters/gen/back-demi.svg",
  36936. extra: 1638/1548,
  36937. bottom: 69/1707
  36938. }
  36939. },
  36940. },
  36941. [
  36942. {
  36943. name: "Normal",
  36944. height: math.unit(5 + 2/12, "feet"),
  36945. default: true
  36946. },
  36947. ]
  36948. ))
  36949. characterMakers.push(() => makeCharacter(
  36950. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36951. {
  36952. frontImp: {
  36953. height: math.unit(1 + 11/12, "feet"),
  36954. name: "Front (Imp)",
  36955. image: {
  36956. source: "./media/characters/max-kobold/front-imp.svg",
  36957. extra: 1238/1134,
  36958. bottom: 81/1319
  36959. }
  36960. },
  36961. backImp: {
  36962. height: math.unit(1 + 11/12, "feet"),
  36963. name: "Back (Imp)",
  36964. image: {
  36965. source: "./media/characters/max-kobold/back-imp.svg",
  36966. extra: 1334/1175,
  36967. bottom: 34/1368
  36968. }
  36969. },
  36970. frontDemi: {
  36971. height: math.unit(5 + 9/12, "feet"),
  36972. name: "Front (Demi)",
  36973. image: {
  36974. source: "./media/characters/max-kobold/front-demi.svg",
  36975. extra: 1715/1685,
  36976. bottom: 54/1769
  36977. }
  36978. },
  36979. backDemi: {
  36980. height: math.unit(5 + 9/12, "feet"),
  36981. name: "Back (Demi)",
  36982. image: {
  36983. source: "./media/characters/max-kobold/back-demi.svg",
  36984. extra: 1752/1729,
  36985. bottom: 41/1793
  36986. }
  36987. },
  36988. handImp: {
  36989. height: math.unit(0.45, "feet"),
  36990. name: "Hand (Imp)",
  36991. image: {
  36992. source: "./media/characters/max-kobold/hand.svg"
  36993. }
  36994. },
  36995. pawImp: {
  36996. height: math.unit(0.46, "feet"),
  36997. name: "Paw (Imp)",
  36998. image: {
  36999. source: "./media/characters/max-kobold/paw.svg"
  37000. }
  37001. },
  37002. handDemi: {
  37003. height: math.unit(0.80, "feet"),
  37004. name: "Hand (Demi)",
  37005. image: {
  37006. source: "./media/characters/max-kobold/hand.svg"
  37007. }
  37008. },
  37009. pawDemi: {
  37010. height: math.unit(1.1, "feet"),
  37011. name: "Paw (Demi)",
  37012. image: {
  37013. source: "./media/characters/max-kobold/paw.svg"
  37014. }
  37015. },
  37016. headImp: {
  37017. height: math.unit(1.33, "feet"),
  37018. name: "Head (Imp)",
  37019. image: {
  37020. source: "./media/characters/max-kobold/head-imp.svg"
  37021. }
  37022. },
  37023. mawImp: {
  37024. height: math.unit(0.75, "feet"),
  37025. name: "Maw (Imp)",
  37026. image: {
  37027. source: "./media/characters/max-kobold/maw-imp.svg"
  37028. }
  37029. },
  37030. mawDemi: {
  37031. height: math.unit(0.42, "feet"),
  37032. name: "Maw (Demi)",
  37033. image: {
  37034. source: "./media/characters/max-kobold/maw-demi.svg"
  37035. }
  37036. },
  37037. },
  37038. [
  37039. {
  37040. name: "Normal",
  37041. height: math.unit(1 + 11/12, "feet"),
  37042. default: true
  37043. },
  37044. ]
  37045. ))
  37046. characterMakers.push(() => makeCharacter(
  37047. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37048. {
  37049. front: {
  37050. height: math.unit(7 + 5/12, "feet"),
  37051. name: "Front",
  37052. image: {
  37053. source: "./media/characters/carbon/front.svg",
  37054. extra: 1754/1689,
  37055. bottom: 65/1819
  37056. }
  37057. },
  37058. back: {
  37059. height: math.unit(7 + 5/12, "feet"),
  37060. name: "Back",
  37061. image: {
  37062. source: "./media/characters/carbon/back.svg",
  37063. extra: 1762/1695,
  37064. bottom: 24/1786
  37065. }
  37066. },
  37067. frontGigantamax: {
  37068. height: math.unit(150, "feet"),
  37069. name: "Front (Gigantamax)",
  37070. image: {
  37071. source: "./media/characters/carbon/front-gigantamax.svg",
  37072. extra: 1826/1669,
  37073. bottom: 59/1885
  37074. }
  37075. },
  37076. backGigantamax: {
  37077. height: math.unit(150, "feet"),
  37078. name: "Back (Gigantamax)",
  37079. image: {
  37080. source: "./media/characters/carbon/back-gigantamax.svg",
  37081. extra: 1796/1653,
  37082. bottom: 53/1849
  37083. }
  37084. },
  37085. maw: {
  37086. height: math.unit(0.48, "feet"),
  37087. name: "Maw",
  37088. image: {
  37089. source: "./media/characters/carbon/maw.svg"
  37090. }
  37091. },
  37092. mawGigantamax: {
  37093. height: math.unit(7.5, "feet"),
  37094. name: "Maw (Gigantamax)",
  37095. image: {
  37096. source: "./media/characters/carbon/maw-gigantamax.svg"
  37097. }
  37098. },
  37099. },
  37100. [
  37101. {
  37102. name: "Normal",
  37103. height: math.unit(7 + 5/12, "feet"),
  37104. default: true
  37105. },
  37106. ]
  37107. ))
  37108. characterMakers.push(() => makeCharacter(
  37109. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37110. {
  37111. front: {
  37112. height: math.unit(6, "feet"),
  37113. name: "Front",
  37114. image: {
  37115. source: "./media/characters/maverick/front.svg",
  37116. extra: 1672/1661,
  37117. bottom: 85/1757
  37118. }
  37119. },
  37120. back: {
  37121. height: math.unit(6, "feet"),
  37122. name: "Back",
  37123. image: {
  37124. source: "./media/characters/maverick/back.svg",
  37125. extra: 1642/1631,
  37126. bottom: 38/1680
  37127. }
  37128. },
  37129. },
  37130. [
  37131. {
  37132. name: "Normal",
  37133. height: math.unit(6, "feet"),
  37134. default: true
  37135. },
  37136. ]
  37137. ))
  37138. characterMakers.push(() => makeCharacter(
  37139. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37140. {
  37141. front: {
  37142. height: math.unit(15, "feet"),
  37143. weight: math.unit(615, "lb"),
  37144. name: "Front",
  37145. image: {
  37146. source: "./media/characters/grockle/front.svg",
  37147. extra: 1535/1427,
  37148. bottom: 56/1591
  37149. }
  37150. },
  37151. },
  37152. [
  37153. {
  37154. name: "Normal",
  37155. height: math.unit(15, "feet"),
  37156. default: true
  37157. },
  37158. {
  37159. name: "Large",
  37160. height: math.unit(150, "feet")
  37161. },
  37162. {
  37163. name: "Macro",
  37164. height: math.unit(1876, "feet")
  37165. },
  37166. {
  37167. name: "Mega Macro",
  37168. height: math.unit(121940, "feet")
  37169. },
  37170. {
  37171. name: "Giga Macro",
  37172. height: math.unit(750, "km")
  37173. },
  37174. {
  37175. name: "Tera Macro",
  37176. height: math.unit(750000, "km")
  37177. },
  37178. {
  37179. name: "Galactic",
  37180. height: math.unit(1.4e5, "km")
  37181. },
  37182. {
  37183. name: "Godlike",
  37184. height: math.unit(9.8e280, "galaxies")
  37185. },
  37186. ]
  37187. ))
  37188. characterMakers.push(() => makeCharacter(
  37189. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37190. {
  37191. front: {
  37192. height: math.unit(11, "meters"),
  37193. weight: math.unit(20, "tonnes"),
  37194. name: "Front",
  37195. image: {
  37196. source: "./media/characters/alistair/front.svg",
  37197. extra: 1265/1009,
  37198. bottom: 93/1358
  37199. }
  37200. },
  37201. },
  37202. [
  37203. {
  37204. name: "Normal",
  37205. height: math.unit(11, "meters"),
  37206. default: true
  37207. },
  37208. ]
  37209. ))
  37210. characterMakers.push(() => makeCharacter(
  37211. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37212. {
  37213. front: {
  37214. height: math.unit(5 + 8/12, "feet"),
  37215. name: "Front",
  37216. image: {
  37217. source: "./media/characters/haruka/front.svg",
  37218. extra: 2012/1952,
  37219. bottom: 0/2012
  37220. }
  37221. },
  37222. },
  37223. [
  37224. {
  37225. name: "Normal",
  37226. height: math.unit(5 + 8/12, "feet"),
  37227. default: true
  37228. },
  37229. ]
  37230. ))
  37231. characterMakers.push(() => makeCharacter(
  37232. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37233. {
  37234. back: {
  37235. height: math.unit(9, "feet"),
  37236. name: "Back",
  37237. image: {
  37238. source: "./media/characters/vivian-sylveon/back.svg",
  37239. extra: 1853/1714,
  37240. bottom: 0/1853
  37241. }
  37242. },
  37243. },
  37244. [
  37245. {
  37246. name: "Normal",
  37247. height: math.unit(9, "feet"),
  37248. default: true
  37249. },
  37250. {
  37251. name: "Macro",
  37252. height: math.unit(500, "feet")
  37253. },
  37254. {
  37255. name: "Megamacro",
  37256. height: math.unit(600, "miles")
  37257. },
  37258. {
  37259. name: "Gigamacro",
  37260. height: math.unit(30000, "miles")
  37261. },
  37262. ]
  37263. ))
  37264. characterMakers.push(() => makeCharacter(
  37265. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37266. {
  37267. anthro: {
  37268. height: math.unit(5 + 10/12, "feet"),
  37269. weight: math.unit(100, "lb"),
  37270. name: "Anthro",
  37271. image: {
  37272. source: "./media/characters/daiki/anthro.svg",
  37273. extra: 1115/1027,
  37274. bottom: 69/1184
  37275. }
  37276. },
  37277. feral: {
  37278. height: math.unit(200, "feet"),
  37279. name: "Feral",
  37280. image: {
  37281. source: "./media/characters/daiki/feral.svg",
  37282. extra: 1256/313,
  37283. bottom: 39/1295
  37284. }
  37285. },
  37286. feralHead: {
  37287. height: math.unit(171, "feet"),
  37288. name: "Feral Head",
  37289. image: {
  37290. source: "./media/characters/daiki/feral-head.svg"
  37291. }
  37292. },
  37293. manaDragon: {
  37294. height: math.unit(170, "meters"),
  37295. name: "Mana-dragon",
  37296. image: {
  37297. source: "./media/characters/daiki/mana-dragon.svg",
  37298. extra: 763/420,
  37299. bottom: 97/860
  37300. }
  37301. },
  37302. },
  37303. [
  37304. {
  37305. name: "Normal",
  37306. height: math.unit(5 + 10/12, "feet"),
  37307. default: true
  37308. },
  37309. ]
  37310. ))
  37311. characterMakers.push(() => makeCharacter(
  37312. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37313. {
  37314. fullyEquippedFront: {
  37315. height: math.unit(3 + 1/12, "feet"),
  37316. weight: math.unit(24, "lb"),
  37317. name: "Fully Equipped (Front)",
  37318. image: {
  37319. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37320. extra: 687/605,
  37321. bottom: 18/705
  37322. }
  37323. },
  37324. fullyEquippedBack: {
  37325. height: math.unit(3 + 1/12, "feet"),
  37326. weight: math.unit(24, "lb"),
  37327. name: "Fully Equipped (Back)",
  37328. image: {
  37329. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37330. extra: 689/590,
  37331. bottom: 18/707
  37332. }
  37333. },
  37334. dailyWear: {
  37335. height: math.unit(3 + 1/12, "feet"),
  37336. weight: math.unit(24, "lb"),
  37337. name: "Daily Wear",
  37338. image: {
  37339. source: "./media/characters/tea-spot/daily-wear.svg",
  37340. extra: 701/620,
  37341. bottom: 21/722
  37342. }
  37343. },
  37344. maidWork: {
  37345. height: math.unit(3 + 1/12, "feet"),
  37346. weight: math.unit(24, "lb"),
  37347. name: "Maid Work",
  37348. image: {
  37349. source: "./media/characters/tea-spot/maid-work.svg",
  37350. extra: 693/609,
  37351. bottom: 15/708
  37352. }
  37353. },
  37354. },
  37355. [
  37356. {
  37357. name: "Normal",
  37358. height: math.unit(3 + 1/12, "feet"),
  37359. default: true
  37360. },
  37361. ]
  37362. ))
  37363. characterMakers.push(() => makeCharacter(
  37364. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37365. {
  37366. front: {
  37367. height: math.unit(175, "cm"),
  37368. weight: math.unit(75, "kg"),
  37369. name: "Front",
  37370. image: {
  37371. source: "./media/characters/chee/front.svg",
  37372. extra: 1796/1740,
  37373. bottom: 40/1836
  37374. }
  37375. },
  37376. },
  37377. [
  37378. {
  37379. name: "Micro-Micro",
  37380. height: math.unit(1, "nm")
  37381. },
  37382. {
  37383. name: "Micro-erst",
  37384. height: math.unit(1, "micrometer")
  37385. },
  37386. {
  37387. name: "Micro-er",
  37388. height: math.unit(1, "cm")
  37389. },
  37390. {
  37391. name: "Normal",
  37392. height: math.unit(175, "cm"),
  37393. default: true
  37394. },
  37395. {
  37396. name: "Macro",
  37397. height: math.unit(100, "m")
  37398. },
  37399. {
  37400. name: "Macro-er",
  37401. height: math.unit(1, "km")
  37402. },
  37403. {
  37404. name: "Macro-erst",
  37405. height: math.unit(10, "km")
  37406. },
  37407. {
  37408. name: "Macro-Macro",
  37409. height: math.unit(100, "km")
  37410. },
  37411. ]
  37412. ))
  37413. characterMakers.push(() => makeCharacter(
  37414. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37415. {
  37416. front: {
  37417. height: math.unit(11 + 9/12, "feet"),
  37418. weight: math.unit(935, "lb"),
  37419. name: "Front",
  37420. image: {
  37421. source: "./media/characters/kingsley/front.svg",
  37422. extra: 1803/1674,
  37423. bottom: 127/1930
  37424. }
  37425. },
  37426. frontNude: {
  37427. height: math.unit(11 + 9/12, "feet"),
  37428. weight: math.unit(935, "lb"),
  37429. name: "Front (Nude)",
  37430. image: {
  37431. source: "./media/characters/kingsley/front-nude.svg",
  37432. extra: 1803/1674,
  37433. bottom: 127/1930
  37434. }
  37435. },
  37436. },
  37437. [
  37438. {
  37439. name: "Normal",
  37440. height: math.unit(11 + 9/12, "feet"),
  37441. default: true
  37442. },
  37443. ]
  37444. ))
  37445. characterMakers.push(() => makeCharacter(
  37446. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37447. {
  37448. side: {
  37449. height: math.unit(9, "feet"),
  37450. name: "Side",
  37451. image: {
  37452. source: "./media/characters/rymel/side.svg",
  37453. extra: 792/469,
  37454. bottom: 121/913
  37455. }
  37456. },
  37457. maw: {
  37458. height: math.unit(2.4, "meters"),
  37459. name: "Maw",
  37460. image: {
  37461. source: "./media/characters/rymel/maw.svg"
  37462. }
  37463. },
  37464. },
  37465. [
  37466. {
  37467. name: "House Drake",
  37468. height: math.unit(2, "feet")
  37469. },
  37470. {
  37471. name: "Reduced",
  37472. height: math.unit(4.5, "feet")
  37473. },
  37474. {
  37475. name: "Normal",
  37476. height: math.unit(9, "feet"),
  37477. default: true
  37478. },
  37479. ]
  37480. ))
  37481. characterMakers.push(() => makeCharacter(
  37482. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37483. {
  37484. front: {
  37485. height: math.unit(1.74, "meters"),
  37486. weight: math.unit(55, "kg"),
  37487. name: "Front",
  37488. image: {
  37489. source: "./media/characters/rubus/front.svg",
  37490. extra: 1894/1742,
  37491. bottom: 44/1938
  37492. }
  37493. },
  37494. },
  37495. [
  37496. {
  37497. name: "Normal",
  37498. height: math.unit(1.74, "meters"),
  37499. default: true
  37500. },
  37501. ]
  37502. ))
  37503. characterMakers.push(() => makeCharacter(
  37504. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37505. {
  37506. front: {
  37507. height: math.unit(5 + 2/12, "feet"),
  37508. weight: math.unit(112, "lb"),
  37509. name: "Front",
  37510. image: {
  37511. source: "./media/characters/cassie-kingston/front.svg",
  37512. extra: 1438/1390,
  37513. bottom: 47/1485
  37514. }
  37515. },
  37516. },
  37517. [
  37518. {
  37519. name: "Normal",
  37520. height: math.unit(5 + 2/12, "feet"),
  37521. default: true
  37522. },
  37523. {
  37524. name: "Macro",
  37525. height: math.unit(128, "feet")
  37526. },
  37527. {
  37528. name: "Megamacro",
  37529. height: math.unit(2.56, "miles")
  37530. },
  37531. ]
  37532. ))
  37533. characterMakers.push(() => makeCharacter(
  37534. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37535. {
  37536. front: {
  37537. height: math.unit(7, "feet"),
  37538. name: "Front",
  37539. image: {
  37540. source: "./media/characters/fox/front.svg",
  37541. extra: 1798/1703,
  37542. bottom: 55/1853
  37543. }
  37544. },
  37545. back: {
  37546. height: math.unit(7, "feet"),
  37547. name: "Back",
  37548. image: {
  37549. source: "./media/characters/fox/back.svg",
  37550. extra: 1748/1649,
  37551. bottom: 32/1780
  37552. }
  37553. },
  37554. head: {
  37555. height: math.unit(1.95, "feet"),
  37556. name: "Head",
  37557. image: {
  37558. source: "./media/characters/fox/head.svg"
  37559. }
  37560. },
  37561. dick: {
  37562. height: math.unit(1.33, "feet"),
  37563. name: "Dick",
  37564. image: {
  37565. source: "./media/characters/fox/dick.svg"
  37566. }
  37567. },
  37568. foot: {
  37569. height: math.unit(1, "feet"),
  37570. name: "Foot",
  37571. image: {
  37572. source: "./media/characters/fox/foot.svg"
  37573. }
  37574. },
  37575. paw: {
  37576. height: math.unit(0.92, "feet"),
  37577. name: "Paw",
  37578. image: {
  37579. source: "./media/characters/fox/paw.svg"
  37580. }
  37581. },
  37582. },
  37583. [
  37584. {
  37585. name: "Small",
  37586. height: math.unit(3, "inches")
  37587. },
  37588. {
  37589. name: "\"Realistic\"",
  37590. height: math.unit(7, "feet")
  37591. },
  37592. {
  37593. name: "Normal",
  37594. height: math.unit(150, "feet"),
  37595. default: true
  37596. },
  37597. {
  37598. name: "BIG",
  37599. height: math.unit(1200, "feet")
  37600. },
  37601. {
  37602. name: "👀",
  37603. height: math.unit(5, "miles")
  37604. },
  37605. {
  37606. name: "👀👀👀",
  37607. height: math.unit(64, "miles")
  37608. },
  37609. ]
  37610. ))
  37611. characterMakers.push(() => makeCharacter(
  37612. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37613. {
  37614. front: {
  37615. height: math.unit(625, "feet"),
  37616. name: "Front",
  37617. image: {
  37618. source: "./media/characters/asonja-rossa/front.svg",
  37619. extra: 1833/1686,
  37620. bottom: 24/1857
  37621. }
  37622. },
  37623. back: {
  37624. height: math.unit(625, "feet"),
  37625. name: "Back",
  37626. image: {
  37627. source: "./media/characters/asonja-rossa/back.svg",
  37628. extra: 1852/1753,
  37629. bottom: 26/1878
  37630. }
  37631. },
  37632. },
  37633. [
  37634. {
  37635. name: "Macro",
  37636. height: math.unit(625, "feet"),
  37637. default: true
  37638. },
  37639. ]
  37640. ))
  37641. characterMakers.push(() => makeCharacter(
  37642. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37643. {
  37644. side: {
  37645. height: math.unit(8, "feet"),
  37646. name: "Side",
  37647. image: {
  37648. source: "./media/characters/rezukii/side.svg",
  37649. extra: 979/542,
  37650. bottom: 87/1066
  37651. }
  37652. },
  37653. sitting: {
  37654. height: math.unit(14.6, "feet"),
  37655. name: "Sitting",
  37656. image: {
  37657. source: "./media/characters/rezukii/sitting.svg",
  37658. extra: 1023/813,
  37659. bottom: 45/1068
  37660. }
  37661. },
  37662. },
  37663. [
  37664. {
  37665. name: "Tiny",
  37666. height: math.unit(2, "feet")
  37667. },
  37668. {
  37669. name: "Smol",
  37670. height: math.unit(4, "feet")
  37671. },
  37672. {
  37673. name: "Normal",
  37674. height: math.unit(8, "feet"),
  37675. default: true
  37676. },
  37677. {
  37678. name: "Big",
  37679. height: math.unit(12, "feet")
  37680. },
  37681. {
  37682. name: "Macro",
  37683. height: math.unit(30, "feet")
  37684. },
  37685. ]
  37686. ))
  37687. characterMakers.push(() => makeCharacter(
  37688. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37689. {
  37690. front: {
  37691. height: math.unit(14, "feet"),
  37692. weight: math.unit(9.5, "tonnes"),
  37693. name: "Front",
  37694. image: {
  37695. source: "./media/characters/dawnheart/front.svg",
  37696. extra: 2792/2675,
  37697. bottom: 64/2856
  37698. }
  37699. },
  37700. },
  37701. [
  37702. {
  37703. name: "Normal",
  37704. height: math.unit(14, "feet"),
  37705. default: true
  37706. },
  37707. ]
  37708. ))
  37709. characterMakers.push(() => makeCharacter(
  37710. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37711. {
  37712. front: {
  37713. height: math.unit(1.7, "m"),
  37714. name: "Front",
  37715. image: {
  37716. source: "./media/characters/gladi/front.svg",
  37717. extra: 1460/1362,
  37718. bottom: 19/1479
  37719. }
  37720. },
  37721. back: {
  37722. height: math.unit(1.7, "m"),
  37723. name: "Back",
  37724. image: {
  37725. source: "./media/characters/gladi/back.svg",
  37726. extra: 1459/1357,
  37727. bottom: 12/1471
  37728. }
  37729. },
  37730. feral: {
  37731. height: math.unit(2.05, "m"),
  37732. name: "Feral",
  37733. image: {
  37734. source: "./media/characters/gladi/feral.svg",
  37735. extra: 821/557,
  37736. bottom: 91/912
  37737. }
  37738. },
  37739. },
  37740. [
  37741. {
  37742. name: "Shortest",
  37743. height: math.unit(70, "cm")
  37744. },
  37745. {
  37746. name: "Normal",
  37747. height: math.unit(1.7, "m")
  37748. },
  37749. {
  37750. name: "Macro",
  37751. height: math.unit(10, "m"),
  37752. default: true
  37753. },
  37754. {
  37755. name: "Tallest",
  37756. height: math.unit(200, "m")
  37757. },
  37758. ]
  37759. ))
  37760. characterMakers.push(() => makeCharacter(
  37761. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37762. {
  37763. front: {
  37764. height: math.unit(5 + 7/12, "feet"),
  37765. weight: math.unit(2, "tons"),
  37766. name: "Front",
  37767. image: {
  37768. source: "./media/characters/erdno/front.svg",
  37769. extra: 1234/1129,
  37770. bottom: 35/1269
  37771. }
  37772. },
  37773. angled: {
  37774. height: math.unit(5 + 7/12, "feet"),
  37775. weight: math.unit(2, "tons"),
  37776. name: "Angled",
  37777. image: {
  37778. source: "./media/characters/erdno/angled.svg",
  37779. extra: 1185/1139,
  37780. bottom: 36/1221
  37781. }
  37782. },
  37783. side: {
  37784. height: math.unit(5 + 7/12, "feet"),
  37785. weight: math.unit(2, "tons"),
  37786. name: "Side",
  37787. image: {
  37788. source: "./media/characters/erdno/side.svg",
  37789. extra: 1191/1144,
  37790. bottom: 40/1231
  37791. }
  37792. },
  37793. back: {
  37794. height: math.unit(5 + 7/12, "feet"),
  37795. weight: math.unit(2, "tons"),
  37796. name: "Back",
  37797. image: {
  37798. source: "./media/characters/erdno/back.svg",
  37799. extra: 1202/1146,
  37800. bottom: 17/1219
  37801. }
  37802. },
  37803. frontNsfw: {
  37804. height: math.unit(5 + 7/12, "feet"),
  37805. weight: math.unit(2, "tons"),
  37806. name: "Front (NSFW)",
  37807. image: {
  37808. source: "./media/characters/erdno/front-nsfw.svg",
  37809. extra: 1234/1129,
  37810. bottom: 35/1269
  37811. }
  37812. },
  37813. angledNsfw: {
  37814. height: math.unit(5 + 7/12, "feet"),
  37815. weight: math.unit(2, "tons"),
  37816. name: "Angled (NSFW)",
  37817. image: {
  37818. source: "./media/characters/erdno/angled-nsfw.svg",
  37819. extra: 1185/1139,
  37820. bottom: 36/1221
  37821. }
  37822. },
  37823. sideNsfw: {
  37824. height: math.unit(5 + 7/12, "feet"),
  37825. weight: math.unit(2, "tons"),
  37826. name: "Side (NSFW)",
  37827. image: {
  37828. source: "./media/characters/erdno/side-nsfw.svg",
  37829. extra: 1191/1144,
  37830. bottom: 40/1231
  37831. }
  37832. },
  37833. backNsfw: {
  37834. height: math.unit(5 + 7/12, "feet"),
  37835. weight: math.unit(2, "tons"),
  37836. name: "Back (NSFW)",
  37837. image: {
  37838. source: "./media/characters/erdno/back-nsfw.svg",
  37839. extra: 1202/1146,
  37840. bottom: 17/1219
  37841. }
  37842. },
  37843. frontHyper: {
  37844. height: math.unit(5 + 7/12, "feet"),
  37845. weight: math.unit(2, "tons"),
  37846. name: "Front (Hyper)",
  37847. image: {
  37848. source: "./media/characters/erdno/front-hyper.svg",
  37849. extra: 1298/1136,
  37850. bottom: 35/1333
  37851. }
  37852. },
  37853. },
  37854. [
  37855. {
  37856. name: "Normal",
  37857. height: math.unit(5 + 7/12, "feet"),
  37858. default: true
  37859. },
  37860. {
  37861. name: "Big",
  37862. height: math.unit(5.7, "meters")
  37863. },
  37864. {
  37865. name: "Macro",
  37866. height: math.unit(5.7, "kilometers")
  37867. },
  37868. {
  37869. name: "Megamacro",
  37870. height: math.unit(5.7, "earths")
  37871. },
  37872. ]
  37873. ))
  37874. characterMakers.push(() => makeCharacter(
  37875. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37876. {
  37877. front: {
  37878. height: math.unit(5 + 10/12, "feet"),
  37879. weight: math.unit(150, "lb"),
  37880. name: "Front",
  37881. image: {
  37882. source: "./media/characters/jamie/front.svg",
  37883. extra: 1908/1768,
  37884. bottom: 19/1927
  37885. }
  37886. },
  37887. },
  37888. [
  37889. {
  37890. name: "Minimum",
  37891. height: math.unit(2, "cm")
  37892. },
  37893. {
  37894. name: "Micro",
  37895. height: math.unit(3, "inches")
  37896. },
  37897. {
  37898. name: "Normal",
  37899. height: math.unit(5 + 10/12, "feet"),
  37900. default: true
  37901. },
  37902. {
  37903. name: "Macro",
  37904. height: math.unit(150, "feet")
  37905. },
  37906. {
  37907. name: "Megamacro",
  37908. height: math.unit(10000, "m")
  37909. },
  37910. ]
  37911. ))
  37912. characterMakers.push(() => makeCharacter(
  37913. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37914. {
  37915. front: {
  37916. height: math.unit(2, "meters"),
  37917. weight: math.unit(100, "kg"),
  37918. name: "Front",
  37919. image: {
  37920. source: "./media/characters/shiron/front.svg",
  37921. extra: 2103/1985,
  37922. bottom: 98/2201
  37923. }
  37924. },
  37925. back: {
  37926. height: math.unit(2, "meters"),
  37927. weight: math.unit(100, "kg"),
  37928. name: "Back",
  37929. image: {
  37930. source: "./media/characters/shiron/back.svg",
  37931. extra: 2110/2015,
  37932. bottom: 89/2199
  37933. }
  37934. },
  37935. hand: {
  37936. height: math.unit(0.96, "feet"),
  37937. name: "Hand",
  37938. image: {
  37939. source: "./media/characters/shiron/hand.svg"
  37940. }
  37941. },
  37942. foot: {
  37943. height: math.unit(1.464, "feet"),
  37944. name: "Foot",
  37945. image: {
  37946. source: "./media/characters/shiron/foot.svg"
  37947. }
  37948. },
  37949. },
  37950. [
  37951. {
  37952. name: "Normal",
  37953. height: math.unit(2, "meters")
  37954. },
  37955. {
  37956. name: "Macro",
  37957. height: math.unit(500, "meters"),
  37958. default: true
  37959. },
  37960. {
  37961. name: "Megamacro",
  37962. height: math.unit(20, "km")
  37963. },
  37964. ]
  37965. ))
  37966. characterMakers.push(() => makeCharacter(
  37967. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37968. {
  37969. front: {
  37970. height: math.unit(6, "feet"),
  37971. name: "Front",
  37972. image: {
  37973. source: "./media/characters/sam/front.svg",
  37974. extra: 849/826,
  37975. bottom: 19/868
  37976. }
  37977. },
  37978. },
  37979. [
  37980. {
  37981. name: "Normal",
  37982. height: math.unit(6, "feet"),
  37983. default: true
  37984. },
  37985. ]
  37986. ))
  37987. characterMakers.push(() => makeCharacter(
  37988. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37989. {
  37990. front: {
  37991. height: math.unit(8 + 4/12, "feet"),
  37992. weight: math.unit(122, "kg"),
  37993. name: "Front",
  37994. image: {
  37995. source: "./media/characters/namori-kurogawa/front.svg",
  37996. extra: 1894/1576,
  37997. bottom: 34/1928
  37998. }
  37999. },
  38000. },
  38001. [
  38002. {
  38003. name: "Normal",
  38004. height: math.unit(8 + 4/12, "feet"),
  38005. default: true
  38006. },
  38007. ]
  38008. ))
  38009. characterMakers.push(() => makeCharacter(
  38010. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38011. {
  38012. front: {
  38013. height: math.unit(9, "feet"),
  38014. weight: math.unit(621, "lb"),
  38015. name: "Front",
  38016. image: {
  38017. source: "./media/characters/unmru/front.svg",
  38018. extra: 1853/1747,
  38019. bottom: 73/1926
  38020. }
  38021. },
  38022. side: {
  38023. height: math.unit(9, "feet"),
  38024. weight: math.unit(621, "lb"),
  38025. name: "Side",
  38026. image: {
  38027. source: "./media/characters/unmru/side.svg",
  38028. extra: 1781/1671,
  38029. bottom: 127/1908
  38030. }
  38031. },
  38032. back: {
  38033. height: math.unit(9, "feet"),
  38034. weight: math.unit(621, "lb"),
  38035. name: "Back",
  38036. image: {
  38037. source: "./media/characters/unmru/back.svg",
  38038. extra: 1894/1765,
  38039. bottom: 75/1969
  38040. }
  38041. },
  38042. dick: {
  38043. height: math.unit(3, "feet"),
  38044. weight: math.unit(35, "lb"),
  38045. name: "Dick",
  38046. image: {
  38047. source: "./media/characters/unmru/dick.svg"
  38048. }
  38049. },
  38050. },
  38051. [
  38052. {
  38053. name: "Normal",
  38054. height: math.unit(9, "feet")
  38055. },
  38056. {
  38057. name: "Natural",
  38058. height: math.unit(27, "feet"),
  38059. default: true
  38060. },
  38061. {
  38062. name: "Giant",
  38063. height: math.unit(90, "feet")
  38064. },
  38065. {
  38066. name: "Kaiju",
  38067. height: math.unit(270, "feet")
  38068. },
  38069. {
  38070. name: "Macro",
  38071. height: math.unit(900, "feet")
  38072. },
  38073. {
  38074. name: "Macro+",
  38075. height: math.unit(2700, "feet")
  38076. },
  38077. {
  38078. name: "Megamacro",
  38079. height: math.unit(9000, "feet")
  38080. },
  38081. {
  38082. name: "City-Crushing",
  38083. height: math.unit(27000, "feet")
  38084. },
  38085. {
  38086. name: "Mountain-Mashing",
  38087. height: math.unit(90000, "feet")
  38088. },
  38089. {
  38090. name: "Earth-Eclipsing",
  38091. height: math.unit(2.7e8, "feet")
  38092. },
  38093. {
  38094. name: "Sol-Swallowing",
  38095. height: math.unit(9e10, "feet")
  38096. },
  38097. {
  38098. name: "Majoris-Munching",
  38099. height: math.unit(2.7e13, "feet")
  38100. },
  38101. ]
  38102. ))
  38103. characterMakers.push(() => makeCharacter(
  38104. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38105. {
  38106. front: {
  38107. height: math.unit(1, "inch"),
  38108. name: "Front",
  38109. image: {
  38110. source: "./media/characters/squeaks-mouse/front.svg",
  38111. extra: 352/308,
  38112. bottom: 25/377
  38113. }
  38114. },
  38115. },
  38116. [
  38117. {
  38118. name: "Micro",
  38119. height: math.unit(1, "inch"),
  38120. default: true
  38121. },
  38122. ]
  38123. ))
  38124. characterMakers.push(() => makeCharacter(
  38125. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38126. {
  38127. side: {
  38128. height: math.unit(35, "feet"),
  38129. name: "Side",
  38130. image: {
  38131. source: "./media/characters/sayko/side.svg",
  38132. extra: 1697/1021,
  38133. bottom: 82/1779
  38134. }
  38135. },
  38136. head: {
  38137. height: math.unit(16, "feet"),
  38138. name: "Head",
  38139. image: {
  38140. source: "./media/characters/sayko/head.svg"
  38141. }
  38142. },
  38143. forepaw: {
  38144. height: math.unit(7.85, "feet"),
  38145. name: "Forepaw",
  38146. image: {
  38147. source: "./media/characters/sayko/forepaw.svg"
  38148. }
  38149. },
  38150. hindpaw: {
  38151. height: math.unit(8.8, "feet"),
  38152. name: "Hindpaw",
  38153. image: {
  38154. source: "./media/characters/sayko/hindpaw.svg"
  38155. }
  38156. },
  38157. },
  38158. [
  38159. {
  38160. name: "Normal",
  38161. height: math.unit(35, "feet"),
  38162. default: true
  38163. },
  38164. {
  38165. name: "Colossus",
  38166. height: math.unit(100, "meters")
  38167. },
  38168. {
  38169. name: "\"Small\" Deity",
  38170. height: math.unit(1, "km")
  38171. },
  38172. {
  38173. name: "\"Large\" Deity",
  38174. height: math.unit(15, "km")
  38175. },
  38176. ]
  38177. ))
  38178. characterMakers.push(() => makeCharacter(
  38179. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38180. {
  38181. front: {
  38182. height: math.unit(6, "feet"),
  38183. weight: math.unit(250, "lb"),
  38184. name: "Front",
  38185. image: {
  38186. source: "./media/characters/mukiro/front.svg",
  38187. extra: 1368/1310,
  38188. bottom: 34/1402
  38189. }
  38190. },
  38191. },
  38192. [
  38193. {
  38194. name: "Normal",
  38195. height: math.unit(6, "feet"),
  38196. default: true
  38197. },
  38198. ]
  38199. ))
  38200. characterMakers.push(() => makeCharacter(
  38201. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38202. {
  38203. front: {
  38204. height: math.unit(12 + 4/12, "feet"),
  38205. name: "Front",
  38206. image: {
  38207. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38208. extra: 1346/1311,
  38209. bottom: 65/1411
  38210. }
  38211. },
  38212. },
  38213. [
  38214. {
  38215. name: "Base",
  38216. height: math.unit(12 + 4/12, "feet"),
  38217. default: true
  38218. },
  38219. {
  38220. name: "Macro",
  38221. height: math.unit(150, "feet")
  38222. },
  38223. {
  38224. name: "Mega",
  38225. height: math.unit(2, "miles")
  38226. },
  38227. {
  38228. name: "Demi God",
  38229. height: math.unit(4, "AU")
  38230. },
  38231. {
  38232. name: "God Size",
  38233. height: math.unit(1, "universe")
  38234. },
  38235. ]
  38236. ))
  38237. characterMakers.push(() => makeCharacter(
  38238. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38239. {
  38240. front: {
  38241. height: math.unit(3 + 3/12, "feet"),
  38242. weight: math.unit(88, "lb"),
  38243. name: "Front",
  38244. image: {
  38245. source: "./media/characters/trey/front.svg",
  38246. extra: 1815/1509,
  38247. bottom: 60/1875
  38248. }
  38249. },
  38250. },
  38251. [
  38252. {
  38253. name: "Normal",
  38254. height: math.unit(3 + 3/12, "feet"),
  38255. default: true
  38256. },
  38257. ]
  38258. ))
  38259. characterMakers.push(() => makeCharacter(
  38260. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38261. {
  38262. front: {
  38263. height: math.unit(4, "meters"),
  38264. name: "Front",
  38265. image: {
  38266. source: "./media/characters/adelonda/front.svg",
  38267. extra: 1077/982,
  38268. bottom: 39/1116
  38269. }
  38270. },
  38271. back: {
  38272. height: math.unit(4, "meters"),
  38273. name: "Back",
  38274. image: {
  38275. source: "./media/characters/adelonda/back.svg",
  38276. extra: 1105/1003,
  38277. bottom: 25/1130
  38278. }
  38279. },
  38280. feral: {
  38281. height: math.unit(40/1.5, "meters"),
  38282. name: "Feral",
  38283. image: {
  38284. source: "./media/characters/adelonda/feral.svg",
  38285. extra: 597/271,
  38286. bottom: 387/984
  38287. }
  38288. },
  38289. },
  38290. [
  38291. {
  38292. name: "Normal",
  38293. height: math.unit(4, "meters"),
  38294. default: true
  38295. },
  38296. ]
  38297. ))
  38298. characterMakers.push(() => makeCharacter(
  38299. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38300. {
  38301. front: {
  38302. height: math.unit(8 + 4/12, "feet"),
  38303. weight: math.unit(670, "lb"),
  38304. name: "Front",
  38305. image: {
  38306. source: "./media/characters/acadiel/front.svg",
  38307. extra: 1901/1595,
  38308. bottom: 142/2043
  38309. }
  38310. },
  38311. },
  38312. [
  38313. {
  38314. name: "Normal",
  38315. height: math.unit(8 + 4/12, "feet"),
  38316. default: true
  38317. },
  38318. {
  38319. name: "Macro",
  38320. height: math.unit(200, "feet")
  38321. },
  38322. ]
  38323. ))
  38324. characterMakers.push(() => makeCharacter(
  38325. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38326. {
  38327. front: {
  38328. height: math.unit(6 + 2/12, "feet"),
  38329. weight: math.unit(185, "lb"),
  38330. name: "Front",
  38331. image: {
  38332. source: "./media/characters/kayne-ein/front.svg",
  38333. extra: 1780/1560,
  38334. bottom: 81/1861
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Normal",
  38341. height: math.unit(6 + 2/12, "feet"),
  38342. default: true
  38343. },
  38344. {
  38345. name: "Transformation Stage",
  38346. height: math.unit(15, "feet")
  38347. },
  38348. {
  38349. name: "Macro",
  38350. height: math.unit(150, "feet")
  38351. },
  38352. {
  38353. name: "Earth's Shadow",
  38354. height: math.unit(6200, "miles")
  38355. },
  38356. {
  38357. name: "Universal Demon",
  38358. height: math.unit(28e9, "parsecs")
  38359. },
  38360. {
  38361. name: "Multiverse God",
  38362. height: math.unit(3, "multiverses")
  38363. },
  38364. ]
  38365. ))
  38366. characterMakers.push(() => makeCharacter(
  38367. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38368. {
  38369. front: {
  38370. height: math.unit(5 + 5/12, "feet"),
  38371. name: "Front",
  38372. image: {
  38373. source: "./media/characters/fawn/front.svg",
  38374. extra: 1873/1731,
  38375. bottom: 95/1968
  38376. }
  38377. },
  38378. back: {
  38379. height: math.unit(5 + 5/12, "feet"),
  38380. name: "Back",
  38381. image: {
  38382. source: "./media/characters/fawn/back.svg",
  38383. extra: 1813/1700,
  38384. bottom: 14/1827
  38385. }
  38386. },
  38387. hoof: {
  38388. height: math.unit(1.45, "feet"),
  38389. name: "Hoof",
  38390. image: {
  38391. source: "./media/characters/fawn/hoof.svg"
  38392. }
  38393. },
  38394. },
  38395. [
  38396. {
  38397. name: "Normal",
  38398. height: math.unit(5 + 5/12, "feet"),
  38399. default: true
  38400. },
  38401. ]
  38402. ))
  38403. characterMakers.push(() => makeCharacter(
  38404. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38405. {
  38406. front: {
  38407. height: math.unit(2 + 5/12, "feet"),
  38408. name: "Front",
  38409. image: {
  38410. source: "./media/characters/orion/front.svg",
  38411. extra: 1366/1304,
  38412. bottom: 43/1409
  38413. }
  38414. },
  38415. paw: {
  38416. height: math.unit(0.52, "feet"),
  38417. name: "Paw",
  38418. image: {
  38419. source: "./media/characters/orion/paw.svg"
  38420. }
  38421. },
  38422. },
  38423. [
  38424. {
  38425. name: "Normal",
  38426. height: math.unit(2 + 5/12, "feet"),
  38427. default: true
  38428. },
  38429. ]
  38430. ))
  38431. characterMakers.push(() => makeCharacter(
  38432. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38433. {
  38434. front: {
  38435. height: math.unit(5 + 10/12, "feet"),
  38436. name: "Front",
  38437. image: {
  38438. source: "./media/characters/vera/front.svg",
  38439. extra: 1680/1575,
  38440. bottom: 49/1729
  38441. }
  38442. },
  38443. back: {
  38444. height: math.unit(5 + 10/12, "feet"),
  38445. name: "Back",
  38446. image: {
  38447. source: "./media/characters/vera/back.svg",
  38448. extra: 1700/1588,
  38449. bottom: 18/1718
  38450. }
  38451. },
  38452. arcanine: {
  38453. height: math.unit(6 + 8/12, "feet"),
  38454. name: "Arcanine",
  38455. image: {
  38456. source: "./media/characters/vera/arcanine.svg",
  38457. extra: 1590/1511,
  38458. bottom: 71/1661
  38459. }
  38460. },
  38461. maw: {
  38462. height: math.unit(0.82, "feet"),
  38463. name: "Maw",
  38464. image: {
  38465. source: "./media/characters/vera/maw.svg"
  38466. }
  38467. },
  38468. mawArcanine: {
  38469. height: math.unit(0.97, "feet"),
  38470. name: "Maw (Arcanine)",
  38471. image: {
  38472. source: "./media/characters/vera/maw-arcanine.svg"
  38473. }
  38474. },
  38475. paw: {
  38476. height: math.unit(0.75, "feet"),
  38477. name: "Paw",
  38478. image: {
  38479. source: "./media/characters/vera/paw.svg"
  38480. }
  38481. },
  38482. pawprint: {
  38483. height: math.unit(0.52, "feet"),
  38484. name: "Pawprint",
  38485. image: {
  38486. source: "./media/characters/vera/pawprint.svg"
  38487. }
  38488. },
  38489. },
  38490. [
  38491. {
  38492. name: "Normal",
  38493. height: math.unit(5 + 10/12, "feet"),
  38494. default: true
  38495. },
  38496. {
  38497. name: "Macro",
  38498. height: math.unit(75, "feet")
  38499. },
  38500. ]
  38501. ))
  38502. characterMakers.push(() => makeCharacter(
  38503. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38504. {
  38505. front: {
  38506. height: math.unit(4, "feet"),
  38507. weight: math.unit(40, "lb"),
  38508. name: "Front",
  38509. image: {
  38510. source: "./media/characters/orvan-rabbit/front.svg",
  38511. extra: 1896/1642,
  38512. bottom: 29/1925
  38513. }
  38514. },
  38515. },
  38516. [
  38517. {
  38518. name: "Normal",
  38519. height: math.unit(4, "feet"),
  38520. default: true
  38521. },
  38522. ]
  38523. ))
  38524. characterMakers.push(() => makeCharacter(
  38525. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38526. {
  38527. front: {
  38528. height: math.unit(6, "feet"),
  38529. weight: math.unit(168, "lb"),
  38530. name: "Front",
  38531. image: {
  38532. source: "./media/characters/lisa/front.svg",
  38533. extra: 2065/1867,
  38534. bottom: 46/2111
  38535. }
  38536. },
  38537. back: {
  38538. height: math.unit(6, "feet"),
  38539. weight: math.unit(168, "lb"),
  38540. name: "Back",
  38541. image: {
  38542. source: "./media/characters/lisa/back.svg",
  38543. extra: 1982/1838,
  38544. bottom: 29/2011
  38545. }
  38546. },
  38547. maw: {
  38548. height: math.unit(0.81, "feet"),
  38549. name: "Maw",
  38550. image: {
  38551. source: "./media/characters/lisa/maw.svg"
  38552. }
  38553. },
  38554. paw: {
  38555. height: math.unit(0.9, "feet"),
  38556. name: "Paw",
  38557. image: {
  38558. source: "./media/characters/lisa/paw.svg"
  38559. }
  38560. },
  38561. caribousune: {
  38562. height: math.unit(7 + 2/12, "feet"),
  38563. weight: math.unit(268, "lb"),
  38564. name: "Caribousune",
  38565. image: {
  38566. source: "./media/characters/lisa/caribousune.svg",
  38567. extra: 1843/1633,
  38568. bottom: 29/1872
  38569. }
  38570. },
  38571. frontCaribousune: {
  38572. height: math.unit(7 + 2/12, "feet"),
  38573. weight: math.unit(268, "lb"),
  38574. name: "Front (Caribousune)",
  38575. image: {
  38576. source: "./media/characters/lisa/front-caribousune.svg",
  38577. extra: 1818/1638,
  38578. bottom: 52/1870
  38579. }
  38580. },
  38581. sideCaribousune: {
  38582. height: math.unit(7 + 2/12, "feet"),
  38583. weight: math.unit(268, "lb"),
  38584. name: "Side (Caribousune)",
  38585. image: {
  38586. source: "./media/characters/lisa/side-caribousune.svg",
  38587. extra: 1851/1635,
  38588. bottom: 16/1867
  38589. }
  38590. },
  38591. backCaribousune: {
  38592. height: math.unit(7 + 2/12, "feet"),
  38593. weight: math.unit(268, "lb"),
  38594. name: "Back (Caribousune)",
  38595. image: {
  38596. source: "./media/characters/lisa/back-caribousune.svg",
  38597. extra: 1801/1604,
  38598. bottom: 44/1845
  38599. }
  38600. },
  38601. caribou: {
  38602. height: math.unit(7 + 2/12, "feet"),
  38603. weight: math.unit(268, "lb"),
  38604. name: "Caribou",
  38605. image: {
  38606. source: "./media/characters/lisa/caribou.svg",
  38607. extra: 1843/1633,
  38608. bottom: 29/1872
  38609. }
  38610. },
  38611. frontCaribou: {
  38612. height: math.unit(7 + 2/12, "feet"),
  38613. weight: math.unit(268, "lb"),
  38614. name: "Front (Caribou)",
  38615. image: {
  38616. source: "./media/characters/lisa/front-caribou.svg",
  38617. extra: 1818/1638,
  38618. bottom: 52/1870
  38619. }
  38620. },
  38621. sideCaribou: {
  38622. height: math.unit(7 + 2/12, "feet"),
  38623. weight: math.unit(268, "lb"),
  38624. name: "Side (Caribou)",
  38625. image: {
  38626. source: "./media/characters/lisa/side-caribou.svg",
  38627. extra: 1851/1635,
  38628. bottom: 16/1867
  38629. }
  38630. },
  38631. backCaribou: {
  38632. height: math.unit(7 + 2/12, "feet"),
  38633. weight: math.unit(268, "lb"),
  38634. name: "Back (Caribou)",
  38635. image: {
  38636. source: "./media/characters/lisa/back-caribou.svg",
  38637. extra: 1801/1604,
  38638. bottom: 44/1845
  38639. }
  38640. },
  38641. mawCaribou: {
  38642. height: math.unit(1.45, "feet"),
  38643. name: "Maw (Caribou)",
  38644. image: {
  38645. source: "./media/characters/lisa/maw-caribou.svg"
  38646. }
  38647. },
  38648. mawCaribousune: {
  38649. height: math.unit(1.45, "feet"),
  38650. name: "Maw (Caribousune)",
  38651. image: {
  38652. source: "./media/characters/lisa/maw-caribousune.svg"
  38653. }
  38654. },
  38655. pawCaribousune: {
  38656. height: math.unit(1.61, "feet"),
  38657. name: "Paw (Caribou)",
  38658. image: {
  38659. source: "./media/characters/lisa/paw-caribousune.svg"
  38660. }
  38661. },
  38662. },
  38663. [
  38664. {
  38665. name: "Normal",
  38666. height: math.unit(6, "feet")
  38667. },
  38668. {
  38669. name: "God Size",
  38670. height: math.unit(72, "feet"),
  38671. default: true
  38672. },
  38673. {
  38674. name: "Towering",
  38675. height: math.unit(288, "feet")
  38676. },
  38677. {
  38678. name: "City Size",
  38679. height: math.unit(48384, "feet")
  38680. },
  38681. {
  38682. name: "Continental",
  38683. height: math.unit(4200, "miles")
  38684. },
  38685. {
  38686. name: "Planet Eater",
  38687. height: math.unit(42, "earths")
  38688. },
  38689. {
  38690. name: "Star Swallower",
  38691. height: math.unit(42, "solarradii")
  38692. },
  38693. {
  38694. name: "System Swallower",
  38695. height: math.unit(84000, "AU")
  38696. },
  38697. {
  38698. name: "Galaxy Gobbler",
  38699. height: math.unit(42, "galaxies")
  38700. },
  38701. {
  38702. name: "Universe Devourer",
  38703. height: math.unit(42, "universes")
  38704. },
  38705. {
  38706. name: "Multiverse Muncher",
  38707. height: math.unit(42, "multiverses")
  38708. },
  38709. ]
  38710. ))
  38711. characterMakers.push(() => makeCharacter(
  38712. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38713. {
  38714. front: {
  38715. height: math.unit(36, "feet"),
  38716. name: "Front",
  38717. image: {
  38718. source: "./media/characters/shadow-rat/front.svg",
  38719. extra: 1845/1758,
  38720. bottom: 83/1928
  38721. }
  38722. },
  38723. },
  38724. [
  38725. {
  38726. name: "Macro",
  38727. height: math.unit(36, "feet"),
  38728. default: true
  38729. },
  38730. ]
  38731. ))
  38732. characterMakers.push(() => makeCharacter(
  38733. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38734. {
  38735. side: {
  38736. height: math.unit(8, "feet"),
  38737. weight: math.unit(2630, "lb"),
  38738. name: "Side",
  38739. image: {
  38740. source: "./media/characters/torallia/side.svg",
  38741. extra: 2164/2021,
  38742. bottom: 371/2535
  38743. }
  38744. },
  38745. },
  38746. [
  38747. {
  38748. name: "Mortal Interaction",
  38749. height: math.unit(8, "feet")
  38750. },
  38751. {
  38752. name: "Natural",
  38753. height: math.unit(24, "feet"),
  38754. default: true
  38755. },
  38756. {
  38757. name: "Giant",
  38758. height: math.unit(80, "feet")
  38759. },
  38760. {
  38761. name: "Kaiju",
  38762. height: math.unit(240, "feet")
  38763. },
  38764. {
  38765. name: "Macro",
  38766. height: math.unit(800, "feet")
  38767. },
  38768. {
  38769. name: "Macro+",
  38770. height: math.unit(2400, "feet")
  38771. },
  38772. {
  38773. name: "Macro++",
  38774. height: math.unit(8000, "feet")
  38775. },
  38776. {
  38777. name: "City-Crushing",
  38778. height: math.unit(24000, "feet")
  38779. },
  38780. {
  38781. name: "Mountain-Mashing",
  38782. height: math.unit(80000, "feet")
  38783. },
  38784. {
  38785. name: "District Demolisher",
  38786. height: math.unit(240000, "feet")
  38787. },
  38788. {
  38789. name: "Tri-County Terror",
  38790. height: math.unit(800000, "feet")
  38791. },
  38792. {
  38793. name: "State Smasher",
  38794. height: math.unit(2.4e6, "feet")
  38795. },
  38796. {
  38797. name: "Nation Nemesis",
  38798. height: math.unit(8e6, "feet")
  38799. },
  38800. {
  38801. name: "Continent Cracker",
  38802. height: math.unit(2.4e7, "feet")
  38803. },
  38804. {
  38805. name: "Planet-Pillaging",
  38806. height: math.unit(8e7, "feet")
  38807. },
  38808. {
  38809. name: "Earth-Eclipsing",
  38810. height: math.unit(2.4e8, "feet")
  38811. },
  38812. {
  38813. name: "Jovian-Jostling",
  38814. height: math.unit(8e8, "feet")
  38815. },
  38816. {
  38817. name: "Gas Giant Gulper",
  38818. height: math.unit(2.4e9, "feet")
  38819. },
  38820. {
  38821. name: "Astral Annihilator",
  38822. height: math.unit(8e9, "feet")
  38823. },
  38824. {
  38825. name: "Celestial Conqueror",
  38826. height: math.unit(2.4e10, "feet")
  38827. },
  38828. {
  38829. name: "Sol-Swallowing",
  38830. height: math.unit(8e10, "feet")
  38831. },
  38832. {
  38833. name: "Hunter of the Heavens",
  38834. height: math.unit(2.4e13, "feet")
  38835. },
  38836. ]
  38837. ))
  38838. characterMakers.push(() => makeCharacter(
  38839. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38840. {
  38841. front: {
  38842. height: math.unit(6 + 8/12, "feet"),
  38843. name: "Front",
  38844. image: {
  38845. source: "./media/characters/rebecca-pawlson/front.svg",
  38846. extra: 1737/1596,
  38847. bottom: 107/1844
  38848. }
  38849. },
  38850. back: {
  38851. height: math.unit(6 + 8/12, "feet"),
  38852. name: "Back",
  38853. image: {
  38854. source: "./media/characters/rebecca-pawlson/back.svg",
  38855. extra: 1702/1523,
  38856. bottom: 86/1788
  38857. }
  38858. },
  38859. },
  38860. [
  38861. {
  38862. name: "Normal",
  38863. height: math.unit(6 + 8/12, "feet")
  38864. },
  38865. {
  38866. name: "Mini Macro",
  38867. height: math.unit(10, "feet"),
  38868. default: true
  38869. },
  38870. {
  38871. name: "Macro",
  38872. height: math.unit(100, "feet")
  38873. },
  38874. {
  38875. name: "Mega Macro",
  38876. height: math.unit(2500, "feet")
  38877. },
  38878. {
  38879. name: "Giga Macro",
  38880. height: math.unit(50, "miles")
  38881. },
  38882. ]
  38883. ))
  38884. characterMakers.push(() => makeCharacter(
  38885. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38886. {
  38887. front: {
  38888. height: math.unit(7 + 6/12, "feet"),
  38889. weight: math.unit(600, "lb"),
  38890. name: "Front",
  38891. image: {
  38892. source: "./media/characters/moxie-nova/front.svg",
  38893. extra: 1734/1652,
  38894. bottom: 41/1775
  38895. }
  38896. },
  38897. },
  38898. [
  38899. {
  38900. name: "Normal",
  38901. height: math.unit(7 + 6/12, "feet"),
  38902. default: true
  38903. },
  38904. ]
  38905. ))
  38906. characterMakers.push(() => makeCharacter(
  38907. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38908. {
  38909. goat: {
  38910. height: math.unit(4, "feet"),
  38911. weight: math.unit(180, "lb"),
  38912. name: "Goat",
  38913. image: {
  38914. source: "./media/characters/tiffany/goat.svg",
  38915. extra: 1845/1595,
  38916. bottom: 106/1951
  38917. }
  38918. },
  38919. front: {
  38920. height: math.unit(5, "feet"),
  38921. weight: math.unit(150, "lb"),
  38922. name: "Foxcoon",
  38923. image: {
  38924. source: "./media/characters/tiffany/foxcoon.svg",
  38925. extra: 1941/1845,
  38926. bottom: 58/1999
  38927. }
  38928. },
  38929. },
  38930. [
  38931. {
  38932. name: "Normal",
  38933. height: math.unit(5, "feet"),
  38934. default: true
  38935. },
  38936. ]
  38937. ))
  38938. characterMakers.push(() => makeCharacter(
  38939. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38940. {
  38941. front: {
  38942. height: math.unit(8, "feet"),
  38943. weight: math.unit(300, "lb"),
  38944. name: "Front",
  38945. image: {
  38946. source: "./media/characters/raxinath/front.svg",
  38947. extra: 1407/1309,
  38948. bottom: 39/1446
  38949. }
  38950. },
  38951. back: {
  38952. height: math.unit(8, "feet"),
  38953. weight: math.unit(300, "lb"),
  38954. name: "Back",
  38955. image: {
  38956. source: "./media/characters/raxinath/back.svg",
  38957. extra: 1405/1315,
  38958. bottom: 9/1414
  38959. }
  38960. },
  38961. },
  38962. [
  38963. {
  38964. name: "Speck",
  38965. height: math.unit(0.5, "nm")
  38966. },
  38967. {
  38968. name: "Micro",
  38969. height: math.unit(3, "inches")
  38970. },
  38971. {
  38972. name: "Kobold",
  38973. height: math.unit(3, "feet")
  38974. },
  38975. {
  38976. name: "Normal",
  38977. height: math.unit(8, "feet"),
  38978. default: true
  38979. },
  38980. {
  38981. name: "Giant",
  38982. height: math.unit(50, "feet")
  38983. },
  38984. {
  38985. name: "Macro",
  38986. height: math.unit(1000, "feet")
  38987. },
  38988. {
  38989. name: "Megamacro",
  38990. height: math.unit(1, "mile")
  38991. },
  38992. ]
  38993. ))
  38994. characterMakers.push(() => makeCharacter(
  38995. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38996. {
  38997. front: {
  38998. height: math.unit(10, "feet"),
  38999. weight: math.unit(1442, "lb"),
  39000. name: "Front",
  39001. image: {
  39002. source: "./media/characters/mal-dragon/front.svg",
  39003. extra: 1515/1444,
  39004. bottom: 113/1628
  39005. }
  39006. },
  39007. back: {
  39008. height: math.unit(10, "feet"),
  39009. weight: math.unit(1442, "lb"),
  39010. name: "Back",
  39011. image: {
  39012. source: "./media/characters/mal-dragon/back.svg",
  39013. extra: 1527/1434,
  39014. bottom: 25/1552
  39015. }
  39016. },
  39017. },
  39018. [
  39019. {
  39020. name: "Mortal Interaction",
  39021. height: math.unit(10, "feet"),
  39022. default: true
  39023. },
  39024. {
  39025. name: "Large",
  39026. height: math.unit(30, "feet")
  39027. },
  39028. {
  39029. name: "Kaiju",
  39030. height: math.unit(300, "feet")
  39031. },
  39032. {
  39033. name: "Megamacro",
  39034. height: math.unit(10000, "feet")
  39035. },
  39036. {
  39037. name: "Continent Cracker",
  39038. height: math.unit(30000000, "feet")
  39039. },
  39040. {
  39041. name: "Sol-Swallowing",
  39042. height: math.unit(1e11, "feet")
  39043. },
  39044. {
  39045. name: "Light Universal",
  39046. height: math.unit(5, "universes")
  39047. },
  39048. {
  39049. name: "Universe Atoms",
  39050. height: math.unit(1.829e9, "universes")
  39051. },
  39052. {
  39053. name: "Light Multiversal",
  39054. height: math.unit(5, "multiverses")
  39055. },
  39056. {
  39057. name: "Multiverse Atoms",
  39058. height: math.unit(1.829e9, "multiverses")
  39059. },
  39060. {
  39061. name: "Fabric of Time",
  39062. height: math.unit(1e262, "multiverses")
  39063. },
  39064. ]
  39065. ))
  39066. characterMakers.push(() => makeCharacter(
  39067. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39068. {
  39069. front: {
  39070. height: math.unit(9, "feet"),
  39071. weight: math.unit(1050, "lb"),
  39072. name: "Front",
  39073. image: {
  39074. source: "./media/characters/tabitha/front.svg",
  39075. extra: 2083/1994,
  39076. bottom: 68/2151
  39077. }
  39078. },
  39079. },
  39080. [
  39081. {
  39082. name: "Baseline",
  39083. height: math.unit(9, "feet"),
  39084. default: true
  39085. },
  39086. {
  39087. name: "Giant",
  39088. height: math.unit(90, "feet")
  39089. },
  39090. {
  39091. name: "Macro",
  39092. height: math.unit(900, "feet")
  39093. },
  39094. {
  39095. name: "Megamacro",
  39096. height: math.unit(9000, "feet")
  39097. },
  39098. {
  39099. name: "City-Crushing",
  39100. height: math.unit(27000, "feet")
  39101. },
  39102. {
  39103. name: "Mountain-Mashing",
  39104. height: math.unit(90000, "feet")
  39105. },
  39106. {
  39107. name: "Nation Nemesis",
  39108. height: math.unit(9e6, "feet")
  39109. },
  39110. {
  39111. name: "Continent Cracker",
  39112. height: math.unit(27e6, "feet")
  39113. },
  39114. {
  39115. name: "Earth-Eclipsing",
  39116. height: math.unit(2.7e8, "feet")
  39117. },
  39118. {
  39119. name: "Gas Giant Gulper",
  39120. height: math.unit(2.7e9, "feet")
  39121. },
  39122. {
  39123. name: "Sol-Swallowing",
  39124. height: math.unit(9e10, "feet")
  39125. },
  39126. {
  39127. name: "Galaxy Gulper",
  39128. height: math.unit(9, "galaxies")
  39129. },
  39130. {
  39131. name: "Cosmos Churner",
  39132. height: math.unit(9, "universes")
  39133. },
  39134. ]
  39135. ))
  39136. characterMakers.push(() => makeCharacter(
  39137. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39138. {
  39139. front: {
  39140. height: math.unit(160, "cm"),
  39141. weight: math.unit(55, "kg"),
  39142. name: "Front",
  39143. image: {
  39144. source: "./media/characters/tow/front.svg",
  39145. extra: 1751/1722,
  39146. bottom: 74/1825
  39147. }
  39148. },
  39149. },
  39150. [
  39151. {
  39152. name: "Norm",
  39153. height: math.unit(160, "cm")
  39154. },
  39155. {
  39156. name: "Casual",
  39157. height: math.unit(3200, "m"),
  39158. default: true
  39159. },
  39160. {
  39161. name: "Show-Off",
  39162. height: math.unit(160, "km")
  39163. },
  39164. ]
  39165. ))
  39166. characterMakers.push(() => makeCharacter(
  39167. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39168. {
  39169. front: {
  39170. height: math.unit(7 + 11/12, "feet"),
  39171. weight: math.unit(342.8, "lb"),
  39172. name: "Front",
  39173. image: {
  39174. source: "./media/characters/vivian-orca-dragon/front.svg",
  39175. extra: 1890/1865,
  39176. bottom: 28/1918
  39177. }
  39178. },
  39179. },
  39180. [
  39181. {
  39182. name: "Micro",
  39183. height: math.unit(5, "inches")
  39184. },
  39185. {
  39186. name: "Normal",
  39187. height: math.unit(7 + 11/12, "feet"),
  39188. default: true
  39189. },
  39190. {
  39191. name: "Macro",
  39192. height: math.unit(395 + 7/12, "feet")
  39193. },
  39194. ]
  39195. ))
  39196. characterMakers.push(() => makeCharacter(
  39197. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39198. {
  39199. side: {
  39200. height: math.unit(10, "feet"),
  39201. weight: math.unit(1442, "lb"),
  39202. name: "Side",
  39203. image: {
  39204. source: "./media/characters/lotherakon/side.svg",
  39205. extra: 1604/1497,
  39206. bottom: 89/1693
  39207. }
  39208. },
  39209. },
  39210. [
  39211. {
  39212. name: "Mortal Interaction",
  39213. height: math.unit(10, "feet")
  39214. },
  39215. {
  39216. name: "Large",
  39217. height: math.unit(30, "feet"),
  39218. default: true
  39219. },
  39220. {
  39221. name: "Giant",
  39222. height: math.unit(100, "feet")
  39223. },
  39224. {
  39225. name: "Kaiju",
  39226. height: math.unit(300, "feet")
  39227. },
  39228. {
  39229. name: "Macro",
  39230. height: math.unit(1000, "feet")
  39231. },
  39232. {
  39233. name: "Macro+",
  39234. height: math.unit(3000, "feet")
  39235. },
  39236. {
  39237. name: "Megamacro",
  39238. height: math.unit(10000, "feet")
  39239. },
  39240. {
  39241. name: "City-Crushing",
  39242. height: math.unit(30000, "feet")
  39243. },
  39244. {
  39245. name: "Continent Cracker",
  39246. height: math.unit(30e6, "feet")
  39247. },
  39248. {
  39249. name: "Earth Eclipsing",
  39250. height: math.unit(3e8, "feet")
  39251. },
  39252. {
  39253. name: "Gas Giant Gulper",
  39254. height: math.unit(3e9, "feet")
  39255. },
  39256. {
  39257. name: "Sol-Swallowing",
  39258. height: math.unit(1e11, "feet")
  39259. },
  39260. {
  39261. name: "System Swallower",
  39262. height: math.unit(3e14, "feet")
  39263. },
  39264. {
  39265. name: "Galaxy Gulper",
  39266. height: math.unit(10, "galaxies")
  39267. },
  39268. {
  39269. name: "Light Universal",
  39270. height: math.unit(5, "universes")
  39271. },
  39272. {
  39273. name: "Universe Palm",
  39274. height: math.unit(20, "universes")
  39275. },
  39276. {
  39277. name: "Light Multiversal",
  39278. height: math.unit(5, "multiverses")
  39279. },
  39280. {
  39281. name: "Multiverse Palm",
  39282. height: math.unit(20, "multiverses")
  39283. },
  39284. {
  39285. name: "Inferno Incarnate",
  39286. height: math.unit(1e7, "multiverses")
  39287. },
  39288. ]
  39289. ))
  39290. characterMakers.push(() => makeCharacter(
  39291. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39292. {
  39293. front: {
  39294. height: math.unit(8, "feet"),
  39295. weight: math.unit(1200, "lb"),
  39296. name: "Front",
  39297. image: {
  39298. source: "./media/characters/malithee/front.svg",
  39299. extra: 1675/1640,
  39300. bottom: 162/1837
  39301. }
  39302. },
  39303. },
  39304. [
  39305. {
  39306. name: "Mortal Interaction",
  39307. height: math.unit(8, "feet"),
  39308. default: true
  39309. },
  39310. {
  39311. name: "Large",
  39312. height: math.unit(24, "feet")
  39313. },
  39314. {
  39315. name: "Kaiju",
  39316. height: math.unit(240, "feet")
  39317. },
  39318. {
  39319. name: "Megamacro",
  39320. height: math.unit(8000, "feet")
  39321. },
  39322. {
  39323. name: "Continent Cracker",
  39324. height: math.unit(24e6, "feet")
  39325. },
  39326. {
  39327. name: "Earth-Eclipsing",
  39328. height: math.unit(2.4e8, "feet")
  39329. },
  39330. {
  39331. name: "Sol-Swallowing",
  39332. height: math.unit(8e10, "feet")
  39333. },
  39334. {
  39335. name: "Galaxy Gulper",
  39336. height: math.unit(8, "galaxies")
  39337. },
  39338. {
  39339. name: "Light Universal",
  39340. height: math.unit(4, "universes")
  39341. },
  39342. {
  39343. name: "Universe Atoms",
  39344. height: math.unit(1.829e9, "universes")
  39345. },
  39346. {
  39347. name: "Light Multiversal",
  39348. height: math.unit(4, "multiverses")
  39349. },
  39350. {
  39351. name: "Multiverse Atoms",
  39352. height: math.unit(1.829e9, "multiverses")
  39353. },
  39354. {
  39355. name: "Nigh-Omnipresence",
  39356. height: math.unit(8e261, "multiverses")
  39357. },
  39358. ]
  39359. ))
  39360. characterMakers.push(() => makeCharacter(
  39361. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39362. {
  39363. front: {
  39364. height: math.unit(10, "feet"),
  39365. weight: math.unit(1500, "lb"),
  39366. name: "Front",
  39367. image: {
  39368. source: "./media/characters/miles-thestia/front.svg",
  39369. extra: 1812/1727,
  39370. bottom: 86/1898
  39371. }
  39372. },
  39373. back: {
  39374. height: math.unit(10, "feet"),
  39375. weight: math.unit(1500, "lb"),
  39376. name: "Back",
  39377. image: {
  39378. source: "./media/characters/miles-thestia/back.svg",
  39379. extra: 1799/1690,
  39380. bottom: 47/1846
  39381. }
  39382. },
  39383. frontNsfw: {
  39384. height: math.unit(10, "feet"),
  39385. weight: math.unit(1500, "lb"),
  39386. name: "Front (NSFW)",
  39387. image: {
  39388. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39389. extra: 1812/1727,
  39390. bottom: 86/1898
  39391. }
  39392. },
  39393. },
  39394. [
  39395. {
  39396. name: "Mini-Macro",
  39397. height: math.unit(10, "feet"),
  39398. default: true
  39399. },
  39400. ]
  39401. ))
  39402. characterMakers.push(() => makeCharacter(
  39403. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39404. {
  39405. front: {
  39406. height: math.unit(25, "feet"),
  39407. name: "Front",
  39408. image: {
  39409. source: "./media/characters/titan-s-wulf/front.svg",
  39410. extra: 1560/1484,
  39411. bottom: 76/1636
  39412. }
  39413. },
  39414. },
  39415. [
  39416. {
  39417. name: "Smallest",
  39418. height: math.unit(25, "feet"),
  39419. default: true
  39420. },
  39421. {
  39422. name: "Normal",
  39423. height: math.unit(200, "feet")
  39424. },
  39425. {
  39426. name: "Macro",
  39427. height: math.unit(200000, "feet")
  39428. },
  39429. {
  39430. name: "Multiversal Original",
  39431. height: math.unit(10000, "multiverses")
  39432. },
  39433. ]
  39434. ))
  39435. characterMakers.push(() => makeCharacter(
  39436. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39437. {
  39438. front: {
  39439. height: math.unit(8, "feet"),
  39440. weight: math.unit(553, "lb"),
  39441. name: "Front",
  39442. image: {
  39443. source: "./media/characters/tawendeh/front.svg",
  39444. extra: 2365/2268,
  39445. bottom: 83/2448
  39446. }
  39447. },
  39448. frontClothed: {
  39449. height: math.unit(8, "feet"),
  39450. weight: math.unit(553, "lb"),
  39451. name: "Front (Clothed)",
  39452. image: {
  39453. source: "./media/characters/tawendeh/front-clothed.svg",
  39454. extra: 2365/2268,
  39455. bottom: 83/2448
  39456. }
  39457. },
  39458. back: {
  39459. height: math.unit(8, "feet"),
  39460. weight: math.unit(553, "lb"),
  39461. name: "Back",
  39462. image: {
  39463. source: "./media/characters/tawendeh/back.svg",
  39464. extra: 2397/2294,
  39465. bottom: 42/2439
  39466. }
  39467. },
  39468. },
  39469. [
  39470. {
  39471. name: "Mortal Interaction",
  39472. height: math.unit(8, "feet"),
  39473. default: true
  39474. },
  39475. {
  39476. name: "Giant",
  39477. height: math.unit(80, "feet")
  39478. },
  39479. {
  39480. name: "Macro",
  39481. height: math.unit(800, "feet")
  39482. },
  39483. {
  39484. name: "Megamacro",
  39485. height: math.unit(8000, "feet")
  39486. },
  39487. {
  39488. name: "City-Crushing",
  39489. height: math.unit(24000, "feet")
  39490. },
  39491. {
  39492. name: "Mountain-Mashing",
  39493. height: math.unit(80000, "feet")
  39494. },
  39495. {
  39496. name: "Nation Nemesis",
  39497. height: math.unit(8e6, "feet")
  39498. },
  39499. {
  39500. name: "Continent Cracker",
  39501. height: math.unit(24e6, "feet")
  39502. },
  39503. {
  39504. name: "Earth-Eclipsing",
  39505. height: math.unit(2.4e8, "feet")
  39506. },
  39507. {
  39508. name: "Gas Giant Gulper",
  39509. height: math.unit(2.4e9, "feet")
  39510. },
  39511. {
  39512. name: "Sol-Swallowing",
  39513. height: math.unit(8e10, "feet")
  39514. },
  39515. {
  39516. name: "Galaxy Gulper",
  39517. height: math.unit(8, "galaxies")
  39518. },
  39519. {
  39520. name: "Cosmos Churner",
  39521. height: math.unit(8, "universes")
  39522. },
  39523. {
  39524. name: "Omnipotent Otter",
  39525. height: math.unit(80, "universes")
  39526. },
  39527. ]
  39528. ))
  39529. characterMakers.push(() => makeCharacter(
  39530. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39531. {
  39532. front: {
  39533. height: math.unit(2.6, "meters"),
  39534. weight: math.unit(900, "kg"),
  39535. name: "Front",
  39536. image: {
  39537. source: "./media/characters/neesha/front.svg",
  39538. extra: 1803/1653,
  39539. bottom: 128/1931
  39540. }
  39541. },
  39542. },
  39543. [
  39544. {
  39545. name: "Normal",
  39546. height: math.unit(2.6, "meters"),
  39547. default: true
  39548. },
  39549. {
  39550. name: "Macro",
  39551. height: math.unit(50, "meters")
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39557. {
  39558. front: {
  39559. height: math.unit(5, "feet"),
  39560. weight: math.unit(185, "lb"),
  39561. name: "Front",
  39562. image: {
  39563. source: "./media/characters/kyera/front.svg",
  39564. extra: 1875/1790,
  39565. bottom: 96/1971
  39566. }
  39567. },
  39568. },
  39569. [
  39570. {
  39571. name: "Normal",
  39572. height: math.unit(5, "feet"),
  39573. default: true
  39574. },
  39575. ]
  39576. ))
  39577. characterMakers.push(() => makeCharacter(
  39578. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39579. {
  39580. front: {
  39581. height: math.unit(7 + 6/12, "feet"),
  39582. weight: math.unit(540, "lb"),
  39583. name: "Front",
  39584. image: {
  39585. source: "./media/characters/yuko/front.svg",
  39586. extra: 1282/1222,
  39587. bottom: 101/1383
  39588. }
  39589. },
  39590. frontClothed: {
  39591. height: math.unit(7 + 6/12, "feet"),
  39592. weight: math.unit(540, "lb"),
  39593. name: "Front (Clothed)",
  39594. image: {
  39595. source: "./media/characters/yuko/front-clothed.svg",
  39596. extra: 1282/1222,
  39597. bottom: 101/1383
  39598. }
  39599. },
  39600. },
  39601. [
  39602. {
  39603. name: "Normal",
  39604. height: math.unit(7 + 6/12, "feet"),
  39605. default: true
  39606. },
  39607. {
  39608. name: "Macro",
  39609. height: math.unit(26 + 9/12, "feet")
  39610. },
  39611. {
  39612. name: "Megamacro",
  39613. height: math.unit(300, "feet")
  39614. },
  39615. {
  39616. name: "Gigamacro",
  39617. height: math.unit(5000, "feet")
  39618. },
  39619. {
  39620. name: "Planetary",
  39621. height: math.unit(10000, "miles")
  39622. },
  39623. ]
  39624. ))
  39625. characterMakers.push(() => makeCharacter(
  39626. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39627. {
  39628. front: {
  39629. height: math.unit(8 + 2/12, "feet"),
  39630. weight: math.unit(600, "lb"),
  39631. name: "Front",
  39632. image: {
  39633. source: "./media/characters/deam-nitrel/front.svg",
  39634. extra: 1308/1234,
  39635. bottom: 125/1433
  39636. }
  39637. },
  39638. },
  39639. [
  39640. {
  39641. name: "Normal",
  39642. height: math.unit(8 + 2/12, "feet"),
  39643. default: true
  39644. },
  39645. ]
  39646. ))
  39647. characterMakers.push(() => makeCharacter(
  39648. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39649. {
  39650. front: {
  39651. height: math.unit(6.1, "feet"),
  39652. weight: math.unit(180, "lb"),
  39653. name: "Front",
  39654. image: {
  39655. source: "./media/characters/skyress/front.svg",
  39656. extra: 1045/915,
  39657. bottom: 28/1073
  39658. }
  39659. },
  39660. maw: {
  39661. height: math.unit(1, "feet"),
  39662. name: "Maw",
  39663. image: {
  39664. source: "./media/characters/skyress/maw.svg"
  39665. }
  39666. },
  39667. },
  39668. [
  39669. {
  39670. name: "Normal",
  39671. height: math.unit(6.1, "feet"),
  39672. default: true
  39673. },
  39674. {
  39675. name: "Macro",
  39676. height: math.unit(200, "feet")
  39677. },
  39678. ]
  39679. ))
  39680. characterMakers.push(() => makeCharacter(
  39681. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39682. {
  39683. front: {
  39684. height: math.unit(4 + 2/12, "feet"),
  39685. weight: math.unit(40, "kg"),
  39686. name: "Front",
  39687. image: {
  39688. source: "./media/characters/amethyst-jones/front.svg",
  39689. extra: 1220/1150,
  39690. bottom: 101/1321
  39691. }
  39692. },
  39693. },
  39694. [
  39695. {
  39696. name: "Normal",
  39697. height: math.unit(4 + 2/12, "feet"),
  39698. default: true
  39699. },
  39700. ]
  39701. ))
  39702. characterMakers.push(() => makeCharacter(
  39703. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39704. {
  39705. front: {
  39706. height: math.unit(1.7, "m"),
  39707. weight: math.unit(135, "lb"),
  39708. name: "Front",
  39709. image: {
  39710. source: "./media/characters/jade/front.svg",
  39711. extra: 1818/1767,
  39712. bottom: 32/1850
  39713. }
  39714. },
  39715. back: {
  39716. height: math.unit(1.7, "m"),
  39717. weight: math.unit(135, "lb"),
  39718. name: "Back",
  39719. image: {
  39720. source: "./media/characters/jade/back.svg",
  39721. extra: 1869/1809,
  39722. bottom: 35/1904
  39723. }
  39724. },
  39725. hand: {
  39726. height: math.unit(0.24, "m"),
  39727. name: "Hand",
  39728. image: {
  39729. source: "./media/characters/jade/hand.svg"
  39730. }
  39731. },
  39732. foot: {
  39733. height: math.unit(0.263, "m"),
  39734. name: "Foot",
  39735. image: {
  39736. source: "./media/characters/jade/foot.svg"
  39737. }
  39738. },
  39739. dick: {
  39740. height: math.unit(0.47, "m"),
  39741. name: "Dick",
  39742. image: {
  39743. source: "./media/characters/jade/dick.svg"
  39744. }
  39745. },
  39746. },
  39747. [
  39748. {
  39749. name: "Micro",
  39750. height: math.unit(22, "cm")
  39751. },
  39752. {
  39753. name: "Normal",
  39754. height: math.unit(1.7, "m"),
  39755. default: true
  39756. },
  39757. {
  39758. name: "Macro",
  39759. height: math.unit(152, "m")
  39760. },
  39761. ]
  39762. ))
  39763. characterMakers.push(() => makeCharacter(
  39764. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39765. {
  39766. front: {
  39767. height: math.unit(100, "miles"),
  39768. weight: math.unit(20000, "tons"),
  39769. name: "Front",
  39770. image: {
  39771. source: "./media/characters/cookie/front.svg",
  39772. extra: 1125/1070,
  39773. bottom: 30/1155
  39774. }
  39775. },
  39776. },
  39777. [
  39778. {
  39779. name: "Big",
  39780. height: math.unit(50, "feet")
  39781. },
  39782. {
  39783. name: "Macro",
  39784. height: math.unit(100, "miles"),
  39785. default: true
  39786. },
  39787. {
  39788. name: "Megamacro",
  39789. height: math.unit(90000, "miles")
  39790. },
  39791. ]
  39792. ))
  39793. characterMakers.push(() => makeCharacter(
  39794. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39795. {
  39796. front: {
  39797. height: math.unit(6, "feet"),
  39798. weight: math.unit(145, "lb"),
  39799. name: "Front",
  39800. image: {
  39801. source: "./media/characters/farzian/front.svg",
  39802. extra: 1902/1693,
  39803. bottom: 108/2010
  39804. }
  39805. },
  39806. },
  39807. [
  39808. {
  39809. name: "Macro",
  39810. height: math.unit(500, "feet"),
  39811. default: true
  39812. },
  39813. ]
  39814. ))
  39815. characterMakers.push(() => makeCharacter(
  39816. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39817. {
  39818. front: {
  39819. height: math.unit(3 + 6/12, "feet"),
  39820. weight: math.unit(50, "lb"),
  39821. name: "Front",
  39822. image: {
  39823. source: "./media/characters/kimberly-tilson/front.svg",
  39824. extra: 1400/1322,
  39825. bottom: 36/1436
  39826. }
  39827. },
  39828. back: {
  39829. height: math.unit(3 + 6/12, "feet"),
  39830. weight: math.unit(50, "lb"),
  39831. name: "Back",
  39832. image: {
  39833. source: "./media/characters/kimberly-tilson/back.svg",
  39834. extra: 1370/1307,
  39835. bottom: 20/1390
  39836. }
  39837. },
  39838. },
  39839. [
  39840. {
  39841. name: "Normal",
  39842. height: math.unit(3 + 6/12, "feet"),
  39843. default: true
  39844. },
  39845. ]
  39846. ))
  39847. characterMakers.push(() => makeCharacter(
  39848. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39849. {
  39850. front: {
  39851. height: math.unit(1148, "feet"),
  39852. weight: math.unit(34057, "lb"),
  39853. name: "Front",
  39854. image: {
  39855. source: "./media/characters/harthos/front.svg",
  39856. extra: 1391/1339,
  39857. bottom: 13/1404
  39858. }
  39859. },
  39860. },
  39861. [
  39862. {
  39863. name: "Macro",
  39864. height: math.unit(1148, "feet"),
  39865. default: true
  39866. },
  39867. ]
  39868. ))
  39869. characterMakers.push(() => makeCharacter(
  39870. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39871. {
  39872. front: {
  39873. height: math.unit(15, "feet"),
  39874. name: "Front",
  39875. image: {
  39876. source: "./media/characters/hypatia/front.svg",
  39877. extra: 1653/1591,
  39878. bottom: 79/1732
  39879. }
  39880. },
  39881. },
  39882. [
  39883. {
  39884. name: "Normal",
  39885. height: math.unit(15, "feet")
  39886. },
  39887. {
  39888. name: "Small",
  39889. height: math.unit(300, "feet")
  39890. },
  39891. {
  39892. name: "Macro",
  39893. height: math.unit(2500, "feet"),
  39894. default: true
  39895. },
  39896. {
  39897. name: "Mega Macro",
  39898. height: math.unit(1500, "miles")
  39899. },
  39900. {
  39901. name: "Giga Macro",
  39902. height: math.unit(1.5e6, "miles")
  39903. },
  39904. ]
  39905. ))
  39906. characterMakers.push(() => makeCharacter(
  39907. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39908. {
  39909. front: {
  39910. height: math.unit(6, "feet"),
  39911. weight: math.unit(200, "lb"),
  39912. name: "Front",
  39913. image: {
  39914. source: "./media/characters/wulver/front.svg",
  39915. extra: 1724/1632,
  39916. bottom: 130/1854
  39917. }
  39918. },
  39919. frontNsfw: {
  39920. height: math.unit(6, "feet"),
  39921. weight: math.unit(200, "lb"),
  39922. name: "Front (NSFW)",
  39923. image: {
  39924. source: "./media/characters/wulver/front-nsfw.svg",
  39925. extra: 1724/1632,
  39926. bottom: 130/1854
  39927. }
  39928. },
  39929. },
  39930. [
  39931. {
  39932. name: "Human-Sized",
  39933. height: math.unit(6, "feet")
  39934. },
  39935. {
  39936. name: "Normal",
  39937. height: math.unit(4, "meters"),
  39938. default: true
  39939. },
  39940. {
  39941. name: "Large",
  39942. height: math.unit(6, "m")
  39943. },
  39944. ]
  39945. ))
  39946. characterMakers.push(() => makeCharacter(
  39947. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39948. {
  39949. front: {
  39950. height: math.unit(7, "feet"),
  39951. name: "Front",
  39952. image: {
  39953. source: "./media/characters/maru/front.svg",
  39954. extra: 1595/1570,
  39955. bottom: 0/1595
  39956. }
  39957. },
  39958. },
  39959. [
  39960. {
  39961. name: "Normal",
  39962. height: math.unit(7, "feet"),
  39963. default: true
  39964. },
  39965. {
  39966. name: "Macro",
  39967. height: math.unit(700, "feet")
  39968. },
  39969. {
  39970. name: "Mega Macro",
  39971. height: math.unit(25, "miles")
  39972. },
  39973. ]
  39974. ))
  39975. characterMakers.push(() => makeCharacter(
  39976. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39977. {
  39978. front: {
  39979. height: math.unit(6, "feet"),
  39980. weight: math.unit(170, "lb"),
  39981. name: "Front",
  39982. image: {
  39983. source: "./media/characters/xenon/front.svg",
  39984. extra: 1376/1305,
  39985. bottom: 56/1432
  39986. }
  39987. },
  39988. back: {
  39989. height: math.unit(6, "feet"),
  39990. weight: math.unit(170, "lb"),
  39991. name: "Back",
  39992. image: {
  39993. source: "./media/characters/xenon/back.svg",
  39994. extra: 1328/1259,
  39995. bottom: 95/1423
  39996. }
  39997. },
  39998. maw: {
  39999. height: math.unit(0.52, "feet"),
  40000. name: "Maw",
  40001. image: {
  40002. source: "./media/characters/xenon/maw.svg"
  40003. }
  40004. },
  40005. hand: {
  40006. height: math.unit(0.82, "feet"),
  40007. name: "Hand",
  40008. image: {
  40009. source: "./media/characters/xenon/hand.svg"
  40010. }
  40011. },
  40012. foot: {
  40013. height: math.unit(1.13, "feet"),
  40014. name: "Foot",
  40015. image: {
  40016. source: "./media/characters/xenon/foot.svg"
  40017. }
  40018. },
  40019. },
  40020. [
  40021. {
  40022. name: "Micro",
  40023. height: math.unit(0.8, "inches")
  40024. },
  40025. {
  40026. name: "Normal",
  40027. height: math.unit(6, "feet")
  40028. },
  40029. {
  40030. name: "Macro",
  40031. height: math.unit(50, "feet"),
  40032. default: true
  40033. },
  40034. {
  40035. name: "Macro+",
  40036. height: math.unit(250, "feet")
  40037. },
  40038. {
  40039. name: "Megamacro",
  40040. height: math.unit(1500, "feet")
  40041. },
  40042. ]
  40043. ))
  40044. characterMakers.push(() => makeCharacter(
  40045. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40046. {
  40047. front: {
  40048. height: math.unit(7 + 5/12, "feet"),
  40049. name: "Front",
  40050. image: {
  40051. source: "./media/characters/zane/front.svg",
  40052. extra: 1260/1203,
  40053. bottom: 94/1354
  40054. }
  40055. },
  40056. back: {
  40057. height: math.unit(5.05, "feet"),
  40058. name: "Back",
  40059. image: {
  40060. source: "./media/characters/zane/back.svg",
  40061. extra: 893/829,
  40062. bottom: 30/923
  40063. }
  40064. },
  40065. werewolf: {
  40066. height: math.unit(11, "feet"),
  40067. name: "Werewolf",
  40068. image: {
  40069. source: "./media/characters/zane/werewolf.svg",
  40070. extra: 1383/1323,
  40071. bottom: 89/1472
  40072. }
  40073. },
  40074. foot: {
  40075. height: math.unit(1.46, "feet"),
  40076. name: "Foot",
  40077. image: {
  40078. source: "./media/characters/zane/foot.svg"
  40079. }
  40080. },
  40081. footFront: {
  40082. height: math.unit(0.784, "feet"),
  40083. name: "Foot (Front)",
  40084. image: {
  40085. source: "./media/characters/zane/foot-front.svg"
  40086. }
  40087. },
  40088. dick: {
  40089. height: math.unit(1.95, "feet"),
  40090. name: "Dick",
  40091. image: {
  40092. source: "./media/characters/zane/dick.svg"
  40093. }
  40094. },
  40095. dickWerewolf: {
  40096. height: math.unit(3.77, "feet"),
  40097. name: "Dick (Werewolf)",
  40098. image: {
  40099. source: "./media/characters/zane/dick.svg"
  40100. }
  40101. },
  40102. },
  40103. [
  40104. {
  40105. name: "Normal",
  40106. height: math.unit(7 + 5/12, "feet"),
  40107. default: true
  40108. },
  40109. ]
  40110. ))
  40111. characterMakers.push(() => makeCharacter(
  40112. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40113. {
  40114. front: {
  40115. height: math.unit(6 + 2/12, "feet"),
  40116. weight: math.unit(284, "lb"),
  40117. name: "Front",
  40118. image: {
  40119. source: "./media/characters/benni-desparque/front.svg",
  40120. extra: 1353/1126,
  40121. bottom: 69/1422
  40122. }
  40123. },
  40124. },
  40125. [
  40126. {
  40127. name: "Civilian",
  40128. height: math.unit(6 + 2/12, "feet")
  40129. },
  40130. {
  40131. name: "Normal",
  40132. height: math.unit(98, "feet"),
  40133. default: true
  40134. },
  40135. {
  40136. name: "Kaiju Fighter",
  40137. height: math.unit(268, "feet")
  40138. },
  40139. ]
  40140. ))
  40141. characterMakers.push(() => makeCharacter(
  40142. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40143. {
  40144. front: {
  40145. height: math.unit(5, "feet"),
  40146. weight: math.unit(105, "lb"),
  40147. name: "Front",
  40148. image: {
  40149. source: "./media/characters/maxine/front.svg",
  40150. extra: 1386/1250,
  40151. bottom: 71/1457
  40152. }
  40153. },
  40154. },
  40155. [
  40156. {
  40157. name: "Normal",
  40158. height: math.unit(5, "feet"),
  40159. default: true
  40160. },
  40161. ]
  40162. ))
  40163. characterMakers.push(() => makeCharacter(
  40164. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40165. {
  40166. front: {
  40167. height: math.unit(11 + 7/12, "feet"),
  40168. weight: math.unit(9576, "lb"),
  40169. name: "Front",
  40170. image: {
  40171. source: "./media/characters/scaly/front.svg",
  40172. extra: 888/867,
  40173. bottom: 36/924
  40174. }
  40175. },
  40176. },
  40177. [
  40178. {
  40179. name: "Normal",
  40180. height: math.unit(11 + 7/12, "feet"),
  40181. default: true
  40182. },
  40183. ]
  40184. ))
  40185. characterMakers.push(() => makeCharacter(
  40186. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40187. {
  40188. front: {
  40189. height: math.unit(6 + 3/12, "feet"),
  40190. name: "Front",
  40191. image: {
  40192. source: "./media/characters/saelria/front.svg",
  40193. extra: 1243/1138,
  40194. bottom: 46/1289
  40195. }
  40196. },
  40197. },
  40198. [
  40199. {
  40200. name: "Micro",
  40201. height: math.unit(6, "inches"),
  40202. },
  40203. {
  40204. name: "Normal",
  40205. height: math.unit(6 + 3/12, "feet"),
  40206. default: true
  40207. },
  40208. {
  40209. name: "Macro",
  40210. height: math.unit(25, "feet")
  40211. },
  40212. ]
  40213. ))
  40214. characterMakers.push(() => makeCharacter(
  40215. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40216. {
  40217. front: {
  40218. height: math.unit(80, "meters"),
  40219. weight: math.unit(7000, "tonnes"),
  40220. name: "Front",
  40221. image: {
  40222. source: "./media/characters/tef/front.svg",
  40223. extra: 2036/1991,
  40224. bottom: 54/2090
  40225. }
  40226. },
  40227. back: {
  40228. height: math.unit(80, "meters"),
  40229. weight: math.unit(7000, "tonnes"),
  40230. name: "Back",
  40231. image: {
  40232. source: "./media/characters/tef/back.svg",
  40233. extra: 2036/1991,
  40234. bottom: 54/2090
  40235. }
  40236. },
  40237. },
  40238. [
  40239. {
  40240. name: "Macro",
  40241. height: math.unit(80, "meters"),
  40242. default: true
  40243. },
  40244. ]
  40245. ))
  40246. characterMakers.push(() => makeCharacter(
  40247. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40248. {
  40249. front: {
  40250. height: math.unit(13, "feet"),
  40251. weight: math.unit(6, "tons"),
  40252. name: "Front",
  40253. image: {
  40254. source: "./media/characters/rover/front.svg",
  40255. extra: 1233/1156,
  40256. bottom: 50/1283
  40257. }
  40258. },
  40259. back: {
  40260. height: math.unit(13, "feet"),
  40261. weight: math.unit(6, "tons"),
  40262. name: "Back",
  40263. image: {
  40264. source: "./media/characters/rover/back.svg",
  40265. extra: 1327/1258,
  40266. bottom: 39/1366
  40267. }
  40268. },
  40269. },
  40270. [
  40271. {
  40272. name: "Normal",
  40273. height: math.unit(13, "feet"),
  40274. default: true
  40275. },
  40276. {
  40277. name: "Macro",
  40278. height: math.unit(1300, "feet")
  40279. },
  40280. {
  40281. name: "Megamacro",
  40282. height: math.unit(1300, "miles")
  40283. },
  40284. {
  40285. name: "Gigamacro",
  40286. height: math.unit(1300000, "miles")
  40287. },
  40288. ]
  40289. ))
  40290. characterMakers.push(() => makeCharacter(
  40291. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40292. {
  40293. front: {
  40294. height: math.unit(6, "feet"),
  40295. weight: math.unit(150, "lb"),
  40296. name: "Front",
  40297. image: {
  40298. source: "./media/characters/ariz/front.svg",
  40299. extra: 1401/1346,
  40300. bottom: 5/1406
  40301. }
  40302. },
  40303. },
  40304. [
  40305. {
  40306. name: "Normal",
  40307. height: math.unit(10, "feet"),
  40308. default: true
  40309. },
  40310. ]
  40311. ))
  40312. characterMakers.push(() => makeCharacter(
  40313. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40314. {
  40315. front: {
  40316. height: math.unit(6, "feet"),
  40317. weight: math.unit(140, "lb"),
  40318. name: "Front",
  40319. image: {
  40320. source: "./media/characters/sigrun/front.svg",
  40321. extra: 1418/1359,
  40322. bottom: 27/1445
  40323. }
  40324. },
  40325. },
  40326. [
  40327. {
  40328. name: "Macro",
  40329. height: math.unit(35, "feet"),
  40330. default: true
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40336. {
  40337. front: {
  40338. height: math.unit(6, "feet"),
  40339. weight: math.unit(150, "lb"),
  40340. name: "Front",
  40341. image: {
  40342. source: "./media/characters/numin/front.svg",
  40343. extra: 1433/1388,
  40344. bottom: 12/1445
  40345. }
  40346. },
  40347. },
  40348. [
  40349. {
  40350. name: "Macro",
  40351. height: math.unit(21.5, "km"),
  40352. default: true
  40353. },
  40354. ]
  40355. ))
  40356. characterMakers.push(() => makeCharacter(
  40357. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40358. {
  40359. front: {
  40360. height: math.unit(6, "feet"),
  40361. weight: math.unit(463, "lb"),
  40362. name: "Front",
  40363. image: {
  40364. source: "./media/characters/melwa/front.svg",
  40365. extra: 1307/1248,
  40366. bottom: 93/1400
  40367. }
  40368. },
  40369. },
  40370. [
  40371. {
  40372. name: "Macro",
  40373. height: math.unit(50, "meters"),
  40374. default: true
  40375. },
  40376. ]
  40377. ))
  40378. characterMakers.push(() => makeCharacter(
  40379. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40380. {
  40381. front: {
  40382. height: math.unit(325, "feet"),
  40383. name: "Front",
  40384. image: {
  40385. source: "./media/characters/zorkaiju/front.svg",
  40386. extra: 1955/1814,
  40387. bottom: 40/1995
  40388. }
  40389. },
  40390. frontExtended: {
  40391. height: math.unit(325, "feet"),
  40392. name: "Front (Extended)",
  40393. image: {
  40394. source: "./media/characters/zorkaiju/front-extended.svg",
  40395. extra: 1955/1814,
  40396. bottom: 40/1995
  40397. }
  40398. },
  40399. side: {
  40400. height: math.unit(325, "feet"),
  40401. name: "Side",
  40402. image: {
  40403. source: "./media/characters/zorkaiju/side.svg",
  40404. extra: 1495/1396,
  40405. bottom: 17/1512
  40406. }
  40407. },
  40408. sideExtended: {
  40409. height: math.unit(325, "feet"),
  40410. name: "Side (Extended)",
  40411. image: {
  40412. source: "./media/characters/zorkaiju/side-extended.svg",
  40413. extra: 1495/1396,
  40414. bottom: 17/1512
  40415. }
  40416. },
  40417. back: {
  40418. height: math.unit(325, "feet"),
  40419. name: "Back",
  40420. image: {
  40421. source: "./media/characters/zorkaiju/back.svg",
  40422. extra: 1959/1821,
  40423. bottom: 31/1990
  40424. }
  40425. },
  40426. backExtended: {
  40427. height: math.unit(325, "feet"),
  40428. name: "Back (Extended)",
  40429. image: {
  40430. source: "./media/characters/zorkaiju/back-extended.svg",
  40431. extra: 1959/1821,
  40432. bottom: 31/1990
  40433. }
  40434. },
  40435. hand: {
  40436. height: math.unit(58.4, "feet"),
  40437. name: "Hand",
  40438. image: {
  40439. source: "./media/characters/zorkaiju/hand.svg"
  40440. }
  40441. },
  40442. handExtended: {
  40443. height: math.unit(61.4, "feet"),
  40444. name: "Hand (Extended)",
  40445. image: {
  40446. source: "./media/characters/zorkaiju/hand-extended.svg"
  40447. }
  40448. },
  40449. foot: {
  40450. height: math.unit(95, "feet"),
  40451. name: "Foot",
  40452. image: {
  40453. source: "./media/characters/zorkaiju/foot.svg"
  40454. }
  40455. },
  40456. leftArm: {
  40457. height: math.unit(59, "feet"),
  40458. name: "Left Arm",
  40459. image: {
  40460. source: "./media/characters/zorkaiju/left-arm.svg"
  40461. }
  40462. },
  40463. rightArm: {
  40464. height: math.unit(59, "feet"),
  40465. name: "Right Arm",
  40466. image: {
  40467. source: "./media/characters/zorkaiju/right-arm.svg"
  40468. }
  40469. },
  40470. tail: {
  40471. height: math.unit(104, "feet"),
  40472. name: "Tail",
  40473. image: {
  40474. source: "./media/characters/zorkaiju/tail.svg"
  40475. }
  40476. },
  40477. tailExtended: {
  40478. height: math.unit(104, "feet"),
  40479. name: "Tail (Extended)",
  40480. image: {
  40481. source: "./media/characters/zorkaiju/tail-extended.svg"
  40482. }
  40483. },
  40484. tailBottom: {
  40485. height: math.unit(104, "feet"),
  40486. name: "Tail Bottom",
  40487. image: {
  40488. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40489. }
  40490. },
  40491. crystal: {
  40492. height: math.unit(27.54, "feet"),
  40493. name: "Crystal",
  40494. image: {
  40495. source: "./media/characters/zorkaiju/crystal.svg"
  40496. }
  40497. },
  40498. },
  40499. [
  40500. {
  40501. name: "Kaiju",
  40502. height: math.unit(325, "feet"),
  40503. default: true
  40504. },
  40505. ]
  40506. ))
  40507. characterMakers.push(() => makeCharacter(
  40508. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40509. {
  40510. front: {
  40511. height: math.unit(6 + 1/12, "feet"),
  40512. weight: math.unit(115, "lb"),
  40513. name: "Front",
  40514. image: {
  40515. source: "./media/characters/bailey-belfry/front.svg",
  40516. extra: 1240/1121,
  40517. bottom: 101/1341
  40518. }
  40519. },
  40520. },
  40521. [
  40522. {
  40523. name: "Normal",
  40524. height: math.unit(6 + 1/12, "feet"),
  40525. default: true
  40526. },
  40527. ]
  40528. ))
  40529. characterMakers.push(() => makeCharacter(
  40530. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40531. {
  40532. side: {
  40533. height: math.unit(4, "meters"),
  40534. weight: math.unit(250, "kg"),
  40535. name: "Side",
  40536. image: {
  40537. source: "./media/characters/blacky/side.svg",
  40538. extra: 1027/919,
  40539. bottom: 43/1070
  40540. }
  40541. },
  40542. maw: {
  40543. height: math.unit(1, "meters"),
  40544. name: "Maw",
  40545. image: {
  40546. source: "./media/characters/blacky/maw.svg"
  40547. }
  40548. },
  40549. paw: {
  40550. height: math.unit(1, "meters"),
  40551. name: "Paw",
  40552. image: {
  40553. source: "./media/characters/blacky/paw.svg"
  40554. }
  40555. },
  40556. },
  40557. [
  40558. {
  40559. name: "Normal",
  40560. height: math.unit(4, "meters"),
  40561. default: true
  40562. },
  40563. ]
  40564. ))
  40565. characterMakers.push(() => makeCharacter(
  40566. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40567. {
  40568. front: {
  40569. height: math.unit(170, "cm"),
  40570. weight: math.unit(66, "kg"),
  40571. name: "Front",
  40572. image: {
  40573. source: "./media/characters/thux-ei/front.svg",
  40574. extra: 1109/1011,
  40575. bottom: 8/1117
  40576. }
  40577. },
  40578. },
  40579. [
  40580. {
  40581. name: "Normal",
  40582. height: math.unit(170, "cm"),
  40583. default: true
  40584. },
  40585. ]
  40586. ))
  40587. characterMakers.push(() => makeCharacter(
  40588. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40589. {
  40590. front: {
  40591. height: math.unit(5, "feet"),
  40592. weight: math.unit(120, "lb"),
  40593. name: "Front",
  40594. image: {
  40595. source: "./media/characters/roxanne-voltaire/front.svg",
  40596. extra: 1901/1779,
  40597. bottom: 53/1954
  40598. }
  40599. },
  40600. },
  40601. [
  40602. {
  40603. name: "Normal",
  40604. height: math.unit(5, "feet"),
  40605. default: true
  40606. },
  40607. {
  40608. name: "Giant",
  40609. height: math.unit(50, "feet")
  40610. },
  40611. {
  40612. name: "Titan",
  40613. height: math.unit(500, "feet")
  40614. },
  40615. {
  40616. name: "Macro",
  40617. height: math.unit(5000, "feet")
  40618. },
  40619. {
  40620. name: "Megamacro",
  40621. height: math.unit(50000, "feet")
  40622. },
  40623. {
  40624. name: "Gigamacro",
  40625. height: math.unit(500000, "feet")
  40626. },
  40627. {
  40628. name: "Teramacro",
  40629. height: math.unit(5e6, "feet")
  40630. },
  40631. ]
  40632. ))
  40633. characterMakers.push(() => makeCharacter(
  40634. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40635. {
  40636. front: {
  40637. height: math.unit(6 + 2/12, "feet"),
  40638. name: "Front",
  40639. image: {
  40640. source: "./media/characters/squeaks/front.svg",
  40641. extra: 1823/1768,
  40642. bottom: 138/1961
  40643. }
  40644. },
  40645. },
  40646. [
  40647. {
  40648. name: "Micro",
  40649. height: math.unit(0.5, "inches")
  40650. },
  40651. {
  40652. name: "Normal",
  40653. height: math.unit(6 + 2/12, "feet"),
  40654. default: true
  40655. },
  40656. {
  40657. name: "Macro",
  40658. height: math.unit(600, "feet")
  40659. },
  40660. ]
  40661. ))
  40662. characterMakers.push(() => makeCharacter(
  40663. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40664. {
  40665. front: {
  40666. height: math.unit(1.72, "meters"),
  40667. name: "Front",
  40668. image: {
  40669. source: "./media/characters/archinger/front.svg",
  40670. extra: 1861/1675,
  40671. bottom: 125/1986
  40672. }
  40673. },
  40674. back: {
  40675. height: math.unit(1.72, "meters"),
  40676. name: "Back",
  40677. image: {
  40678. source: "./media/characters/archinger/back.svg",
  40679. extra: 1844/1701,
  40680. bottom: 104/1948
  40681. }
  40682. },
  40683. cock: {
  40684. height: math.unit(0.59, "feet"),
  40685. name: "Cock",
  40686. image: {
  40687. source: "./media/characters/archinger/cock.svg"
  40688. }
  40689. },
  40690. },
  40691. [
  40692. {
  40693. name: "Normal",
  40694. height: math.unit(1.72, "meters"),
  40695. default: true
  40696. },
  40697. {
  40698. name: "Macro",
  40699. height: math.unit(84, "meters")
  40700. },
  40701. {
  40702. name: "Macro+",
  40703. height: math.unit(112, "meters")
  40704. },
  40705. {
  40706. name: "Macro++",
  40707. height: math.unit(960, "meters")
  40708. },
  40709. {
  40710. name: "Macro+++",
  40711. height: math.unit(4, "km")
  40712. },
  40713. {
  40714. name: "Macro++++",
  40715. height: math.unit(48, "km")
  40716. },
  40717. {
  40718. name: "Macro+++++",
  40719. height: math.unit(4500, "km")
  40720. },
  40721. ]
  40722. ))
  40723. characterMakers.push(() => makeCharacter(
  40724. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40725. {
  40726. front: {
  40727. height: math.unit(5 + 5/12, "feet"),
  40728. name: "Front",
  40729. image: {
  40730. source: "./media/characters/alsnapz/front.svg",
  40731. extra: 1157/1065,
  40732. bottom: 42/1199
  40733. }
  40734. },
  40735. },
  40736. [
  40737. {
  40738. name: "Normal",
  40739. height: math.unit(5 + 5/12, "feet"),
  40740. default: true
  40741. },
  40742. ]
  40743. ))
  40744. characterMakers.push(() => makeCharacter(
  40745. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40746. {
  40747. side: {
  40748. height: math.unit(3.2, "earths"),
  40749. name: "Side",
  40750. image: {
  40751. source: "./media/characters/mag/side.svg",
  40752. extra: 1331/1008,
  40753. bottom: 52/1383
  40754. }
  40755. },
  40756. wing: {
  40757. height: math.unit(1.94, "earths"),
  40758. name: "Wing",
  40759. image: {
  40760. source: "./media/characters/mag/wing.svg"
  40761. }
  40762. },
  40763. dick: {
  40764. height: math.unit(1.8, "earths"),
  40765. name: "Dick",
  40766. image: {
  40767. source: "./media/characters/mag/dick.svg"
  40768. }
  40769. },
  40770. ass: {
  40771. height: math.unit(1.33, "earths"),
  40772. name: "Ass",
  40773. image: {
  40774. source: "./media/characters/mag/ass.svg"
  40775. }
  40776. },
  40777. head: {
  40778. height: math.unit(1.1, "earths"),
  40779. name: "Head",
  40780. image: {
  40781. source: "./media/characters/mag/head.svg"
  40782. }
  40783. },
  40784. maw: {
  40785. height: math.unit(1.62, "earths"),
  40786. name: "Maw",
  40787. image: {
  40788. source: "./media/characters/mag/maw.svg"
  40789. }
  40790. },
  40791. },
  40792. [
  40793. {
  40794. name: "Small",
  40795. height: math.unit(162, "feet")
  40796. },
  40797. {
  40798. name: "Normal",
  40799. height: math.unit(3.2, "earths"),
  40800. default: true
  40801. },
  40802. ]
  40803. ))
  40804. characterMakers.push(() => makeCharacter(
  40805. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40806. {
  40807. front: {
  40808. height: math.unit(512, "feet"),
  40809. weight: math.unit(63509, "tonnes"),
  40810. name: "Front",
  40811. image: {
  40812. source: "./media/characters/vorrel-harroc/front.svg",
  40813. extra: 1075/1063,
  40814. bottom: 62/1137
  40815. }
  40816. },
  40817. },
  40818. [
  40819. {
  40820. name: "Normal",
  40821. height: math.unit(10, "feet")
  40822. },
  40823. {
  40824. name: "Macro",
  40825. height: math.unit(512, "feet"),
  40826. default: true
  40827. },
  40828. {
  40829. name: "Megamacro",
  40830. height: math.unit(256, "miles")
  40831. },
  40832. {
  40833. name: "Gigamacro",
  40834. height: math.unit(4096, "miles")
  40835. },
  40836. ]
  40837. ))
  40838. characterMakers.push(() => makeCharacter(
  40839. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40840. {
  40841. side: {
  40842. height: math.unit(50, "feet"),
  40843. name: "Side",
  40844. image: {
  40845. source: "./media/characters/froimar/side.svg",
  40846. extra: 855/638,
  40847. bottom: 99/954
  40848. }
  40849. },
  40850. },
  40851. [
  40852. {
  40853. name: "Macro",
  40854. height: math.unit(50, "feet"),
  40855. default: true
  40856. },
  40857. ]
  40858. ))
  40859. characterMakers.push(() => makeCharacter(
  40860. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40861. {
  40862. front: {
  40863. height: math.unit(210, "miles"),
  40864. name: "Front",
  40865. image: {
  40866. source: "./media/characters/timothy/front.svg",
  40867. extra: 1007/943,
  40868. bottom: 62/1069
  40869. }
  40870. },
  40871. frontSkirt: {
  40872. height: math.unit(210, "miles"),
  40873. name: "Front (Skirt)",
  40874. image: {
  40875. source: "./media/characters/timothy/front-skirt.svg",
  40876. extra: 1007/943,
  40877. bottom: 62/1069
  40878. }
  40879. },
  40880. frontCoat: {
  40881. height: math.unit(210, "miles"),
  40882. name: "Front (Coat)",
  40883. image: {
  40884. source: "./media/characters/timothy/front-coat.svg",
  40885. extra: 1007/943,
  40886. bottom: 62/1069
  40887. }
  40888. },
  40889. },
  40890. [
  40891. {
  40892. name: "Macro",
  40893. height: math.unit(210, "miles"),
  40894. default: true
  40895. },
  40896. {
  40897. name: "Megamacro",
  40898. height: math.unit(210000, "miles")
  40899. },
  40900. ]
  40901. ))
  40902. characterMakers.push(() => makeCharacter(
  40903. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40904. {
  40905. front: {
  40906. height: math.unit(188, "feet"),
  40907. name: "Front",
  40908. image: {
  40909. source: "./media/characters/pyotr/front.svg",
  40910. extra: 1912/1826,
  40911. bottom: 18/1930
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Macro",
  40918. height: math.unit(188, "feet"),
  40919. default: true
  40920. },
  40921. {
  40922. name: "Megamacro",
  40923. height: math.unit(8, "miles")
  40924. },
  40925. ]
  40926. ))
  40927. characterMakers.push(() => makeCharacter(
  40928. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40929. {
  40930. side: {
  40931. height: math.unit(10, "feet"),
  40932. weight: math.unit(4500, "lb"),
  40933. name: "Side",
  40934. image: {
  40935. source: "./media/characters/ackart/side.svg",
  40936. extra: 1776/1668,
  40937. bottom: 116/1892
  40938. }
  40939. },
  40940. },
  40941. [
  40942. {
  40943. name: "Normal",
  40944. height: math.unit(10, "feet"),
  40945. default: true
  40946. },
  40947. ]
  40948. ))
  40949. characterMakers.push(() => makeCharacter(
  40950. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40951. {
  40952. side: {
  40953. height: math.unit(21, "feet"),
  40954. name: "Side",
  40955. image: {
  40956. source: "./media/characters/nolow/side.svg",
  40957. extra: 1484/1434,
  40958. bottom: 85/1569
  40959. }
  40960. },
  40961. sideErect: {
  40962. height: math.unit(21, "feet"),
  40963. name: "Side-erect",
  40964. image: {
  40965. source: "./media/characters/nolow/side-erect.svg",
  40966. extra: 1484/1434,
  40967. bottom: 85/1569
  40968. }
  40969. },
  40970. },
  40971. [
  40972. {
  40973. name: "Regular",
  40974. height: math.unit(12, "feet")
  40975. },
  40976. {
  40977. name: "Big Chee",
  40978. height: math.unit(21, "feet"),
  40979. default: true
  40980. },
  40981. ]
  40982. ))
  40983. characterMakers.push(() => makeCharacter(
  40984. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40985. {
  40986. front: {
  40987. height: math.unit(7, "feet"),
  40988. weight: math.unit(250, "lb"),
  40989. name: "Front",
  40990. image: {
  40991. source: "./media/characters/nines/front.svg",
  40992. extra: 1741/1607,
  40993. bottom: 41/1782
  40994. }
  40995. },
  40996. side: {
  40997. height: math.unit(7, "feet"),
  40998. weight: math.unit(250, "lb"),
  40999. name: "Side",
  41000. image: {
  41001. source: "./media/characters/nines/side.svg",
  41002. extra: 1854/1735,
  41003. bottom: 93/1947
  41004. }
  41005. },
  41006. back: {
  41007. height: math.unit(7, "feet"),
  41008. weight: math.unit(250, "lb"),
  41009. name: "Back",
  41010. image: {
  41011. source: "./media/characters/nines/back.svg",
  41012. extra: 1748/1615,
  41013. bottom: 20/1768
  41014. }
  41015. },
  41016. },
  41017. [
  41018. {
  41019. name: "Megamacro",
  41020. height: math.unit(99, "km"),
  41021. default: true
  41022. },
  41023. ]
  41024. ))
  41025. characterMakers.push(() => makeCharacter(
  41026. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41027. {
  41028. front: {
  41029. height: math.unit(5 + 10/12, "feet"),
  41030. weight: math.unit(210, "lb"),
  41031. name: "Front",
  41032. image: {
  41033. source: "./media/characters/zenith/front.svg",
  41034. extra: 1531/1452,
  41035. bottom: 198/1729
  41036. }
  41037. },
  41038. back: {
  41039. height: math.unit(5 + 10/12, "feet"),
  41040. weight: math.unit(210, "lb"),
  41041. name: "Back",
  41042. image: {
  41043. source: "./media/characters/zenith/back.svg",
  41044. extra: 1571/1487,
  41045. bottom: 75/1646
  41046. }
  41047. },
  41048. },
  41049. [
  41050. {
  41051. name: "Normal",
  41052. height: math.unit(5 + 10/12, "feet"),
  41053. default: true
  41054. }
  41055. ]
  41056. ))
  41057. characterMakers.push(() => makeCharacter(
  41058. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41059. {
  41060. front: {
  41061. height: math.unit(4, "feet"),
  41062. weight: math.unit(60, "lb"),
  41063. name: "Front",
  41064. image: {
  41065. source: "./media/characters/jasper/front.svg",
  41066. extra: 1450/1379,
  41067. bottom: 19/1469
  41068. }
  41069. },
  41070. },
  41071. [
  41072. {
  41073. name: "Normal",
  41074. height: math.unit(4, "feet"),
  41075. default: true
  41076. },
  41077. ]
  41078. ))
  41079. characterMakers.push(() => makeCharacter(
  41080. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41081. {
  41082. front: {
  41083. height: math.unit(6 + 5/12, "feet"),
  41084. weight: math.unit(290, "lb"),
  41085. name: "Front",
  41086. image: {
  41087. source: "./media/characters/tiberius-thyben/front.svg",
  41088. extra: 757/739,
  41089. bottom: 39/796
  41090. }
  41091. },
  41092. },
  41093. [
  41094. {
  41095. name: "Micro",
  41096. height: math.unit(1.5, "inches")
  41097. },
  41098. {
  41099. name: "Normal",
  41100. height: math.unit(6 + 5/12, "feet"),
  41101. default: true
  41102. },
  41103. {
  41104. name: "Macro",
  41105. height: math.unit(300, "feet")
  41106. },
  41107. ]
  41108. ))
  41109. characterMakers.push(() => makeCharacter(
  41110. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41111. {
  41112. front: {
  41113. height: math.unit(5 + 6/12, "feet"),
  41114. weight: math.unit(60, "kg"),
  41115. name: "Front",
  41116. image: {
  41117. source: "./media/characters/sabre/front.svg",
  41118. extra: 738/671,
  41119. bottom: 27/765
  41120. }
  41121. },
  41122. },
  41123. [
  41124. {
  41125. name: "Teeny",
  41126. height: math.unit(2, "inches")
  41127. },
  41128. {
  41129. name: "Smol",
  41130. height: math.unit(8, "inches")
  41131. },
  41132. {
  41133. name: "Normal",
  41134. height: math.unit(5 + 6/12, "feet"),
  41135. default: true
  41136. },
  41137. {
  41138. name: "Mini-Macro",
  41139. height: math.unit(15, "feet")
  41140. },
  41141. {
  41142. name: "Macro",
  41143. height: math.unit(50, "feet")
  41144. },
  41145. ]
  41146. ))
  41147. characterMakers.push(() => makeCharacter(
  41148. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41149. {
  41150. front: {
  41151. height: math.unit(6 + 4/12, "feet"),
  41152. weight: math.unit(170, "lb"),
  41153. name: "Front",
  41154. image: {
  41155. source: "./media/characters/charlie/front.svg",
  41156. extra: 1348/1228,
  41157. bottom: 15/1363
  41158. }
  41159. },
  41160. },
  41161. [
  41162. {
  41163. name: "Macro",
  41164. height: math.unit(1700, "meters"),
  41165. default: true
  41166. },
  41167. {
  41168. name: "MegaMacro",
  41169. height: math.unit(20400, "meters")
  41170. },
  41171. ]
  41172. ))
  41173. characterMakers.push(() => makeCharacter(
  41174. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41175. {
  41176. front: {
  41177. height: math.unit(6 + 3/12, "feet"),
  41178. weight: math.unit(185, "lb"),
  41179. name: "Front",
  41180. image: {
  41181. source: "./media/characters/susan-grant/front.svg",
  41182. extra: 1351/1327,
  41183. bottom: 26/1377
  41184. }
  41185. },
  41186. },
  41187. [
  41188. {
  41189. name: "Normal",
  41190. height: math.unit(6 + 3/12, "feet"),
  41191. default: true
  41192. },
  41193. {
  41194. name: "Macro",
  41195. height: math.unit(225, "feet")
  41196. },
  41197. {
  41198. name: "Macro+",
  41199. height: math.unit(900, "feet")
  41200. },
  41201. {
  41202. name: "MegaMacro",
  41203. height: math.unit(14400, "feet")
  41204. },
  41205. ]
  41206. ))
  41207. characterMakers.push(() => makeCharacter(
  41208. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41209. {
  41210. front: {
  41211. height: math.unit(5 + 4/12, "feet"),
  41212. weight: math.unit(110, "lb"),
  41213. name: "Front",
  41214. image: {
  41215. source: "./media/characters/axel-isanov/front.svg",
  41216. extra: 1096/1065,
  41217. bottom: 13/1109
  41218. }
  41219. },
  41220. },
  41221. [
  41222. {
  41223. name: "Normal",
  41224. height: math.unit(5 + 4/12, "feet"),
  41225. default: true
  41226. },
  41227. ]
  41228. ))
  41229. characterMakers.push(() => makeCharacter(
  41230. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41231. {
  41232. front: {
  41233. height: math.unit(9, "feet"),
  41234. weight: math.unit(467, "lb"),
  41235. name: "Front",
  41236. image: {
  41237. source: "./media/characters/necahual/front.svg",
  41238. extra: 920/873,
  41239. bottom: 26/946
  41240. }
  41241. },
  41242. back: {
  41243. height: math.unit(9, "feet"),
  41244. weight: math.unit(467, "lb"),
  41245. name: "Back",
  41246. image: {
  41247. source: "./media/characters/necahual/back.svg",
  41248. extra: 930/884,
  41249. bottom: 16/946
  41250. }
  41251. },
  41252. frontUnderwear: {
  41253. height: math.unit(9, "feet"),
  41254. weight: math.unit(467, "lb"),
  41255. name: "Front (Underwear)",
  41256. image: {
  41257. source: "./media/characters/necahual/front-underwear.svg",
  41258. extra: 920/873,
  41259. bottom: 26/946
  41260. }
  41261. },
  41262. frontDressed: {
  41263. height: math.unit(9, "feet"),
  41264. weight: math.unit(467, "lb"),
  41265. name: "Front (Dressed)",
  41266. image: {
  41267. source: "./media/characters/necahual/front-dressed.svg",
  41268. extra: 920/873,
  41269. bottom: 26/946
  41270. }
  41271. },
  41272. },
  41273. [
  41274. {
  41275. name: "Comprsesed",
  41276. height: math.unit(9, "feet")
  41277. },
  41278. {
  41279. name: "Natural",
  41280. height: math.unit(15, "feet"),
  41281. default: true
  41282. },
  41283. {
  41284. name: "Boosted",
  41285. height: math.unit(50, "feet")
  41286. },
  41287. {
  41288. name: "Boosted+",
  41289. height: math.unit(150, "feet")
  41290. },
  41291. {
  41292. name: "Max",
  41293. height: math.unit(500, "feet")
  41294. },
  41295. ]
  41296. ))
  41297. characterMakers.push(() => makeCharacter(
  41298. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41299. {
  41300. front: {
  41301. height: math.unit(22 + 1/12, "feet"),
  41302. weight: math.unit(3200, "lb"),
  41303. name: "Front",
  41304. image: {
  41305. source: "./media/characters/theo-acacia/front.svg",
  41306. extra: 1796/1741,
  41307. bottom: 83/1879
  41308. }
  41309. },
  41310. frontUnderwear: {
  41311. height: math.unit(22 + 1/12, "feet"),
  41312. weight: math.unit(3200, "lb"),
  41313. name: "Front (Underwear)",
  41314. image: {
  41315. source: "./media/characters/theo-acacia/front-underwear.svg",
  41316. extra: 1796/1741,
  41317. bottom: 83/1879
  41318. }
  41319. },
  41320. frontNude: {
  41321. height: math.unit(22 + 1/12, "feet"),
  41322. weight: math.unit(3200, "lb"),
  41323. name: "Front (Nude)",
  41324. image: {
  41325. source: "./media/characters/theo-acacia/front-nude.svg",
  41326. extra: 1796/1741,
  41327. bottom: 83/1879
  41328. }
  41329. },
  41330. },
  41331. [
  41332. {
  41333. name: "Normal",
  41334. height: math.unit(22 + 1/12, "feet"),
  41335. default: true
  41336. },
  41337. ]
  41338. ))
  41339. characterMakers.push(() => makeCharacter(
  41340. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41341. {
  41342. front: {
  41343. height: math.unit(20, "feet"),
  41344. name: "Front",
  41345. image: {
  41346. source: "./media/characters/astra/front.svg",
  41347. extra: 1850/1714,
  41348. bottom: 106/1956
  41349. }
  41350. },
  41351. frontUndressed: {
  41352. height: math.unit(20, "feet"),
  41353. name: "Front (Undressed)",
  41354. image: {
  41355. source: "./media/characters/astra/front-undressed.svg",
  41356. extra: 1926/1749,
  41357. bottom: 0/1926
  41358. }
  41359. },
  41360. hand: {
  41361. height: math.unit(1.53, "feet"),
  41362. name: "Hand",
  41363. image: {
  41364. source: "./media/characters/astra/hand.svg"
  41365. }
  41366. },
  41367. paw: {
  41368. height: math.unit(1.53, "feet"),
  41369. name: "Paw",
  41370. image: {
  41371. source: "./media/characters/astra/paw.svg"
  41372. }
  41373. },
  41374. },
  41375. [
  41376. {
  41377. name: "Smallest",
  41378. height: math.unit(20, "feet")
  41379. },
  41380. {
  41381. name: "Normal",
  41382. height: math.unit(1e9, "miles"),
  41383. default: true
  41384. },
  41385. {
  41386. name: "Larger",
  41387. height: math.unit(5, "multiverses")
  41388. },
  41389. {
  41390. name: "Largest",
  41391. height: math.unit(1e9, "multiverses")
  41392. },
  41393. ]
  41394. ))
  41395. characterMakers.push(() => makeCharacter(
  41396. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41397. {
  41398. front: {
  41399. height: math.unit(8, "feet"),
  41400. name: "Front",
  41401. image: {
  41402. source: "./media/characters/breanna/front.svg",
  41403. extra: 1912/1632,
  41404. bottom: 33/1945
  41405. }
  41406. },
  41407. },
  41408. [
  41409. {
  41410. name: "Smallest",
  41411. height: math.unit(8, "feet")
  41412. },
  41413. {
  41414. name: "Normal",
  41415. height: math.unit(1, "mile"),
  41416. default: true
  41417. },
  41418. {
  41419. name: "Maximum",
  41420. height: math.unit(1500000000000, "lightyears")
  41421. },
  41422. ]
  41423. ))
  41424. characterMakers.push(() => makeCharacter(
  41425. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41426. {
  41427. front: {
  41428. height: math.unit(5 + 11/12, "feet"),
  41429. weight: math.unit(155, "lb"),
  41430. name: "Front",
  41431. image: {
  41432. source: "./media/characters/cai/front.svg",
  41433. extra: 1823/1702,
  41434. bottom: 32/1855
  41435. }
  41436. },
  41437. back: {
  41438. height: math.unit(5 + 11/12, "feet"),
  41439. weight: math.unit(155, "lb"),
  41440. name: "Back",
  41441. image: {
  41442. source: "./media/characters/cai/back.svg",
  41443. extra: 1809/1708,
  41444. bottom: 31/1840
  41445. }
  41446. },
  41447. },
  41448. [
  41449. {
  41450. name: "Normal",
  41451. height: math.unit(5 + 11/12, "feet"),
  41452. default: true
  41453. },
  41454. {
  41455. name: "Big",
  41456. height: math.unit(15, "feet")
  41457. },
  41458. {
  41459. name: "Macro",
  41460. height: math.unit(200, "feet")
  41461. },
  41462. ]
  41463. ))
  41464. characterMakers.push(() => makeCharacter(
  41465. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41466. {
  41467. front: {
  41468. height: math.unit(5 + 6/12, "feet"),
  41469. weight: math.unit(160, "lb"),
  41470. name: "Front",
  41471. image: {
  41472. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41473. extra: 1227/1174,
  41474. bottom: 37/1264
  41475. }
  41476. },
  41477. },
  41478. [
  41479. {
  41480. name: "Macro",
  41481. height: math.unit(444, "meters"),
  41482. default: true
  41483. },
  41484. ]
  41485. ))
  41486. characterMakers.push(() => makeCharacter(
  41487. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41488. {
  41489. front: {
  41490. height: math.unit(18 + 7/12, "feet"),
  41491. name: "Front",
  41492. image: {
  41493. source: "./media/characters/rex/front.svg",
  41494. extra: 1941/1807,
  41495. bottom: 66/2007
  41496. }
  41497. },
  41498. back: {
  41499. height: math.unit(18 + 7/12, "feet"),
  41500. name: "Back",
  41501. image: {
  41502. source: "./media/characters/rex/back.svg",
  41503. extra: 1937/1822,
  41504. bottom: 42/1979
  41505. }
  41506. },
  41507. boot: {
  41508. height: math.unit(3.45, "feet"),
  41509. name: "Boot",
  41510. image: {
  41511. source: "./media/characters/rex/boot.svg"
  41512. }
  41513. },
  41514. paw: {
  41515. height: math.unit(4.17, "feet"),
  41516. name: "Paw",
  41517. image: {
  41518. source: "./media/characters/rex/paw.svg"
  41519. }
  41520. },
  41521. head: {
  41522. height: math.unit(6.728, "feet"),
  41523. name: "Head",
  41524. image: {
  41525. source: "./media/characters/rex/head.svg"
  41526. }
  41527. },
  41528. },
  41529. [
  41530. {
  41531. name: "Nano",
  41532. height: math.unit(18 + 7/12, "feet")
  41533. },
  41534. {
  41535. name: "Micro",
  41536. height: math.unit(1.5, "megameters")
  41537. },
  41538. {
  41539. name: "Normal",
  41540. height: math.unit(440, "megameters"),
  41541. default: true
  41542. },
  41543. {
  41544. name: "Macro",
  41545. height: math.unit(2.5, "gigameters")
  41546. },
  41547. {
  41548. name: "Gigamacro",
  41549. height: math.unit(2, "galaxies")
  41550. },
  41551. ]
  41552. ))
  41553. characterMakers.push(() => makeCharacter(
  41554. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41555. {
  41556. side: {
  41557. height: math.unit(32, "feet"),
  41558. weight: math.unit(250000, "lb"),
  41559. name: "Side",
  41560. image: {
  41561. source: "./media/characters/silverwing/side.svg",
  41562. extra: 1100/1019,
  41563. bottom: 204/1304
  41564. }
  41565. },
  41566. },
  41567. [
  41568. {
  41569. name: "Normal",
  41570. height: math.unit(32, "feet"),
  41571. default: true
  41572. },
  41573. ]
  41574. ))
  41575. characterMakers.push(() => makeCharacter(
  41576. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41577. {
  41578. front: {
  41579. height: math.unit(6 + 6/12, "feet"),
  41580. weight: math.unit(350, "lb"),
  41581. name: "Front",
  41582. image: {
  41583. source: "./media/characters/tristan-hawthorne/front.svg",
  41584. extra: 1159/1124,
  41585. bottom: 37/1196
  41586. }
  41587. },
  41588. },
  41589. [
  41590. {
  41591. name: "Normal",
  41592. height: math.unit(6 + 6/12, "feet"),
  41593. default: true
  41594. },
  41595. ]
  41596. ))
  41597. characterMakers.push(() => makeCharacter(
  41598. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41599. {
  41600. front: {
  41601. height: math.unit(5 + 11/12, "feet"),
  41602. weight: math.unit(190, "lb"),
  41603. name: "Front",
  41604. image: {
  41605. source: "./media/characters/mizu/front.svg",
  41606. extra: 1988/1788,
  41607. bottom: 14/2002
  41608. }
  41609. },
  41610. },
  41611. [
  41612. {
  41613. name: "Normal",
  41614. height: math.unit(5 + 11/12, "feet"),
  41615. default: true
  41616. },
  41617. ]
  41618. ))
  41619. characterMakers.push(() => makeCharacter(
  41620. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41621. {
  41622. front: {
  41623. height: math.unit(1.7, "feet"),
  41624. weight: math.unit(50, "lb"),
  41625. name: "Front",
  41626. image: {
  41627. source: "./media/characters/dechroma/front.svg",
  41628. extra: 1095/859,
  41629. bottom: 64/1159
  41630. }
  41631. },
  41632. },
  41633. [
  41634. {
  41635. name: "Normal",
  41636. height: math.unit(1.7, "feet"),
  41637. default: true
  41638. },
  41639. ]
  41640. ))
  41641. characterMakers.push(() => makeCharacter(
  41642. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41643. {
  41644. side: {
  41645. height: math.unit(30, "feet"),
  41646. name: "Side",
  41647. image: {
  41648. source: "./media/characters/veluren-thanazel/side.svg",
  41649. extra: 1611/633,
  41650. bottom: 118/1729
  41651. }
  41652. },
  41653. front: {
  41654. height: math.unit(30, "feet"),
  41655. name: "Front",
  41656. image: {
  41657. source: "./media/characters/veluren-thanazel/front.svg",
  41658. extra: 1486/636,
  41659. bottom: 238/1724
  41660. }
  41661. },
  41662. head: {
  41663. height: math.unit(21.4, "feet"),
  41664. name: "Head",
  41665. image: {
  41666. source: "./media/characters/veluren-thanazel/head.svg"
  41667. }
  41668. },
  41669. genitals: {
  41670. height: math.unit(19.4, "feet"),
  41671. name: "Genitals",
  41672. image: {
  41673. source: "./media/characters/veluren-thanazel/genitals.svg"
  41674. }
  41675. },
  41676. },
  41677. [
  41678. {
  41679. name: "Social",
  41680. height: math.unit(6, "feet")
  41681. },
  41682. {
  41683. name: "Play",
  41684. height: math.unit(12, "feet")
  41685. },
  41686. {
  41687. name: "True",
  41688. height: math.unit(30, "feet"),
  41689. default: true
  41690. },
  41691. ]
  41692. ))
  41693. characterMakers.push(() => makeCharacter(
  41694. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41695. {
  41696. front: {
  41697. height: math.unit(7 + 6/12, "feet"),
  41698. weight: math.unit(500, "kg"),
  41699. name: "Front",
  41700. image: {
  41701. source: "./media/characters/arcturas/front.svg",
  41702. extra: 1700/1500,
  41703. bottom: 145/1845
  41704. }
  41705. },
  41706. },
  41707. [
  41708. {
  41709. name: "Normal",
  41710. height: math.unit(7 + 6/12, "feet"),
  41711. default: true
  41712. },
  41713. ]
  41714. ))
  41715. characterMakers.push(() => makeCharacter(
  41716. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41717. {
  41718. side: {
  41719. height: math.unit(6, "feet"),
  41720. weight: math.unit(2, "tons"),
  41721. name: "Side",
  41722. image: {
  41723. source: "./media/characters/vitaen/side.svg",
  41724. extra: 1157/617,
  41725. bottom: 122/1279
  41726. }
  41727. },
  41728. },
  41729. [
  41730. {
  41731. name: "Normal",
  41732. height: math.unit(6, "feet"),
  41733. default: true
  41734. },
  41735. ]
  41736. ))
  41737. characterMakers.push(() => makeCharacter(
  41738. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41739. {
  41740. front: {
  41741. height: math.unit(19, "feet"),
  41742. name: "Front",
  41743. image: {
  41744. source: "./media/characters/fia-dreamweaver/front.svg",
  41745. extra: 1630/1504,
  41746. bottom: 25/1655
  41747. }
  41748. },
  41749. },
  41750. [
  41751. {
  41752. name: "Normal",
  41753. height: math.unit(19, "feet"),
  41754. default: true
  41755. },
  41756. ]
  41757. ))
  41758. characterMakers.push(() => makeCharacter(
  41759. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41760. {
  41761. front: {
  41762. height: math.unit(5 + 4/12, "feet"),
  41763. name: "Front",
  41764. image: {
  41765. source: "./media/characters/artan/front.svg",
  41766. extra: 1618/1535,
  41767. bottom: 46/1664
  41768. }
  41769. },
  41770. back: {
  41771. height: math.unit(5 + 4/12, "feet"),
  41772. name: "Back",
  41773. image: {
  41774. source: "./media/characters/artan/back.svg",
  41775. extra: 1618/1543,
  41776. bottom: 31/1649
  41777. }
  41778. },
  41779. },
  41780. [
  41781. {
  41782. name: "Normal",
  41783. height: math.unit(5 + 4/12, "feet"),
  41784. default: true
  41785. },
  41786. ]
  41787. ))
  41788. characterMakers.push(() => makeCharacter(
  41789. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41790. {
  41791. side: {
  41792. height: math.unit(182, "cm"),
  41793. weight: math.unit(1000, "lb"),
  41794. name: "Side",
  41795. image: {
  41796. source: "./media/characters/silver-dragon/side.svg",
  41797. extra: 710/287,
  41798. bottom: 88/798
  41799. }
  41800. },
  41801. },
  41802. [
  41803. {
  41804. name: "Normal",
  41805. height: math.unit(182, "cm"),
  41806. default: true
  41807. },
  41808. ]
  41809. ))
  41810. characterMakers.push(() => makeCharacter(
  41811. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41812. {
  41813. side: {
  41814. height: math.unit(6 + 6/12, "feet"),
  41815. weight: math.unit(1.5, "tons"),
  41816. name: "Side",
  41817. image: {
  41818. source: "./media/characters/zephyr/side.svg",
  41819. extra: 1433/586,
  41820. bottom: 109/1542
  41821. }
  41822. },
  41823. },
  41824. [
  41825. {
  41826. name: "Normal",
  41827. height: math.unit(6 + 6/12, "feet"),
  41828. default: true
  41829. },
  41830. ]
  41831. ))
  41832. characterMakers.push(() => makeCharacter(
  41833. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41834. {
  41835. side: {
  41836. height: math.unit(1, "feet"),
  41837. name: "Side",
  41838. image: {
  41839. source: "./media/characters/vixye/side.svg",
  41840. extra: 632/541,
  41841. bottom: 0/632
  41842. }
  41843. },
  41844. },
  41845. [
  41846. {
  41847. name: "Normal",
  41848. height: math.unit(1, "feet"),
  41849. default: true
  41850. },
  41851. {
  41852. name: "True",
  41853. height: math.unit(1e15, "multiverses")
  41854. },
  41855. ]
  41856. ))
  41857. characterMakers.push(() => makeCharacter(
  41858. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41859. {
  41860. front: {
  41861. height: math.unit(8 + 2/12, "feet"),
  41862. weight: math.unit(650, "lb"),
  41863. name: "Front",
  41864. image: {
  41865. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41866. extra: 1174/1137,
  41867. bottom: 82/1256
  41868. }
  41869. },
  41870. back: {
  41871. height: math.unit(8 + 2/12, "feet"),
  41872. weight: math.unit(650, "lb"),
  41873. name: "Back",
  41874. image: {
  41875. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41876. extra: 1204/1157,
  41877. bottom: 46/1250
  41878. }
  41879. },
  41880. },
  41881. [
  41882. {
  41883. name: "Wildform",
  41884. height: math.unit(8 + 2/12, "feet"),
  41885. default: true
  41886. },
  41887. ]
  41888. ))
  41889. characterMakers.push(() => makeCharacter(
  41890. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41891. {
  41892. front: {
  41893. height: math.unit(18, "feet"),
  41894. name: "Front",
  41895. image: {
  41896. source: "./media/characters/cyphin/front.svg",
  41897. extra: 970/886,
  41898. bottom: 42/1012
  41899. }
  41900. },
  41901. back: {
  41902. height: math.unit(18, "feet"),
  41903. name: "Back",
  41904. image: {
  41905. source: "./media/characters/cyphin/back.svg",
  41906. extra: 1009/894,
  41907. bottom: 24/1033
  41908. }
  41909. },
  41910. head: {
  41911. height: math.unit(5.05, "feet"),
  41912. name: "Head",
  41913. image: {
  41914. source: "./media/characters/cyphin/head.svg"
  41915. }
  41916. },
  41917. tailbud: {
  41918. height: math.unit(5, "feet"),
  41919. name: "Tailbud",
  41920. image: {
  41921. source: "./media/characters/cyphin/tailbud.svg"
  41922. }
  41923. },
  41924. },
  41925. [
  41926. ]
  41927. ))
  41928. characterMakers.push(() => makeCharacter(
  41929. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41930. {
  41931. side: {
  41932. height: math.unit(10, "feet"),
  41933. weight: math.unit(6, "tons"),
  41934. name: "Side",
  41935. image: {
  41936. source: "./media/characters/raijin/side.svg",
  41937. extra: 1529/613,
  41938. bottom: 337/1866
  41939. }
  41940. },
  41941. },
  41942. [
  41943. {
  41944. name: "Normal",
  41945. height: math.unit(10, "feet"),
  41946. default: true
  41947. },
  41948. ]
  41949. ))
  41950. characterMakers.push(() => makeCharacter(
  41951. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41952. {
  41953. side: {
  41954. height: math.unit(9, "feet"),
  41955. name: "Side",
  41956. image: {
  41957. source: "./media/characters/nilghais/side.svg",
  41958. extra: 1047/744,
  41959. bottom: 91/1138
  41960. }
  41961. },
  41962. head: {
  41963. height: math.unit(3.14, "feet"),
  41964. name: "Head",
  41965. image: {
  41966. source: "./media/characters/nilghais/head.svg"
  41967. }
  41968. },
  41969. mouth: {
  41970. height: math.unit(4.6, "feet"),
  41971. name: "Mouth",
  41972. image: {
  41973. source: "./media/characters/nilghais/mouth.svg"
  41974. }
  41975. },
  41976. wings: {
  41977. height: math.unit(24, "feet"),
  41978. name: "Wings",
  41979. image: {
  41980. source: "./media/characters/nilghais/wings.svg"
  41981. }
  41982. },
  41983. ass: {
  41984. height: math.unit(6.12, "feet"),
  41985. name: "Ass",
  41986. image: {
  41987. source: "./media/characters/nilghais/ass.svg"
  41988. }
  41989. },
  41990. },
  41991. [
  41992. {
  41993. name: "Normal",
  41994. height: math.unit(9, "feet"),
  41995. default: true
  41996. },
  41997. ]
  41998. ))
  41999. characterMakers.push(() => makeCharacter(
  42000. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42001. {
  42002. regular: {
  42003. height: math.unit(16 + 2/12, "feet"),
  42004. weight: math.unit(2300, "lb"),
  42005. name: "Regular",
  42006. image: {
  42007. source: "./media/characters/zolgar/regular.svg",
  42008. extra: 1246/1004,
  42009. bottom: 124/1370
  42010. }
  42011. },
  42012. boxers: {
  42013. height: math.unit(16 + 2/12, "feet"),
  42014. weight: math.unit(2300, "lb"),
  42015. name: "Boxers",
  42016. image: {
  42017. source: "./media/characters/zolgar/boxers.svg",
  42018. extra: 1246/1004,
  42019. bottom: 124/1370
  42020. }
  42021. },
  42022. armored: {
  42023. height: math.unit(16 + 2/12, "feet"),
  42024. weight: math.unit(2300, "lb"),
  42025. name: "Armored",
  42026. image: {
  42027. source: "./media/characters/zolgar/armored.svg",
  42028. extra: 1246/1004,
  42029. bottom: 124/1370
  42030. }
  42031. },
  42032. goth: {
  42033. height: math.unit(16 + 2/12, "feet"),
  42034. weight: math.unit(2300, "lb"),
  42035. name: "Goth",
  42036. image: {
  42037. source: "./media/characters/zolgar/goth.svg",
  42038. extra: 1246/1004,
  42039. bottom: 124/1370
  42040. }
  42041. },
  42042. },
  42043. [
  42044. {
  42045. name: "Shrunken Down",
  42046. height: math.unit(9 + 2/12, "feet")
  42047. },
  42048. {
  42049. name: "Normal",
  42050. height: math.unit(16 + 2/12, "feet"),
  42051. default: true
  42052. },
  42053. ]
  42054. ))
  42055. characterMakers.push(() => makeCharacter(
  42056. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42057. {
  42058. front: {
  42059. height: math.unit(6, "feet"),
  42060. weight: math.unit(168, "lb"),
  42061. name: "Front",
  42062. image: {
  42063. source: "./media/characters/luca/front.svg",
  42064. extra: 841/667,
  42065. bottom: 102/943
  42066. }
  42067. },
  42068. },
  42069. [
  42070. {
  42071. name: "Normal",
  42072. height: math.unit(6, "feet"),
  42073. default: true
  42074. },
  42075. ]
  42076. ))
  42077. characterMakers.push(() => makeCharacter(
  42078. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42079. {
  42080. side: {
  42081. height: math.unit(7 + 3/12, "feet"),
  42082. weight: math.unit(312, "lb"),
  42083. name: "Side",
  42084. image: {
  42085. source: "./media/characters/zezo/side.svg",
  42086. extra: 1192/1067,
  42087. bottom: 63/1255
  42088. }
  42089. },
  42090. },
  42091. [
  42092. {
  42093. name: "Normal",
  42094. height: math.unit(7 + 3/12, "feet"),
  42095. default: true
  42096. },
  42097. ]
  42098. ))
  42099. characterMakers.push(() => makeCharacter(
  42100. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42101. {
  42102. front: {
  42103. height: math.unit(5 + 5/12, "feet"),
  42104. weight: math.unit(170, "lb"),
  42105. name: "Front",
  42106. image: {
  42107. source: "./media/characters/mayso/front.svg",
  42108. extra: 1215/1108,
  42109. bottom: 16/1231
  42110. }
  42111. },
  42112. },
  42113. [
  42114. {
  42115. name: "Normal",
  42116. height: math.unit(5 + 5/12, "feet"),
  42117. default: true
  42118. },
  42119. ]
  42120. ))
  42121. characterMakers.push(() => makeCharacter(
  42122. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42123. {
  42124. front: {
  42125. height: math.unit(4 + 3/12, "feet"),
  42126. weight: math.unit(80, "lb"),
  42127. name: "Front",
  42128. image: {
  42129. source: "./media/characters/hess/front.svg",
  42130. extra: 1200/1123,
  42131. bottom: 16/1216
  42132. }
  42133. },
  42134. },
  42135. [
  42136. {
  42137. name: "Normal",
  42138. height: math.unit(4 + 3/12, "feet"),
  42139. default: true
  42140. },
  42141. ]
  42142. ))
  42143. characterMakers.push(() => makeCharacter(
  42144. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42145. {
  42146. front: {
  42147. height: math.unit(1.9, "meters"),
  42148. name: "Front",
  42149. image: {
  42150. source: "./media/characters/ashgar/front.svg",
  42151. extra: 1177/1146,
  42152. bottom: 99/1276
  42153. }
  42154. },
  42155. back: {
  42156. height: math.unit(1.9, "meters"),
  42157. name: "Back",
  42158. image: {
  42159. source: "./media/characters/ashgar/back.svg",
  42160. extra: 1201/1183,
  42161. bottom: 53/1254
  42162. }
  42163. },
  42164. feral: {
  42165. height: math.unit(1.4, "meters"),
  42166. name: "Feral",
  42167. image: {
  42168. source: "./media/characters/ashgar/feral.svg",
  42169. extra: 370/345,
  42170. bottom: 45/415
  42171. }
  42172. },
  42173. },
  42174. [
  42175. {
  42176. name: "Normal",
  42177. height: math.unit(1.9, "meters"),
  42178. default: true
  42179. },
  42180. ]
  42181. ))
  42182. characterMakers.push(() => makeCharacter(
  42183. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42184. {
  42185. regular: {
  42186. height: math.unit(6, "feet"),
  42187. weight: math.unit(220, "lb"),
  42188. name: "Regular",
  42189. image: {
  42190. source: "./media/characters/phillip/regular.svg",
  42191. extra: 1373/1277,
  42192. bottom: 75/1448
  42193. }
  42194. },
  42195. dressed: {
  42196. height: math.unit(6, "feet"),
  42197. weight: math.unit(220, "lb"),
  42198. name: "Dressed",
  42199. image: {
  42200. source: "./media/characters/phillip/dressed.svg",
  42201. extra: 1373/1277,
  42202. bottom: 75/1448
  42203. }
  42204. },
  42205. paw: {
  42206. height: math.unit(1.44, "feet"),
  42207. name: "Paw",
  42208. image: {
  42209. source: "./media/characters/phillip/paw.svg"
  42210. }
  42211. },
  42212. },
  42213. [
  42214. {
  42215. name: "Normal",
  42216. height: math.unit(6, "feet"),
  42217. default: true
  42218. },
  42219. ]
  42220. ))
  42221. characterMakers.push(() => makeCharacter(
  42222. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42223. {
  42224. side: {
  42225. height: math.unit(42, "feet"),
  42226. name: "Side",
  42227. image: {
  42228. source: "./media/characters/uvula/side.svg",
  42229. extra: 683/586,
  42230. bottom: 60/743
  42231. }
  42232. },
  42233. front: {
  42234. height: math.unit(42, "feet"),
  42235. name: "Front",
  42236. image: {
  42237. source: "./media/characters/uvula/front.svg",
  42238. extra: 705/613,
  42239. bottom: 54/759
  42240. }
  42241. },
  42242. maw: {
  42243. height: math.unit(23.5, "feet"),
  42244. name: "Maw",
  42245. image: {
  42246. source: "./media/characters/uvula/maw.svg"
  42247. }
  42248. },
  42249. },
  42250. [
  42251. {
  42252. name: "Original Size",
  42253. height: math.unit(14, "inches")
  42254. },
  42255. {
  42256. name: "Human Size",
  42257. height: math.unit(6, "feet")
  42258. },
  42259. {
  42260. name: "Big",
  42261. height: math.unit(42, "feet"),
  42262. default: true
  42263. },
  42264. {
  42265. name: "Bigger",
  42266. height: math.unit(100, "feet")
  42267. },
  42268. ]
  42269. ))
  42270. characterMakers.push(() => makeCharacter(
  42271. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42272. {
  42273. front: {
  42274. height: math.unit(5 + 11/12, "feet"),
  42275. name: "Front",
  42276. image: {
  42277. source: "./media/characters/lannah/front.svg",
  42278. extra: 1208/1113,
  42279. bottom: 97/1305
  42280. }
  42281. },
  42282. },
  42283. [
  42284. {
  42285. name: "Normal",
  42286. height: math.unit(5 + 11/12, "feet"),
  42287. default: true
  42288. },
  42289. ]
  42290. ))
  42291. characterMakers.push(() => makeCharacter(
  42292. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42293. {
  42294. front: {
  42295. height: math.unit(6 + 3/12, "feet"),
  42296. weight: math.unit(3.5, "tons"),
  42297. name: "Front",
  42298. image: {
  42299. source: "./media/characters/emberflame/front.svg",
  42300. extra: 1198/672,
  42301. bottom: 82/1280
  42302. }
  42303. },
  42304. side: {
  42305. height: math.unit(6 + 3/12, "feet"),
  42306. weight: math.unit(3.5, "tons"),
  42307. name: "Side",
  42308. image: {
  42309. source: "./media/characters/emberflame/side.svg",
  42310. extra: 938/527,
  42311. bottom: 56/994
  42312. }
  42313. },
  42314. },
  42315. [
  42316. {
  42317. name: "Normal",
  42318. height: math.unit(6 + 3/12, "feet"),
  42319. default: true
  42320. },
  42321. ]
  42322. ))
  42323. characterMakers.push(() => makeCharacter(
  42324. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42325. {
  42326. side: {
  42327. height: math.unit(17.5, "feet"),
  42328. weight: math.unit(35, "tons"),
  42329. name: "Side",
  42330. image: {
  42331. source: "./media/characters/sophie-ambrose/side.svg",
  42332. extra: 1573/1242,
  42333. bottom: 71/1644
  42334. }
  42335. },
  42336. maw: {
  42337. height: math.unit(7.4, "feet"),
  42338. name: "Maw",
  42339. image: {
  42340. source: "./media/characters/sophie-ambrose/maw.svg"
  42341. }
  42342. },
  42343. },
  42344. [
  42345. {
  42346. name: "Normal",
  42347. height: math.unit(17.5, "feet"),
  42348. default: true
  42349. },
  42350. ]
  42351. ))
  42352. characterMakers.push(() => makeCharacter(
  42353. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42354. {
  42355. front: {
  42356. height: math.unit(280, "feet"),
  42357. weight: math.unit(550, "tons"),
  42358. name: "Front",
  42359. image: {
  42360. source: "./media/characters/king-mugi/front.svg",
  42361. extra: 1102/947,
  42362. bottom: 104/1206
  42363. }
  42364. },
  42365. },
  42366. [
  42367. {
  42368. name: "King Mugi",
  42369. height: math.unit(280, "feet"),
  42370. default: true
  42371. },
  42372. ]
  42373. ))
  42374. characterMakers.push(() => makeCharacter(
  42375. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42376. {
  42377. front: {
  42378. height: math.unit(64, "meters"),
  42379. name: "Front",
  42380. image: {
  42381. source: "./media/characters/nova-fox/front.svg",
  42382. extra: 1310/1246,
  42383. bottom: 65/1375
  42384. }
  42385. },
  42386. },
  42387. [
  42388. {
  42389. name: "Macro",
  42390. height: math.unit(64, "meters"),
  42391. default: true
  42392. },
  42393. ]
  42394. ))
  42395. characterMakers.push(() => makeCharacter(
  42396. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42397. {
  42398. front: {
  42399. height: math.unit(6 + 3/12, "feet"),
  42400. weight: math.unit(170, "lb"),
  42401. name: "Front",
  42402. image: {
  42403. source: "./media/characters/sam-bat/front.svg",
  42404. extra: 1601/1411,
  42405. bottom: 125/1726
  42406. }
  42407. },
  42408. back: {
  42409. height: math.unit(6 + 3/12, "feet"),
  42410. weight: math.unit(170, "lb"),
  42411. name: "Back",
  42412. image: {
  42413. source: "./media/characters/sam-bat/back.svg",
  42414. extra: 1577/1405,
  42415. bottom: 58/1635
  42416. }
  42417. },
  42418. },
  42419. [
  42420. {
  42421. name: "Normal",
  42422. height: math.unit(6 + 3/12, "feet"),
  42423. default: true
  42424. },
  42425. ]
  42426. ))
  42427. characterMakers.push(() => makeCharacter(
  42428. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42429. {
  42430. front: {
  42431. height: math.unit(59, "feet"),
  42432. weight: math.unit(40000, "lb"),
  42433. name: "Front",
  42434. image: {
  42435. source: "./media/characters/inari/front.svg",
  42436. extra: 1884/1350,
  42437. bottom: 95/1979
  42438. }
  42439. },
  42440. },
  42441. [
  42442. {
  42443. name: "Gigantamax",
  42444. height: math.unit(59, "feet"),
  42445. default: true
  42446. },
  42447. ]
  42448. ))
  42449. characterMakers.push(() => makeCharacter(
  42450. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42451. {
  42452. front: {
  42453. height: math.unit(5 + 8/12, "feet"),
  42454. name: "Front",
  42455. image: {
  42456. source: "./media/characters/elizabeth/front.svg",
  42457. extra: 1395/1298,
  42458. bottom: 54/1449
  42459. }
  42460. },
  42461. mouth: {
  42462. height: math.unit(1.97, "feet"),
  42463. name: "Mouth",
  42464. image: {
  42465. source: "./media/characters/elizabeth/mouth.svg"
  42466. }
  42467. },
  42468. foot: {
  42469. height: math.unit(1.17, "feet"),
  42470. name: "Foot",
  42471. image: {
  42472. source: "./media/characters/elizabeth/foot.svg"
  42473. }
  42474. },
  42475. },
  42476. [
  42477. {
  42478. name: "Normal",
  42479. height: math.unit(5 + 8/12, "feet"),
  42480. default: true
  42481. },
  42482. {
  42483. name: "Minimacro",
  42484. height: math.unit(18, "feet")
  42485. },
  42486. {
  42487. name: "Macro",
  42488. height: math.unit(180, "feet")
  42489. },
  42490. ]
  42491. ))
  42492. characterMakers.push(() => makeCharacter(
  42493. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42494. {
  42495. front: {
  42496. height: math.unit(5 + 2/12, "feet"),
  42497. name: "Front",
  42498. image: {
  42499. source: "./media/characters/october-gossamer/front.svg",
  42500. extra: 505/454,
  42501. bottom: 7/512
  42502. }
  42503. },
  42504. back: {
  42505. height: math.unit(5 + 2/12, "feet"),
  42506. name: "Back",
  42507. image: {
  42508. source: "./media/characters/october-gossamer/back.svg",
  42509. extra: 501/454,
  42510. bottom: 11/512
  42511. }
  42512. },
  42513. },
  42514. [
  42515. {
  42516. name: "Normal",
  42517. height: math.unit(5 + 2/12, "feet"),
  42518. default: true
  42519. },
  42520. ]
  42521. ))
  42522. characterMakers.push(() => makeCharacter(
  42523. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42524. {
  42525. front: {
  42526. height: math.unit(5, "feet"),
  42527. name: "Front",
  42528. image: {
  42529. source: "./media/characters/epiglottis/front.svg",
  42530. extra: 923/849,
  42531. bottom: 17/940
  42532. }
  42533. },
  42534. },
  42535. [
  42536. {
  42537. name: "Original Size",
  42538. height: math.unit(10, "inches")
  42539. },
  42540. {
  42541. name: "Human Size",
  42542. height: math.unit(5, "feet"),
  42543. default: true
  42544. },
  42545. {
  42546. name: "Big",
  42547. height: math.unit(25, "feet")
  42548. },
  42549. {
  42550. name: "Bigger",
  42551. height: math.unit(50, "feet")
  42552. },
  42553. {
  42554. name: "oh lawd",
  42555. height: math.unit(75, "feet")
  42556. },
  42557. ]
  42558. ))
  42559. characterMakers.push(() => makeCharacter(
  42560. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42561. {
  42562. front: {
  42563. height: math.unit(2 + 4/12, "feet"),
  42564. weight: math.unit(60, "lb"),
  42565. name: "Front",
  42566. image: {
  42567. source: "./media/characters/lerm/front.svg",
  42568. extra: 796/790,
  42569. bottom: 79/875
  42570. }
  42571. },
  42572. },
  42573. [
  42574. {
  42575. name: "Normal",
  42576. height: math.unit(2 + 4/12, "feet"),
  42577. default: true
  42578. },
  42579. ]
  42580. ))
  42581. characterMakers.push(() => makeCharacter(
  42582. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42583. {
  42584. front: {
  42585. height: math.unit(5.5, "feet"),
  42586. weight: math.unit(130, "lb"),
  42587. name: "Front",
  42588. image: {
  42589. source: "./media/characters/xena-nebadon/front.svg",
  42590. extra: 1828/1730,
  42591. bottom: 79/1907
  42592. }
  42593. },
  42594. },
  42595. [
  42596. {
  42597. name: "Tiny Puppy",
  42598. height: math.unit(3, "inches")
  42599. },
  42600. {
  42601. name: "Normal",
  42602. height: math.unit(5.5, "feet"),
  42603. default: true
  42604. },
  42605. {
  42606. name: "Lotta Lady",
  42607. height: math.unit(12, "feet")
  42608. },
  42609. {
  42610. name: "Pretty Big",
  42611. height: math.unit(100, "feet")
  42612. },
  42613. {
  42614. name: "Big",
  42615. height: math.unit(500, "feet")
  42616. },
  42617. {
  42618. name: "Skyscraper Toys",
  42619. height: math.unit(2500, "feet")
  42620. },
  42621. {
  42622. name: "Plane Catcher",
  42623. height: math.unit(8, "miles")
  42624. },
  42625. {
  42626. name: "Planet Toys",
  42627. height: math.unit(15, "earths")
  42628. },
  42629. {
  42630. name: "Stardust",
  42631. height: math.unit(0.25, "galaxies")
  42632. },
  42633. {
  42634. name: "Snacks",
  42635. height: math.unit(70, "universes")
  42636. },
  42637. ]
  42638. ))
  42639. characterMakers.push(() => makeCharacter(
  42640. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42641. {
  42642. front: {
  42643. height: math.unit(1.6, "meters"),
  42644. weight: math.unit(60, "kg"),
  42645. name: "Front",
  42646. image: {
  42647. source: "./media/characters/bounty/front.svg",
  42648. extra: 1426/1308,
  42649. bottom: 15/1441
  42650. }
  42651. },
  42652. back: {
  42653. height: math.unit(1.6, "meters"),
  42654. weight: math.unit(60, "kg"),
  42655. name: "Back",
  42656. image: {
  42657. source: "./media/characters/bounty/back.svg",
  42658. extra: 1417/1307,
  42659. bottom: 8/1425
  42660. }
  42661. },
  42662. },
  42663. [
  42664. {
  42665. name: "Normal",
  42666. height: math.unit(1.6, "meters"),
  42667. default: true
  42668. },
  42669. {
  42670. name: "Macro",
  42671. height: math.unit(300, "meters")
  42672. },
  42673. ]
  42674. ))
  42675. characterMakers.push(() => makeCharacter(
  42676. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42677. {
  42678. front: {
  42679. height: math.unit(2 + 8/12, "feet"),
  42680. weight: math.unit(15, "lb"),
  42681. name: "Front",
  42682. image: {
  42683. source: "./media/characters/mochi/front.svg",
  42684. extra: 1022/852,
  42685. bottom: 435/1457
  42686. }
  42687. },
  42688. back: {
  42689. height: math.unit(2 + 8/12, "feet"),
  42690. weight: math.unit(15, "lb"),
  42691. name: "Back",
  42692. image: {
  42693. source: "./media/characters/mochi/back.svg",
  42694. extra: 1335/1119,
  42695. bottom: 39/1374
  42696. }
  42697. },
  42698. bird: {
  42699. height: math.unit(2 + 8/12, "feet"),
  42700. weight: math.unit(15, "lb"),
  42701. name: "Bird",
  42702. image: {
  42703. source: "./media/characters/mochi/bird.svg",
  42704. extra: 1251/1113,
  42705. bottom: 178/1429
  42706. }
  42707. },
  42708. kaiju: {
  42709. height: math.unit(154, "feet"),
  42710. weight: math.unit(1e7, "lb"),
  42711. name: "Kaiju",
  42712. image: {
  42713. source: "./media/characters/mochi/kaiju.svg",
  42714. extra: 460/324,
  42715. bottom: 40/500
  42716. }
  42717. },
  42718. head: {
  42719. height: math.unit(1.21, "feet"),
  42720. name: "Head",
  42721. image: {
  42722. source: "./media/characters/mochi/head.svg"
  42723. }
  42724. },
  42725. alternateTail: {
  42726. height: math.unit(2 + 8/12, "feet"),
  42727. weight: math.unit(45, "lb"),
  42728. name: "Alternate Tail",
  42729. image: {
  42730. source: "./media/characters/mochi/alternate-tail.svg",
  42731. extra: 139/76,
  42732. bottom: 45/184
  42733. }
  42734. },
  42735. },
  42736. [
  42737. {
  42738. name: "Micro",
  42739. height: math.unit(2, "inches")
  42740. },
  42741. {
  42742. name: "Normal",
  42743. height: math.unit(2 + 8/12, "feet"),
  42744. default: true
  42745. },
  42746. {
  42747. name: "Macro",
  42748. height: math.unit(106, "feet")
  42749. },
  42750. ]
  42751. ))
  42752. characterMakers.push(() => makeCharacter(
  42753. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42754. {
  42755. front: {
  42756. height: math.unit(5.67, "feet"),
  42757. weight: math.unit(135, "lb"),
  42758. name: "Front",
  42759. image: {
  42760. source: "./media/characters/sarel/front.svg",
  42761. extra: 865/788,
  42762. bottom: 97/962
  42763. }
  42764. },
  42765. back: {
  42766. height: math.unit(5.67, "feet"),
  42767. weight: math.unit(135, "lb"),
  42768. name: "Back",
  42769. image: {
  42770. source: "./media/characters/sarel/back.svg",
  42771. extra: 857/777,
  42772. bottom: 32/889
  42773. }
  42774. },
  42775. chozoan: {
  42776. height: math.unit(5.67, "feet"),
  42777. weight: math.unit(135, "lb"),
  42778. name: "Chozoan",
  42779. image: {
  42780. source: "./media/characters/sarel/chozoan.svg",
  42781. extra: 865/788,
  42782. bottom: 97/962
  42783. }
  42784. },
  42785. current: {
  42786. height: math.unit(5.67, "feet"),
  42787. weight: math.unit(135, "lb"),
  42788. name: "Current",
  42789. image: {
  42790. source: "./media/characters/sarel/current.svg",
  42791. extra: 865/788,
  42792. bottom: 97/962
  42793. }
  42794. },
  42795. head: {
  42796. height: math.unit(1.77, "feet"),
  42797. name: "Head",
  42798. image: {
  42799. source: "./media/characters/sarel/head.svg"
  42800. }
  42801. },
  42802. claws: {
  42803. height: math.unit(1.8, "feet"),
  42804. name: "Claws",
  42805. image: {
  42806. source: "./media/characters/sarel/claws.svg"
  42807. }
  42808. },
  42809. clawsAlt: {
  42810. height: math.unit(1.8, "feet"),
  42811. name: "Claws-alt",
  42812. image: {
  42813. source: "./media/characters/sarel/claws-alt.svg"
  42814. }
  42815. },
  42816. },
  42817. [
  42818. {
  42819. name: "Normal",
  42820. height: math.unit(5.67, "feet"),
  42821. default: true
  42822. },
  42823. ]
  42824. ))
  42825. characterMakers.push(() => makeCharacter(
  42826. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42827. {
  42828. front: {
  42829. height: math.unit(5500, "feet"),
  42830. name: "Front",
  42831. image: {
  42832. source: "./media/characters/alyonia/front.svg",
  42833. extra: 1200/1135,
  42834. bottom: 29/1229
  42835. }
  42836. },
  42837. back: {
  42838. height: math.unit(5500, "feet"),
  42839. name: "Back",
  42840. image: {
  42841. source: "./media/characters/alyonia/back.svg",
  42842. extra: 1205/1138,
  42843. bottom: 10/1215
  42844. }
  42845. },
  42846. },
  42847. [
  42848. {
  42849. name: "Small",
  42850. height: math.unit(10, "feet")
  42851. },
  42852. {
  42853. name: "Macro",
  42854. height: math.unit(500, "feet")
  42855. },
  42856. {
  42857. name: "Mega Macro",
  42858. height: math.unit(5500, "feet"),
  42859. default: true
  42860. },
  42861. {
  42862. name: "Mega Macro+",
  42863. height: math.unit(500000, "feet")
  42864. },
  42865. {
  42866. name: "Giga Macro",
  42867. height: math.unit(3000, "miles")
  42868. },
  42869. {
  42870. name: "Tera Macro",
  42871. height: math.unit(2.8e6, "miles")
  42872. },
  42873. {
  42874. name: "Galactic",
  42875. height: math.unit(120000, "lightyears")
  42876. },
  42877. ]
  42878. ))
  42879. characterMakers.push(() => makeCharacter(
  42880. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42881. {
  42882. werewolf: {
  42883. height: math.unit(8, "feet"),
  42884. weight: math.unit(425, "lb"),
  42885. name: "Werewolf",
  42886. image: {
  42887. source: "./media/characters/autumn/werewolf.svg",
  42888. extra: 2154/2031,
  42889. bottom: 160/2314
  42890. }
  42891. },
  42892. human: {
  42893. height: math.unit(5 + 8/12, "feet"),
  42894. weight: math.unit(150, "lb"),
  42895. name: "Human",
  42896. image: {
  42897. source: "./media/characters/autumn/human.svg",
  42898. extra: 1200/1149,
  42899. bottom: 30/1230
  42900. }
  42901. },
  42902. },
  42903. [
  42904. {
  42905. name: "Normal",
  42906. height: math.unit(8, "feet"),
  42907. default: true
  42908. },
  42909. ]
  42910. ))
  42911. characterMakers.push(() => makeCharacter(
  42912. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42913. {
  42914. front: {
  42915. height: math.unit(8 + 5/12, "feet"),
  42916. weight: math.unit(825, "lb"),
  42917. name: "Front",
  42918. image: {
  42919. source: "./media/characters/cobalt-charizard/front.svg",
  42920. extra: 1268/1155,
  42921. bottom: 122/1390
  42922. }
  42923. },
  42924. side: {
  42925. height: math.unit(8 + 5/12, "feet"),
  42926. weight: math.unit(825, "lb"),
  42927. name: "Side",
  42928. image: {
  42929. source: "./media/characters/cobalt-charizard/side.svg",
  42930. extra: 1348/1257,
  42931. bottom: 58/1406
  42932. }
  42933. },
  42934. gMax: {
  42935. height: math.unit(134 + 11/12, "feet"),
  42936. name: "G-Max",
  42937. image: {
  42938. source: "./media/characters/cobalt-charizard/g-max.svg",
  42939. extra: 1835/1541,
  42940. bottom: 151/1986
  42941. }
  42942. },
  42943. },
  42944. [
  42945. {
  42946. name: "Normal",
  42947. height: math.unit(8 + 5/12, "feet"),
  42948. default: true
  42949. },
  42950. ]
  42951. ))
  42952. characterMakers.push(() => makeCharacter(
  42953. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42954. {
  42955. front: {
  42956. height: math.unit(6 + 3/12, "feet"),
  42957. weight: math.unit(210, "lb"),
  42958. name: "Front",
  42959. image: {
  42960. source: "./media/characters/stella/front.svg",
  42961. extra: 3549/3335,
  42962. bottom: 51/3600
  42963. }
  42964. },
  42965. },
  42966. [
  42967. {
  42968. name: "Normal",
  42969. height: math.unit(6 + 3/12, "feet"),
  42970. default: true
  42971. },
  42972. ]
  42973. ))
  42974. characterMakers.push(() => makeCharacter(
  42975. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42976. {
  42977. front: {
  42978. height: math.unit(5, "feet"),
  42979. weight: math.unit(90, "lb"),
  42980. name: "Front",
  42981. image: {
  42982. source: "./media/characters/riley-bishop/front.svg",
  42983. extra: 1450/1428,
  42984. bottom: 152/1602
  42985. }
  42986. },
  42987. },
  42988. [
  42989. {
  42990. name: "Normal",
  42991. height: math.unit(5, "feet"),
  42992. default: true
  42993. },
  42994. ]
  42995. ))
  42996. characterMakers.push(() => makeCharacter(
  42997. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42998. {
  42999. side: {
  43000. height: math.unit(8 + 2/12, "feet"),
  43001. weight: math.unit(500, "kg"),
  43002. name: "Side",
  43003. image: {
  43004. source: "./media/characters/theo-arcanine/side.svg",
  43005. extra: 1342/1074,
  43006. bottom: 111/1453
  43007. }
  43008. },
  43009. },
  43010. [
  43011. {
  43012. name: "Normal",
  43013. height: math.unit(8 + 2/12, "feet"),
  43014. default: true
  43015. },
  43016. ]
  43017. ))
  43018. characterMakers.push(() => makeCharacter(
  43019. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43020. {
  43021. front: {
  43022. height: math.unit(4, "feet"),
  43023. name: "Front",
  43024. image: {
  43025. source: "./media/characters/kali/front.svg",
  43026. extra: 1921/1357,
  43027. bottom: 70/1991
  43028. }
  43029. },
  43030. },
  43031. [
  43032. {
  43033. name: "Normal",
  43034. height: math.unit(4, "feet"),
  43035. default: true
  43036. },
  43037. {
  43038. name: "Macro",
  43039. height: math.unit(32, "meters")
  43040. },
  43041. {
  43042. name: "Macro+",
  43043. height: math.unit(150, "meters")
  43044. },
  43045. {
  43046. name: "Megamacro",
  43047. height: math.unit(7500, "meters")
  43048. },
  43049. {
  43050. name: "Megamacro+",
  43051. height: math.unit(80, "kilometers")
  43052. },
  43053. ]
  43054. ))
  43055. characterMakers.push(() => makeCharacter(
  43056. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43057. {
  43058. side: {
  43059. height: math.unit(5 + 11/12, "feet"),
  43060. weight: math.unit(236, "lb"),
  43061. name: "Side",
  43062. image: {
  43063. source: "./media/characters/gapp/side.svg",
  43064. extra: 775/340,
  43065. bottom: 58/833
  43066. }
  43067. },
  43068. mouth: {
  43069. height: math.unit(2.98, "feet"),
  43070. name: "Mouth",
  43071. image: {
  43072. source: "./media/characters/gapp/mouth.svg"
  43073. }
  43074. },
  43075. },
  43076. [
  43077. {
  43078. name: "Normal",
  43079. height: math.unit(5 + 1/12, "feet"),
  43080. default: true
  43081. },
  43082. ]
  43083. ))
  43084. characterMakers.push(() => makeCharacter(
  43085. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43086. {
  43087. front: {
  43088. height: math.unit(6, "feet"),
  43089. name: "Front",
  43090. image: {
  43091. source: "./media/characters/persephone/front.svg",
  43092. extra: 1895/1717,
  43093. bottom: 96/1991
  43094. }
  43095. },
  43096. back: {
  43097. height: math.unit(6, "feet"),
  43098. name: "Back",
  43099. image: {
  43100. source: "./media/characters/persephone/back.svg",
  43101. extra: 1868/1679,
  43102. bottom: 26/1894
  43103. }
  43104. },
  43105. casual: {
  43106. height: math.unit(6, "feet"),
  43107. name: "Casual",
  43108. image: {
  43109. source: "./media/characters/persephone/casual.svg",
  43110. extra: 1713/1541,
  43111. bottom: 76/1789
  43112. }
  43113. },
  43114. },
  43115. [
  43116. {
  43117. name: "Human Size",
  43118. height: math.unit(6, "feet")
  43119. },
  43120. {
  43121. name: "Big Steppy",
  43122. height: math.unit(600, "meters"),
  43123. default: true
  43124. },
  43125. {
  43126. name: "Galaxy Brain",
  43127. height: math.unit(1, "zettameter")
  43128. },
  43129. ]
  43130. ))
  43131. characterMakers.push(() => makeCharacter(
  43132. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43133. {
  43134. front: {
  43135. height: math.unit(1.85, "meters"),
  43136. name: "Front",
  43137. image: {
  43138. source: "./media/characters/riley-foxthing/front.svg",
  43139. extra: 1495/1354,
  43140. bottom: 122/1617
  43141. }
  43142. },
  43143. frontAlt: {
  43144. height: math.unit(1.85, "meters"),
  43145. name: "Front (Alt)",
  43146. image: {
  43147. source: "./media/characters/riley-foxthing/front-alt.svg",
  43148. extra: 1572/1389,
  43149. bottom: 116/1688
  43150. }
  43151. },
  43152. },
  43153. [
  43154. {
  43155. name: "Normal Sized",
  43156. height: math.unit(1.85, "meters"),
  43157. default: true
  43158. },
  43159. {
  43160. name: "Quite Sizable",
  43161. height: math.unit(5, "meters")
  43162. },
  43163. {
  43164. name: "Rather Large",
  43165. height: math.unit(20, "meters")
  43166. },
  43167. {
  43168. name: "Macro",
  43169. height: math.unit(450, "meters")
  43170. },
  43171. {
  43172. name: "Giga",
  43173. height: math.unit(5, "km")
  43174. },
  43175. ]
  43176. ))
  43177. characterMakers.push(() => makeCharacter(
  43178. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43179. {
  43180. front: {
  43181. height: math.unit(6, "feet"),
  43182. weight: math.unit(200, "lb"),
  43183. name: "Front",
  43184. image: {
  43185. source: "./media/characters/blizzard/front.svg",
  43186. extra: 1136/990,
  43187. bottom: 136/1272
  43188. }
  43189. },
  43190. back: {
  43191. height: math.unit(6, "feet"),
  43192. weight: math.unit(200, "lb"),
  43193. name: "Back",
  43194. image: {
  43195. source: "./media/characters/blizzard/back.svg",
  43196. extra: 1175/1034,
  43197. bottom: 97/1272
  43198. }
  43199. },
  43200. sitting: {
  43201. height: math.unit(3.725, "feet"),
  43202. weight: math.unit(200, "lb"),
  43203. name: "Sitting",
  43204. image: {
  43205. source: "./media/characters/blizzard/sitting.svg",
  43206. extra: 581/485,
  43207. bottom: 90/671
  43208. }
  43209. },
  43210. frontWizard: {
  43211. height: math.unit(7.9, "feet"),
  43212. weight: math.unit(200, "lb"),
  43213. name: "Front (Wizard)",
  43214. image: {
  43215. source: "./media/characters/blizzard/front-wizard.svg"
  43216. }
  43217. },
  43218. backWizard: {
  43219. height: math.unit(7.9, "feet"),
  43220. weight: math.unit(200, "lb"),
  43221. name: "Back (Wizard)",
  43222. image: {
  43223. source: "./media/characters/blizzard/back-wizard.svg"
  43224. }
  43225. },
  43226. frontNsfw: {
  43227. height: math.unit(6, "feet"),
  43228. weight: math.unit(200, "lb"),
  43229. name: "Front (NSFW)",
  43230. image: {
  43231. source: "./media/characters/blizzard/front-nsfw.svg",
  43232. extra: 1136/990,
  43233. bottom: 136/1272
  43234. }
  43235. },
  43236. backNsfw: {
  43237. height: math.unit(6, "feet"),
  43238. weight: math.unit(200, "lb"),
  43239. name: "Back (NSFW)",
  43240. image: {
  43241. source: "./media/characters/blizzard/back-nsfw.svg",
  43242. extra: 1175/1034,
  43243. bottom: 97/1272
  43244. }
  43245. },
  43246. sittingNsfw: {
  43247. height: math.unit(3.725, "feet"),
  43248. weight: math.unit(200, "lb"),
  43249. name: "Sitting (NSFW)",
  43250. image: {
  43251. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43252. extra: 581/485,
  43253. bottom: 90/671
  43254. }
  43255. },
  43256. wizardFrontNsfw: {
  43257. height: math.unit(7.9, "feet"),
  43258. weight: math.unit(200, "lb"),
  43259. name: "Wizard (Front, NSFW)",
  43260. image: {
  43261. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43262. }
  43263. },
  43264. },
  43265. [
  43266. {
  43267. name: "Normal",
  43268. height: math.unit(6, "feet"),
  43269. default: true
  43270. },
  43271. ]
  43272. ))
  43273. characterMakers.push(() => makeCharacter(
  43274. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43275. {
  43276. front: {
  43277. height: math.unit(5 + 2/12, "feet"),
  43278. name: "Front",
  43279. image: {
  43280. source: "./media/characters/lumi/front.svg",
  43281. extra: 1328/1268,
  43282. bottom: 103/1431
  43283. }
  43284. },
  43285. back: {
  43286. height: math.unit(5 + 2/12, "feet"),
  43287. name: "Back",
  43288. image: {
  43289. source: "./media/characters/lumi/back.svg",
  43290. extra: 1381/1327,
  43291. bottom: 43/1424
  43292. }
  43293. },
  43294. },
  43295. [
  43296. {
  43297. name: "Normal",
  43298. height: math.unit(5 + 2/12, "feet"),
  43299. default: true
  43300. },
  43301. ]
  43302. ))
  43303. characterMakers.push(() => makeCharacter(
  43304. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43305. {
  43306. front: {
  43307. height: math.unit(5 + 9/12, "feet"),
  43308. name: "Front",
  43309. image: {
  43310. source: "./media/characters/aliya-cotton/front.svg",
  43311. extra: 577/564,
  43312. bottom: 29/606
  43313. }
  43314. },
  43315. },
  43316. [
  43317. {
  43318. name: "Normal",
  43319. height: math.unit(5 + 9/12, "feet"),
  43320. default: true
  43321. },
  43322. ]
  43323. ))
  43324. characterMakers.push(() => makeCharacter(
  43325. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43326. {
  43327. front: {
  43328. height: math.unit(2.7, "meters"),
  43329. weight: math.unit(25000, "lb"),
  43330. name: "Front",
  43331. image: {
  43332. source: "./media/characters/noah-luxray/front.svg",
  43333. extra: 1644/825,
  43334. bottom: 339/1983
  43335. }
  43336. },
  43337. side: {
  43338. height: math.unit(2.97, "meters"),
  43339. weight: math.unit(25000, "lb"),
  43340. name: "Side",
  43341. image: {
  43342. source: "./media/characters/noah-luxray/side.svg",
  43343. extra: 1319/650,
  43344. bottom: 163/1482
  43345. }
  43346. },
  43347. dick: {
  43348. height: math.unit(7.4, "feet"),
  43349. weight: math.unit(2500, "lb"),
  43350. name: "Dick",
  43351. image: {
  43352. source: "./media/characters/noah-luxray/dick.svg"
  43353. }
  43354. },
  43355. dickAlt: {
  43356. height: math.unit(10.83, "feet"),
  43357. weight: math.unit(2500, "lb"),
  43358. name: "Dick-alt",
  43359. image: {
  43360. source: "./media/characters/noah-luxray/dick-alt.svg"
  43361. }
  43362. },
  43363. },
  43364. [
  43365. {
  43366. name: "BIG",
  43367. height: math.unit(2.7, "meters"),
  43368. default: true
  43369. },
  43370. ]
  43371. ))
  43372. characterMakers.push(() => makeCharacter(
  43373. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43374. {
  43375. standing: {
  43376. height: math.unit(183, "cm"),
  43377. weight: math.unit(68, "kg"),
  43378. name: "Standing",
  43379. image: {
  43380. source: "./media/characters/arion/standing.svg",
  43381. extra: 1869/1807,
  43382. bottom: 93/1962
  43383. }
  43384. },
  43385. reclining: {
  43386. height: math.unit(70.5, "cm"),
  43387. weight: math.unit(68, "lb"),
  43388. name: "Reclining",
  43389. image: {
  43390. source: "./media/characters/arion/reclining.svg",
  43391. extra: 937/870,
  43392. bottom: 63/1000
  43393. }
  43394. },
  43395. },
  43396. [
  43397. {
  43398. name: "Colossus Size, Low",
  43399. height: math.unit(33, "meters"),
  43400. default: true
  43401. },
  43402. {
  43403. name: "Colossus Size, Mid",
  43404. height: math.unit(52, "meters")
  43405. },
  43406. {
  43407. name: "Colossus Size, High",
  43408. height: math.unit(60, "meters")
  43409. },
  43410. {
  43411. name: "Titan Size, Low",
  43412. height: math.unit(91, "meters"),
  43413. },
  43414. {
  43415. name: "Titan Size, Mid",
  43416. height: math.unit(122, "meters")
  43417. },
  43418. {
  43419. name: "Titan Size, High",
  43420. height: math.unit(162, "meters")
  43421. },
  43422. ]
  43423. ))
  43424. characterMakers.push(() => makeCharacter(
  43425. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43426. {
  43427. front: {
  43428. height: math.unit(53, "meters"),
  43429. name: "Front",
  43430. image: {
  43431. source: "./media/characters/stellar-marbey/front.svg",
  43432. extra: 1913/1805,
  43433. bottom: 92/2005
  43434. }
  43435. },
  43436. back: {
  43437. height: math.unit(53, "meters"),
  43438. name: "Back",
  43439. image: {
  43440. source: "./media/characters/stellar-marbey/back.svg",
  43441. extra: 1960/1851,
  43442. bottom: 28/1988
  43443. }
  43444. },
  43445. mouth: {
  43446. height: math.unit(3.5, "meters"),
  43447. name: "Mouth",
  43448. image: {
  43449. source: "./media/characters/stellar-marbey/mouth.svg"
  43450. }
  43451. },
  43452. },
  43453. [
  43454. {
  43455. name: "Macro",
  43456. height: math.unit(53, "meters"),
  43457. default: true
  43458. },
  43459. ]
  43460. ))
  43461. characterMakers.push(() => makeCharacter(
  43462. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43463. {
  43464. front: {
  43465. height: math.unit(8 + 1/12, "feet"),
  43466. weight: math.unit(233, "lb"),
  43467. name: "Front",
  43468. image: {
  43469. source: "./media/characters/matsu/front.svg",
  43470. extra: 832/772,
  43471. bottom: 40/872
  43472. }
  43473. },
  43474. back: {
  43475. height: math.unit(8 + 1/12, "feet"),
  43476. weight: math.unit(233, "lb"),
  43477. name: "Back",
  43478. image: {
  43479. source: "./media/characters/matsu/back.svg",
  43480. extra: 839/780,
  43481. bottom: 47/886
  43482. }
  43483. },
  43484. },
  43485. [
  43486. {
  43487. name: "Normal",
  43488. height: math.unit(8 + 1/12, "feet"),
  43489. default: true
  43490. },
  43491. ]
  43492. ))
  43493. characterMakers.push(() => makeCharacter(
  43494. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43495. {
  43496. front: {
  43497. height: math.unit(4, "feet"),
  43498. weight: math.unit(148, "lb"),
  43499. name: "Front",
  43500. image: {
  43501. source: "./media/characters/thiz/front.svg",
  43502. extra: 1913/1748,
  43503. bottom: 62/1975
  43504. }
  43505. },
  43506. },
  43507. [
  43508. {
  43509. name: "Normal",
  43510. height: math.unit(4, "feet"),
  43511. default: true
  43512. },
  43513. ]
  43514. ))
  43515. characterMakers.push(() => makeCharacter(
  43516. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43517. {
  43518. front: {
  43519. height: math.unit(7 + 6/12, "feet"),
  43520. weight: math.unit(267, "lb"),
  43521. name: "Front",
  43522. image: {
  43523. source: "./media/characters/marcel/front.svg",
  43524. extra: 1221/1096,
  43525. bottom: 76/1297
  43526. }
  43527. },
  43528. },
  43529. [
  43530. {
  43531. name: "Normal",
  43532. height: math.unit(7 + 6/12, "feet"),
  43533. default: true
  43534. },
  43535. ]
  43536. ))
  43537. characterMakers.push(() => makeCharacter(
  43538. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43539. {
  43540. side: {
  43541. height: math.unit(42, "meters"),
  43542. name: "Side",
  43543. image: {
  43544. source: "./media/characters/flake/side.svg",
  43545. extra: 1525/1306,
  43546. bottom: 209/1734
  43547. }
  43548. },
  43549. },
  43550. [
  43551. {
  43552. name: "Normal",
  43553. height: math.unit(42, "meters"),
  43554. default: true
  43555. },
  43556. ]
  43557. ))
  43558. characterMakers.push(() => makeCharacter(
  43559. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43560. {
  43561. dressed: {
  43562. height: math.unit(6 + 4/12, "feet"),
  43563. weight: math.unit(520, "lb"),
  43564. name: "Dressed",
  43565. image: {
  43566. source: "./media/characters/someonne/dressed.svg",
  43567. extra: 1020/1010,
  43568. bottom: 178/1198
  43569. }
  43570. },
  43571. undressed: {
  43572. height: math.unit(6 + 4/12, "feet"),
  43573. weight: math.unit(520, "lb"),
  43574. name: "Undressed",
  43575. image: {
  43576. source: "./media/characters/someonne/undressed.svg",
  43577. extra: 1019/1014,
  43578. bottom: 169/1188
  43579. }
  43580. },
  43581. },
  43582. [
  43583. {
  43584. name: "Normal",
  43585. height: math.unit(6 + 4/12, "feet"),
  43586. default: true
  43587. },
  43588. ]
  43589. ))
  43590. characterMakers.push(() => makeCharacter(
  43591. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43592. {
  43593. front: {
  43594. height: math.unit(3, "feet"),
  43595. weight: math.unit(30, "lb"),
  43596. name: "Front",
  43597. image: {
  43598. source: "./media/characters/till/front.svg",
  43599. extra: 892/823,
  43600. bottom: 55/947
  43601. }
  43602. },
  43603. },
  43604. [
  43605. {
  43606. name: "Normal",
  43607. height: math.unit(3, "feet"),
  43608. default: true
  43609. },
  43610. ]
  43611. ))
  43612. characterMakers.push(() => makeCharacter(
  43613. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43614. {
  43615. front: {
  43616. height: math.unit(9 + 8/12, "feet"),
  43617. weight: math.unit(800, "lb"),
  43618. name: "Front",
  43619. image: {
  43620. source: "./media/characters/sydney-heki/front.svg",
  43621. extra: 1360/1300,
  43622. bottom: 22/1382
  43623. }
  43624. },
  43625. back: {
  43626. height: math.unit(9 + 8/12, "feet"),
  43627. weight: math.unit(800, "lb"),
  43628. name: "Back",
  43629. image: {
  43630. source: "./media/characters/sydney-heki/back.svg",
  43631. extra: 1356/1293,
  43632. bottom: 12/1368
  43633. }
  43634. },
  43635. frontDressed: {
  43636. height: math.unit(9 + 8/12, "feet"),
  43637. weight: math.unit(800, "lb"),
  43638. name: "Front-dressed",
  43639. image: {
  43640. source: "./media/characters/sydney-heki/front-dressed.svg",
  43641. extra: 1360/1300,
  43642. bottom: 22/1382
  43643. }
  43644. },
  43645. },
  43646. [
  43647. {
  43648. name: "Normal",
  43649. height: math.unit(9 + 8/12, "feet"),
  43650. default: true
  43651. },
  43652. {
  43653. name: "Macro",
  43654. height: math.unit(500, "feet")
  43655. },
  43656. {
  43657. name: "Megamacro",
  43658. height: math.unit(3.6, "miles")
  43659. },
  43660. ]
  43661. ))
  43662. characterMakers.push(() => makeCharacter(
  43663. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43664. {
  43665. front: {
  43666. height: math.unit(200, "cm"),
  43667. weight: math.unit(250, "lb"),
  43668. name: "Front",
  43669. image: {
  43670. source: "./media/characters/fowler-karlsson/front.svg",
  43671. extra: 897/845,
  43672. bottom: 123/1020
  43673. }
  43674. },
  43675. back: {
  43676. height: math.unit(200, "cm"),
  43677. weight: math.unit(250, "lb"),
  43678. name: "Back",
  43679. image: {
  43680. source: "./media/characters/fowler-karlsson/back.svg",
  43681. extra: 999/944,
  43682. bottom: 26/1025
  43683. }
  43684. },
  43685. dick: {
  43686. height: math.unit(1.92, "feet"),
  43687. weight: math.unit(150, "lb"),
  43688. name: "Dick",
  43689. image: {
  43690. source: "./media/characters/fowler-karlsson/dick.svg"
  43691. }
  43692. },
  43693. },
  43694. [
  43695. {
  43696. name: "Normal",
  43697. height: math.unit(200, "cm"),
  43698. default: true
  43699. },
  43700. {
  43701. name: "Smaller Macro",
  43702. height: math.unit(90, "m")
  43703. },
  43704. {
  43705. name: "Macro",
  43706. height: math.unit(150, "m")
  43707. },
  43708. {
  43709. name: "Bigger Macro",
  43710. height: math.unit(300, "m")
  43711. },
  43712. ]
  43713. ))
  43714. characterMakers.push(() => makeCharacter(
  43715. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43716. {
  43717. side: {
  43718. height: math.unit(8 + 2/12, "feet"),
  43719. weight: math.unit(1, "tonne"),
  43720. name: "Side",
  43721. image: {
  43722. source: "./media/characters/rylide/side.svg",
  43723. extra: 1318/1034,
  43724. bottom: 106/1424
  43725. }
  43726. },
  43727. sitting: {
  43728. height: math.unit(303, "cm"),
  43729. weight: math.unit(1, "tonne"),
  43730. name: "Sitting",
  43731. image: {
  43732. source: "./media/characters/rylide/sitting.svg",
  43733. extra: 1303/1103,
  43734. bottom: 36/1339
  43735. }
  43736. },
  43737. },
  43738. [
  43739. {
  43740. name: "Normal",
  43741. height: math.unit(8 + 2/12, "feet"),
  43742. default: true
  43743. },
  43744. ]
  43745. ))
  43746. characterMakers.push(() => makeCharacter(
  43747. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43748. {
  43749. front: {
  43750. height: math.unit(5 + 10/12, "feet"),
  43751. weight: math.unit(160, "lb"),
  43752. name: "Front",
  43753. image: {
  43754. source: "./media/characters/pudask/front.svg",
  43755. extra: 1616/1590,
  43756. bottom: 161/1777
  43757. }
  43758. },
  43759. },
  43760. [
  43761. {
  43762. name: "Ferret Height",
  43763. height: math.unit(2 + 5/12, "feet")
  43764. },
  43765. {
  43766. name: "Canon Height",
  43767. height: math.unit(5 + 10/12, "feet"),
  43768. default: true
  43769. },
  43770. ]
  43771. ))
  43772. characterMakers.push(() => makeCharacter(
  43773. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43774. {
  43775. front: {
  43776. height: math.unit(3 + 6/12, "feet"),
  43777. weight: math.unit(60, "lb"),
  43778. name: "Front",
  43779. image: {
  43780. source: "./media/characters/ramita/front.svg",
  43781. extra: 1402/1232,
  43782. bottom: 62/1464
  43783. }
  43784. },
  43785. dressed: {
  43786. height: math.unit(3 + 6/12, "feet"),
  43787. weight: math.unit(60, "lb"),
  43788. name: "Dressed",
  43789. image: {
  43790. source: "./media/characters/ramita/dressed.svg",
  43791. extra: 1534/1249,
  43792. bottom: 50/1584
  43793. }
  43794. },
  43795. },
  43796. [
  43797. {
  43798. name: "Normal",
  43799. height: math.unit(3 + 6/12, "feet"),
  43800. default: true
  43801. },
  43802. ]
  43803. ))
  43804. characterMakers.push(() => makeCharacter(
  43805. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43806. {
  43807. front: {
  43808. height: math.unit(8, "feet"),
  43809. name: "Front",
  43810. image: {
  43811. source: "./media/characters/ark/front.svg",
  43812. extra: 772/693,
  43813. bottom: 45/817
  43814. }
  43815. },
  43816. },
  43817. [
  43818. {
  43819. name: "Normal",
  43820. height: math.unit(8, "feet"),
  43821. default: true
  43822. },
  43823. ]
  43824. ))
  43825. characterMakers.push(() => makeCharacter(
  43826. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43827. {
  43828. front: {
  43829. height: math.unit(6, "feet"),
  43830. weight: math.unit(250, "lb"),
  43831. volume: math.unit(5/8, "gallons"),
  43832. name: "Front",
  43833. image: {
  43834. source: "./media/characters/ludwig-horn/front.svg",
  43835. extra: 1782/1635,
  43836. bottom: 96/1878
  43837. }
  43838. },
  43839. back: {
  43840. height: math.unit(6, "feet"),
  43841. weight: math.unit(250, "lb"),
  43842. volume: math.unit(5/8, "gallons"),
  43843. name: "Back",
  43844. image: {
  43845. source: "./media/characters/ludwig-horn/back.svg",
  43846. extra: 1874/1729,
  43847. bottom: 27/1901
  43848. }
  43849. },
  43850. dick: {
  43851. height: math.unit(1.05, "feet"),
  43852. weight: math.unit(15, "lb"),
  43853. volume: math.unit(5/8, "gallons"),
  43854. name: "Dick",
  43855. image: {
  43856. source: "./media/characters/ludwig-horn/dick.svg"
  43857. }
  43858. },
  43859. },
  43860. [
  43861. {
  43862. name: "Small",
  43863. height: math.unit(6, "feet")
  43864. },
  43865. {
  43866. name: "Typical",
  43867. height: math.unit(12, "feet"),
  43868. default: true
  43869. },
  43870. {
  43871. name: "Building",
  43872. height: math.unit(80, "feet")
  43873. },
  43874. {
  43875. name: "Town",
  43876. height: math.unit(800, "feet")
  43877. },
  43878. {
  43879. name: "Kingdom",
  43880. height: math.unit(80000, "feet")
  43881. },
  43882. {
  43883. name: "Planet",
  43884. height: math.unit(8000000, "feet")
  43885. },
  43886. {
  43887. name: "Universe",
  43888. height: math.unit(8000000000, "feet")
  43889. },
  43890. {
  43891. name: "Transcended",
  43892. height: math.unit(8e27, "feet")
  43893. },
  43894. ]
  43895. ))
  43896. characterMakers.push(() => makeCharacter(
  43897. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43898. {
  43899. front: {
  43900. height: math.unit(5, "feet"),
  43901. weight: math.unit(50, "kg"),
  43902. name: "Front",
  43903. image: {
  43904. source: "./media/characters/biot-avery/front.svg",
  43905. extra: 1295/1232,
  43906. bottom: 86/1381
  43907. }
  43908. },
  43909. },
  43910. [
  43911. {
  43912. name: "Normal",
  43913. height: math.unit(5, "feet"),
  43914. default: true
  43915. },
  43916. ]
  43917. ))
  43918. characterMakers.push(() => makeCharacter(
  43919. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43920. {
  43921. front: {
  43922. height: math.unit(6, "feet"),
  43923. name: "Front",
  43924. image: {
  43925. source: "./media/characters/kitsune-kiro/front.svg",
  43926. extra: 1270/1158,
  43927. bottom: 42/1312
  43928. }
  43929. },
  43930. frontAlt: {
  43931. height: math.unit(6, "feet"),
  43932. name: "Front-alt",
  43933. image: {
  43934. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43935. extra: 1130/1081,
  43936. bottom: 36/1166
  43937. }
  43938. },
  43939. },
  43940. [
  43941. {
  43942. name: "Smol",
  43943. height: math.unit(3, "feet")
  43944. },
  43945. {
  43946. name: "Normal",
  43947. height: math.unit(6, "feet"),
  43948. default: true
  43949. },
  43950. ]
  43951. ))
  43952. characterMakers.push(() => makeCharacter(
  43953. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43954. {
  43955. front: {
  43956. height: math.unit(6, "feet"),
  43957. weight: math.unit(125, "lb"),
  43958. name: "Front",
  43959. image: {
  43960. source: "./media/characters/jack-thatcher/front.svg",
  43961. extra: 1474/1370,
  43962. bottom: 26/1500
  43963. }
  43964. },
  43965. back: {
  43966. height: math.unit(6, "feet"),
  43967. weight: math.unit(125, "lb"),
  43968. name: "Back",
  43969. image: {
  43970. source: "./media/characters/jack-thatcher/back.svg",
  43971. extra: 1489/1384,
  43972. bottom: 18/1507
  43973. }
  43974. },
  43975. },
  43976. [
  43977. {
  43978. name: "Normal",
  43979. height: math.unit(6, "feet"),
  43980. default: true
  43981. },
  43982. {
  43983. name: "Macro",
  43984. height: math.unit(75, "feet")
  43985. },
  43986. {
  43987. name: "Macro-er",
  43988. height: math.unit(250, "feet")
  43989. },
  43990. ]
  43991. ))
  43992. characterMakers.push(() => makeCharacter(
  43993. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43994. {
  43995. front: {
  43996. height: math.unit(7, "feet"),
  43997. weight: math.unit(110, "kg"),
  43998. name: "Front",
  43999. image: {
  44000. source: "./media/characters/max-hyper/front.svg",
  44001. extra: 1969/1881,
  44002. bottom: 49/2018
  44003. }
  44004. },
  44005. },
  44006. [
  44007. {
  44008. name: "Normal",
  44009. height: math.unit(7, "feet"),
  44010. default: true
  44011. },
  44012. ]
  44013. ))
  44014. characterMakers.push(() => makeCharacter(
  44015. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44016. {
  44017. front: {
  44018. height: math.unit(5 + 5/12, "feet"),
  44019. weight: math.unit(160, "lb"),
  44020. name: "Front",
  44021. image: {
  44022. source: "./media/characters/spook/front.svg",
  44023. extra: 794/791,
  44024. bottom: 54/848
  44025. }
  44026. },
  44027. back: {
  44028. height: math.unit(5 + 5/12, "feet"),
  44029. weight: math.unit(160, "lb"),
  44030. name: "Back",
  44031. image: {
  44032. source: "./media/characters/spook/back.svg",
  44033. extra: 812/798,
  44034. bottom: 32/844
  44035. }
  44036. },
  44037. },
  44038. [
  44039. {
  44040. name: "Normal",
  44041. height: math.unit(5 + 5/12, "feet"),
  44042. default: true
  44043. },
  44044. ]
  44045. ))
  44046. characterMakers.push(() => makeCharacter(
  44047. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44048. {
  44049. front: {
  44050. height: math.unit(18, "feet"),
  44051. name: "Front",
  44052. image: {
  44053. source: "./media/characters/xeaduulix/front.svg",
  44054. extra: 1380/1166,
  44055. bottom: 110/1490
  44056. }
  44057. },
  44058. back: {
  44059. height: math.unit(18, "feet"),
  44060. name: "Back",
  44061. image: {
  44062. source: "./media/characters/xeaduulix/back.svg",
  44063. extra: 1592/1170,
  44064. bottom: 128/1720
  44065. }
  44066. },
  44067. frontNsfw: {
  44068. height: math.unit(18, "feet"),
  44069. name: "Front (NSFW)",
  44070. image: {
  44071. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44072. extra: 1380/1166,
  44073. bottom: 110/1490
  44074. }
  44075. },
  44076. backNsfw: {
  44077. height: math.unit(18, "feet"),
  44078. name: "Back (NSFW)",
  44079. image: {
  44080. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44081. extra: 1592/1170,
  44082. bottom: 128/1720
  44083. }
  44084. },
  44085. },
  44086. [
  44087. {
  44088. name: "Normal",
  44089. height: math.unit(18, "feet"),
  44090. default: true
  44091. },
  44092. ]
  44093. ))
  44094. characterMakers.push(() => makeCharacter(
  44095. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44096. {
  44097. spreadWings: {
  44098. height: math.unit(20, "feet"),
  44099. name: "Spread Wings",
  44100. image: {
  44101. source: "./media/characters/fledge/spread-wings.svg",
  44102. extra: 693/635,
  44103. bottom: 26/719
  44104. }
  44105. },
  44106. front: {
  44107. height: math.unit(20, "feet"),
  44108. name: "Front",
  44109. image: {
  44110. source: "./media/characters/fledge/front.svg",
  44111. extra: 684/637,
  44112. bottom: 18/702
  44113. }
  44114. },
  44115. frontAlt: {
  44116. height: math.unit(20, "feet"),
  44117. name: "Front (Alt)",
  44118. image: {
  44119. source: "./media/characters/fledge/front-alt.svg",
  44120. extra: 708/664,
  44121. bottom: 13/721
  44122. }
  44123. },
  44124. back: {
  44125. height: math.unit(20, "feet"),
  44126. name: "Back",
  44127. image: {
  44128. source: "./media/characters/fledge/back.svg",
  44129. extra: 718/634,
  44130. bottom: 22/740
  44131. }
  44132. },
  44133. head: {
  44134. height: math.unit(5.55, "feet"),
  44135. name: "Head",
  44136. image: {
  44137. source: "./media/characters/fledge/head.svg"
  44138. }
  44139. },
  44140. headAlt: {
  44141. height: math.unit(5.1, "feet"),
  44142. name: "Head (Alt)",
  44143. image: {
  44144. source: "./media/characters/fledge/head-alt.svg"
  44145. }
  44146. },
  44147. },
  44148. [
  44149. {
  44150. name: "Small",
  44151. height: math.unit(6 + 2/12, "feet")
  44152. },
  44153. {
  44154. name: "Big",
  44155. height: math.unit(20, "feet"),
  44156. default: true
  44157. },
  44158. {
  44159. name: "Giant",
  44160. height: math.unit(100, "feet")
  44161. },
  44162. {
  44163. name: "Macro",
  44164. height: math.unit(200, "feet")
  44165. },
  44166. ]
  44167. ))
  44168. characterMakers.push(() => makeCharacter(
  44169. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44170. {
  44171. front: {
  44172. height: math.unit(1, "meter"),
  44173. name: "Front",
  44174. image: {
  44175. source: "./media/characters/atlas-morenai/front.svg",
  44176. extra: 1275/1043,
  44177. bottom: 19/1294
  44178. }
  44179. },
  44180. back: {
  44181. height: math.unit(1, "meter"),
  44182. name: "Back",
  44183. image: {
  44184. source: "./media/characters/atlas-morenai/back.svg",
  44185. extra: 1141/1001,
  44186. bottom: 25/1166
  44187. }
  44188. },
  44189. },
  44190. [
  44191. {
  44192. name: "Normal",
  44193. height: math.unit(1, "meter"),
  44194. default: true
  44195. },
  44196. {
  44197. name: "Magic-Infused",
  44198. height: math.unit(5, "meters")
  44199. },
  44200. ]
  44201. ))
  44202. characterMakers.push(() => makeCharacter(
  44203. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44204. {
  44205. front: {
  44206. height: math.unit(5, "meters"),
  44207. name: "Front",
  44208. image: {
  44209. source: "./media/characters/cintia/front.svg",
  44210. extra: 1312/1228,
  44211. bottom: 38/1350
  44212. }
  44213. },
  44214. back: {
  44215. height: math.unit(5, "meters"),
  44216. name: "Back",
  44217. image: {
  44218. source: "./media/characters/cintia/back.svg",
  44219. extra: 1260/1166,
  44220. bottom: 98/1358
  44221. }
  44222. },
  44223. frontDick: {
  44224. height: math.unit(5, "meters"),
  44225. name: "Front (Dick)",
  44226. image: {
  44227. source: "./media/characters/cintia/front-dick.svg",
  44228. extra: 1312/1228,
  44229. bottom: 38/1350
  44230. }
  44231. },
  44232. backDick: {
  44233. height: math.unit(5, "meters"),
  44234. name: "Back (Dick)",
  44235. image: {
  44236. source: "./media/characters/cintia/back-dick.svg",
  44237. extra: 1260/1166,
  44238. bottom: 98/1358
  44239. }
  44240. },
  44241. bust: {
  44242. height: math.unit(1.97, "meters"),
  44243. name: "Bust",
  44244. image: {
  44245. source: "./media/characters/cintia/bust.svg",
  44246. extra: 617/565,
  44247. bottom: 0/617
  44248. }
  44249. },
  44250. },
  44251. [
  44252. {
  44253. name: "Normal",
  44254. height: math.unit(5, "meters"),
  44255. default: true
  44256. },
  44257. ]
  44258. ))
  44259. characterMakers.push(() => makeCharacter(
  44260. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44261. {
  44262. side: {
  44263. height: math.unit(100, "feet"),
  44264. name: "Side",
  44265. image: {
  44266. source: "./media/characters/denora/side.svg",
  44267. extra: 875/803,
  44268. bottom: 9/884
  44269. }
  44270. },
  44271. },
  44272. [
  44273. {
  44274. name: "Standard",
  44275. height: math.unit(100, "feet"),
  44276. default: true
  44277. },
  44278. {
  44279. name: "Grand",
  44280. height: math.unit(1000, "feet")
  44281. },
  44282. {
  44283. name: "Conquering",
  44284. height: math.unit(10000, "feet")
  44285. },
  44286. ]
  44287. ))
  44288. characterMakers.push(() => makeCharacter(
  44289. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44290. {
  44291. dressed: {
  44292. height: math.unit(8 + 5/12, "feet"),
  44293. weight: math.unit(700, "lb"),
  44294. name: "Dressed",
  44295. image: {
  44296. source: "./media/characters/kiva/dressed.svg",
  44297. extra: 1102/1055,
  44298. bottom: 60/1162
  44299. }
  44300. },
  44301. nude: {
  44302. height: math.unit(8 + 5/12, "feet"),
  44303. weight: math.unit(700, "lb"),
  44304. name: "Nude",
  44305. image: {
  44306. source: "./media/characters/kiva/nude.svg",
  44307. extra: 1102/1055,
  44308. bottom: 60/1162
  44309. }
  44310. },
  44311. },
  44312. [
  44313. {
  44314. name: "Base Height",
  44315. height: math.unit(8 + 5/12, "feet"),
  44316. default: true
  44317. },
  44318. {
  44319. name: "Macro",
  44320. height: math.unit(100, "feet")
  44321. },
  44322. {
  44323. name: "Max",
  44324. height: math.unit(3280, "feet")
  44325. },
  44326. ]
  44327. ))
  44328. characterMakers.push(() => makeCharacter(
  44329. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44330. {
  44331. front: {
  44332. height: math.unit(6 + 8/12, "feet"),
  44333. weight: math.unit(250, "lb"),
  44334. name: "Front",
  44335. image: {
  44336. source: "./media/characters/ztragon/front.svg",
  44337. extra: 1825/1684,
  44338. bottom: 98/1923
  44339. }
  44340. },
  44341. },
  44342. [
  44343. {
  44344. name: "Normal",
  44345. height: math.unit(6 + 8/12, "feet"),
  44346. default: true
  44347. },
  44348. {
  44349. name: "Macro",
  44350. height: math.unit(80, "feet")
  44351. },
  44352. ]
  44353. ))
  44354. characterMakers.push(() => makeCharacter(
  44355. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44356. {
  44357. front: {
  44358. height: math.unit(10.4, "feet"),
  44359. weight: math.unit(2, "tons"),
  44360. name: "Front",
  44361. image: {
  44362. source: "./media/characters/yesenia/front.svg",
  44363. extra: 1479/1474,
  44364. bottom: 233/1712
  44365. }
  44366. },
  44367. },
  44368. [
  44369. {
  44370. name: "Normal",
  44371. height: math.unit(10.4, "feet"),
  44372. default: true
  44373. },
  44374. ]
  44375. ))
  44376. characterMakers.push(() => makeCharacter(
  44377. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44378. {
  44379. normal: {
  44380. height: math.unit(6 + 1/12, "feet"),
  44381. weight: math.unit(180, "lb"),
  44382. name: "Normal",
  44383. image: {
  44384. source: "./media/characters/leanne-lycheborne/normal.svg",
  44385. extra: 1748/1660,
  44386. bottom: 98/1846
  44387. }
  44388. },
  44389. were: {
  44390. height: math.unit(12, "feet"),
  44391. weight: math.unit(1600, "lb"),
  44392. name: "Were",
  44393. image: {
  44394. source: "./media/characters/leanne-lycheborne/were.svg",
  44395. extra: 1485/1432,
  44396. bottom: 66/1551
  44397. }
  44398. },
  44399. },
  44400. [
  44401. {
  44402. name: "Normal",
  44403. height: math.unit(6 + 1/12, "feet"),
  44404. default: true
  44405. },
  44406. ]
  44407. ))
  44408. characterMakers.push(() => makeCharacter(
  44409. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44410. {
  44411. side: {
  44412. height: math.unit(13, "feet"),
  44413. name: "Side",
  44414. image: {
  44415. source: "./media/characters/kira-tyler/side.svg",
  44416. extra: 693/393,
  44417. bottom: 58/751
  44418. }
  44419. },
  44420. },
  44421. [
  44422. {
  44423. name: "Normal",
  44424. height: math.unit(13, "feet"),
  44425. default: true
  44426. },
  44427. ]
  44428. ))
  44429. characterMakers.push(() => makeCharacter(
  44430. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44431. {
  44432. front: {
  44433. height: math.unit(10.3, "feet"),
  44434. weight: math.unit(150, "lb"),
  44435. name: "Front",
  44436. image: {
  44437. source: "./media/characters/blaze/front.svg",
  44438. extra: 1378/1286,
  44439. bottom: 172/1550
  44440. }
  44441. },
  44442. },
  44443. [
  44444. {
  44445. name: "Normal",
  44446. height: math.unit(10.3, "feet"),
  44447. default: true
  44448. },
  44449. ]
  44450. ))
  44451. characterMakers.push(() => makeCharacter(
  44452. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44453. {
  44454. side: {
  44455. height: math.unit(2, "meters"),
  44456. weight: math.unit(400, "kg"),
  44457. name: "Side",
  44458. image: {
  44459. source: "./media/characters/anu/side.svg",
  44460. extra: 506/394,
  44461. bottom: 18/524
  44462. }
  44463. },
  44464. },
  44465. [
  44466. {
  44467. name: "Humanoid",
  44468. height: math.unit(2, "meters")
  44469. },
  44470. {
  44471. name: "Normal",
  44472. height: math.unit(5, "meters"),
  44473. default: true
  44474. },
  44475. ]
  44476. ))
  44477. characterMakers.push(() => makeCharacter(
  44478. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44479. {
  44480. front: {
  44481. height: math.unit(5 + 5/12, "feet"),
  44482. weight: math.unit(170, "lb"),
  44483. name: "Front",
  44484. image: {
  44485. source: "./media/characters/synx-the-lynx/front.svg",
  44486. extra: 1893/1745,
  44487. bottom: 17/1910
  44488. }
  44489. },
  44490. side: {
  44491. height: math.unit(5 + 5/12, "feet"),
  44492. weight: math.unit(170, "lb"),
  44493. name: "Side",
  44494. image: {
  44495. source: "./media/characters/synx-the-lynx/side.svg",
  44496. extra: 1884/1740,
  44497. bottom: 39/1923
  44498. }
  44499. },
  44500. back: {
  44501. height: math.unit(5 + 5/12, "feet"),
  44502. weight: math.unit(170, "lb"),
  44503. name: "Back",
  44504. image: {
  44505. source: "./media/characters/synx-the-lynx/back.svg",
  44506. extra: 1903/1755,
  44507. bottom: 14/1917
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "Normal",
  44514. height: math.unit(5 + 5/12, "feet"),
  44515. default: true
  44516. },
  44517. ]
  44518. ))
  44519. characterMakers.push(() => makeCharacter(
  44520. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44521. {
  44522. back: {
  44523. height: math.unit(15, "feet"),
  44524. name: "Back",
  44525. image: {
  44526. source: "./media/characters/nadezda-fex/back.svg",
  44527. extra: 1695/1481,
  44528. bottom: 25/1720
  44529. }
  44530. },
  44531. },
  44532. [
  44533. {
  44534. name: "Normal",
  44535. height: math.unit(15, "feet"),
  44536. default: true
  44537. },
  44538. {
  44539. name: "Macro",
  44540. height: math.unit(2.5, "miles")
  44541. },
  44542. {
  44543. name: "Goddess",
  44544. height: math.unit(2, "multiverses")
  44545. },
  44546. ]
  44547. ))
  44548. characterMakers.push(() => makeCharacter(
  44549. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44550. {
  44551. front: {
  44552. height: math.unit(216, "cm"),
  44553. name: "Front",
  44554. image: {
  44555. source: "./media/characters/lev/front.svg",
  44556. extra: 1728/1670,
  44557. bottom: 82/1810
  44558. }
  44559. },
  44560. back: {
  44561. height: math.unit(216, "cm"),
  44562. name: "Back",
  44563. image: {
  44564. source: "./media/characters/lev/back.svg",
  44565. extra: 1738/1675,
  44566. bottom: 24/1762
  44567. }
  44568. },
  44569. dressed: {
  44570. height: math.unit(216, "cm"),
  44571. name: "Dressed",
  44572. image: {
  44573. source: "./media/characters/lev/dressed.svg",
  44574. extra: 1397/1351,
  44575. bottom: 73/1470
  44576. }
  44577. },
  44578. head: {
  44579. height: math.unit(0.51, "meter"),
  44580. name: "Head",
  44581. image: {
  44582. source: "./media/characters/lev/head.svg"
  44583. }
  44584. },
  44585. },
  44586. [
  44587. {
  44588. name: "Normal",
  44589. height: math.unit(216, "cm"),
  44590. default: true
  44591. },
  44592. {
  44593. name: "Relatively Macro",
  44594. height: math.unit(80, "meters")
  44595. },
  44596. {
  44597. name: "Megamacro",
  44598. height: math.unit(21600, "meters")
  44599. },
  44600. {
  44601. name: "Megamacro+",
  44602. height: math.unit(64800, "meters")
  44603. },
  44604. ]
  44605. ))
  44606. characterMakers.push(() => makeCharacter(
  44607. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44608. {
  44609. front: {
  44610. height: math.unit(2, "meters"),
  44611. weight: math.unit(80, "kg"),
  44612. name: "Front",
  44613. image: {
  44614. source: "./media/characters/moka/front.svg",
  44615. extra: 1337/1255,
  44616. bottom: 58/1395
  44617. }
  44618. },
  44619. },
  44620. [
  44621. {
  44622. name: "Micro",
  44623. height: math.unit(15, "cm")
  44624. },
  44625. {
  44626. name: "Normal",
  44627. height: math.unit(2, "meters"),
  44628. default: true
  44629. },
  44630. {
  44631. name: "Macro",
  44632. height: math.unit(20, "meters"),
  44633. },
  44634. ]
  44635. ))
  44636. characterMakers.push(() => makeCharacter(
  44637. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44638. {
  44639. front: {
  44640. height: math.unit(9, "feet"),
  44641. weight: math.unit(240, "lb"),
  44642. name: "Front",
  44643. image: {
  44644. source: "./media/characters/kuzco/front.svg",
  44645. extra: 1593/1487,
  44646. bottom: 32/1625
  44647. }
  44648. },
  44649. side: {
  44650. height: math.unit(9, "feet"),
  44651. weight: math.unit(240, "lb"),
  44652. name: "Side",
  44653. image: {
  44654. source: "./media/characters/kuzco/side.svg",
  44655. extra: 1575/1485,
  44656. bottom: 30/1605
  44657. }
  44658. },
  44659. back: {
  44660. height: math.unit(9, "feet"),
  44661. weight: math.unit(240, "lb"),
  44662. name: "Back",
  44663. image: {
  44664. source: "./media/characters/kuzco/back.svg",
  44665. extra: 1603/1514,
  44666. bottom: 14/1617
  44667. }
  44668. },
  44669. },
  44670. [
  44671. {
  44672. name: "Normal",
  44673. height: math.unit(9, "feet"),
  44674. default: true
  44675. },
  44676. ]
  44677. ))
  44678. characterMakers.push(() => makeCharacter(
  44679. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44680. {
  44681. side: {
  44682. height: math.unit(2, "meters"),
  44683. weight: math.unit(300, "kg"),
  44684. name: "Side",
  44685. image: {
  44686. source: "./media/characters/ceruleus/side.svg",
  44687. extra: 1068/974,
  44688. bottom: 126/1194
  44689. }
  44690. },
  44691. },
  44692. [
  44693. {
  44694. name: "Normal",
  44695. height: math.unit(16, "meters"),
  44696. default: true
  44697. },
  44698. ]
  44699. ))
  44700. characterMakers.push(() => makeCharacter(
  44701. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44702. {
  44703. front: {
  44704. height: math.unit(9, "feet"),
  44705. weight: math.unit(500, "kg"),
  44706. name: "Front",
  44707. image: {
  44708. source: "./media/characters/acouya/front.svg",
  44709. extra: 1660/1473,
  44710. bottom: 28/1688
  44711. }
  44712. },
  44713. },
  44714. [
  44715. {
  44716. name: "Normal",
  44717. height: math.unit(9, "feet"),
  44718. default: true
  44719. },
  44720. ]
  44721. ))
  44722. characterMakers.push(() => makeCharacter(
  44723. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44724. {
  44725. front: {
  44726. height: math.unit(5 + 6/12, "feet"),
  44727. weight: math.unit(195, "lb"),
  44728. name: "Front",
  44729. image: {
  44730. source: "./media/characters/vant/front.svg",
  44731. extra: 1396/1320,
  44732. bottom: 20/1416
  44733. }
  44734. },
  44735. back: {
  44736. height: math.unit(5 + 6/12, "feet"),
  44737. weight: math.unit(195, "lb"),
  44738. name: "Back",
  44739. image: {
  44740. source: "./media/characters/vant/back.svg",
  44741. extra: 1396/1320,
  44742. bottom: 20/1416
  44743. }
  44744. },
  44745. maw: {
  44746. height: math.unit(0.75, "feet"),
  44747. name: "Maw",
  44748. image: {
  44749. source: "./media/characters/vant/maw.svg"
  44750. }
  44751. },
  44752. paw: {
  44753. height: math.unit(1.07, "feet"),
  44754. name: "Paw",
  44755. image: {
  44756. source: "./media/characters/vant/paw.svg"
  44757. }
  44758. },
  44759. },
  44760. [
  44761. {
  44762. name: "Micro",
  44763. height: math.unit(0.25, "inches")
  44764. },
  44765. {
  44766. name: "Normal",
  44767. height: math.unit(5 + 6/12, "feet"),
  44768. default: true
  44769. },
  44770. {
  44771. name: "Macro",
  44772. height: math.unit(75, "feet")
  44773. },
  44774. ]
  44775. ))
  44776. characterMakers.push(() => makeCharacter(
  44777. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44778. {
  44779. front: {
  44780. height: math.unit(30, "meters"),
  44781. weight: math.unit(363, "tons"),
  44782. name: "Front",
  44783. image: {
  44784. source: "./media/characters/ahra/front.svg",
  44785. extra: 1914/1814,
  44786. bottom: 46/1960
  44787. }
  44788. },
  44789. },
  44790. [
  44791. {
  44792. name: "Macro",
  44793. height: math.unit(30, "meters"),
  44794. default: true
  44795. },
  44796. ]
  44797. ))
  44798. characterMakers.push(() => makeCharacter(
  44799. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44800. {
  44801. undressed: {
  44802. height: math.unit(2, "m"),
  44803. weight: math.unit(250, "kg"),
  44804. name: "Undressed",
  44805. image: {
  44806. source: "./media/characters/coriander/undressed.svg",
  44807. extra: 1757/1606,
  44808. bottom: 107/1864
  44809. }
  44810. },
  44811. dressed: {
  44812. height: math.unit(2, "m"),
  44813. weight: math.unit(250, "kg"),
  44814. name: "Dressed",
  44815. image: {
  44816. source: "./media/characters/coriander/dressed.svg",
  44817. extra: 1757/1606,
  44818. bottom: 107/1864
  44819. }
  44820. },
  44821. },
  44822. [
  44823. {
  44824. name: "Normal",
  44825. height: math.unit(4, "meters"),
  44826. default: true
  44827. },
  44828. {
  44829. name: "XL",
  44830. height: math.unit(6, "meters")
  44831. },
  44832. {
  44833. name: "XXL",
  44834. height: math.unit(8, "meters")
  44835. },
  44836. ]
  44837. ))
  44838. characterMakers.push(() => makeCharacter(
  44839. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44840. {
  44841. front: {
  44842. height: math.unit(6, "feet"),
  44843. name: "Front",
  44844. image: {
  44845. source: "./media/characters/syrinx/front.svg",
  44846. extra: 1557/1259,
  44847. bottom: 171/1728
  44848. }
  44849. },
  44850. },
  44851. [
  44852. {
  44853. name: "Normal",
  44854. height: math.unit(6 + 3/12, "feet"),
  44855. default: true
  44856. },
  44857. ]
  44858. ))
  44859. characterMakers.push(() => makeCharacter(
  44860. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44861. {
  44862. front: {
  44863. height: math.unit(11 + 6/12, "feet"),
  44864. weight: math.unit(1.5, "tons"),
  44865. name: "Front",
  44866. image: {
  44867. source: "./media/characters/bor/front.svg",
  44868. extra: 1189/1109,
  44869. bottom: 170/1359
  44870. }
  44871. },
  44872. },
  44873. [
  44874. {
  44875. name: "Normal",
  44876. height: math.unit(11 + 6/12, "feet"),
  44877. default: true
  44878. },
  44879. {
  44880. name: "Macro",
  44881. height: math.unit(32 + 9/12, "feet")
  44882. },
  44883. ]
  44884. ))
  44885. characterMakers.push(() => makeCharacter(
  44886. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44887. {
  44888. anthro: {
  44889. height: math.unit(9, "feet"),
  44890. weight: math.unit(2076, "lb"),
  44891. name: "Anthro",
  44892. image: {
  44893. source: "./media/characters/abacus/anthro.svg",
  44894. extra: 1540/1494,
  44895. bottom: 233/1773
  44896. }
  44897. },
  44898. pigeon: {
  44899. height: math.unit(1, "feet"),
  44900. name: "Pigeon",
  44901. image: {
  44902. source: "./media/characters/abacus/pigeon.svg",
  44903. extra: 528/525,
  44904. bottom: 46/574
  44905. }
  44906. },
  44907. },
  44908. [
  44909. {
  44910. name: "Normal",
  44911. height: math.unit(9, "feet"),
  44912. default: true
  44913. },
  44914. ]
  44915. ))
  44916. characterMakers.push(() => makeCharacter(
  44917. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44918. {
  44919. side: {
  44920. height: math.unit(6, "feet"),
  44921. name: "Side",
  44922. image: {
  44923. source: "./media/characters/delkhan/side.svg",
  44924. extra: 1884/1786,
  44925. bottom: 308/2192
  44926. }
  44927. },
  44928. head: {
  44929. height: math.unit(3.38, "feet"),
  44930. name: "Head",
  44931. image: {
  44932. source: "./media/characters/delkhan/head.svg"
  44933. }
  44934. },
  44935. },
  44936. [
  44937. {
  44938. name: "Normal",
  44939. height: math.unit(72, "feet"),
  44940. default: true
  44941. },
  44942. {
  44943. name: "Giant",
  44944. height: math.unit(172, "feet")
  44945. },
  44946. ]
  44947. ))
  44948. characterMakers.push(() => makeCharacter(
  44949. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44950. {
  44951. standing: {
  44952. height: math.unit(6, "feet"),
  44953. name: "Standing",
  44954. image: {
  44955. source: "./media/characters/euchidat/standing.svg",
  44956. extra: 1612/1553,
  44957. bottom: 116/1728
  44958. }
  44959. },
  44960. leaning: {
  44961. height: math.unit(6, "feet"),
  44962. name: "Leaning",
  44963. image: {
  44964. source: "./media/characters/euchidat/leaning.svg",
  44965. extra: 1719/1674,
  44966. bottom: 27/1746
  44967. }
  44968. },
  44969. },
  44970. [
  44971. {
  44972. name: "Normal",
  44973. height: math.unit(175, "feet"),
  44974. default: true
  44975. },
  44976. {
  44977. name: "Megamacro",
  44978. height: math.unit(190, "miles")
  44979. },
  44980. {
  44981. name: "Gigamacro",
  44982. height: math.unit(190000, "miles")
  44983. },
  44984. ]
  44985. ))
  44986. characterMakers.push(() => makeCharacter(
  44987. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44988. {
  44989. front: {
  44990. height: math.unit(6, "feet"),
  44991. weight: math.unit(150, "lb"),
  44992. name: "Front",
  44993. image: {
  44994. source: "./media/characters/rebecca-stack/front.svg",
  44995. extra: 1256/1201,
  44996. bottom: 18/1274
  44997. }
  44998. },
  44999. },
  45000. [
  45001. {
  45002. name: "Normal",
  45003. height: math.unit(5 + 8/12, "feet"),
  45004. default: true
  45005. },
  45006. {
  45007. name: "Demolitionist",
  45008. height: math.unit(200, "feet")
  45009. },
  45010. {
  45011. name: "Out of Control",
  45012. height: math.unit(2, "miles")
  45013. },
  45014. {
  45015. name: "Giga",
  45016. height: math.unit(7200, "miles")
  45017. },
  45018. ]
  45019. ))
  45020. characterMakers.push(() => makeCharacter(
  45021. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45022. {
  45023. front: {
  45024. height: math.unit(6, "feet"),
  45025. weight: math.unit(150, "lb"),
  45026. name: "Front",
  45027. image: {
  45028. source: "./media/characters/jenny-cartwright/front.svg",
  45029. extra: 1384/1376,
  45030. bottom: 58/1442
  45031. }
  45032. },
  45033. },
  45034. [
  45035. {
  45036. name: "Normal",
  45037. height: math.unit(6 + 7/12, "feet"),
  45038. default: true
  45039. },
  45040. {
  45041. name: "Librarian",
  45042. height: math.unit(55, "feet")
  45043. },
  45044. {
  45045. name: "Sightseer",
  45046. height: math.unit(50, "miles")
  45047. },
  45048. {
  45049. name: "Giga",
  45050. height: math.unit(30000, "miles")
  45051. },
  45052. ]
  45053. ))
  45054. characterMakers.push(() => makeCharacter(
  45055. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45056. {
  45057. nude: {
  45058. height: math.unit(8, "feet"),
  45059. weight: math.unit(225, "lb"),
  45060. name: "Nude",
  45061. image: {
  45062. source: "./media/characters/marvy/nude.svg",
  45063. extra: 1900/1683,
  45064. bottom: 89/1989
  45065. }
  45066. },
  45067. dressed: {
  45068. height: math.unit(8, "feet"),
  45069. weight: math.unit(225, "lb"),
  45070. name: "Dressed",
  45071. image: {
  45072. source: "./media/characters/marvy/dressed.svg",
  45073. extra: 1900/1683,
  45074. bottom: 89/1989
  45075. }
  45076. },
  45077. head: {
  45078. height: math.unit(2.85, "feet"),
  45079. name: "Head",
  45080. image: {
  45081. source: "./media/characters/marvy/head.svg"
  45082. }
  45083. },
  45084. },
  45085. [
  45086. {
  45087. name: "Normal",
  45088. height: math.unit(8, "feet"),
  45089. default: true
  45090. },
  45091. ]
  45092. ))
  45093. characterMakers.push(() => makeCharacter(
  45094. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45095. {
  45096. front: {
  45097. height: math.unit(8, "feet"),
  45098. weight: math.unit(250, "lb"),
  45099. name: "Front",
  45100. image: {
  45101. source: "./media/characters/leah/front.svg",
  45102. extra: 1257/1149,
  45103. bottom: 109/1366
  45104. }
  45105. },
  45106. },
  45107. [
  45108. {
  45109. name: "Normal",
  45110. height: math.unit(8, "feet"),
  45111. default: true
  45112. },
  45113. {
  45114. name: "Minimacro",
  45115. height: math.unit(40, "feet")
  45116. },
  45117. {
  45118. name: "Macro",
  45119. height: math.unit(124, "feet")
  45120. },
  45121. {
  45122. name: "Megamacro",
  45123. height: math.unit(850, "feet")
  45124. },
  45125. ]
  45126. ))
  45127. characterMakers.push(() => makeCharacter(
  45128. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45129. {
  45130. side: {
  45131. height: math.unit(13 + 6/12, "feet"),
  45132. weight: math.unit(3200, "lb"),
  45133. name: "Side",
  45134. image: {
  45135. source: "./media/characters/alvir/side.svg",
  45136. extra: 896/589,
  45137. bottom: 26/922
  45138. }
  45139. },
  45140. },
  45141. [
  45142. {
  45143. name: "Normal",
  45144. height: math.unit(13 + 6/12, "feet"),
  45145. default: true
  45146. },
  45147. ]
  45148. ))
  45149. characterMakers.push(() => makeCharacter(
  45150. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45151. {
  45152. front: {
  45153. height: math.unit(5 + 4/12, "feet"),
  45154. weight: math.unit(236, "lb"),
  45155. name: "Front",
  45156. image: {
  45157. source: "./media/characters/zaina-khalil/front.svg",
  45158. extra: 1533/1485,
  45159. bottom: 94/1627
  45160. }
  45161. },
  45162. side: {
  45163. height: math.unit(5 + 4/12, "feet"),
  45164. weight: math.unit(236, "lb"),
  45165. name: "Side",
  45166. image: {
  45167. source: "./media/characters/zaina-khalil/side.svg",
  45168. extra: 1537/1498,
  45169. bottom: 66/1603
  45170. }
  45171. },
  45172. back: {
  45173. height: math.unit(5 + 4/12, "feet"),
  45174. weight: math.unit(236, "lb"),
  45175. name: "Back",
  45176. image: {
  45177. source: "./media/characters/zaina-khalil/back.svg",
  45178. extra: 1546/1494,
  45179. bottom: 89/1635
  45180. }
  45181. },
  45182. },
  45183. [
  45184. {
  45185. name: "Normal",
  45186. height: math.unit(5 + 4/12, "feet"),
  45187. default: true
  45188. },
  45189. ]
  45190. ))
  45191. characterMakers.push(() => makeCharacter(
  45192. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45193. {
  45194. side: {
  45195. height: math.unit(12, "feet"),
  45196. weight: math.unit(4000, "lb"),
  45197. name: "Side",
  45198. image: {
  45199. source: "./media/characters/terry/side.svg",
  45200. extra: 1518/1439,
  45201. bottom: 149/1667
  45202. }
  45203. },
  45204. },
  45205. [
  45206. {
  45207. name: "Normal",
  45208. height: math.unit(12, "feet"),
  45209. default: true
  45210. },
  45211. ]
  45212. ))
  45213. characterMakers.push(() => makeCharacter(
  45214. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45215. {
  45216. front: {
  45217. height: math.unit(12, "feet"),
  45218. weight: math.unit(1500, "lb"),
  45219. name: "Front",
  45220. image: {
  45221. source: "./media/characters/kahea/front.svg",
  45222. extra: 1722/1617,
  45223. bottom: 179/1901
  45224. }
  45225. },
  45226. },
  45227. [
  45228. {
  45229. name: "Normal",
  45230. height: math.unit(12, "feet"),
  45231. default: true
  45232. },
  45233. ]
  45234. ))
  45235. characterMakers.push(() => makeCharacter(
  45236. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45237. {
  45238. demonFront: {
  45239. height: math.unit(36, "feet"),
  45240. name: "Front",
  45241. image: {
  45242. source: "./media/characters/alex-xuria/demon-front.svg",
  45243. extra: 1705/1673,
  45244. bottom: 198/1903
  45245. },
  45246. form: "demon",
  45247. default: true
  45248. },
  45249. demonBack: {
  45250. height: math.unit(36, "feet"),
  45251. name: "Back",
  45252. image: {
  45253. source: "./media/characters/alex-xuria/demon-back.svg",
  45254. extra: 1725/1693,
  45255. bottom: 70/1795
  45256. },
  45257. form: "demon"
  45258. },
  45259. demonHead: {
  45260. height: math.unit(2.14, "meters"),
  45261. name: "Head",
  45262. image: {
  45263. source: "./media/characters/alex-xuria/demon-head.svg"
  45264. },
  45265. form: "demon"
  45266. },
  45267. demonHand: {
  45268. height: math.unit(1.61, "meters"),
  45269. name: "Hand",
  45270. image: {
  45271. source: "./media/characters/alex-xuria/demon-hand.svg"
  45272. },
  45273. form: "demon"
  45274. },
  45275. demonPaw: {
  45276. height: math.unit(1.35, "meters"),
  45277. name: "Paw",
  45278. image: {
  45279. source: "./media/characters/alex-xuria/demon-paw.svg"
  45280. },
  45281. form: "demon"
  45282. },
  45283. demonFoot: {
  45284. height: math.unit(2.2, "meters"),
  45285. name: "Foot",
  45286. image: {
  45287. source: "./media/characters/alex-xuria/demon-foot.svg"
  45288. },
  45289. form: "demon"
  45290. },
  45291. demonCock: {
  45292. height: math.unit(1.74, "meters"),
  45293. name: "Cock",
  45294. image: {
  45295. source: "./media/characters/alex-xuria/demon-cock.svg"
  45296. },
  45297. form: "demon"
  45298. },
  45299. demonTailClosed: {
  45300. height: math.unit(1.47, "meters"),
  45301. name: "Tail (Closed)",
  45302. image: {
  45303. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45304. },
  45305. form: "demon"
  45306. },
  45307. demonTailOpen: {
  45308. height: math.unit(2.85, "meters"),
  45309. name: "Tail (Open)",
  45310. image: {
  45311. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45312. },
  45313. form: "demon"
  45314. },
  45315. incubusFront: {
  45316. height: math.unit(12, "feet"),
  45317. name: "Front",
  45318. image: {
  45319. source: "./media/characters/alex-xuria/incubus-front.svg",
  45320. extra: 1754/1677,
  45321. bottom: 125/1879
  45322. },
  45323. form: "incubus",
  45324. default: true
  45325. },
  45326. incubusBack: {
  45327. height: math.unit(12, "feet"),
  45328. name: "Back",
  45329. image: {
  45330. source: "./media/characters/alex-xuria/incubus-back.svg",
  45331. extra: 1702/1647,
  45332. bottom: 30/1732
  45333. },
  45334. form: "incubus"
  45335. },
  45336. incubusHead: {
  45337. height: math.unit(3.45, "feet"),
  45338. name: "Head",
  45339. image: {
  45340. source: "./media/characters/alex-xuria/incubus-head.svg"
  45341. },
  45342. form: "incubus"
  45343. },
  45344. rabbitFront: {
  45345. height: math.unit(6, "feet"),
  45346. name: "Front",
  45347. image: {
  45348. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45349. extra: 1369/1349,
  45350. bottom: 45/1414
  45351. },
  45352. form: "rabbit",
  45353. default: true
  45354. },
  45355. rabbitSide: {
  45356. height: math.unit(6, "feet"),
  45357. name: "Side",
  45358. image: {
  45359. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45360. extra: 1370/1356,
  45361. bottom: 37/1407
  45362. },
  45363. form: "rabbit"
  45364. },
  45365. rabbitBack: {
  45366. height: math.unit(6, "feet"),
  45367. name: "Back",
  45368. image: {
  45369. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45370. extra: 1375/1358,
  45371. bottom: 43/1418
  45372. },
  45373. form: "rabbit"
  45374. },
  45375. },
  45376. [
  45377. {
  45378. name: "Normal",
  45379. height: math.unit(6, "feet"),
  45380. default: true,
  45381. form: "rabbit"
  45382. },
  45383. {
  45384. name: "Incubus",
  45385. height: math.unit(12, "feet"),
  45386. default: true,
  45387. form: "incubus"
  45388. },
  45389. {
  45390. name: "Demon",
  45391. height: math.unit(36, "feet"),
  45392. default: true,
  45393. form: "demon"
  45394. }
  45395. ],
  45396. {
  45397. "demon": {
  45398. name: "Demon",
  45399. default: true
  45400. },
  45401. "incubus": {
  45402. name: "Incubus",
  45403. },
  45404. "rabbit": {
  45405. name: "Rabbit"
  45406. }
  45407. }
  45408. ))
  45409. characterMakers.push(() => makeCharacter(
  45410. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45411. {
  45412. front: {
  45413. height: math.unit(7 + 5/12, "feet"),
  45414. weight: math.unit(510, "lb"),
  45415. name: "Front",
  45416. image: {
  45417. source: "./media/characters/syrup/front.svg",
  45418. extra: 932/916,
  45419. bottom: 26/958
  45420. }
  45421. },
  45422. },
  45423. [
  45424. {
  45425. name: "Normal",
  45426. height: math.unit(7 + 5/12, "feet"),
  45427. default: true
  45428. },
  45429. {
  45430. name: "Big",
  45431. height: math.unit(50, "feet")
  45432. },
  45433. {
  45434. name: "Macro",
  45435. height: math.unit(300, "feet")
  45436. },
  45437. {
  45438. name: "Megamacro",
  45439. height: math.unit(1, "mile")
  45440. },
  45441. ]
  45442. ))
  45443. characterMakers.push(() => makeCharacter(
  45444. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45445. {
  45446. front: {
  45447. height: math.unit(6 + 9/12, "feet"),
  45448. name: "Front",
  45449. image: {
  45450. source: "./media/characters/zeimne/front.svg",
  45451. extra: 1969/1806,
  45452. bottom: 53/2022
  45453. }
  45454. },
  45455. },
  45456. [
  45457. {
  45458. name: "Normal",
  45459. height: math.unit(6 + 9/12, "feet"),
  45460. default: true
  45461. },
  45462. {
  45463. name: "Giant",
  45464. height: math.unit(550, "feet")
  45465. },
  45466. {
  45467. name: "Mega",
  45468. height: math.unit(3, "miles")
  45469. },
  45470. {
  45471. name: "Giga",
  45472. height: math.unit(250, "miles")
  45473. },
  45474. {
  45475. name: "Tera",
  45476. height: math.unit(1, "AU")
  45477. },
  45478. ]
  45479. ))
  45480. characterMakers.push(() => makeCharacter(
  45481. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45482. {
  45483. front: {
  45484. height: math.unit(5 + 2/12, "feet"),
  45485. name: "Front",
  45486. image: {
  45487. source: "./media/characters/grar/front.svg",
  45488. extra: 1331/1119,
  45489. bottom: 60/1391
  45490. }
  45491. },
  45492. back: {
  45493. height: math.unit(5 + 2/12, "feet"),
  45494. name: "Back",
  45495. image: {
  45496. source: "./media/characters/grar/back.svg",
  45497. extra: 1385/1169,
  45498. bottom: 23/1408
  45499. }
  45500. },
  45501. },
  45502. [
  45503. {
  45504. name: "Normal",
  45505. height: math.unit(5 + 2/12, "feet"),
  45506. default: true
  45507. },
  45508. ]
  45509. ))
  45510. characterMakers.push(() => makeCharacter(
  45511. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45512. {
  45513. front: {
  45514. height: math.unit(13 + 7/12, "feet"),
  45515. weight: math.unit(2200, "lb"),
  45516. name: "Front",
  45517. image: {
  45518. source: "./media/characters/endraya/front.svg",
  45519. extra: 1289/1215,
  45520. bottom: 50/1339
  45521. }
  45522. },
  45523. nude: {
  45524. height: math.unit(13 + 7/12, "feet"),
  45525. weight: math.unit(2200, "lb"),
  45526. name: "Nude",
  45527. image: {
  45528. source: "./media/characters/endraya/nude.svg",
  45529. extra: 1247/1171,
  45530. bottom: 40/1287
  45531. }
  45532. },
  45533. head: {
  45534. height: math.unit(2.6, "feet"),
  45535. name: "Head",
  45536. image: {
  45537. source: "./media/characters/endraya/head.svg"
  45538. }
  45539. },
  45540. slit: {
  45541. height: math.unit(3.4, "feet"),
  45542. name: "Slit",
  45543. image: {
  45544. source: "./media/characters/endraya/slit.svg"
  45545. }
  45546. },
  45547. },
  45548. [
  45549. {
  45550. name: "Normal",
  45551. height: math.unit(13 + 7/12, "feet"),
  45552. default: true
  45553. },
  45554. {
  45555. name: "Macro",
  45556. height: math.unit(200, "feet")
  45557. },
  45558. ]
  45559. ))
  45560. characterMakers.push(() => makeCharacter(
  45561. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45562. {
  45563. front: {
  45564. height: math.unit(412, "meters"),
  45565. name: "Front",
  45566. image: {
  45567. source: "./media/characters/rodryana/front.svg",
  45568. extra: 2002/1921,
  45569. bottom: 53/2055
  45570. }
  45571. },
  45572. back: {
  45573. height: math.unit(412, "meters"),
  45574. name: "Back",
  45575. image: {
  45576. source: "./media/characters/rodryana/back.svg",
  45577. extra: 1993/1926,
  45578. bottom: 48/2041
  45579. }
  45580. },
  45581. maw: {
  45582. height: math.unit(45, "meters"),
  45583. name: "Maw",
  45584. image: {
  45585. source: "./media/characters/rodryana/maw.svg"
  45586. }
  45587. },
  45588. slit: {
  45589. height: math.unit(72, "meters"),
  45590. name: "Slit",
  45591. image: {
  45592. source: "./media/characters/rodryana/slit.svg"
  45593. }
  45594. },
  45595. },
  45596. [
  45597. {
  45598. name: "Macro",
  45599. height: math.unit(412, "meters"),
  45600. default: true
  45601. },
  45602. ]
  45603. ))
  45604. characterMakers.push(() => makeCharacter(
  45605. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45606. {
  45607. front: {
  45608. height: math.unit(6, "feet"),
  45609. weight: math.unit(1000, "lb"),
  45610. name: "Front",
  45611. image: {
  45612. source: "./media/characters/asaya/front.svg",
  45613. extra: 1460/1200,
  45614. bottom: 71/1531
  45615. }
  45616. },
  45617. },
  45618. [
  45619. {
  45620. name: "Normal",
  45621. height: math.unit(8, "km"),
  45622. default: true
  45623. },
  45624. ]
  45625. ))
  45626. characterMakers.push(() => makeCharacter(
  45627. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45628. {
  45629. front: {
  45630. height: math.unit(3.5, "meters"),
  45631. name: "Front",
  45632. image: {
  45633. source: "./media/characters/sarzu-and-israz/front.svg",
  45634. extra: 1570/1558,
  45635. bottom: 150/1720
  45636. },
  45637. },
  45638. back: {
  45639. height: math.unit(3.5, "meters"),
  45640. name: "Back",
  45641. image: {
  45642. source: "./media/characters/sarzu-and-israz/back.svg",
  45643. extra: 1523/1509,
  45644. bottom: 132/1655
  45645. },
  45646. },
  45647. frontFemale: {
  45648. height: math.unit(3.5, "meters"),
  45649. name: "Front (Female)",
  45650. image: {
  45651. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45652. extra: 1570/1558,
  45653. bottom: 150/1720
  45654. },
  45655. },
  45656. frontHerm: {
  45657. height: math.unit(3.5, "meters"),
  45658. name: "Front (Herm)",
  45659. image: {
  45660. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45661. extra: 1570/1558,
  45662. bottom: 150/1720
  45663. },
  45664. },
  45665. },
  45666. [
  45667. {
  45668. name: "Normal",
  45669. height: math.unit(3.5, "meters"),
  45670. default: true,
  45671. },
  45672. {
  45673. name: "Macro",
  45674. height: math.unit(65.5, "meters"),
  45675. },
  45676. ],
  45677. ))
  45678. characterMakers.push(() => makeCharacter(
  45679. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45680. {
  45681. front: {
  45682. height: math.unit(6, "feet"),
  45683. weight: math.unit(250, "lb"),
  45684. name: "Front",
  45685. image: {
  45686. source: "./media/characters/zenimma/front.svg",
  45687. extra: 1346/1320,
  45688. bottom: 58/1404
  45689. }
  45690. },
  45691. back: {
  45692. height: math.unit(6, "feet"),
  45693. weight: math.unit(250, "lb"),
  45694. name: "Back",
  45695. image: {
  45696. source: "./media/characters/zenimma/back.svg",
  45697. extra: 1324/1308,
  45698. bottom: 44/1368
  45699. }
  45700. },
  45701. dick: {
  45702. height: math.unit(1.44, "feet"),
  45703. name: "Dick",
  45704. image: {
  45705. source: "./media/characters/zenimma/dick.svg"
  45706. }
  45707. },
  45708. },
  45709. [
  45710. {
  45711. name: "Canon Height",
  45712. height: math.unit(66, "miles"),
  45713. default: true
  45714. },
  45715. ]
  45716. ))
  45717. characterMakers.push(() => makeCharacter(
  45718. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45719. {
  45720. nude: {
  45721. height: math.unit(6, "feet"),
  45722. weight: math.unit(150, "lb"),
  45723. name: "Nude",
  45724. image: {
  45725. source: "./media/characters/shavon/nude.svg",
  45726. extra: 1242/1096,
  45727. bottom: 98/1340
  45728. }
  45729. },
  45730. dressed: {
  45731. height: math.unit(6, "feet"),
  45732. weight: math.unit(150, "lb"),
  45733. name: "Dressed",
  45734. image: {
  45735. source: "./media/characters/shavon/dressed.svg",
  45736. extra: 1242/1096,
  45737. bottom: 98/1340
  45738. }
  45739. },
  45740. },
  45741. [
  45742. {
  45743. name: "Macro",
  45744. height: math.unit(255, "feet"),
  45745. default: true
  45746. },
  45747. ]
  45748. ))
  45749. characterMakers.push(() => makeCharacter(
  45750. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45751. {
  45752. front: {
  45753. height: math.unit(6, "feet"),
  45754. name: "Front",
  45755. image: {
  45756. source: "./media/characters/steph/front.svg",
  45757. extra: 1430/1330,
  45758. bottom: 54/1484
  45759. }
  45760. },
  45761. },
  45762. [
  45763. {
  45764. name: "Normal",
  45765. height: math.unit(6, "feet"),
  45766. default: true
  45767. },
  45768. ]
  45769. ))
  45770. characterMakers.push(() => makeCharacter(
  45771. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45772. {
  45773. front: {
  45774. height: math.unit(9, "feet"),
  45775. weight: math.unit(400, "lb"),
  45776. name: "Front",
  45777. image: {
  45778. source: "./media/characters/kil'aman/front.svg",
  45779. extra: 1210/1159,
  45780. bottom: 109/1319
  45781. }
  45782. },
  45783. head: {
  45784. height: math.unit(2.14, "feet"),
  45785. name: "Head",
  45786. image: {
  45787. source: "./media/characters/kil'aman/head.svg"
  45788. }
  45789. },
  45790. maw: {
  45791. height: math.unit(1.21, "feet"),
  45792. name: "Maw",
  45793. image: {
  45794. source: "./media/characters/kil'aman/maw.svg"
  45795. }
  45796. },
  45797. foot: {
  45798. height: math.unit(1.7, "feet"),
  45799. name: "Foot",
  45800. image: {
  45801. source: "./media/characters/kil'aman/foot.svg"
  45802. }
  45803. },
  45804. dick: {
  45805. height: math.unit(2.1, "feet"),
  45806. name: "Dick",
  45807. image: {
  45808. source: "./media/characters/kil'aman/dick.svg"
  45809. }
  45810. },
  45811. },
  45812. [
  45813. {
  45814. name: "Normal",
  45815. height: math.unit(9, "feet")
  45816. },
  45817. {
  45818. name: "Canon Height",
  45819. height: math.unit(10, "miles"),
  45820. default: true
  45821. },
  45822. {
  45823. name: "Maximum",
  45824. height: math.unit(6e9, "miles")
  45825. },
  45826. ]
  45827. ))
  45828. characterMakers.push(() => makeCharacter(
  45829. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45830. {
  45831. front: {
  45832. height: math.unit(90, "feet"),
  45833. weight: math.unit(675000, "lb"),
  45834. name: "Front",
  45835. image: {
  45836. source: "./media/characters/qadan/front.svg",
  45837. extra: 1012/1004,
  45838. bottom: 78/1090
  45839. }
  45840. },
  45841. back: {
  45842. height: math.unit(90, "feet"),
  45843. weight: math.unit(675000, "lb"),
  45844. name: "Back",
  45845. image: {
  45846. source: "./media/characters/qadan/back.svg",
  45847. extra: 1042/1031,
  45848. bottom: 55/1097
  45849. }
  45850. },
  45851. armored: {
  45852. height: math.unit(90, "feet"),
  45853. weight: math.unit(675000, "lb"),
  45854. name: "Armored",
  45855. image: {
  45856. source: "./media/characters/qadan/armored.svg",
  45857. extra: 1047/1037,
  45858. bottom: 48/1095
  45859. }
  45860. },
  45861. },
  45862. [
  45863. {
  45864. name: "Normal",
  45865. height: math.unit(90, "feet"),
  45866. default: true
  45867. },
  45868. ]
  45869. ))
  45870. characterMakers.push(() => makeCharacter(
  45871. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45872. {
  45873. front: {
  45874. height: math.unit(6, "feet"),
  45875. weight: math.unit(225, "lb"),
  45876. name: "Front",
  45877. image: {
  45878. source: "./media/characters/brooke/front.svg",
  45879. extra: 1050/1010,
  45880. bottom: 66/1116
  45881. }
  45882. },
  45883. back: {
  45884. height: math.unit(6, "feet"),
  45885. weight: math.unit(225, "lb"),
  45886. name: "Back",
  45887. image: {
  45888. source: "./media/characters/brooke/back.svg",
  45889. extra: 1053/1013,
  45890. bottom: 41/1094
  45891. }
  45892. },
  45893. dressed: {
  45894. height: math.unit(6, "feet"),
  45895. weight: math.unit(225, "lb"),
  45896. name: "Dressed",
  45897. image: {
  45898. source: "./media/characters/brooke/dressed.svg",
  45899. extra: 1050/1010,
  45900. bottom: 66/1116
  45901. }
  45902. },
  45903. },
  45904. [
  45905. {
  45906. name: "Canon Height",
  45907. height: math.unit(500, "miles"),
  45908. default: true
  45909. },
  45910. ]
  45911. ))
  45912. characterMakers.push(() => makeCharacter(
  45913. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  45914. {
  45915. front: {
  45916. height: math.unit(6 + 2/12, "feet"),
  45917. weight: math.unit(210, "lb"),
  45918. name: "Front",
  45919. image: {
  45920. source: "./media/characters/wubs/front.svg",
  45921. extra: 1345/1325,
  45922. bottom: 70/1415
  45923. }
  45924. },
  45925. back: {
  45926. height: math.unit(6 + 2/12, "feet"),
  45927. weight: math.unit(210, "lb"),
  45928. name: "Back",
  45929. image: {
  45930. source: "./media/characters/wubs/back.svg",
  45931. extra: 1296/1275,
  45932. bottom: 58/1354
  45933. }
  45934. },
  45935. },
  45936. [
  45937. {
  45938. name: "Normal",
  45939. height: math.unit(6 + 2/12, "feet"),
  45940. default: true
  45941. },
  45942. {
  45943. name: "Macro",
  45944. height: math.unit(1000, "feet")
  45945. },
  45946. {
  45947. name: "Megamacro",
  45948. height: math.unit(1, "mile")
  45949. },
  45950. ]
  45951. ))
  45952. characterMakers.push(() => makeCharacter(
  45953. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  45954. {
  45955. front: {
  45956. height: math.unit(4, "feet"),
  45957. weight: math.unit(120, "lb"),
  45958. name: "Front",
  45959. image: {
  45960. source: "./media/characters/blue/front.svg",
  45961. extra: 1636/1525,
  45962. bottom: 43/1679
  45963. }
  45964. },
  45965. back: {
  45966. height: math.unit(4, "feet"),
  45967. weight: math.unit(120, "lb"),
  45968. name: "Back",
  45969. image: {
  45970. source: "./media/characters/blue/back.svg",
  45971. extra: 1660/1560,
  45972. bottom: 57/1717
  45973. }
  45974. },
  45975. paws: {
  45976. height: math.unit(0.826, "feet"),
  45977. name: "Paws",
  45978. image: {
  45979. source: "./media/characters/blue/paws.svg"
  45980. }
  45981. },
  45982. },
  45983. [
  45984. {
  45985. name: "Micro",
  45986. height: math.unit(3, "inches")
  45987. },
  45988. {
  45989. name: "Normal",
  45990. height: math.unit(4, "feet"),
  45991. default: true
  45992. },
  45993. {
  45994. name: "Femenine Form",
  45995. height: math.unit(14, "feet")
  45996. },
  45997. {
  45998. name: "Werebat Form",
  45999. height: math.unit(18, "feet")
  46000. },
  46001. ]
  46002. ))
  46003. characterMakers.push(() => makeCharacter(
  46004. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46005. {
  46006. female: {
  46007. height: math.unit(7 + 4/12, "feet"),
  46008. weight: math.unit(243, "lb"),
  46009. name: "Female",
  46010. image: {
  46011. source: "./media/characters/kaya/female.svg",
  46012. extra: 975/898,
  46013. bottom: 34/1009
  46014. }
  46015. },
  46016. herm: {
  46017. height: math.unit(7 + 4/12, "feet"),
  46018. weight: math.unit(243, "lb"),
  46019. name: "Herm",
  46020. image: {
  46021. source: "./media/characters/kaya/herm.svg",
  46022. extra: 975/898,
  46023. bottom: 34/1009
  46024. }
  46025. },
  46026. },
  46027. [
  46028. {
  46029. name: "Normal",
  46030. height: math.unit(7 + 4/12, "feet"),
  46031. default: true
  46032. },
  46033. ]
  46034. ))
  46035. characterMakers.push(() => makeCharacter(
  46036. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46037. {
  46038. female: {
  46039. height: math.unit(9 + 4/12, "feet"),
  46040. weight: math.unit(398, "lb"),
  46041. name: "Female",
  46042. image: {
  46043. source: "./media/characters/kassandra/female.svg",
  46044. extra: 908/839,
  46045. bottom: 61/969
  46046. }
  46047. },
  46048. intersex: {
  46049. height: math.unit(9 + 4/12, "feet"),
  46050. weight: math.unit(398, "lb"),
  46051. name: "Intersex",
  46052. image: {
  46053. source: "./media/characters/kassandra/intersex.svg",
  46054. extra: 908/839,
  46055. bottom: 61/969
  46056. }
  46057. },
  46058. },
  46059. [
  46060. {
  46061. name: "Normal",
  46062. height: math.unit(9 + 4/12, "feet"),
  46063. default: true
  46064. },
  46065. ]
  46066. ))
  46067. characterMakers.push(() => makeCharacter(
  46068. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46069. {
  46070. front: {
  46071. height: math.unit(3, "meters"),
  46072. name: "Front",
  46073. image: {
  46074. source: "./media/characters/amy/front.svg",
  46075. extra: 1380/1343,
  46076. bottom: 70/1450
  46077. }
  46078. },
  46079. back: {
  46080. height: math.unit(3, "meters"),
  46081. name: "Back",
  46082. image: {
  46083. source: "./media/characters/amy/back.svg",
  46084. extra: 1380/1347,
  46085. bottom: 66/1446
  46086. }
  46087. },
  46088. },
  46089. [
  46090. {
  46091. name: "Normal",
  46092. height: math.unit(3, "meters"),
  46093. default: true
  46094. },
  46095. ]
  46096. ))
  46097. characterMakers.push(() => makeCharacter(
  46098. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46099. {
  46100. side: {
  46101. height: math.unit(47, "cm"),
  46102. weight: math.unit(10.8, "kg"),
  46103. name: "Side",
  46104. image: {
  46105. source: "./media/characters/alphaschakal/side.svg",
  46106. extra: 1058/568,
  46107. bottom: 62/1120
  46108. }
  46109. },
  46110. back: {
  46111. height: math.unit(78, "cm"),
  46112. weight: math.unit(10.8, "kg"),
  46113. name: "Back",
  46114. image: {
  46115. source: "./media/characters/alphaschakal/back.svg",
  46116. extra: 1102/942,
  46117. bottom: 185/1287
  46118. }
  46119. },
  46120. head: {
  46121. height: math.unit(28, "cm"),
  46122. name: "Head",
  46123. image: {
  46124. source: "./media/characters/alphaschakal/head.svg",
  46125. extra: 696/508,
  46126. bottom: 0/696
  46127. }
  46128. },
  46129. paw: {
  46130. height: math.unit(16, "cm"),
  46131. name: "Paw",
  46132. image: {
  46133. source: "./media/characters/alphaschakal/paw.svg"
  46134. }
  46135. },
  46136. },
  46137. [
  46138. {
  46139. name: "Normal",
  46140. height: math.unit(47, "cm"),
  46141. default: true
  46142. },
  46143. {
  46144. name: "Macro",
  46145. height: math.unit(340, "cm")
  46146. },
  46147. ]
  46148. ))
  46149. characterMakers.push(() => makeCharacter(
  46150. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46151. {
  46152. front: {
  46153. height: math.unit(36, "earths"),
  46154. name: "Front",
  46155. image: {
  46156. source: "./media/characters/ecobyss/front.svg",
  46157. extra: 1282/1215,
  46158. bottom: 11/1293
  46159. }
  46160. },
  46161. back: {
  46162. height: math.unit(36, "earths"),
  46163. name: "Back",
  46164. image: {
  46165. source: "./media/characters/ecobyss/back.svg",
  46166. extra: 1291/1222,
  46167. bottom: 8/1299
  46168. }
  46169. },
  46170. },
  46171. [
  46172. {
  46173. name: "Normal",
  46174. height: math.unit(36, "earths"),
  46175. default: true
  46176. },
  46177. ]
  46178. ))
  46179. characterMakers.push(() => makeCharacter(
  46180. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46181. {
  46182. front: {
  46183. height: math.unit(12, "feet"),
  46184. name: "Front",
  46185. image: {
  46186. source: "./media/characters/vasuk/front.svg",
  46187. extra: 1326/1207,
  46188. bottom: 64/1390
  46189. }
  46190. },
  46191. },
  46192. [
  46193. {
  46194. name: "Normal",
  46195. height: math.unit(12, "feet"),
  46196. default: true
  46197. },
  46198. ]
  46199. ))
  46200. characterMakers.push(() => makeCharacter(
  46201. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46202. {
  46203. side: {
  46204. height: math.unit(100, "feet"),
  46205. name: "Side",
  46206. image: {
  46207. source: "./media/characters/linneaus/side.svg",
  46208. extra: 987/807,
  46209. bottom: 47/1034
  46210. }
  46211. },
  46212. },
  46213. [
  46214. {
  46215. name: "Macro",
  46216. height: math.unit(100, "feet"),
  46217. default: true
  46218. },
  46219. ]
  46220. ))
  46221. characterMakers.push(() => makeCharacter(
  46222. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46223. {
  46224. front: {
  46225. height: math.unit(8, "feet"),
  46226. weight: math.unit(1200, "lb"),
  46227. name: "Front",
  46228. image: {
  46229. source: "./media/characters/nyterious-daligdig/front.svg",
  46230. extra: 1284/1094,
  46231. bottom: 84/1368
  46232. }
  46233. },
  46234. back: {
  46235. height: math.unit(8, "feet"),
  46236. weight: math.unit(1200, "lb"),
  46237. name: "Back",
  46238. image: {
  46239. source: "./media/characters/nyterious-daligdig/back.svg",
  46240. extra: 1301/1121,
  46241. bottom: 129/1430
  46242. }
  46243. },
  46244. mouth: {
  46245. height: math.unit(1.464, "feet"),
  46246. name: "Mouth",
  46247. image: {
  46248. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46249. }
  46250. },
  46251. },
  46252. [
  46253. {
  46254. name: "Small",
  46255. height: math.unit(8, "feet"),
  46256. default: true
  46257. },
  46258. {
  46259. name: "Normal",
  46260. height: math.unit(15, "feet")
  46261. },
  46262. {
  46263. name: "Macro",
  46264. height: math.unit(90, "feet")
  46265. },
  46266. ]
  46267. ))
  46268. characterMakers.push(() => makeCharacter(
  46269. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46270. {
  46271. front: {
  46272. height: math.unit(7 + 4/12, "feet"),
  46273. weight: math.unit(252, "lb"),
  46274. name: "Front",
  46275. image: {
  46276. source: "./media/characters/bandel/front.svg",
  46277. extra: 1946/1775,
  46278. bottom: 26/1972
  46279. }
  46280. },
  46281. back: {
  46282. height: math.unit(7 + 4/12, "feet"),
  46283. weight: math.unit(252, "lb"),
  46284. name: "Back",
  46285. image: {
  46286. source: "./media/characters/bandel/back.svg",
  46287. extra: 1940/1770,
  46288. bottom: 25/1965
  46289. }
  46290. },
  46291. maw: {
  46292. height: math.unit(2.15, "feet"),
  46293. name: "Maw",
  46294. image: {
  46295. source: "./media/characters/bandel/maw.svg"
  46296. }
  46297. },
  46298. stomach: {
  46299. height: math.unit(1.95, "feet"),
  46300. name: "Stomach",
  46301. image: {
  46302. source: "./media/characters/bandel/stomach.svg"
  46303. }
  46304. },
  46305. },
  46306. [
  46307. {
  46308. name: "Normal",
  46309. height: math.unit(7 + 4/12, "feet"),
  46310. default: true
  46311. },
  46312. ]
  46313. ))
  46314. //characters
  46315. function makeCharacters() {
  46316. const results = [];
  46317. characterMakers.forEach(character => {
  46318. results.push(character());
  46319. });
  46320. return results;
  46321. }