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

44839 строки
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  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. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. }
  1795. //species
  1796. function getSpeciesInfo(speciesList) {
  1797. let result = new Set();
  1798. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1799. result.add(entry)
  1800. });
  1801. return Array.from(result);
  1802. };
  1803. function getSpeciesInfoHelper(species) {
  1804. if (!speciesData[species]) {
  1805. console.warn(species + " doesn't exist");
  1806. return [];
  1807. }
  1808. if (speciesData[species].parents) {
  1809. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1810. } else {
  1811. return [species];
  1812. }
  1813. }
  1814. characterMakers.push(() => makeCharacter(
  1815. {
  1816. name: "Fen",
  1817. species: ["crux"],
  1818. description: {
  1819. title: "Bio",
  1820. text: "Very furry. Sheds on everything."
  1821. },
  1822. tags: [
  1823. "anthro",
  1824. "goo"
  1825. ]
  1826. },
  1827. {
  1828. back: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Back",
  1832. image: {
  1833. source: "./media/characters/fen/back.svg",
  1834. },
  1835. info: {
  1836. description: {
  1837. mode: "append",
  1838. text: "\n\nHe is not currently looking at you."
  1839. }
  1840. }
  1841. },
  1842. full: {
  1843. height: math.unit(0.91, "meter"),
  1844. weight: math.unit(225, "kg"),
  1845. name: "Full",
  1846. image: {
  1847. source: "./media/characters/fen/full.svg",
  1848. extra: 1133/859,
  1849. bottom: 145/1278
  1850. },
  1851. info: {
  1852. description: {
  1853. mode: "append",
  1854. text: "\n\nMunch."
  1855. }
  1856. }
  1857. },
  1858. kneeling: {
  1859. height: math.unit(5.4, "feet"),
  1860. weight: math.unit(124.738, "kg"),
  1861. name: "Kneeling",
  1862. image: {
  1863. source: "./media/characters/fen/kneeling.svg",
  1864. extra: 563 / 507
  1865. }
  1866. },
  1867. goo: {
  1868. height: math.unit(2.8, "feet"),
  1869. weight: math.unit(125, "kg"),
  1870. capacity: math.unit(1, "people"),
  1871. name: "Goo",
  1872. image: {
  1873. source: "./media/characters/fen/goo.svg",
  1874. bottom: 116 / 613
  1875. }
  1876. },
  1877. lounging: {
  1878. height: math.unit(6.5, "feet"),
  1879. weight: math.unit(125, "kg"),
  1880. name: "Lounging",
  1881. image: {
  1882. source: "./media/characters/fen/lounging.svg"
  1883. }
  1884. },
  1885. },
  1886. [
  1887. {
  1888. name: "Normal",
  1889. height: math.unit(2.2428, "meter")
  1890. },
  1891. {
  1892. name: "Big",
  1893. height: math.unit(12, "feet")
  1894. },
  1895. {
  1896. name: "Minimacro",
  1897. height: math.unit(40, "feet"),
  1898. default: true,
  1899. info: {
  1900. description: {
  1901. mode: "append",
  1902. text: "\n\nTOO DAMN BIG"
  1903. }
  1904. }
  1905. },
  1906. {
  1907. name: "Macro",
  1908. height: math.unit(100, "feet"),
  1909. info: {
  1910. description: {
  1911. mode: "append",
  1912. text: "\n\nTOO DAMN BIG"
  1913. }
  1914. }
  1915. },
  1916. {
  1917. name: "Macro+",
  1918. height: math.unit(300, "feet")
  1919. },
  1920. {
  1921. name: "Megamacro",
  1922. height: math.unit(2, "miles")
  1923. }
  1924. ]
  1925. ))
  1926. characterMakers.push(() => makeCharacter(
  1927. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1928. {
  1929. front: {
  1930. height: math.unit(183, "cm"),
  1931. weight: math.unit(80, "kg"),
  1932. name: "Front",
  1933. image: {
  1934. source: "./media/characters/sofia-fluttertail/front.svg",
  1935. bottom: 0.01,
  1936. extra: 2154 / 2081
  1937. }
  1938. },
  1939. frontAlt: {
  1940. height: math.unit(183, "cm"),
  1941. weight: math.unit(80, "kg"),
  1942. name: "Front (alt)",
  1943. image: {
  1944. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1945. }
  1946. },
  1947. back: {
  1948. height: math.unit(183, "cm"),
  1949. weight: math.unit(80, "kg"),
  1950. name: "Back",
  1951. image: {
  1952. source: "./media/characters/sofia-fluttertail/back.svg"
  1953. }
  1954. },
  1955. kneeling: {
  1956. height: math.unit(125, "cm"),
  1957. weight: math.unit(80, "kg"),
  1958. name: "Kneeling",
  1959. image: {
  1960. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1961. extra: 1033 / 977,
  1962. bottom: 23.7 / 1057
  1963. }
  1964. },
  1965. maw: {
  1966. height: math.unit(183 / 5, "cm"),
  1967. name: "Maw",
  1968. image: {
  1969. source: "./media/characters/sofia-fluttertail/maw.svg"
  1970. }
  1971. },
  1972. mawcloseup: {
  1973. height: math.unit(183 / 5 * 0.41, "cm"),
  1974. name: "Maw (Closeup)",
  1975. image: {
  1976. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1977. }
  1978. },
  1979. paws: {
  1980. height: math.unit(1.17, "feet"),
  1981. name: "Paws",
  1982. image: {
  1983. source: "./media/characters/sofia-fluttertail/paws.svg",
  1984. extra: 851 / 851,
  1985. bottom: 17 / 868
  1986. }
  1987. },
  1988. },
  1989. [
  1990. {
  1991. name: "Normal",
  1992. height: math.unit(1.83, "meter")
  1993. },
  1994. {
  1995. name: "Size Thief",
  1996. height: math.unit(18, "feet")
  1997. },
  1998. {
  1999. name: "50 Foot Collie",
  2000. height: math.unit(50, "feet")
  2001. },
  2002. {
  2003. name: "Macro",
  2004. height: math.unit(96, "feet"),
  2005. default: true
  2006. },
  2007. {
  2008. name: "Megamerger",
  2009. height: math.unit(650, "feet")
  2010. },
  2011. ]
  2012. ))
  2013. characterMakers.push(() => makeCharacter(
  2014. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2015. {
  2016. front: {
  2017. height: math.unit(7, "feet"),
  2018. weight: math.unit(100, "kg"),
  2019. name: "Front",
  2020. image: {
  2021. source: "./media/characters/march/front.svg",
  2022. extra: 1992/1851,
  2023. bottom: 39/2031
  2024. }
  2025. },
  2026. foot: {
  2027. height: math.unit(0.9, "feet"),
  2028. name: "Foot",
  2029. image: {
  2030. source: "./media/characters/march/foot.svg"
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(7.9, "feet")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(220, "meters")
  2042. },
  2043. {
  2044. name: "Megamacro",
  2045. height: math.unit(2.98, "km"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Gigamacro",
  2050. height: math.unit(15963, "km")
  2051. },
  2052. {
  2053. name: "Teramacro",
  2054. height: math.unit(2980000000, "km")
  2055. },
  2056. {
  2057. name: "Examacro",
  2058. height: math.unit(250, "parsecs")
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(6, "feet"),
  2067. weight: math.unit(60, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/noir/front.svg",
  2071. extra: 1,
  2072. bottom: 0.032
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(6.6, "feet")
  2080. },
  2081. {
  2082. name: "Macro",
  2083. height: math.unit(500, "feet")
  2084. },
  2085. {
  2086. name: "Megamacro",
  2087. height: math.unit(2.5, "km"),
  2088. default: true
  2089. },
  2090. {
  2091. name: "Gigamacro",
  2092. height: math.unit(22500, "km")
  2093. },
  2094. {
  2095. name: "Teramacro",
  2096. height: math.unit(2500000000, "km")
  2097. },
  2098. {
  2099. name: "Examacro",
  2100. height: math.unit(200, "parsecs")
  2101. },
  2102. ]
  2103. ))
  2104. characterMakers.push(() => makeCharacter(
  2105. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2106. {
  2107. front: {
  2108. height: math.unit(7, "feet"),
  2109. weight: math.unit(100, "kg"),
  2110. name: "Front",
  2111. image: {
  2112. source: "./media/characters/okuri/front.svg",
  2113. extra: 1,
  2114. bottom: 0.037
  2115. }
  2116. },
  2117. back: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Back",
  2121. image: {
  2122. source: "./media/characters/okuri/back.svg",
  2123. extra: 1,
  2124. bottom: 0.007
  2125. }
  2126. },
  2127. },
  2128. [
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(100, "miles"),
  2132. default: true
  2133. },
  2134. ]
  2135. ))
  2136. characterMakers.push(() => makeCharacter(
  2137. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2138. {
  2139. front: {
  2140. height: math.unit(7, "feet"),
  2141. weight: math.unit(100, "kg"),
  2142. name: "Front",
  2143. image: {
  2144. source: "./media/characters/manny/front.svg",
  2145. extra: 1,
  2146. bottom: 0.06
  2147. }
  2148. },
  2149. back: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Back",
  2153. image: {
  2154. source: "./media/characters/manny/back.svg",
  2155. extra: 1,
  2156. bottom: 0.014
  2157. }
  2158. },
  2159. },
  2160. [
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(7, "feet"),
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(78, "feet"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Macro+",
  2172. height: math.unit(300, "meters")
  2173. },
  2174. {
  2175. name: "Macro++",
  2176. height: math.unit(2400, "meters")
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(5167, "meters")
  2181. },
  2182. {
  2183. name: "Gigamacro",
  2184. height: math.unit(41769, "miles")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(7, "feet"),
  2193. weight: math.unit(100, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/adake/front-1.svg"
  2197. }
  2198. },
  2199. frontAlt: {
  2200. height: math.unit(7, "feet"),
  2201. weight: math.unit(100, "kg"),
  2202. name: "Front (Alt)",
  2203. image: {
  2204. source: "./media/characters/adake/front-2.svg",
  2205. extra: 1,
  2206. bottom: 0.01
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(7, "feet"),
  2211. weight: math.unit(100, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/adake/back.svg",
  2215. }
  2216. },
  2217. kneel: {
  2218. height: math.unit(5.385, "feet"),
  2219. weight: math.unit(100, "kg"),
  2220. name: "Kneeling",
  2221. image: {
  2222. source: "./media/characters/adake/kneel.svg",
  2223. bottom: 0.052
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(7, "feet"),
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(78, "feet"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Macro+",
  2239. height: math.unit(300, "meters")
  2240. },
  2241. {
  2242. name: "Macro++",
  2243. height: math.unit(2400, "meters")
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(5167, "meters")
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(41769, "miles")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(1.65, "meters"),
  2260. weight: math.unit(50, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/elijah/front.svg",
  2264. extra: 858 / 830,
  2265. bottom: 95.5 / 953.8559
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(1.65, "meters"),
  2270. weight: math.unit(50, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/elijah/back.svg",
  2274. extra: 895 / 850,
  2275. bottom: 5.3 / 897.956
  2276. }
  2277. },
  2278. frontNsfw: {
  2279. height: math.unit(1.65, "meters"),
  2280. weight: math.unit(50, "kg"),
  2281. name: "Front (NSFW)",
  2282. image: {
  2283. source: "./media/characters/elijah/front-nsfw.svg",
  2284. extra: 858 / 830,
  2285. bottom: 95.5 / 953.8559
  2286. }
  2287. },
  2288. backNsfw: {
  2289. height: math.unit(1.65, "meters"),
  2290. weight: math.unit(50, "kg"),
  2291. name: "Back (NSFW)",
  2292. image: {
  2293. source: "./media/characters/elijah/back-nsfw.svg",
  2294. extra: 895 / 850,
  2295. bottom: 5.3 / 897.956
  2296. }
  2297. },
  2298. dick: {
  2299. height: math.unit(1, "feet"),
  2300. name: "Dick",
  2301. image: {
  2302. source: "./media/characters/elijah/dick.svg"
  2303. }
  2304. },
  2305. beakOpen: {
  2306. height: math.unit(1.25, "feet"),
  2307. name: "Beak (Open)",
  2308. image: {
  2309. source: "./media/characters/elijah/beak-open.svg"
  2310. }
  2311. },
  2312. beakShut: {
  2313. height: math.unit(1.25, "feet"),
  2314. name: "Beak (Shut)",
  2315. image: {
  2316. source: "./media/characters/elijah/beak-shut.svg"
  2317. }
  2318. },
  2319. footFlexing: {
  2320. height: math.unit(1.61, "feet"),
  2321. name: "Foot (Flexing)",
  2322. image: {
  2323. source: "./media/characters/elijah/foot-flexing.svg"
  2324. }
  2325. },
  2326. footStepping: {
  2327. height: math.unit(1.44, "feet"),
  2328. name: "Foot (Stepping)",
  2329. image: {
  2330. source: "./media/characters/elijah/foot-stepping.svg"
  2331. }
  2332. },
  2333. plantigradeLeg: {
  2334. height: math.unit(2.34, "feet"),
  2335. name: "Plantigrade Leg",
  2336. image: {
  2337. source: "./media/characters/elijah/plantigrade-leg.svg"
  2338. }
  2339. },
  2340. plantigradeFootLeft: {
  2341. height: math.unit(0.9, "feet"),
  2342. name: "Plantigrade Foot (Left)",
  2343. image: {
  2344. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2345. }
  2346. },
  2347. plantigradeFootRight: {
  2348. height: math.unit(0.9, "feet"),
  2349. name: "Plantigrade Foot (Right)",
  2350. image: {
  2351. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2352. }
  2353. },
  2354. },
  2355. [
  2356. {
  2357. name: "Normal",
  2358. height: math.unit(1.65, "meters")
  2359. },
  2360. {
  2361. name: "Macro",
  2362. height: math.unit(55, "meters"),
  2363. default: true
  2364. },
  2365. {
  2366. name: "Macro+",
  2367. height: math.unit(105, "meters")
  2368. },
  2369. ]
  2370. ))
  2371. characterMakers.push(() => makeCharacter(
  2372. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2373. {
  2374. front: {
  2375. height: math.unit(11, "feet"),
  2376. weight: math.unit(320, "kg"),
  2377. name: "Front",
  2378. image: {
  2379. source: "./media/characters/rai/front.svg",
  2380. extra: 1802/1696,
  2381. bottom: 68/1870
  2382. }
  2383. },
  2384. frontDressed: {
  2385. height: math.unit(11, "feet"),
  2386. weight: math.unit(320, "kg"),
  2387. name: "Front (Dressed)",
  2388. image: {
  2389. source: "./media/characters/rai/front-dressed.svg",
  2390. extra: 1802/1696,
  2391. bottom: 68/1870
  2392. }
  2393. },
  2394. side: {
  2395. height: math.unit(11, "feet"),
  2396. weight: math.unit(320, "kg"),
  2397. name: "Side",
  2398. image: {
  2399. source: "./media/characters/rai/side.svg",
  2400. extra: 1789/1710,
  2401. bottom: 115/1904
  2402. }
  2403. },
  2404. back: {
  2405. height: math.unit(11, "feet"),
  2406. weight: math.unit(320, "kg"),
  2407. name: "Back",
  2408. image: {
  2409. source: "./media/characters/rai/back.svg",
  2410. extra: 1770/1707,
  2411. bottom: 28/1798
  2412. }
  2413. },
  2414. feral: {
  2415. height: math.unit(11, "feet"),
  2416. weight: math.unit(640, "kg"),
  2417. name: "Feral",
  2418. image: {
  2419. source: "./media/characters/rai/feral.svg",
  2420. extra: 1035/642,
  2421. bottom: 86/1121
  2422. }
  2423. },
  2424. dragon: {
  2425. height: math.unit(23, "feet"),
  2426. weight: math.unit(50000, "lb"),
  2427. name: "Dragon",
  2428. image: {
  2429. source: "./media/characters/rai/dragon.svg",
  2430. extra: 2498 / 2030,
  2431. bottom: 85.2 / 2584
  2432. }
  2433. },
  2434. maw: {
  2435. height: math.unit(6 / 3.81416, "feet"),
  2436. name: "Maw",
  2437. image: {
  2438. source: "./media/characters/rai/maw.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(11, "feet")
  2446. },
  2447. {
  2448. name: "Macro",
  2449. height: math.unit(302, "feet"),
  2450. default: true
  2451. },
  2452. ]
  2453. ))
  2454. characterMakers.push(() => makeCharacter(
  2455. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2456. {
  2457. frontDressed: {
  2458. height: math.unit(216, "feet"),
  2459. weight: math.unit(7000000, "lb"),
  2460. name: "Front (Dressed)",
  2461. image: {
  2462. source: "./media/characters/jazzy/front-dressed.svg",
  2463. extra: 2738 / 2651,
  2464. bottom: 41.8 / 2786
  2465. }
  2466. },
  2467. backDressed: {
  2468. height: math.unit(216, "feet"),
  2469. weight: math.unit(7000000, "lb"),
  2470. name: "Back (Dressed)",
  2471. image: {
  2472. source: "./media/characters/jazzy/back-dressed.svg",
  2473. extra: 2775 / 2673,
  2474. bottom: 36.8 / 2817
  2475. }
  2476. },
  2477. front: {
  2478. height: math.unit(216, "feet"),
  2479. weight: math.unit(7000000, "lb"),
  2480. name: "Front",
  2481. image: {
  2482. source: "./media/characters/jazzy/front.svg",
  2483. extra: 2738 / 2651,
  2484. bottom: 41.8 / 2786
  2485. }
  2486. },
  2487. back: {
  2488. height: math.unit(216, "feet"),
  2489. weight: math.unit(7000000, "lb"),
  2490. name: "Back",
  2491. image: {
  2492. source: "./media/characters/jazzy/back.svg",
  2493. extra: 2775 / 2673,
  2494. bottom: 36.8 / 2817
  2495. }
  2496. },
  2497. maw: {
  2498. height: math.unit(20, "feet"),
  2499. name: "Maw",
  2500. image: {
  2501. source: "./media/characters/jazzy/maw.svg"
  2502. }
  2503. },
  2504. paws: {
  2505. height: math.unit(27.5, "feet"),
  2506. name: "Paws",
  2507. image: {
  2508. source: "./media/characters/jazzy/paws.svg"
  2509. }
  2510. },
  2511. eye: {
  2512. height: math.unit(4.4, "feet"),
  2513. name: "Eye",
  2514. image: {
  2515. source: "./media/characters/jazzy/eye.svg"
  2516. }
  2517. },
  2518. droneOffense: {
  2519. height: math.unit(9.5, "inches"),
  2520. name: "Drone (Offense)",
  2521. image: {
  2522. source: "./media/characters/jazzy/drone-offense.svg"
  2523. }
  2524. },
  2525. droneRecon: {
  2526. height: math.unit(9.5, "inches"),
  2527. name: "Drone (Recon)",
  2528. image: {
  2529. source: "./media/characters/jazzy/drone-recon.svg"
  2530. }
  2531. },
  2532. droneDefense: {
  2533. height: math.unit(9.5, "inches"),
  2534. name: "Drone (Defense)",
  2535. image: {
  2536. source: "./media/characters/jazzy/drone-defense.svg"
  2537. }
  2538. },
  2539. },
  2540. [
  2541. {
  2542. name: "Macro",
  2543. height: math.unit(216, "feet"),
  2544. default: true
  2545. },
  2546. ]
  2547. ))
  2548. characterMakers.push(() => makeCharacter(
  2549. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2550. {
  2551. front: {
  2552. height: math.unit(9 + 6/12, "feet"),
  2553. weight: math.unit(700, "lb"),
  2554. name: "Front",
  2555. image: {
  2556. source: "./media/characters/flamm/front.svg",
  2557. extra: 1751/1632,
  2558. bottom: 46/1797
  2559. }
  2560. },
  2561. buff: {
  2562. height: math.unit(9 + 6/12, "feet"),
  2563. weight: math.unit(950, "lb"),
  2564. name: "Buff",
  2565. image: {
  2566. source: "./media/characters/flamm/buff.svg",
  2567. extra: 3018/2874,
  2568. bottom: 221/3239
  2569. }
  2570. },
  2571. },
  2572. [
  2573. {
  2574. name: "Normal",
  2575. height: math.unit(9.5, "feet")
  2576. },
  2577. {
  2578. name: "Macro",
  2579. height: math.unit(200, "feet"),
  2580. default: true
  2581. },
  2582. ]
  2583. ))
  2584. characterMakers.push(() => makeCharacter(
  2585. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2586. {
  2587. front: {
  2588. height: math.unit(5 + 3/12, "feet"),
  2589. weight: math.unit(60, "kg"),
  2590. name: "Front",
  2591. image: {
  2592. source: "./media/characters/zephiro/front.svg",
  2593. extra: 2309 / 2162,
  2594. bottom: 0.069
  2595. }
  2596. },
  2597. side: {
  2598. height: math.unit(5 + 3/12, "feet"),
  2599. weight: math.unit(60, "kg"),
  2600. name: "Side",
  2601. image: {
  2602. source: "./media/characters/zephiro/side.svg",
  2603. extra: 2403 / 2279,
  2604. bottom: 0.015
  2605. }
  2606. },
  2607. back: {
  2608. height: math.unit(5 + 3/12, "feet"),
  2609. weight: math.unit(60, "kg"),
  2610. name: "Back",
  2611. image: {
  2612. source: "./media/characters/zephiro/back.svg",
  2613. extra: 2373 / 2244,
  2614. bottom: 0.013
  2615. }
  2616. },
  2617. hand: {
  2618. height: math.unit(0.68, "feet"),
  2619. name: "Hand",
  2620. image: {
  2621. source: "./media/characters/zephiro/hand.svg"
  2622. }
  2623. },
  2624. paw: {
  2625. height: math.unit(1, "feet"),
  2626. name: "Paw",
  2627. image: {
  2628. source: "./media/characters/zephiro/paw.svg"
  2629. }
  2630. },
  2631. beans: {
  2632. height: math.unit(0.93, "feet"),
  2633. name: "Beans",
  2634. image: {
  2635. source: "./media/characters/zephiro/beans.svg"
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Micro",
  2642. height: math.unit(3, "inches")
  2643. },
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(5 + 3 / 12, "feet"),
  2647. default: true
  2648. },
  2649. {
  2650. name: "Macro",
  2651. height: math.unit(118, "feet")
  2652. },
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2657. {
  2658. front: {
  2659. height: math.unit(5, "feet"),
  2660. weight: math.unit(90, "kg"),
  2661. name: "Front",
  2662. image: {
  2663. source: "./media/characters/fory/front.svg",
  2664. extra: 2862 / 2674,
  2665. bottom: 180 / 3043.8
  2666. }
  2667. },
  2668. back: {
  2669. height: math.unit(5, "feet"),
  2670. weight: math.unit(90, "kg"),
  2671. name: "Back",
  2672. image: {
  2673. source: "./media/characters/fory/back.svg",
  2674. extra: 2962 / 2791,
  2675. bottom: 106 / 3071.8
  2676. }
  2677. },
  2678. foot: {
  2679. height: math.unit(2.14, "feet"),
  2680. name: "Foot",
  2681. image: {
  2682. source: "./media/characters/fory/foot.svg"
  2683. }
  2684. },
  2685. },
  2686. [
  2687. {
  2688. name: "Normal",
  2689. height: math.unit(5, "feet")
  2690. },
  2691. {
  2692. name: "Macro",
  2693. height: math.unit(50, "feet"),
  2694. default: true
  2695. },
  2696. {
  2697. name: "Megamacro",
  2698. height: math.unit(10, "miles")
  2699. },
  2700. {
  2701. name: "Gigamacro",
  2702. height: math.unit(5, "earths")
  2703. },
  2704. ]
  2705. ))
  2706. characterMakers.push(() => makeCharacter(
  2707. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2708. {
  2709. front: {
  2710. height: math.unit(7, "feet"),
  2711. weight: math.unit(90, "kg"),
  2712. name: "Front",
  2713. image: {
  2714. source: "./media/characters/kurrikage/front.svg",
  2715. extra: 1,
  2716. bottom: 0.035
  2717. }
  2718. },
  2719. back: {
  2720. height: math.unit(7, "feet"),
  2721. weight: math.unit(90, "lb"),
  2722. name: "Back",
  2723. image: {
  2724. source: "./media/characters/kurrikage/back.svg"
  2725. }
  2726. },
  2727. paw: {
  2728. height: math.unit(1.5, "feet"),
  2729. name: "Paw",
  2730. image: {
  2731. source: "./media/characters/kurrikage/paw.svg"
  2732. }
  2733. },
  2734. staff: {
  2735. height: math.unit(6.7, "feet"),
  2736. name: "Staff",
  2737. image: {
  2738. source: "./media/characters/kurrikage/staff.svg"
  2739. }
  2740. },
  2741. peek: {
  2742. height: math.unit(1.05, "feet"),
  2743. name: "Peeking",
  2744. image: {
  2745. source: "./media/characters/kurrikage/peek.svg",
  2746. bottom: 0.08
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(12, "feet"),
  2754. default: true
  2755. },
  2756. {
  2757. name: "Big",
  2758. height: math.unit(20, "feet")
  2759. },
  2760. {
  2761. name: "Macro",
  2762. height: math.unit(500, "feet")
  2763. },
  2764. {
  2765. name: "Megamacro",
  2766. height: math.unit(20, "miles")
  2767. },
  2768. ]
  2769. ))
  2770. characterMakers.push(() => makeCharacter(
  2771. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2772. {
  2773. front: {
  2774. height: math.unit(6, "feet"),
  2775. weight: math.unit(75, "kg"),
  2776. name: "Front",
  2777. image: {
  2778. source: "./media/characters/shingo/front.svg",
  2779. extra: 1900/1825,
  2780. bottom: 82/1982
  2781. }
  2782. },
  2783. side: {
  2784. height: math.unit(6, "feet"),
  2785. weight: math.unit(75, "kg"),
  2786. name: "Side",
  2787. image: {
  2788. source: "./media/characters/shingo/side.svg",
  2789. extra: 1930/1865,
  2790. bottom: 16/1946
  2791. }
  2792. },
  2793. back: {
  2794. height: math.unit(6, "feet"),
  2795. weight: math.unit(75, "kg"),
  2796. name: "Back",
  2797. image: {
  2798. source: "./media/characters/shingo/back.svg",
  2799. extra: 1922/1852,
  2800. bottom: 16/1938
  2801. }
  2802. },
  2803. frontDressed: {
  2804. height: math.unit(6, "feet"),
  2805. weight: math.unit(150, "lb"),
  2806. name: "Front-dressed",
  2807. image: {
  2808. source: "./media/characters/shingo/front-dressed.svg",
  2809. extra: 1900/1825,
  2810. bottom: 82/1982
  2811. }
  2812. },
  2813. paw: {
  2814. height: math.unit(1.29, "feet"),
  2815. name: "Paw",
  2816. image: {
  2817. source: "./media/characters/shingo/paw.svg"
  2818. }
  2819. },
  2820. hand: {
  2821. height: math.unit(1.07, "feet"),
  2822. name: "Hand",
  2823. image: {
  2824. source: "./media/characters/shingo/hand.svg"
  2825. }
  2826. },
  2827. frontAlt: {
  2828. height: math.unit(6, "feet"),
  2829. weight: math.unit(75, "kg"),
  2830. name: "Front (Alt)",
  2831. image: {
  2832. source: "./media/characters/shingo/front-alt.svg",
  2833. extra: 3511 / 3338,
  2834. bottom: 0.005
  2835. }
  2836. },
  2837. frontAlt2: {
  2838. height: math.unit(6, "feet"),
  2839. weight: math.unit(75, "kg"),
  2840. name: "Front (Alt 2)",
  2841. image: {
  2842. source: "./media/characters/shingo/front-alt-2.svg",
  2843. extra: 706/681,
  2844. bottom: 11/717
  2845. }
  2846. },
  2847. pawAlt: {
  2848. height: math.unit(1, "feet"),
  2849. name: "Paw (Alt)",
  2850. image: {
  2851. source: "./media/characters/shingo/paw-alt.svg"
  2852. }
  2853. },
  2854. },
  2855. [
  2856. {
  2857. name: "Micro",
  2858. height: math.unit(4, "inches")
  2859. },
  2860. {
  2861. name: "Normal",
  2862. height: math.unit(6, "feet"),
  2863. default: true
  2864. },
  2865. {
  2866. name: "Macro",
  2867. height: math.unit(108, "feet")
  2868. },
  2869. {
  2870. name: "Macro+",
  2871. height: math.unit(1500, "feet")
  2872. },
  2873. ]
  2874. ))
  2875. characterMakers.push(() => makeCharacter(
  2876. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2877. {
  2878. side: {
  2879. height: math.unit(6, "feet"),
  2880. weight: math.unit(75, "kg"),
  2881. name: "Side",
  2882. image: {
  2883. source: "./media/characters/aigey/side.svg"
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Macro",
  2890. height: math.unit(200, "feet"),
  2891. default: true
  2892. },
  2893. {
  2894. name: "Megamacro",
  2895. height: math.unit(100, "miles")
  2896. },
  2897. ]
  2898. )
  2899. )
  2900. characterMakers.push(() => makeCharacter(
  2901. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2902. {
  2903. front: {
  2904. height: math.unit(5 + 5 / 12, "feet"),
  2905. weight: math.unit(75, "kg"),
  2906. name: "Front",
  2907. image: {
  2908. source: "./media/characters/natasha/front.svg",
  2909. extra: 859 / 824,
  2910. bottom: 23 / 879.6
  2911. }
  2912. },
  2913. frontNsfw: {
  2914. height: math.unit(5 + 5 / 12, "feet"),
  2915. weight: math.unit(75, "kg"),
  2916. name: "Front (NSFW)",
  2917. image: {
  2918. source: "./media/characters/natasha/front-nsfw.svg",
  2919. extra: 859 / 824,
  2920. bottom: 23 / 879.6
  2921. }
  2922. },
  2923. frontErect: {
  2924. height: math.unit(5 + 5 / 12, "feet"),
  2925. weight: math.unit(75, "kg"),
  2926. name: "Front (Erect)",
  2927. image: {
  2928. source: "./media/characters/natasha/front-erect.svg",
  2929. extra: 859 / 824,
  2930. bottom: 23 / 879.6
  2931. }
  2932. },
  2933. back: {
  2934. height: math.unit(5 + 5 / 12, "feet"),
  2935. weight: math.unit(75, "kg"),
  2936. name: "Back",
  2937. image: {
  2938. source: "./media/characters/natasha/back.svg",
  2939. extra: 887.9 / 852.6,
  2940. bottom: 9.7 / 896.4
  2941. }
  2942. },
  2943. backAlt: {
  2944. height: math.unit(5 + 5 / 12, "feet"),
  2945. weight: math.unit(75, "kg"),
  2946. name: "Back (Alt)",
  2947. image: {
  2948. source: "./media/characters/natasha/back-alt.svg",
  2949. extra: 1236.7 / 1192,
  2950. bottom: 22.3 / 1258.2
  2951. }
  2952. },
  2953. dick: {
  2954. height: math.unit(1.772, "feet"),
  2955. name: "Dick",
  2956. image: {
  2957. source: "./media/characters/natasha/dick.svg"
  2958. }
  2959. },
  2960. paw: {
  2961. height: math.unit(0.250, "meters"),
  2962. name: "Paw",
  2963. image: {
  2964. source: "./media/characters/natasha/paw.svg"
  2965. }
  2966. },
  2967. },
  2968. [
  2969. {
  2970. name: "Normal",
  2971. height: math.unit(5 + 5 / 12, "feet")
  2972. },
  2973. {
  2974. name: "Large",
  2975. height: math.unit(12, "feet")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(100, "feet"),
  2980. default: true
  2981. },
  2982. {
  2983. name: "Macro+",
  2984. height: math.unit(260, "feet")
  2985. },
  2986. {
  2987. name: "Macro++",
  2988. height: math.unit(1, "mile")
  2989. },
  2990. ]
  2991. ))
  2992. characterMakers.push(() => makeCharacter(
  2993. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2994. {
  2995. front: {
  2996. height: math.unit(6, "feet"),
  2997. weight: math.unit(75, "kg"),
  2998. name: "Front",
  2999. image: {
  3000. source: "./media/characters/malik/front.svg"
  3001. }
  3002. },
  3003. side: {
  3004. height: math.unit(6, "feet"),
  3005. weight: math.unit(75, "kg"),
  3006. name: "Side",
  3007. image: {
  3008. source: "./media/characters/malik/side.svg",
  3009. extra: 1.1539
  3010. }
  3011. },
  3012. back: {
  3013. height: math.unit(6, "feet"),
  3014. weight: math.unit(75, "kg"),
  3015. name: "Back",
  3016. image: {
  3017. source: "./media/characters/malik/back.svg"
  3018. }
  3019. },
  3020. },
  3021. [
  3022. {
  3023. name: "Macro",
  3024. height: math.unit(156, "feet"),
  3025. default: true
  3026. },
  3027. {
  3028. name: "Macro+",
  3029. height: math.unit(1188, "feet")
  3030. },
  3031. ]
  3032. ))
  3033. characterMakers.push(() => makeCharacter(
  3034. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3035. {
  3036. front: {
  3037. height: math.unit(6, "feet"),
  3038. weight: math.unit(75, "kg"),
  3039. name: "Front",
  3040. image: {
  3041. source: "./media/characters/sefer/front.svg",
  3042. extra: 848 / 659,
  3043. bottom: 28.3 / 876.442
  3044. }
  3045. },
  3046. back: {
  3047. height: math.unit(6, "feet"),
  3048. weight: math.unit(75, "kg"),
  3049. name: "Back",
  3050. image: {
  3051. source: "./media/characters/sefer/back.svg",
  3052. extra: 864 / 695,
  3053. bottom: 10 / 871
  3054. }
  3055. },
  3056. frontDressed: {
  3057. height: math.unit(6, "feet"),
  3058. weight: math.unit(75, "kg"),
  3059. name: "Front (Dressed)",
  3060. image: {
  3061. source: "./media/characters/sefer/front-dressed.svg",
  3062. extra: 839 / 653,
  3063. bottom: 37.6 / 878
  3064. }
  3065. },
  3066. },
  3067. [
  3068. {
  3069. name: "Normal",
  3070. height: math.unit(6, "feet"),
  3071. default: true
  3072. },
  3073. ]
  3074. ))
  3075. characterMakers.push(() => makeCharacter(
  3076. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3077. {
  3078. body: {
  3079. height: math.unit(2.2428, "meter"),
  3080. weight: math.unit(124.738, "kg"),
  3081. name: "Body",
  3082. image: {
  3083. extra: 1225 / 1050,
  3084. source: "./media/characters/north/front.svg"
  3085. }
  3086. }
  3087. },
  3088. [
  3089. {
  3090. name: "Micro",
  3091. height: math.unit(4, "inches")
  3092. },
  3093. {
  3094. name: "Macro",
  3095. height: math.unit(63, "meters")
  3096. },
  3097. {
  3098. name: "Megamacro",
  3099. height: math.unit(101, "miles"),
  3100. default: true
  3101. }
  3102. ]
  3103. ))
  3104. characterMakers.push(() => makeCharacter(
  3105. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3106. {
  3107. angled: {
  3108. height: math.unit(4, "meter"),
  3109. weight: math.unit(150, "kg"),
  3110. name: "Angled",
  3111. image: {
  3112. source: "./media/characters/talan/angled-sfw.svg",
  3113. bottom: 29 / 3734
  3114. }
  3115. },
  3116. angledNsfw: {
  3117. height: math.unit(4, "meter"),
  3118. weight: math.unit(150, "kg"),
  3119. name: "Angled (NSFW)",
  3120. image: {
  3121. source: "./media/characters/talan/angled-nsfw.svg",
  3122. bottom: 29 / 3734
  3123. }
  3124. },
  3125. frontNsfw: {
  3126. height: math.unit(4, "meter"),
  3127. weight: math.unit(150, "kg"),
  3128. name: "Front (NSFW)",
  3129. image: {
  3130. source: "./media/characters/talan/front-nsfw.svg",
  3131. bottom: 29 / 3734
  3132. }
  3133. },
  3134. sideNsfw: {
  3135. height: math.unit(4, "meter"),
  3136. weight: math.unit(150, "kg"),
  3137. name: "Side (NSFW)",
  3138. image: {
  3139. source: "./media/characters/talan/side-nsfw.svg",
  3140. bottom: 29 / 3734
  3141. }
  3142. },
  3143. back: {
  3144. height: math.unit(4, "meter"),
  3145. weight: math.unit(150, "kg"),
  3146. name: "Back",
  3147. image: {
  3148. source: "./media/characters/talan/back.svg"
  3149. }
  3150. },
  3151. dickBottom: {
  3152. height: math.unit(0.621, "meter"),
  3153. name: "Dick (Bottom)",
  3154. image: {
  3155. source: "./media/characters/talan/dick-bottom.svg"
  3156. }
  3157. },
  3158. dickTop: {
  3159. height: math.unit(0.621, "meter"),
  3160. name: "Dick (Top)",
  3161. image: {
  3162. source: "./media/characters/talan/dick-top.svg"
  3163. }
  3164. },
  3165. dickSide: {
  3166. height: math.unit(0.305, "meter"),
  3167. name: "Dick (Side)",
  3168. image: {
  3169. source: "./media/characters/talan/dick-side.svg"
  3170. }
  3171. },
  3172. dickFront: {
  3173. height: math.unit(0.305, "meter"),
  3174. name: "Dick (Front)",
  3175. image: {
  3176. source: "./media/characters/talan/dick-front.svg"
  3177. }
  3178. },
  3179. },
  3180. [
  3181. {
  3182. name: "Normal",
  3183. height: math.unit(4, "meters")
  3184. },
  3185. {
  3186. name: "Macro",
  3187. height: math.unit(100, "meters")
  3188. },
  3189. {
  3190. name: "Megamacro",
  3191. height: math.unit(2, "miles"),
  3192. default: true
  3193. },
  3194. {
  3195. name: "Gigamacro",
  3196. height: math.unit(5000, "miles")
  3197. },
  3198. {
  3199. name: "Teramacro",
  3200. height: math.unit(100, "parsecs")
  3201. }
  3202. ]
  3203. ))
  3204. characterMakers.push(() => makeCharacter(
  3205. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3206. {
  3207. front: {
  3208. height: math.unit(2, "meter"),
  3209. weight: math.unit(90, "kg"),
  3210. name: "Front",
  3211. image: {
  3212. source: "./media/characters/gael'rathus/front.svg"
  3213. }
  3214. },
  3215. frontAlt: {
  3216. height: math.unit(2, "meter"),
  3217. weight: math.unit(90, "kg"),
  3218. name: "Front (alt)",
  3219. image: {
  3220. source: "./media/characters/gael'rathus/front-alt.svg"
  3221. }
  3222. },
  3223. frontAlt2: {
  3224. height: math.unit(2, "meter"),
  3225. weight: math.unit(90, "kg"),
  3226. name: "Front (alt 2)",
  3227. image: {
  3228. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3229. }
  3230. }
  3231. },
  3232. [
  3233. {
  3234. name: "Normal",
  3235. height: math.unit(9, "feet"),
  3236. default: true
  3237. },
  3238. {
  3239. name: "Large",
  3240. height: math.unit(25, "feet")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(0.25, "miles")
  3245. },
  3246. {
  3247. name: "Megamacro",
  3248. height: math.unit(10, "miles")
  3249. }
  3250. ]
  3251. ))
  3252. characterMakers.push(() => makeCharacter(
  3253. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3254. {
  3255. side: {
  3256. height: math.unit(2, "meter"),
  3257. weight: math.unit(140, "kg"),
  3258. name: "Side",
  3259. image: {
  3260. source: "./media/characters/sosha/side.svg",
  3261. bottom: 0.042
  3262. }
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(12, "feet"),
  3269. default: true
  3270. }
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3275. {
  3276. side: {
  3277. height: math.unit(5 + 5 / 12, "feet"),
  3278. weight: math.unit(170, "kg"),
  3279. name: "Side",
  3280. image: {
  3281. source: "./media/characters/runnola/side.svg",
  3282. extra: 741 / 448,
  3283. bottom: 0.05
  3284. }
  3285. },
  3286. },
  3287. [
  3288. {
  3289. name: "Small",
  3290. height: math.unit(3, "feet")
  3291. },
  3292. {
  3293. name: "Normal",
  3294. height: math.unit(5 + 5 / 12, "feet"),
  3295. default: true
  3296. },
  3297. {
  3298. name: "Big",
  3299. height: math.unit(10, "feet")
  3300. },
  3301. ]
  3302. ))
  3303. characterMakers.push(() => makeCharacter(
  3304. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3305. {
  3306. front: {
  3307. height: math.unit(2, "meter"),
  3308. weight: math.unit(50, "kg"),
  3309. name: "Front",
  3310. image: {
  3311. source: "./media/characters/kurribird/front.svg",
  3312. bottom: 0.015
  3313. }
  3314. },
  3315. frontAlt: {
  3316. height: math.unit(1.5, "meter"),
  3317. weight: math.unit(50, "kg"),
  3318. name: "Front (Alt)",
  3319. image: {
  3320. source: "./media/characters/kurribird/front-alt.svg",
  3321. extra: 1.45
  3322. }
  3323. },
  3324. },
  3325. [
  3326. {
  3327. name: "Normal",
  3328. height: math.unit(7, "feet")
  3329. },
  3330. {
  3331. name: "Big",
  3332. height: math.unit(12, "feet"),
  3333. default: true
  3334. },
  3335. {
  3336. name: "Macro",
  3337. height: math.unit(1500, "feet")
  3338. },
  3339. {
  3340. name: "Megamacro",
  3341. height: math.unit(2, "miles")
  3342. }
  3343. ]
  3344. ))
  3345. characterMakers.push(() => makeCharacter(
  3346. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3347. {
  3348. front: {
  3349. height: math.unit(2, "meter"),
  3350. weight: math.unit(80, "kg"),
  3351. name: "Front",
  3352. image: {
  3353. source: "./media/characters/elbial/front.svg",
  3354. extra: 1643 / 1556,
  3355. bottom: 60.2 / 1696
  3356. }
  3357. },
  3358. side: {
  3359. height: math.unit(2, "meter"),
  3360. weight: math.unit(80, "kg"),
  3361. name: "Side",
  3362. image: {
  3363. source: "./media/characters/elbial/side.svg",
  3364. extra: 1630 / 1565,
  3365. bottom: 71.5 / 1697
  3366. }
  3367. },
  3368. back: {
  3369. height: math.unit(2, "meter"),
  3370. weight: math.unit(80, "kg"),
  3371. name: "Back",
  3372. image: {
  3373. source: "./media/characters/elbial/back.svg",
  3374. extra: 1668 / 1595,
  3375. bottom: 5.6 / 1672
  3376. }
  3377. },
  3378. frontDressed: {
  3379. height: math.unit(2, "meter"),
  3380. weight: math.unit(80, "kg"),
  3381. name: "Front (Dressed)",
  3382. image: {
  3383. source: "./media/characters/elbial/front-dressed.svg",
  3384. extra: 1653 / 1584,
  3385. bottom: 57 / 1708
  3386. }
  3387. },
  3388. genitals: {
  3389. height: math.unit(2 / 3.367, "meter"),
  3390. name: "Genitals",
  3391. image: {
  3392. source: "./media/characters/elbial/genitals.svg"
  3393. }
  3394. },
  3395. },
  3396. [
  3397. {
  3398. name: "Large",
  3399. height: math.unit(100, "feet")
  3400. },
  3401. {
  3402. name: "Macro",
  3403. height: math.unit(500, "feet"),
  3404. default: true
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(10, "miles")
  3409. },
  3410. {
  3411. name: "Gigamacro",
  3412. height: math.unit(25000, "miles")
  3413. },
  3414. {
  3415. name: "Full-Size",
  3416. height: math.unit(8000000, "gigaparsecs")
  3417. }
  3418. ]
  3419. ))
  3420. characterMakers.push(() => makeCharacter(
  3421. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3422. {
  3423. front: {
  3424. height: math.unit(2, "meter"),
  3425. weight: math.unit(60, "kg"),
  3426. name: "Front",
  3427. image: {
  3428. source: "./media/characters/noah/front.svg"
  3429. }
  3430. },
  3431. talons: {
  3432. height: math.unit(0.315, "meter"),
  3433. name: "Talons",
  3434. image: {
  3435. source: "./media/characters/noah/talons.svg"
  3436. }
  3437. }
  3438. },
  3439. [
  3440. {
  3441. name: "Large",
  3442. height: math.unit(50, "feet")
  3443. },
  3444. {
  3445. name: "Macro",
  3446. height: math.unit(750, "feet"),
  3447. default: true
  3448. },
  3449. {
  3450. name: "Megamacro",
  3451. height: math.unit(50, "miles")
  3452. },
  3453. {
  3454. name: "Gigamacro",
  3455. height: math.unit(100000, "miles")
  3456. },
  3457. {
  3458. name: "Full-Size",
  3459. height: math.unit(3000000000, "miles")
  3460. }
  3461. ]
  3462. ))
  3463. characterMakers.push(() => makeCharacter(
  3464. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3465. {
  3466. front: {
  3467. height: math.unit(2, "meter"),
  3468. weight: math.unit(80, "kg"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/natalya/front.svg"
  3472. }
  3473. },
  3474. back: {
  3475. height: math.unit(2, "meter"),
  3476. weight: math.unit(80, "kg"),
  3477. name: "Back",
  3478. image: {
  3479. source: "./media/characters/natalya/back.svg"
  3480. }
  3481. }
  3482. },
  3483. [
  3484. {
  3485. name: "Normal",
  3486. height: math.unit(150, "feet"),
  3487. default: true
  3488. },
  3489. {
  3490. name: "Megamacro",
  3491. height: math.unit(5, "miles")
  3492. },
  3493. {
  3494. name: "Full-Size",
  3495. height: math.unit(600, "kiloparsecs")
  3496. }
  3497. ]
  3498. ))
  3499. characterMakers.push(() => makeCharacter(
  3500. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3501. {
  3502. front: {
  3503. height: math.unit(2, "meter"),
  3504. weight: math.unit(50, "kg"),
  3505. name: "Front",
  3506. image: {
  3507. source: "./media/characters/erestrebah/front.svg",
  3508. extra: 208 / 193,
  3509. bottom: 0.055
  3510. }
  3511. },
  3512. back: {
  3513. height: math.unit(2, "meter"),
  3514. weight: math.unit(50, "kg"),
  3515. name: "Back",
  3516. image: {
  3517. source: "./media/characters/erestrebah/back.svg",
  3518. extra: 1.3
  3519. }
  3520. }
  3521. },
  3522. [
  3523. {
  3524. name: "Normal",
  3525. height: math.unit(10, "feet")
  3526. },
  3527. {
  3528. name: "Large",
  3529. height: math.unit(50, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(300, "feet")
  3535. },
  3536. {
  3537. name: "Macro+",
  3538. height: math.unit(750, "feet")
  3539. },
  3540. {
  3541. name: "Megamacro",
  3542. height: math.unit(3, "miles")
  3543. }
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(2, "meter"),
  3551. weight: math.unit(80, "kg"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/jennifer/front.svg",
  3555. bottom: 0.11,
  3556. extra: 1.16
  3557. }
  3558. },
  3559. frontAlt: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(80, "kg"),
  3562. name: "Front (Alt)",
  3563. image: {
  3564. source: "./media/characters/jennifer/front-alt.svg"
  3565. }
  3566. }
  3567. },
  3568. [
  3569. {
  3570. name: "Canon Height",
  3571. height: math.unit(120, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Macro+",
  3576. height: math.unit(300, "feet")
  3577. },
  3578. {
  3579. name: "Megamacro",
  3580. height: math.unit(20000, "feet")
  3581. }
  3582. ]
  3583. ))
  3584. characterMakers.push(() => makeCharacter(
  3585. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3586. {
  3587. front: {
  3588. height: math.unit(2, "meter"),
  3589. weight: math.unit(50, "kg"),
  3590. name: "Front",
  3591. image: {
  3592. source: "./media/characters/kalista/front.svg",
  3593. extra: 1947 / 1700,
  3594. bottom: 76.6 / 1412.98
  3595. }
  3596. },
  3597. back: {
  3598. height: math.unit(2, "meter"),
  3599. weight: math.unit(50, "kg"),
  3600. name: "Back",
  3601. image: {
  3602. source: "./media/characters/kalista/back.svg",
  3603. extra: 1366 / 1156,
  3604. bottom: 33.9 / 1362.78
  3605. }
  3606. }
  3607. },
  3608. [
  3609. {
  3610. name: "Uncomfortably Small",
  3611. height: math.unit(10, "feet")
  3612. },
  3613. {
  3614. name: "Small",
  3615. height: math.unit(30, "feet")
  3616. },
  3617. {
  3618. name: "Macro",
  3619. height: math.unit(100, "feet"),
  3620. default: true
  3621. },
  3622. {
  3623. name: "Macro+",
  3624. height: math.unit(2000, "feet")
  3625. },
  3626. {
  3627. name: "True Form",
  3628. height: math.unit(8924, "miles")
  3629. }
  3630. ]
  3631. ))
  3632. characterMakers.push(() => makeCharacter(
  3633. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3634. {
  3635. front: {
  3636. height: math.unit(2, "meter"),
  3637. weight: math.unit(120, "kg"),
  3638. name: "Front",
  3639. image: {
  3640. source: "./media/characters/ggv/front.svg"
  3641. }
  3642. },
  3643. side: {
  3644. height: math.unit(2, "meter"),
  3645. weight: math.unit(120, "kg"),
  3646. name: "Side",
  3647. image: {
  3648. source: "./media/characters/ggv/side.svg"
  3649. }
  3650. }
  3651. },
  3652. [
  3653. {
  3654. name: "Extremely Puny",
  3655. height: math.unit(9 + 5 / 12, "feet")
  3656. },
  3657. {
  3658. name: "Horribly Small",
  3659. height: math.unit(47.7, "miles"),
  3660. default: true
  3661. },
  3662. {
  3663. name: "Reasonably Sized",
  3664. height: math.unit(25000, "parsecs")
  3665. },
  3666. {
  3667. name: "Slightly Uncompressed",
  3668. height: math.unit(7.77e31, "parsecs")
  3669. },
  3670. {
  3671. name: "Omniversal",
  3672. height: math.unit(1e300, "meters")
  3673. },
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(2, "meter"),
  3681. weight: math.unit(75, "lb"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/napalm/front.svg"
  3685. }
  3686. },
  3687. back: {
  3688. height: math.unit(2, "meter"),
  3689. weight: math.unit(75, "lb"),
  3690. name: "Back",
  3691. image: {
  3692. source: "./media/characters/napalm/back.svg"
  3693. }
  3694. }
  3695. },
  3696. [
  3697. {
  3698. name: "Standard",
  3699. height: math.unit(55, "feet"),
  3700. default: true
  3701. }
  3702. ]
  3703. ))
  3704. characterMakers.push(() => makeCharacter(
  3705. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3706. {
  3707. front: {
  3708. height: math.unit(7 + 5 / 6, "feet"),
  3709. weight: math.unit(325, "lb"),
  3710. name: "Front",
  3711. image: {
  3712. source: "./media/characters/asana/front.svg",
  3713. extra: 1133 / 1060,
  3714. bottom: 15.2 / 1148.6
  3715. }
  3716. },
  3717. back: {
  3718. height: math.unit(7 + 5 / 6, "feet"),
  3719. weight: math.unit(325, "lb"),
  3720. name: "Back",
  3721. image: {
  3722. source: "./media/characters/asana/back.svg",
  3723. extra: 1114 / 1043,
  3724. bottom: 5 / 1120
  3725. }
  3726. },
  3727. dressedDark: {
  3728. height: math.unit(7 + 5 / 6, "feet"),
  3729. weight: math.unit(325, "lb"),
  3730. name: "Dressed (Dark)",
  3731. image: {
  3732. source: "./media/characters/asana/dressed-dark.svg",
  3733. extra: 1133 / 1060,
  3734. bottom: 15.2 / 1148.6
  3735. }
  3736. },
  3737. dressedLight: {
  3738. height: math.unit(7 + 5 / 6, "feet"),
  3739. weight: math.unit(325, "lb"),
  3740. name: "Dressed (Light)",
  3741. image: {
  3742. source: "./media/characters/asana/dressed-light.svg",
  3743. extra: 1133 / 1060,
  3744. bottom: 15.2 / 1148.6
  3745. }
  3746. },
  3747. },
  3748. [
  3749. {
  3750. name: "Standard",
  3751. height: math.unit(7 + 5 / 6, "feet"),
  3752. default: true
  3753. },
  3754. {
  3755. name: "Large",
  3756. height: math.unit(10, "meters")
  3757. },
  3758. {
  3759. name: "Macro",
  3760. height: math.unit(2500, "meters")
  3761. },
  3762. {
  3763. name: "Megamacro",
  3764. height: math.unit(5e6, "meters")
  3765. },
  3766. {
  3767. name: "Examacro",
  3768. height: math.unit(5e12, "lightyears")
  3769. },
  3770. {
  3771. name: "Max Size",
  3772. height: math.unit(1e31, "lightyears")
  3773. }
  3774. ]
  3775. ))
  3776. characterMakers.push(() => makeCharacter(
  3777. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3778. {
  3779. front: {
  3780. height: math.unit(2, "meter"),
  3781. weight: math.unit(60, "kg"),
  3782. name: "Front",
  3783. image: {
  3784. source: "./media/characters/ebony/front.svg",
  3785. bottom: 0.03,
  3786. extra: 1045 / 810 + 0.03
  3787. }
  3788. },
  3789. side: {
  3790. height: math.unit(2, "meter"),
  3791. weight: math.unit(60, "kg"),
  3792. name: "Side",
  3793. image: {
  3794. source: "./media/characters/ebony/side.svg",
  3795. bottom: 0.03,
  3796. extra: 1045 / 810 + 0.03
  3797. }
  3798. },
  3799. back: {
  3800. height: math.unit(2, "meter"),
  3801. weight: math.unit(60, "kg"),
  3802. name: "Back",
  3803. image: {
  3804. source: "./media/characters/ebony/back.svg",
  3805. bottom: 0.01,
  3806. extra: 1045 / 810 + 0.01
  3807. }
  3808. },
  3809. },
  3810. [
  3811. // TODO check why I did this lol
  3812. {
  3813. name: "Standard",
  3814. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Macro",
  3819. height: math.unit(200, "feet")
  3820. },
  3821. {
  3822. name: "Gigamacro",
  3823. height: math.unit(13000, "km")
  3824. }
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3829. {
  3830. front: {
  3831. height: math.unit(6, "feet"),
  3832. weight: math.unit(175, "lb"),
  3833. name: "Front",
  3834. image: {
  3835. source: "./media/characters/mountain/front.svg",
  3836. extra: 972 / 955,
  3837. bottom: 64 / 1036.6
  3838. }
  3839. },
  3840. back: {
  3841. height: math.unit(6, "feet"),
  3842. weight: math.unit(175, "lb"),
  3843. name: "Back",
  3844. image: {
  3845. source: "./media/characters/mountain/back.svg",
  3846. extra: 970 / 950,
  3847. bottom: 28.25 / 999
  3848. }
  3849. },
  3850. },
  3851. [
  3852. {
  3853. name: "Large",
  3854. height: math.unit(20, "meters")
  3855. },
  3856. {
  3857. name: "Macro",
  3858. height: math.unit(300, "meters")
  3859. },
  3860. {
  3861. name: "Gigamacro",
  3862. height: math.unit(10000, "km"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Examacro",
  3867. height: math.unit(10e9, "lightyears")
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(8, "feet"),
  3876. weight: math.unit(500, "lb"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/rick/front.svg"
  3880. }
  3881. }
  3882. },
  3883. [
  3884. {
  3885. name: "Normal",
  3886. height: math.unit(8, "feet"),
  3887. default: true
  3888. },
  3889. {
  3890. name: "Macro",
  3891. height: math.unit(5, "km")
  3892. }
  3893. ]
  3894. ))
  3895. characterMakers.push(() => makeCharacter(
  3896. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3897. {
  3898. front: {
  3899. height: math.unit(8, "feet"),
  3900. weight: math.unit(120, "lb"),
  3901. name: "Front",
  3902. image: {
  3903. source: "./media/characters/ona/front.svg"
  3904. }
  3905. },
  3906. frontAlt: {
  3907. height: math.unit(8, "feet"),
  3908. weight: math.unit(120, "lb"),
  3909. name: "Front (Alt)",
  3910. image: {
  3911. source: "./media/characters/ona/front-alt.svg"
  3912. }
  3913. },
  3914. back: {
  3915. height: math.unit(8, "feet"),
  3916. weight: math.unit(120, "lb"),
  3917. name: "Back",
  3918. image: {
  3919. source: "./media/characters/ona/back.svg"
  3920. }
  3921. },
  3922. foot: {
  3923. height: math.unit(1.1, "feet"),
  3924. name: "Foot",
  3925. image: {
  3926. source: "./media/characters/ona/foot.svg"
  3927. }
  3928. }
  3929. },
  3930. [
  3931. {
  3932. name: "Megamacro",
  3933. height: math.unit(70, "km"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Gigamacro",
  3938. height: math.unit(681818, "miles")
  3939. },
  3940. {
  3941. name: "Examacro",
  3942. height: math.unit(3800000, "lightyears")
  3943. },
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(12, "feet"),
  3951. weight: math.unit(3000, "lb"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/mech/front.svg",
  3955. extra: 2900 / 2770,
  3956. bottom: 110 / 3010
  3957. }
  3958. },
  3959. back: {
  3960. height: math.unit(12, "feet"),
  3961. weight: math.unit(3000, "lb"),
  3962. name: "Back",
  3963. image: {
  3964. source: "./media/characters/mech/back.svg",
  3965. extra: 3011 / 2890,
  3966. bottom: 94 / 3105
  3967. }
  3968. },
  3969. maw: {
  3970. height: math.unit(3.07, "feet"),
  3971. name: "Maw",
  3972. image: {
  3973. source: "./media/characters/mech/maw.svg"
  3974. }
  3975. },
  3976. head: {
  3977. height: math.unit(2.82, "feet"),
  3978. name: "Head",
  3979. image: {
  3980. source: "./media/characters/mech/head.svg"
  3981. }
  3982. },
  3983. dick: {
  3984. height: math.unit(1.43, "feet"),
  3985. name: "Dick",
  3986. image: {
  3987. source: "./media/characters/mech/dick.svg"
  3988. }
  3989. },
  3990. },
  3991. [
  3992. {
  3993. name: "Normal",
  3994. height: math.unit(12, "feet")
  3995. },
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(300, "feet"),
  3999. default: true
  4000. },
  4001. {
  4002. name: "Macro+",
  4003. height: math.unit(1500, "feet")
  4004. },
  4005. ]
  4006. ))
  4007. characterMakers.push(() => makeCharacter(
  4008. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4009. {
  4010. front: {
  4011. height: math.unit(1.3, "meter"),
  4012. weight: math.unit(30, "kg"),
  4013. name: "Front",
  4014. image: {
  4015. source: "./media/characters/gregory/front.svg",
  4016. }
  4017. }
  4018. },
  4019. [
  4020. {
  4021. name: "Normal",
  4022. height: math.unit(1.3, "meter"),
  4023. default: true
  4024. },
  4025. {
  4026. name: "Macro",
  4027. height: math.unit(20, "meter")
  4028. }
  4029. ]
  4030. ))
  4031. characterMakers.push(() => makeCharacter(
  4032. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4033. {
  4034. front: {
  4035. height: math.unit(2.8, "meter"),
  4036. weight: math.unit(200, "kg"),
  4037. name: "Front",
  4038. image: {
  4039. source: "./media/characters/elory/front.svg",
  4040. }
  4041. }
  4042. },
  4043. [
  4044. {
  4045. name: "Normal",
  4046. height: math.unit(2.8, "meter"),
  4047. default: true
  4048. },
  4049. {
  4050. name: "Macro",
  4051. height: math.unit(38, "meter")
  4052. }
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4057. {
  4058. front: {
  4059. height: math.unit(470, "feet"),
  4060. weight: math.unit(924, "tons"),
  4061. name: "Front",
  4062. image: {
  4063. source: "./media/characters/angelpatamon/front.svg",
  4064. }
  4065. }
  4066. },
  4067. [
  4068. {
  4069. name: "Normal",
  4070. height: math.unit(470, "feet"),
  4071. default: true
  4072. },
  4073. {
  4074. name: "Deity Size I",
  4075. height: math.unit(28651.2, "km")
  4076. },
  4077. {
  4078. name: "Deity Size II",
  4079. height: math.unit(171907.2, "km")
  4080. }
  4081. ]
  4082. ))
  4083. characterMakers.push(() => makeCharacter(
  4084. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4085. {
  4086. side: {
  4087. height: math.unit(7.2, "meter"),
  4088. weight: math.unit(8.2, "tons"),
  4089. name: "Side",
  4090. image: {
  4091. source: "./media/characters/cryae/side.svg",
  4092. extra: 3500 / 1500
  4093. }
  4094. }
  4095. },
  4096. [
  4097. {
  4098. name: "Normal",
  4099. height: math.unit(7.2, "meter"),
  4100. default: true
  4101. }
  4102. ]
  4103. ))
  4104. characterMakers.push(() => makeCharacter(
  4105. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4106. {
  4107. front: {
  4108. height: math.unit(6, "feet"),
  4109. weight: math.unit(175, "lb"),
  4110. name: "Front",
  4111. image: {
  4112. source: "./media/characters/xera/front.svg",
  4113. extra: 2377 / 1972,
  4114. bottom: 75.5 / 2452
  4115. }
  4116. },
  4117. side: {
  4118. height: math.unit(6, "feet"),
  4119. weight: math.unit(175, "lb"),
  4120. name: "Side",
  4121. image: {
  4122. source: "./media/characters/xera/side.svg",
  4123. extra: 2345 / 2019,
  4124. bottom: 39.7 / 2384
  4125. }
  4126. },
  4127. back: {
  4128. height: math.unit(6, "feet"),
  4129. weight: math.unit(175, "lb"),
  4130. name: "Back",
  4131. image: {
  4132. source: "./media/characters/xera/back.svg",
  4133. extra: 2095 / 1984,
  4134. bottom: 67 / 2166
  4135. }
  4136. },
  4137. },
  4138. [
  4139. {
  4140. name: "Small",
  4141. height: math.unit(10, "feet")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(500, "meters"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Macro+",
  4150. height: math.unit(10, "km")
  4151. },
  4152. {
  4153. name: "Gigamacro",
  4154. height: math.unit(25000, "km")
  4155. },
  4156. {
  4157. name: "Teramacro",
  4158. height: math.unit(3e6, "km")
  4159. }
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4164. {
  4165. front: {
  4166. height: math.unit(6, "feet"),
  4167. weight: math.unit(175, "lb"),
  4168. name: "Front",
  4169. image: {
  4170. source: "./media/characters/nebula/front.svg",
  4171. extra: 2566 / 2362,
  4172. bottom: 81 / 2644
  4173. }
  4174. }
  4175. },
  4176. [
  4177. {
  4178. name: "Small",
  4179. height: math.unit(4.5, "meters")
  4180. },
  4181. {
  4182. name: "Macro",
  4183. height: math.unit(1500, "meters"),
  4184. default: true
  4185. },
  4186. {
  4187. name: "Megamacro",
  4188. height: math.unit(150, "km")
  4189. },
  4190. {
  4191. name: "Gigamacro",
  4192. height: math.unit(27000, "km")
  4193. }
  4194. ]
  4195. ))
  4196. characterMakers.push(() => makeCharacter(
  4197. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4198. {
  4199. front: {
  4200. height: math.unit(6, "feet"),
  4201. weight: math.unit(225, "lb"),
  4202. name: "Front",
  4203. image: {
  4204. source: "./media/characters/abysgar/front.svg"
  4205. }
  4206. }
  4207. },
  4208. [
  4209. {
  4210. name: "Small",
  4211. height: math.unit(4.5, "meters")
  4212. },
  4213. {
  4214. name: "Macro",
  4215. height: math.unit(1250, "meters"),
  4216. default: true
  4217. },
  4218. {
  4219. name: "Megamacro",
  4220. height: math.unit(125, "km")
  4221. },
  4222. {
  4223. name: "Gigamacro",
  4224. height: math.unit(26000, "km")
  4225. }
  4226. ]
  4227. ))
  4228. characterMakers.push(() => makeCharacter(
  4229. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4230. {
  4231. front: {
  4232. height: math.unit(6, "feet"),
  4233. weight: math.unit(180, "lb"),
  4234. name: "Front",
  4235. image: {
  4236. source: "./media/characters/yakuz/front.svg"
  4237. }
  4238. }
  4239. },
  4240. [
  4241. {
  4242. name: "Small",
  4243. height: math.unit(5, "meters")
  4244. },
  4245. {
  4246. name: "Macro",
  4247. height: math.unit(1500, "meters"),
  4248. default: true
  4249. },
  4250. {
  4251. name: "Megamacro",
  4252. height: math.unit(200, "km")
  4253. },
  4254. {
  4255. name: "Gigamacro",
  4256. height: math.unit(100000, "km")
  4257. }
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4262. {
  4263. front: {
  4264. height: math.unit(6, "feet"),
  4265. weight: math.unit(175, "lb"),
  4266. name: "Front",
  4267. image: {
  4268. source: "./media/characters/mirova/front.svg",
  4269. extra: 3334 / 3071,
  4270. bottom: 42 / 3375.6
  4271. }
  4272. }
  4273. },
  4274. [
  4275. {
  4276. name: "Small",
  4277. height: math.unit(5, "meters")
  4278. },
  4279. {
  4280. name: "Macro",
  4281. height: math.unit(900, "meters"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Megamacro",
  4286. height: math.unit(135, "km")
  4287. },
  4288. {
  4289. name: "Gigamacro",
  4290. height: math.unit(20000, "km")
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4296. {
  4297. side: {
  4298. height: math.unit(28.35, "feet"),
  4299. weight: math.unit(99.75, "tons"),
  4300. name: "Side",
  4301. image: {
  4302. source: "./media/characters/asana-mech/side.svg",
  4303. extra: 923 / 699,
  4304. bottom: 50 / 975
  4305. }
  4306. },
  4307. chaingun: {
  4308. height: math.unit(7, "feet"),
  4309. weight: math.unit(2400, "lb"),
  4310. name: "Chaingun",
  4311. image: {
  4312. source: "./media/characters/asana-mech/chaingun.svg"
  4313. }
  4314. },
  4315. laser: {
  4316. height: math.unit(7.12, "feet"),
  4317. weight: math.unit(2000, "lb"),
  4318. name: "Laser",
  4319. image: {
  4320. source: "./media/characters/asana-mech/laser.svg"
  4321. }
  4322. },
  4323. },
  4324. [
  4325. {
  4326. name: "Normal",
  4327. height: math.unit(28.35, "feet"),
  4328. default: true
  4329. },
  4330. {
  4331. name: "Macro",
  4332. height: math.unit(2500, "feet")
  4333. },
  4334. {
  4335. name: "Megamacro",
  4336. height: math.unit(25, "miles")
  4337. },
  4338. {
  4339. name: "Examacro",
  4340. height: math.unit(6e8, "lightyears")
  4341. },
  4342. ]
  4343. ))
  4344. characterMakers.push(() => makeCharacter(
  4345. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4346. {
  4347. front: {
  4348. height: math.unit(5, "meters"),
  4349. weight: math.unit(1000, "kg"),
  4350. name: "Front",
  4351. image: {
  4352. source: "./media/characters/asche/front.svg",
  4353. extra: 1258 / 1190,
  4354. bottom: 47 / 1305
  4355. }
  4356. },
  4357. frontUnderwear: {
  4358. height: math.unit(5, "meters"),
  4359. weight: math.unit(1000, "kg"),
  4360. name: "Front (Underwear)",
  4361. image: {
  4362. source: "./media/characters/asche/front-underwear.svg",
  4363. extra: 1258 / 1190,
  4364. bottom: 47 / 1305
  4365. }
  4366. },
  4367. frontDressed: {
  4368. height: math.unit(5, "meters"),
  4369. weight: math.unit(1000, "kg"),
  4370. name: "Front (Dressed)",
  4371. image: {
  4372. source: "./media/characters/asche/front-dressed.svg",
  4373. extra: 1258 / 1190,
  4374. bottom: 47 / 1305
  4375. }
  4376. },
  4377. frontArmor: {
  4378. height: math.unit(5, "meters"),
  4379. weight: math.unit(1000, "kg"),
  4380. name: "Front (Armored)",
  4381. image: {
  4382. source: "./media/characters/asche/front-armored.svg",
  4383. extra: 1374 / 1308,
  4384. bottom: 23 / 1397
  4385. }
  4386. },
  4387. mp724: {
  4388. height: math.unit(0.96, "meters"),
  4389. weight: math.unit(38, "kg"),
  4390. name: "H&K MP724",
  4391. image: {
  4392. source: "./media/characters/asche/h&k-mp724.svg"
  4393. }
  4394. },
  4395. side: {
  4396. height: math.unit(5, "meters"),
  4397. weight: math.unit(1000, "kg"),
  4398. name: "Side",
  4399. image: {
  4400. source: "./media/characters/asche/side.svg",
  4401. extra: 1717 / 1609,
  4402. bottom: 0.005
  4403. }
  4404. },
  4405. back: {
  4406. height: math.unit(5, "meters"),
  4407. weight: math.unit(1000, "kg"),
  4408. name: "Back",
  4409. image: {
  4410. source: "./media/characters/asche/back.svg",
  4411. extra: 1570 / 1501
  4412. }
  4413. },
  4414. },
  4415. [
  4416. {
  4417. name: "DEFCON 5",
  4418. height: math.unit(5, "meters")
  4419. },
  4420. {
  4421. name: "DEFCON 4",
  4422. height: math.unit(500, "meters"),
  4423. default: true
  4424. },
  4425. {
  4426. name: "DEFCON 3",
  4427. height: math.unit(5, "km")
  4428. },
  4429. {
  4430. name: "DEFCON 2",
  4431. height: math.unit(500, "km")
  4432. },
  4433. {
  4434. name: "DEFCON 1",
  4435. height: math.unit(500000, "km")
  4436. },
  4437. {
  4438. name: "DEFCON 0",
  4439. height: math.unit(3, "gigaparsecs")
  4440. },
  4441. ]
  4442. ))
  4443. characterMakers.push(() => makeCharacter(
  4444. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4445. {
  4446. front: {
  4447. height: math.unit(2, "meters"),
  4448. weight: math.unit(76, "kg"),
  4449. name: "Front",
  4450. image: {
  4451. source: "./media/characters/gale/front.svg"
  4452. }
  4453. },
  4454. frontAlt1: {
  4455. height: math.unit(2, "meters"),
  4456. weight: math.unit(76, "kg"),
  4457. name: "Front (Alt 1)",
  4458. image: {
  4459. source: "./media/characters/gale/front-alt-1.svg"
  4460. }
  4461. },
  4462. frontAlt2: {
  4463. height: math.unit(2, "meters"),
  4464. weight: math.unit(76, "kg"),
  4465. name: "Front (Alt 2)",
  4466. image: {
  4467. source: "./media/characters/gale/front-alt-2.svg"
  4468. }
  4469. },
  4470. },
  4471. [
  4472. {
  4473. name: "Normal",
  4474. height: math.unit(7, "feet")
  4475. },
  4476. {
  4477. name: "Macro",
  4478. height: math.unit(150, "feet"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Macro+",
  4483. height: math.unit(300, "feet")
  4484. },
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(2, "meters"),
  4492. weight: math.unit(76, "kg"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/draylen/front.svg",
  4496. extra: 832/777,
  4497. bottom: 85/917
  4498. }
  4499. }
  4500. },
  4501. [
  4502. {
  4503. name: "Macro",
  4504. height: math.unit(150, "feet"),
  4505. default: true
  4506. }
  4507. ]
  4508. ))
  4509. characterMakers.push(() => makeCharacter(
  4510. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4511. {
  4512. front: {
  4513. height: math.unit(7 + 9 / 12, "feet"),
  4514. weight: math.unit(379, "lbs"),
  4515. name: "Front",
  4516. image: {
  4517. source: "./media/characters/chez/front.svg"
  4518. }
  4519. },
  4520. side: {
  4521. height: math.unit(7 + 9 / 12, "feet"),
  4522. weight: math.unit(379, "lbs"),
  4523. name: "Side",
  4524. image: {
  4525. source: "./media/characters/chez/side.svg"
  4526. }
  4527. }
  4528. },
  4529. [
  4530. {
  4531. name: "Normal",
  4532. height: math.unit(7 + 9 / 12, "feet"),
  4533. default: true
  4534. },
  4535. {
  4536. name: "God King",
  4537. height: math.unit(9750000, "meters")
  4538. }
  4539. ]
  4540. ))
  4541. characterMakers.push(() => makeCharacter(
  4542. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4543. {
  4544. front: {
  4545. height: math.unit(6, "feet"),
  4546. weight: math.unit(275, "lbs"),
  4547. name: "Front",
  4548. image: {
  4549. source: "./media/characters/kaylum/front.svg",
  4550. bottom: 0.01,
  4551. extra: 1166 / 1031
  4552. }
  4553. },
  4554. frontWingless: {
  4555. height: math.unit(6, "feet"),
  4556. weight: math.unit(275, "lbs"),
  4557. name: "Front (Wingless)",
  4558. image: {
  4559. source: "./media/characters/kaylum/front-wingless.svg",
  4560. bottom: 0.01,
  4561. extra: 1117 / 1031
  4562. }
  4563. }
  4564. },
  4565. [
  4566. {
  4567. name: "Normal",
  4568. height: math.unit(3.05, "meters")
  4569. },
  4570. {
  4571. name: "Master",
  4572. height: math.unit(5.5, "meters")
  4573. },
  4574. {
  4575. name: "Rampage",
  4576. height: math.unit(19, "meters")
  4577. },
  4578. {
  4579. name: "Macro Lite",
  4580. height: math.unit(37, "meters")
  4581. },
  4582. {
  4583. name: "Hyper Predator",
  4584. height: math.unit(61, "meters")
  4585. },
  4586. {
  4587. name: "Macro",
  4588. height: math.unit(138, "meters"),
  4589. default: true
  4590. }
  4591. ]
  4592. ))
  4593. characterMakers.push(() => makeCharacter(
  4594. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4595. {
  4596. front: {
  4597. height: math.unit(6, "feet"),
  4598. weight: math.unit(150, "lbs"),
  4599. name: "Front",
  4600. image: {
  4601. source: "./media/characters/geta/front.svg"
  4602. }
  4603. }
  4604. },
  4605. [
  4606. {
  4607. name: "Micro",
  4608. height: math.unit(3, "inches"),
  4609. default: true
  4610. },
  4611. {
  4612. name: "Normal",
  4613. height: math.unit(5 + 5 / 12, "feet")
  4614. }
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4619. {
  4620. front: {
  4621. height: math.unit(6, "feet"),
  4622. weight: math.unit(300, "lbs"),
  4623. name: "Front",
  4624. image: {
  4625. source: "./media/characters/tyrnn/front.svg"
  4626. }
  4627. }
  4628. },
  4629. [
  4630. {
  4631. name: "Main Height",
  4632. height: math.unit(355, "feet"),
  4633. default: true
  4634. },
  4635. {
  4636. name: "Fave. Height",
  4637. height: math.unit(2400, "feet")
  4638. }
  4639. ]
  4640. ))
  4641. characterMakers.push(() => makeCharacter(
  4642. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4643. {
  4644. front: {
  4645. height: math.unit(6, "feet"),
  4646. weight: math.unit(300, "lbs"),
  4647. name: "Front",
  4648. image: {
  4649. source: "./media/characters/appledectomy/front.svg"
  4650. }
  4651. }
  4652. },
  4653. [
  4654. {
  4655. name: "Macro",
  4656. height: math.unit(2500, "feet")
  4657. },
  4658. {
  4659. name: "Megamacro",
  4660. height: math.unit(50, "miles"),
  4661. default: true
  4662. },
  4663. {
  4664. name: "Gigamacro",
  4665. height: math.unit(5000, "miles")
  4666. },
  4667. {
  4668. name: "Teramacro",
  4669. height: math.unit(250000, "miles")
  4670. },
  4671. ]
  4672. ))
  4673. characterMakers.push(() => makeCharacter(
  4674. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4675. {
  4676. front: {
  4677. height: math.unit(6, "feet"),
  4678. weight: math.unit(200, "lbs"),
  4679. name: "Front",
  4680. image: {
  4681. source: "./media/characters/vulpes/front.svg",
  4682. extra: 573 / 543,
  4683. bottom: 0.033
  4684. }
  4685. },
  4686. side: {
  4687. height: math.unit(6, "feet"),
  4688. weight: math.unit(200, "lbs"),
  4689. name: "Side",
  4690. image: {
  4691. source: "./media/characters/vulpes/side.svg",
  4692. extra: 577 / 549,
  4693. bottom: 11 / 588
  4694. }
  4695. },
  4696. back: {
  4697. height: math.unit(6, "feet"),
  4698. weight: math.unit(200, "lbs"),
  4699. name: "Back",
  4700. image: {
  4701. source: "./media/characters/vulpes/back.svg",
  4702. extra: 573 / 549,
  4703. bottom: 20 / 593
  4704. }
  4705. },
  4706. feet: {
  4707. height: math.unit(1.276, "feet"),
  4708. name: "Feet",
  4709. image: {
  4710. source: "./media/characters/vulpes/feet.svg"
  4711. }
  4712. },
  4713. maw: {
  4714. height: math.unit(1.18, "feet"),
  4715. name: "Maw",
  4716. image: {
  4717. source: "./media/characters/vulpes/maw.svg"
  4718. }
  4719. },
  4720. },
  4721. [
  4722. {
  4723. name: "Micro",
  4724. height: math.unit(2, "inches")
  4725. },
  4726. {
  4727. name: "Normal",
  4728. height: math.unit(6.3, "feet")
  4729. },
  4730. {
  4731. name: "Macro",
  4732. height: math.unit(850, "feet")
  4733. },
  4734. {
  4735. name: "Megamacro",
  4736. height: math.unit(7500, "feet"),
  4737. default: true
  4738. },
  4739. {
  4740. name: "Gigamacro",
  4741. height: math.unit(570000, "miles")
  4742. }
  4743. ]
  4744. ))
  4745. characterMakers.push(() => makeCharacter(
  4746. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4747. {
  4748. front: {
  4749. height: math.unit(6, "feet"),
  4750. weight: math.unit(210, "lbs"),
  4751. name: "Front",
  4752. image: {
  4753. source: "./media/characters/rain-fallen/front.svg"
  4754. }
  4755. },
  4756. side: {
  4757. height: math.unit(6, "feet"),
  4758. weight: math.unit(210, "lbs"),
  4759. name: "Side",
  4760. image: {
  4761. source: "./media/characters/rain-fallen/side.svg"
  4762. }
  4763. },
  4764. back: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(210, "lbs"),
  4767. name: "Back",
  4768. image: {
  4769. source: "./media/characters/rain-fallen/back.svg"
  4770. }
  4771. },
  4772. feral: {
  4773. height: math.unit(9, "feet"),
  4774. weight: math.unit(700, "lbs"),
  4775. name: "Feral",
  4776. image: {
  4777. source: "./media/characters/rain-fallen/feral.svg"
  4778. }
  4779. },
  4780. },
  4781. [
  4782. {
  4783. name: "Meddling with Mortals",
  4784. height: math.unit(8 + 8/12, "feet")
  4785. },
  4786. {
  4787. name: "Normal",
  4788. height: math.unit(5, "meter")
  4789. },
  4790. {
  4791. name: "Macro",
  4792. height: math.unit(150, "meter"),
  4793. default: true
  4794. },
  4795. {
  4796. name: "Megamacro",
  4797. height: math.unit(278e6, "meter")
  4798. },
  4799. {
  4800. name: "Gigamacro",
  4801. height: math.unit(2e9, "meter")
  4802. },
  4803. {
  4804. name: "Teramacro",
  4805. height: math.unit(8e12, "meter")
  4806. },
  4807. {
  4808. name: "Devourer",
  4809. height: math.unit(14, "zettameters")
  4810. },
  4811. {
  4812. name: "Scarlet King",
  4813. height: math.unit(18, "yottameters")
  4814. },
  4815. {
  4816. name: "Void",
  4817. height: math.unit(1e88, "yottameters")
  4818. }
  4819. ]
  4820. ))
  4821. characterMakers.push(() => makeCharacter(
  4822. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4823. {
  4824. standing: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(180, "lbs"),
  4827. name: "Standing",
  4828. image: {
  4829. source: "./media/characters/zaakira/standing.svg",
  4830. extra: 1599/1504,
  4831. bottom: 39/1638
  4832. }
  4833. },
  4834. laying: {
  4835. height: math.unit(3, "feet"),
  4836. weight: math.unit(180, "lbs"),
  4837. name: "Laying",
  4838. image: {
  4839. source: "./media/characters/zaakira/laying.svg"
  4840. }
  4841. },
  4842. },
  4843. [
  4844. {
  4845. name: "Normal",
  4846. height: math.unit(12, "feet")
  4847. },
  4848. {
  4849. name: "Macro",
  4850. height: math.unit(279, "feet"),
  4851. default: true
  4852. }
  4853. ]
  4854. ))
  4855. characterMakers.push(() => makeCharacter(
  4856. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4857. {
  4858. femSfw: {
  4859. height: math.unit(8, "feet"),
  4860. weight: math.unit(350, "lb"),
  4861. name: "Fem",
  4862. image: {
  4863. source: "./media/characters/sigvald/fem-sfw.svg",
  4864. extra: 182 / 164,
  4865. bottom: 8.7 / 190.5
  4866. }
  4867. },
  4868. femNsfw: {
  4869. height: math.unit(8, "feet"),
  4870. weight: math.unit(350, "lb"),
  4871. name: "Fem (NSFW)",
  4872. image: {
  4873. source: "./media/characters/sigvald/fem-nsfw.svg",
  4874. extra: 182 / 164,
  4875. bottom: 8.7 / 190.5
  4876. }
  4877. },
  4878. maleNsfw: {
  4879. height: math.unit(8, "feet"),
  4880. weight: math.unit(350, "lb"),
  4881. name: "Male (NSFW)",
  4882. image: {
  4883. source: "./media/characters/sigvald/male-nsfw.svg",
  4884. extra: 182 / 164,
  4885. bottom: 8.7 / 190.5
  4886. }
  4887. },
  4888. hermNsfw: {
  4889. height: math.unit(8, "feet"),
  4890. weight: math.unit(350, "lb"),
  4891. name: "Herm (NSFW)",
  4892. image: {
  4893. source: "./media/characters/sigvald/herm-nsfw.svg",
  4894. extra: 182 / 164,
  4895. bottom: 8.7 / 190.5
  4896. }
  4897. },
  4898. dick: {
  4899. height: math.unit(2.36, "feet"),
  4900. name: "Dick",
  4901. image: {
  4902. source: "./media/characters/sigvald/dick.svg"
  4903. }
  4904. },
  4905. eye: {
  4906. height: math.unit(0.31, "feet"),
  4907. name: "Eye",
  4908. image: {
  4909. source: "./media/characters/sigvald/eye.svg"
  4910. }
  4911. },
  4912. mouth: {
  4913. height: math.unit(0.92, "feet"),
  4914. name: "Mouth",
  4915. image: {
  4916. source: "./media/characters/sigvald/mouth.svg"
  4917. }
  4918. },
  4919. paws: {
  4920. height: math.unit(2.2, "feet"),
  4921. name: "Paws",
  4922. image: {
  4923. source: "./media/characters/sigvald/paws.svg"
  4924. }
  4925. }
  4926. },
  4927. [
  4928. {
  4929. name: "Normal",
  4930. height: math.unit(8, "feet")
  4931. },
  4932. {
  4933. name: "Large",
  4934. height: math.unit(12, "feet")
  4935. },
  4936. {
  4937. name: "Larger",
  4938. height: math.unit(20, "feet")
  4939. },
  4940. {
  4941. name: "Macro",
  4942. height: math.unit(150, "feet")
  4943. },
  4944. {
  4945. name: "Macro+",
  4946. height: math.unit(200, "feet"),
  4947. default: true
  4948. },
  4949. ]
  4950. ))
  4951. characterMakers.push(() => makeCharacter(
  4952. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4953. {
  4954. side: {
  4955. height: math.unit(12, "feet"),
  4956. weight: math.unit(2000, "kg"),
  4957. name: "Side",
  4958. image: {
  4959. source: "./media/characters/scott/side.svg",
  4960. extra: 754 / 724,
  4961. bottom: 0.069
  4962. }
  4963. },
  4964. upright: {
  4965. height: math.unit(12, "feet"),
  4966. weight: math.unit(2000, "kg"),
  4967. name: "Upright",
  4968. image: {
  4969. source: "./media/characters/scott/upright.svg",
  4970. extra: 3881 / 3722,
  4971. bottom: 0.05
  4972. }
  4973. },
  4974. },
  4975. [
  4976. {
  4977. name: "Normal",
  4978. height: math.unit(12, "feet"),
  4979. default: true
  4980. },
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4985. {
  4986. side: {
  4987. height: math.unit(8, "meters"),
  4988. weight: math.unit(84755, "lbs"),
  4989. name: "Side",
  4990. image: {
  4991. source: "./media/characters/tobias/side.svg",
  4992. extra: 1474 / 1096,
  4993. bottom: 38.9 / 1513.1235
  4994. }
  4995. },
  4996. },
  4997. [
  4998. {
  4999. name: "Normal",
  5000. height: math.unit(8, "meters"),
  5001. default: true
  5002. },
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5007. {
  5008. front: {
  5009. height: math.unit(5.5, "feet"),
  5010. weight: math.unit(400, "lbs"),
  5011. name: "Front",
  5012. image: {
  5013. source: "./media/characters/kieran/front.svg",
  5014. extra: 2694 / 2364,
  5015. bottom: 217 / 2908
  5016. }
  5017. },
  5018. side: {
  5019. height: math.unit(5.5, "feet"),
  5020. weight: math.unit(400, "lbs"),
  5021. name: "Side",
  5022. image: {
  5023. source: "./media/characters/kieran/side.svg",
  5024. extra: 875 / 777,
  5025. bottom: 84.6 / 959
  5026. }
  5027. },
  5028. },
  5029. [
  5030. {
  5031. name: "Normal",
  5032. height: math.unit(5.5, "feet"),
  5033. default: true
  5034. },
  5035. ]
  5036. ))
  5037. characterMakers.push(() => makeCharacter(
  5038. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5039. {
  5040. side: {
  5041. height: math.unit(2, "meters"),
  5042. weight: math.unit(70, "kg"),
  5043. name: "Side",
  5044. image: {
  5045. source: "./media/characters/sanya/side.svg",
  5046. bottom: 0.02,
  5047. extra: 1.02
  5048. }
  5049. },
  5050. },
  5051. [
  5052. {
  5053. name: "Small",
  5054. height: math.unit(2, "meters")
  5055. },
  5056. {
  5057. name: "Normal",
  5058. height: math.unit(3, "meters")
  5059. },
  5060. {
  5061. name: "Macro",
  5062. height: math.unit(16, "meters"),
  5063. default: true
  5064. },
  5065. ]
  5066. ))
  5067. characterMakers.push(() => makeCharacter(
  5068. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5069. {
  5070. front: {
  5071. height: math.unit(2, "meters"),
  5072. weight: math.unit(120, "kg"),
  5073. name: "Front",
  5074. image: {
  5075. source: "./media/characters/miranda/front.svg",
  5076. extra: 195 / 185,
  5077. bottom: 10.9 / 206.5
  5078. }
  5079. },
  5080. back: {
  5081. height: math.unit(2, "meters"),
  5082. weight: math.unit(120, "kg"),
  5083. name: "Back",
  5084. image: {
  5085. source: "./media/characters/miranda/back.svg",
  5086. extra: 201 / 193,
  5087. bottom: 2.3 / 203.7
  5088. }
  5089. },
  5090. },
  5091. [
  5092. {
  5093. name: "Normal",
  5094. height: math.unit(10, "feet"),
  5095. default: true
  5096. }
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "James", species: ["deer"], tags: ["anthro"] },
  5101. {
  5102. side: {
  5103. height: math.unit(2, "meters"),
  5104. weight: math.unit(100, "kg"),
  5105. name: "Front",
  5106. image: {
  5107. source: "./media/characters/james/front.svg",
  5108. extra: 10 / 8.5
  5109. }
  5110. },
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(8.5, "feet"),
  5116. default: true
  5117. }
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5122. {
  5123. side: {
  5124. height: math.unit(9.5, "feet"),
  5125. weight: math.unit(2500, "lbs"),
  5126. name: "Side",
  5127. image: {
  5128. source: "./media/characters/heather/side.svg"
  5129. }
  5130. },
  5131. },
  5132. [
  5133. {
  5134. name: "Normal",
  5135. height: math.unit(9.5, "feet"),
  5136. default: true
  5137. }
  5138. ]
  5139. ))
  5140. characterMakers.push(() => makeCharacter(
  5141. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5142. {
  5143. side: {
  5144. height: math.unit(6.5, "feet"),
  5145. weight: math.unit(400, "lbs"),
  5146. name: "Side",
  5147. image: {
  5148. source: "./media/characters/lukas/side.svg",
  5149. extra: 7.25 / 6.5
  5150. }
  5151. },
  5152. },
  5153. [
  5154. {
  5155. name: "Normal",
  5156. height: math.unit(6.5, "feet"),
  5157. default: true
  5158. }
  5159. ]
  5160. ))
  5161. characterMakers.push(() => makeCharacter(
  5162. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5163. {
  5164. side: {
  5165. height: math.unit(5, "feet"),
  5166. weight: math.unit(3000, "lbs"),
  5167. name: "Side",
  5168. image: {
  5169. source: "./media/characters/louise/side.svg"
  5170. }
  5171. },
  5172. },
  5173. [
  5174. {
  5175. name: "Normal",
  5176. height: math.unit(5, "feet"),
  5177. default: true
  5178. }
  5179. ]
  5180. ))
  5181. characterMakers.push(() => makeCharacter(
  5182. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5183. {
  5184. side: {
  5185. height: math.unit(6, "feet"),
  5186. weight: math.unit(150, "lbs"),
  5187. name: "Side",
  5188. image: {
  5189. source: "./media/characters/ramona/side.svg"
  5190. }
  5191. },
  5192. },
  5193. [
  5194. {
  5195. name: "Normal",
  5196. height: math.unit(5.3, "meters"),
  5197. default: true
  5198. },
  5199. {
  5200. name: "Macro",
  5201. height: math.unit(20, "stories")
  5202. },
  5203. {
  5204. name: "Macro+",
  5205. height: math.unit(50, "stories")
  5206. },
  5207. ]
  5208. ))
  5209. characterMakers.push(() => makeCharacter(
  5210. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5211. {
  5212. standing: {
  5213. height: math.unit(5.75, "feet"),
  5214. weight: math.unit(160, "lbs"),
  5215. name: "Standing",
  5216. image: {
  5217. source: "./media/characters/deerpuff/standing.svg",
  5218. extra: 682 / 624
  5219. }
  5220. },
  5221. sitting: {
  5222. height: math.unit(5.75 / 1.79, "feet"),
  5223. weight: math.unit(160, "lbs"),
  5224. name: "Sitting",
  5225. image: {
  5226. source: "./media/characters/deerpuff/sitting.svg",
  5227. bottom: 44 / 400,
  5228. extra: 1
  5229. }
  5230. },
  5231. taurLaying: {
  5232. height: math.unit(6, "feet"),
  5233. weight: math.unit(400, "lbs"),
  5234. name: "Taur (Laying)",
  5235. image: {
  5236. source: "./media/characters/deerpuff/taur-laying.svg"
  5237. }
  5238. },
  5239. },
  5240. [
  5241. {
  5242. name: "Puffball",
  5243. height: math.unit(6, "inches")
  5244. },
  5245. {
  5246. name: "Normalpuff",
  5247. height: math.unit(5.75, "feet")
  5248. },
  5249. {
  5250. name: "Macropuff",
  5251. height: math.unit(1500, "feet"),
  5252. default: true
  5253. },
  5254. {
  5255. name: "Megapuff",
  5256. height: math.unit(500, "miles")
  5257. },
  5258. {
  5259. name: "Gigapuff",
  5260. height: math.unit(250000, "miles")
  5261. },
  5262. {
  5263. name: "Omegapuff",
  5264. height: math.unit(1000, "lightyears")
  5265. },
  5266. ]
  5267. ))
  5268. characterMakers.push(() => makeCharacter(
  5269. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5270. {
  5271. stomping: {
  5272. height: math.unit(6, "feet"),
  5273. weight: math.unit(170, "lbs"),
  5274. name: "Stomping",
  5275. image: {
  5276. source: "./media/characters/vivian/stomping.svg"
  5277. }
  5278. },
  5279. sitting: {
  5280. height: math.unit(6 / 1.75, "feet"),
  5281. weight: math.unit(170, "lbs"),
  5282. name: "Sitting",
  5283. image: {
  5284. source: "./media/characters/vivian/sitting.svg",
  5285. bottom: 1 / 6.4,
  5286. extra: 1,
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "Normal",
  5293. height: math.unit(7, "feet"),
  5294. default: true
  5295. },
  5296. {
  5297. name: "Macro",
  5298. height: math.unit(10, "stories")
  5299. },
  5300. {
  5301. name: "Macro+",
  5302. height: math.unit(30, "stories")
  5303. },
  5304. {
  5305. name: "Megamacro",
  5306. height: math.unit(10, "miles")
  5307. },
  5308. {
  5309. name: "Megamacro+",
  5310. height: math.unit(2750000, "meters")
  5311. },
  5312. ]
  5313. ))
  5314. characterMakers.push(() => makeCharacter(
  5315. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5316. {
  5317. front: {
  5318. height: math.unit(6, "feet"),
  5319. weight: math.unit(160, "lbs"),
  5320. name: "Front",
  5321. image: {
  5322. source: "./media/characters/prince/front.svg",
  5323. extra: 3400 / 3000
  5324. }
  5325. },
  5326. jumping: {
  5327. height: math.unit(6, "feet"),
  5328. weight: math.unit(160, "lbs"),
  5329. name: "Jumping",
  5330. image: {
  5331. source: "./media/characters/prince/jump.svg",
  5332. extra: 2555 / 2134
  5333. }
  5334. },
  5335. },
  5336. [
  5337. {
  5338. name: "Normal",
  5339. height: math.unit(7.75, "feet"),
  5340. default: true
  5341. },
  5342. {
  5343. name: "Not cute",
  5344. height: math.unit(17, "feet")
  5345. },
  5346. {
  5347. name: "I said NOT",
  5348. height: math.unit(91, "feet")
  5349. },
  5350. {
  5351. name: "Please stop",
  5352. height: math.unit(560, "feet")
  5353. },
  5354. {
  5355. name: "What have you done",
  5356. height: math.unit(2200, "feet")
  5357. },
  5358. {
  5359. name: "Deer God",
  5360. height: math.unit(3.6, "miles")
  5361. },
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5366. {
  5367. standing: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(300, "lbs"),
  5370. name: "Standing",
  5371. image: {
  5372. source: "./media/characters/psymon/standing.svg",
  5373. extra: 1888 / 1810,
  5374. bottom: 0.05
  5375. }
  5376. },
  5377. slithering: {
  5378. height: math.unit(6, "feet"),
  5379. weight: math.unit(300, "lbs"),
  5380. name: "Slithering",
  5381. image: {
  5382. source: "./media/characters/psymon/slithering.svg",
  5383. extra: 1330 / 1224
  5384. }
  5385. },
  5386. slitheringAlt: {
  5387. height: math.unit(6, "feet"),
  5388. weight: math.unit(300, "lbs"),
  5389. name: "Slithering (Alt)",
  5390. image: {
  5391. source: "./media/characters/psymon/slithering-alt.svg",
  5392. extra: 1330 / 1224
  5393. }
  5394. },
  5395. },
  5396. [
  5397. {
  5398. name: "Normal",
  5399. height: math.unit(11.25, "feet"),
  5400. default: true
  5401. },
  5402. {
  5403. name: "Large",
  5404. height: math.unit(27, "feet")
  5405. },
  5406. {
  5407. name: "Giant",
  5408. height: math.unit(87, "feet")
  5409. },
  5410. {
  5411. name: "Macro",
  5412. height: math.unit(365, "feet")
  5413. },
  5414. {
  5415. name: "Megamacro",
  5416. height: math.unit(3, "miles")
  5417. },
  5418. {
  5419. name: "World Serpent",
  5420. height: math.unit(8000, "miles")
  5421. },
  5422. ]
  5423. ))
  5424. characterMakers.push(() => makeCharacter(
  5425. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5426. {
  5427. front: {
  5428. height: math.unit(6, "feet"),
  5429. weight: math.unit(180, "lbs"),
  5430. name: "Front",
  5431. image: {
  5432. source: "./media/characters/daimos/front.svg",
  5433. extra: 4160 / 3897,
  5434. bottom: 0.021
  5435. }
  5436. }
  5437. },
  5438. [
  5439. {
  5440. name: "Normal",
  5441. height: math.unit(8, "feet"),
  5442. default: true
  5443. },
  5444. {
  5445. name: "Big Dog",
  5446. height: math.unit(22, "feet")
  5447. },
  5448. {
  5449. name: "Macro",
  5450. height: math.unit(127, "feet")
  5451. },
  5452. {
  5453. name: "Megamacro",
  5454. height: math.unit(3600, "feet")
  5455. },
  5456. ]
  5457. ))
  5458. characterMakers.push(() => makeCharacter(
  5459. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5460. {
  5461. side: {
  5462. height: math.unit(6, "feet"),
  5463. weight: math.unit(180, "lbs"),
  5464. name: "Side",
  5465. image: {
  5466. source: "./media/characters/blake/side.svg",
  5467. extra: 1212 / 1120,
  5468. bottom: 0.05
  5469. }
  5470. },
  5471. crouched: {
  5472. height: math.unit(6 * 0.57, "feet"),
  5473. weight: math.unit(180, "lbs"),
  5474. name: "Crouched",
  5475. image: {
  5476. source: "./media/characters/blake/crouched.svg",
  5477. extra: 840 / 587,
  5478. bottom: 0.04
  5479. }
  5480. },
  5481. bent: {
  5482. height: math.unit(6 * 0.75, "feet"),
  5483. weight: math.unit(180, "lbs"),
  5484. name: "Bent",
  5485. image: {
  5486. source: "./media/characters/blake/bent.svg",
  5487. extra: 592 / 544,
  5488. bottom: 0.035
  5489. }
  5490. },
  5491. },
  5492. [
  5493. {
  5494. name: "Normal",
  5495. height: math.unit(8 + 1 / 6, "feet"),
  5496. default: true
  5497. },
  5498. {
  5499. name: "Big Backside",
  5500. height: math.unit(37, "feet")
  5501. },
  5502. {
  5503. name: "Subway Shredder",
  5504. height: math.unit(72, "feet")
  5505. },
  5506. {
  5507. name: "City Carver",
  5508. height: math.unit(1675, "feet")
  5509. },
  5510. {
  5511. name: "Tectonic Tweaker",
  5512. height: math.unit(2300, "miles")
  5513. },
  5514. ]
  5515. ))
  5516. characterMakers.push(() => makeCharacter(
  5517. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5518. {
  5519. front: {
  5520. height: math.unit(6, "feet"),
  5521. weight: math.unit(180, "lbs"),
  5522. name: "Front",
  5523. image: {
  5524. source: "./media/characters/guisetto/front.svg",
  5525. extra: 856 / 817,
  5526. bottom: 0.06
  5527. }
  5528. },
  5529. airborne: {
  5530. height: math.unit(6, "feet"),
  5531. weight: math.unit(180, "lbs"),
  5532. name: "Airborne",
  5533. image: {
  5534. source: "./media/characters/guisetto/airborne.svg",
  5535. extra: 584 / 525
  5536. }
  5537. },
  5538. },
  5539. [
  5540. {
  5541. name: "Normal",
  5542. height: math.unit(10 + 11 / 12, "feet"),
  5543. default: true
  5544. },
  5545. {
  5546. name: "Large",
  5547. height: math.unit(35, "feet")
  5548. },
  5549. {
  5550. name: "Macro",
  5551. height: math.unit(475, "feet")
  5552. },
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5557. {
  5558. front: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(180, "lbs"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/luxor/front.svg",
  5564. extra: 2940 / 2152
  5565. }
  5566. },
  5567. back: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(180, "lbs"),
  5570. name: "Back",
  5571. image: {
  5572. source: "./media/characters/luxor/back.svg",
  5573. extra: 1083 / 960
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(5 + 5 / 6, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Lamp",
  5585. height: math.unit(50, "feet")
  5586. },
  5587. {
  5588. name: "Lämp",
  5589. height: math.unit(300, "feet")
  5590. },
  5591. {
  5592. name: "The sun is a lamp",
  5593. height: math.unit(250000, "miles")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5599. {
  5600. front: {
  5601. height: math.unit(6, "feet"),
  5602. weight: math.unit(50, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/huoyan/front.svg"
  5606. }
  5607. },
  5608. side: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(180, "lbs"),
  5611. name: "Side",
  5612. image: {
  5613. source: "./media/characters/huoyan/side.svg"
  5614. }
  5615. },
  5616. },
  5617. [
  5618. {
  5619. name: "Chef",
  5620. height: math.unit(9, "feet")
  5621. },
  5622. {
  5623. name: "Normal",
  5624. height: math.unit(65, "feet"),
  5625. default: true
  5626. },
  5627. {
  5628. name: "Macro",
  5629. height: math.unit(780, "feet")
  5630. },
  5631. {
  5632. name: "Flaming Mountain",
  5633. height: math.unit(4.8, "miles")
  5634. },
  5635. {
  5636. name: "Celestial",
  5637. height: math.unit(765000, "miles")
  5638. },
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5643. {
  5644. front: {
  5645. height: math.unit(5 + 3 / 4, "feet"),
  5646. weight: math.unit(120, "lbs"),
  5647. name: "Front",
  5648. image: {
  5649. source: "./media/characters/tails/front.svg"
  5650. }
  5651. }
  5652. },
  5653. [
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(5 + 3 / 4, "feet"),
  5657. default: true
  5658. }
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(4, "feet"),
  5666. weight: math.unit(50, "lbs"),
  5667. name: "Front",
  5668. image: {
  5669. source: "./media/characters/rainy/front.svg"
  5670. }
  5671. }
  5672. },
  5673. [
  5674. {
  5675. name: "Macro",
  5676. height: math.unit(800, "feet"),
  5677. default: true
  5678. }
  5679. ]
  5680. ))
  5681. characterMakers.push(() => makeCharacter(
  5682. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5683. {
  5684. front: {
  5685. height: math.unit(6, "feet"),
  5686. weight: math.unit(150, "lbs"),
  5687. name: "Front",
  5688. image: {
  5689. source: "./media/characters/rainier/front.svg"
  5690. }
  5691. }
  5692. },
  5693. [
  5694. {
  5695. name: "Micro",
  5696. height: math.unit(2, "mm"),
  5697. default: true
  5698. }
  5699. ]
  5700. ))
  5701. characterMakers.push(() => makeCharacter(
  5702. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5703. {
  5704. front: {
  5705. height: math.unit(8 + 4/12, "feet"),
  5706. name: "Front",
  5707. image: {
  5708. source: "./media/characters/andy-renard/front.svg",
  5709. extra: 1839/1726,
  5710. bottom: 134/1973
  5711. }
  5712. },
  5713. back: {
  5714. height: math.unit(8 + 4/12, "feet"),
  5715. name: "Back",
  5716. image: {
  5717. source: "./media/characters/andy-renard/back.svg",
  5718. extra: 1838/1710,
  5719. bottom: 105/1943
  5720. }
  5721. },
  5722. },
  5723. [
  5724. {
  5725. name: "Tall",
  5726. height: math.unit(8 + 4/12, "feet")
  5727. },
  5728. {
  5729. name: "Mini Macro",
  5730. height: math.unit(15, "feet"),
  5731. default: true
  5732. },
  5733. {
  5734. name: "Macro",
  5735. height: math.unit(100, "feet")
  5736. },
  5737. {
  5738. name: "Mega Macro",
  5739. height: math.unit(1000, "feet")
  5740. },
  5741. {
  5742. name: "Giga Macro",
  5743. height: math.unit(10, "miles")
  5744. },
  5745. {
  5746. name: "God Macro",
  5747. height: math.unit(1, "multiverse")
  5748. },
  5749. ]
  5750. ))
  5751. characterMakers.push(() => makeCharacter(
  5752. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5753. {
  5754. front: {
  5755. height: math.unit(6, "feet"),
  5756. weight: math.unit(210, "lbs"),
  5757. name: "Front",
  5758. image: {
  5759. source: "./media/characters/cimmaron/front-sfw.svg",
  5760. extra: 701 / 676,
  5761. bottom: 0.046
  5762. }
  5763. },
  5764. back: {
  5765. height: math.unit(6, "feet"),
  5766. weight: math.unit(210, "lbs"),
  5767. name: "Back",
  5768. image: {
  5769. source: "./media/characters/cimmaron/back-sfw.svg",
  5770. extra: 701 / 676,
  5771. bottom: 0.046
  5772. }
  5773. },
  5774. frontNsfw: {
  5775. height: math.unit(6, "feet"),
  5776. weight: math.unit(210, "lbs"),
  5777. name: "Front (NSFW)",
  5778. image: {
  5779. source: "./media/characters/cimmaron/front-nsfw.svg",
  5780. extra: 701 / 676,
  5781. bottom: 0.046
  5782. }
  5783. },
  5784. backNsfw: {
  5785. height: math.unit(6, "feet"),
  5786. weight: math.unit(210, "lbs"),
  5787. name: "Back (NSFW)",
  5788. image: {
  5789. source: "./media/characters/cimmaron/back-nsfw.svg",
  5790. extra: 701 / 676,
  5791. bottom: 0.046
  5792. }
  5793. },
  5794. dick: {
  5795. height: math.unit(1.714, "feet"),
  5796. name: "Dick",
  5797. image: {
  5798. source: "./media/characters/cimmaron/dick.svg"
  5799. }
  5800. },
  5801. },
  5802. [
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(6, "feet"),
  5806. default: true
  5807. },
  5808. {
  5809. name: "Macro Mayor",
  5810. height: math.unit(350, "meters")
  5811. },
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5816. {
  5817. front: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(200, "lbs"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/akari/front.svg",
  5823. extra: 962 / 901,
  5824. bottom: 0.04
  5825. }
  5826. }
  5827. },
  5828. [
  5829. {
  5830. name: "Micro",
  5831. height: math.unit(5, "inches"),
  5832. default: true
  5833. },
  5834. {
  5835. name: "Normal",
  5836. height: math.unit(7, "feet")
  5837. },
  5838. ]
  5839. ))
  5840. characterMakers.push(() => makeCharacter(
  5841. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5842. {
  5843. front: {
  5844. height: math.unit(6, "feet"),
  5845. weight: math.unit(140, "lbs"),
  5846. name: "Front",
  5847. image: {
  5848. source: "./media/characters/cynosura/front.svg",
  5849. extra: 896 / 847
  5850. }
  5851. },
  5852. back: {
  5853. height: math.unit(6, "feet"),
  5854. weight: math.unit(140, "lbs"),
  5855. name: "Back",
  5856. image: {
  5857. source: "./media/characters/cynosura/back.svg",
  5858. extra: 1365 / 1250
  5859. }
  5860. },
  5861. },
  5862. [
  5863. {
  5864. name: "Micro",
  5865. height: math.unit(4, "inches")
  5866. },
  5867. {
  5868. name: "Normal",
  5869. height: math.unit(5.75, "feet"),
  5870. default: true
  5871. },
  5872. {
  5873. name: "Tall",
  5874. height: math.unit(10, "feet")
  5875. },
  5876. {
  5877. name: "Big",
  5878. height: math.unit(20, "feet")
  5879. },
  5880. {
  5881. name: "Macro",
  5882. height: math.unit(50, "feet")
  5883. },
  5884. ]
  5885. ))
  5886. characterMakers.push(() => makeCharacter(
  5887. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5888. {
  5889. front: {
  5890. height: math.unit(13 + 2/12, "feet"),
  5891. weight: math.unit(800, "kg"),
  5892. name: "Front",
  5893. image: {
  5894. source: "./media/characters/gin/front.svg",
  5895. extra: 1312/1191,
  5896. bottom: 45/1357
  5897. }
  5898. },
  5899. mouth: {
  5900. height: math.unit(2.39 * 1.8, "feet"),
  5901. name: "Mouth",
  5902. image: {
  5903. source: "./media/characters/gin/mouth.svg"
  5904. }
  5905. },
  5906. hand: {
  5907. height: math.unit(1.57 * 2.19, "feet"),
  5908. name: "Hand",
  5909. image: {
  5910. source: "./media/characters/gin/hand.svg"
  5911. }
  5912. },
  5913. foot: {
  5914. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5915. name: "Foot",
  5916. image: {
  5917. source: "./media/characters/gin/foot.svg"
  5918. }
  5919. },
  5920. sole: {
  5921. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5922. name: "Sole",
  5923. image: {
  5924. source: "./media/characters/gin/sole.svg"
  5925. }
  5926. },
  5927. },
  5928. [
  5929. {
  5930. name: "Very Small",
  5931. height: math.unit(13 + 2 / 12, "feet")
  5932. },
  5933. {
  5934. name: "Micro",
  5935. height: math.unit(600, "miles")
  5936. },
  5937. {
  5938. name: "Regular",
  5939. height: math.unit(20, "earths"),
  5940. default: true
  5941. },
  5942. {
  5943. name: "Macro",
  5944. height: math.unit(2.2, "solarradii")
  5945. },
  5946. {
  5947. name: "Teramacro",
  5948. height: math.unit(1.2, "galaxies")
  5949. },
  5950. {
  5951. name: "Omegamacro",
  5952. height: math.unit(200, "universes")
  5953. },
  5954. ]
  5955. ))
  5956. characterMakers.push(() => makeCharacter(
  5957. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5958. {
  5959. front: {
  5960. height: math.unit(6 + 1 / 6, "feet"),
  5961. weight: math.unit(178, "lbs"),
  5962. name: "Front",
  5963. image: {
  5964. source: "./media/characters/guy/front.svg"
  5965. }
  5966. }
  5967. },
  5968. [
  5969. {
  5970. name: "Normal",
  5971. height: math.unit(6 + 1 / 6, "feet"),
  5972. default: true
  5973. },
  5974. {
  5975. name: "Large",
  5976. height: math.unit(25 + 7 / 12, "feet")
  5977. },
  5978. {
  5979. name: "Macro",
  5980. height: math.unit(60 + 9 / 12, "feet")
  5981. },
  5982. {
  5983. name: "Macro+",
  5984. height: math.unit(246, "feet")
  5985. },
  5986. {
  5987. name: "Macro++",
  5988. height: math.unit(878, "feet")
  5989. }
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5994. {
  5995. front: {
  5996. height: math.unit(9, "feet"),
  5997. weight: math.unit(800, "lbs"),
  5998. name: "Front",
  5999. image: {
  6000. source: "./media/characters/tiberius/front.svg",
  6001. extra: 2295 / 2071
  6002. }
  6003. },
  6004. back: {
  6005. height: math.unit(9, "feet"),
  6006. weight: math.unit(800, "lbs"),
  6007. name: "Back",
  6008. image: {
  6009. source: "./media/characters/tiberius/back.svg",
  6010. extra: 2373 / 2160
  6011. }
  6012. },
  6013. },
  6014. [
  6015. {
  6016. name: "Normal",
  6017. height: math.unit(9, "feet"),
  6018. default: true
  6019. }
  6020. ]
  6021. ))
  6022. characterMakers.push(() => makeCharacter(
  6023. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6024. {
  6025. front: {
  6026. height: math.unit(6, "feet"),
  6027. weight: math.unit(600, "lbs"),
  6028. name: "Front",
  6029. image: {
  6030. source: "./media/characters/surgo/front.svg",
  6031. extra: 3591 / 2227
  6032. }
  6033. },
  6034. back: {
  6035. height: math.unit(6, "feet"),
  6036. weight: math.unit(600, "lbs"),
  6037. name: "Back",
  6038. image: {
  6039. source: "./media/characters/surgo/back.svg",
  6040. extra: 3557 / 2228
  6041. }
  6042. },
  6043. laying: {
  6044. height: math.unit(6 * 0.85, "feet"),
  6045. weight: math.unit(600, "lbs"),
  6046. name: "Laying",
  6047. image: {
  6048. source: "./media/characters/surgo/laying.svg"
  6049. }
  6050. },
  6051. },
  6052. [
  6053. {
  6054. name: "Normal",
  6055. height: math.unit(6, "feet"),
  6056. default: true
  6057. }
  6058. ]
  6059. ))
  6060. characterMakers.push(() => makeCharacter(
  6061. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6062. {
  6063. side: {
  6064. height: math.unit(6, "feet"),
  6065. weight: math.unit(150, "lbs"),
  6066. name: "Side",
  6067. image: {
  6068. source: "./media/characters/cibus/side.svg",
  6069. extra: 800 / 400
  6070. }
  6071. },
  6072. },
  6073. [
  6074. {
  6075. name: "Normal",
  6076. height: math.unit(6, "feet"),
  6077. default: true
  6078. }
  6079. ]
  6080. ))
  6081. characterMakers.push(() => makeCharacter(
  6082. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6083. {
  6084. front: {
  6085. height: math.unit(6, "feet"),
  6086. weight: math.unit(240, "lbs"),
  6087. name: "Front",
  6088. image: {
  6089. source: "./media/characters/nibbles/front.svg"
  6090. }
  6091. },
  6092. side: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(240, "lbs"),
  6095. name: "Side",
  6096. image: {
  6097. source: "./media/characters/nibbles/side.svg"
  6098. }
  6099. },
  6100. },
  6101. [
  6102. {
  6103. name: "Normal",
  6104. height: math.unit(9, "feet"),
  6105. default: true
  6106. }
  6107. ]
  6108. ))
  6109. characterMakers.push(() => makeCharacter(
  6110. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6111. {
  6112. side: {
  6113. height: math.unit(5 + 1 / 6, "feet"),
  6114. weight: math.unit(130, "lbs"),
  6115. name: "Side",
  6116. image: {
  6117. source: "./media/characters/rikky/side.svg",
  6118. extra: 851 / 801
  6119. }
  6120. },
  6121. },
  6122. [
  6123. {
  6124. name: "Normal",
  6125. height: math.unit(5 + 1 / 6, "feet")
  6126. },
  6127. {
  6128. name: "Macro",
  6129. height: math.unit(152, "feet"),
  6130. default: true
  6131. },
  6132. {
  6133. name: "Megamacro",
  6134. height: math.unit(7, "miles")
  6135. }
  6136. ]
  6137. ))
  6138. characterMakers.push(() => makeCharacter(
  6139. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6140. {
  6141. side: {
  6142. height: math.unit(370, "cm"),
  6143. weight: math.unit(350, "lbs"),
  6144. name: "Side",
  6145. image: {
  6146. source: "./media/characters/malfressa/side.svg"
  6147. }
  6148. },
  6149. walking: {
  6150. height: math.unit(370, "cm"),
  6151. weight: math.unit(350, "lbs"),
  6152. name: "Walking",
  6153. image: {
  6154. source: "./media/characters/malfressa/walking.svg"
  6155. }
  6156. },
  6157. feral: {
  6158. height: math.unit(2500, "cm"),
  6159. weight: math.unit(100000, "lbs"),
  6160. name: "Feral",
  6161. image: {
  6162. source: "./media/characters/malfressa/feral.svg",
  6163. extra: 2108 / 837,
  6164. bottom: 0.02
  6165. }
  6166. },
  6167. },
  6168. [
  6169. {
  6170. name: "Normal",
  6171. height: math.unit(370, "cm")
  6172. },
  6173. {
  6174. name: "Macro",
  6175. height: math.unit(300, "meters"),
  6176. default: true
  6177. }
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6182. {
  6183. front: {
  6184. height: math.unit(6, "feet"),
  6185. weight: math.unit(60, "kg"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/jaro/front.svg"
  6189. }
  6190. },
  6191. back: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(60, "kg"),
  6194. name: "Back",
  6195. image: {
  6196. source: "./media/characters/jaro/back.svg"
  6197. }
  6198. },
  6199. },
  6200. [
  6201. {
  6202. name: "Micro",
  6203. height: math.unit(7, "inches")
  6204. },
  6205. {
  6206. name: "Normal",
  6207. height: math.unit(5.5, "feet"),
  6208. default: true
  6209. },
  6210. {
  6211. name: "Minimacro",
  6212. height: math.unit(20, "feet")
  6213. },
  6214. {
  6215. name: "Macro",
  6216. height: math.unit(200, "meters")
  6217. }
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6222. {
  6223. front: {
  6224. height: math.unit(6, "feet"),
  6225. weight: math.unit(195, "lb"),
  6226. name: "Front",
  6227. image: {
  6228. source: "./media/characters/rogue/front.svg"
  6229. }
  6230. },
  6231. },
  6232. [
  6233. {
  6234. name: "Macro",
  6235. height: math.unit(90, "feet"),
  6236. default: true
  6237. },
  6238. ]
  6239. ))
  6240. characterMakers.push(() => makeCharacter(
  6241. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6242. {
  6243. front: {
  6244. height: math.unit(5 + 8 / 12, "feet"),
  6245. weight: math.unit(140, "lb"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/piper/front.svg",
  6249. extra: 3948/3655,
  6250. bottom: 0/3948
  6251. }
  6252. },
  6253. },
  6254. [
  6255. {
  6256. name: "Micro",
  6257. height: math.unit(2, "inches")
  6258. },
  6259. {
  6260. name: "Normal",
  6261. height: math.unit(5 + 8 / 12, "feet")
  6262. },
  6263. {
  6264. name: "Macro",
  6265. height: math.unit(250, "feet"),
  6266. default: true
  6267. },
  6268. {
  6269. name: "Megamacro",
  6270. height: math.unit(7, "miles")
  6271. },
  6272. ]
  6273. ))
  6274. characterMakers.push(() => makeCharacter(
  6275. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6276. {
  6277. front: {
  6278. height: math.unit(6, "feet"),
  6279. weight: math.unit(220, "lb"),
  6280. name: "Front",
  6281. image: {
  6282. source: "./media/characters/gemini/front.svg"
  6283. }
  6284. },
  6285. back: {
  6286. height: math.unit(6, "feet"),
  6287. weight: math.unit(220, "lb"),
  6288. name: "Back",
  6289. image: {
  6290. source: "./media/characters/gemini/back.svg"
  6291. }
  6292. },
  6293. kneeling: {
  6294. height: math.unit(6 / 1.5, "feet"),
  6295. weight: math.unit(220, "lb"),
  6296. name: "Kneeling",
  6297. image: {
  6298. source: "./media/characters/gemini/kneeling.svg",
  6299. bottom: 0.02
  6300. }
  6301. },
  6302. },
  6303. [
  6304. {
  6305. name: "Macro",
  6306. height: math.unit(300, "meters"),
  6307. default: true
  6308. },
  6309. {
  6310. name: "Megamacro",
  6311. height: math.unit(6900, "meters")
  6312. },
  6313. ]
  6314. ))
  6315. characterMakers.push(() => makeCharacter(
  6316. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6317. {
  6318. anthro: {
  6319. height: math.unit(2.35, "meters"),
  6320. weight: math.unit(73, "kg"),
  6321. name: "Anthro",
  6322. image: {
  6323. source: "./media/characters/alicia/anthro.svg",
  6324. extra: 2571 / 2385,
  6325. bottom: 75 / 2648
  6326. }
  6327. },
  6328. paw: {
  6329. height: math.unit(1.32, "feet"),
  6330. name: "Paw",
  6331. image: {
  6332. source: "./media/characters/alicia/paw.svg"
  6333. }
  6334. },
  6335. feral: {
  6336. height: math.unit(1.69, "meters"),
  6337. weight: math.unit(73, "kg"),
  6338. name: "Feral",
  6339. image: {
  6340. source: "./media/characters/alicia/feral.svg",
  6341. extra: 2123 / 1715,
  6342. bottom: 222 / 2349
  6343. }
  6344. },
  6345. },
  6346. [
  6347. {
  6348. name: "Normal",
  6349. height: math.unit(2.35, "meters")
  6350. },
  6351. {
  6352. name: "Macro",
  6353. height: math.unit(60, "meters"),
  6354. default: true
  6355. },
  6356. {
  6357. name: "Megamacro",
  6358. height: math.unit(10000, "kilometers")
  6359. },
  6360. ]
  6361. ))
  6362. characterMakers.push(() => makeCharacter(
  6363. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6364. {
  6365. front: {
  6366. height: math.unit(7, "feet"),
  6367. weight: math.unit(250, "lbs"),
  6368. name: "Front",
  6369. image: {
  6370. source: "./media/characters/archy/front.svg"
  6371. }
  6372. }
  6373. },
  6374. [
  6375. {
  6376. name: "Micro",
  6377. height: math.unit(1, "inch")
  6378. },
  6379. {
  6380. name: "Shorty",
  6381. height: math.unit(5, "feet")
  6382. },
  6383. {
  6384. name: "Normal",
  6385. height: math.unit(7, "feet")
  6386. },
  6387. {
  6388. name: "Macro",
  6389. height: math.unit(600, "meters"),
  6390. default: true
  6391. },
  6392. {
  6393. name: "Megamacro",
  6394. height: math.unit(1, "mile")
  6395. },
  6396. ]
  6397. ))
  6398. characterMakers.push(() => makeCharacter(
  6399. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6400. {
  6401. front: {
  6402. height: math.unit(1.65, "meters"),
  6403. weight: math.unit(74, "kg"),
  6404. name: "Front",
  6405. image: {
  6406. source: "./media/characters/berri/front.svg",
  6407. extra: 857 / 837,
  6408. bottom: 18 / 877
  6409. }
  6410. },
  6411. bum: {
  6412. height: math.unit(1.46, "feet"),
  6413. name: "Bum",
  6414. image: {
  6415. source: "./media/characters/berri/bum.svg"
  6416. }
  6417. },
  6418. mouth: {
  6419. height: math.unit(0.44, "feet"),
  6420. name: "Mouth",
  6421. image: {
  6422. source: "./media/characters/berri/mouth.svg"
  6423. }
  6424. },
  6425. paw: {
  6426. height: math.unit(0.826, "feet"),
  6427. name: "Paw",
  6428. image: {
  6429. source: "./media/characters/berri/paw.svg"
  6430. }
  6431. },
  6432. },
  6433. [
  6434. {
  6435. name: "Normal",
  6436. height: math.unit(1.65, "meters")
  6437. },
  6438. {
  6439. name: "Macro",
  6440. height: math.unit(60, "m"),
  6441. default: true
  6442. },
  6443. {
  6444. name: "Megamacro",
  6445. height: math.unit(9.213, "km")
  6446. },
  6447. {
  6448. name: "Planet Eater",
  6449. height: math.unit(489, "megameters")
  6450. },
  6451. {
  6452. name: "Teramacro",
  6453. height: math.unit(2471635000000, "meters")
  6454. },
  6455. {
  6456. name: "Examacro",
  6457. height: math.unit(8.0624e+26, "meters")
  6458. }
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6463. {
  6464. front: {
  6465. height: math.unit(1.72, "meters"),
  6466. weight: math.unit(68, "kg"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/lexi/front.svg"
  6470. }
  6471. }
  6472. },
  6473. [
  6474. {
  6475. name: "Very Smol",
  6476. height: math.unit(10, "mm")
  6477. },
  6478. {
  6479. name: "Micro",
  6480. height: math.unit(6.8, "cm"),
  6481. default: true
  6482. },
  6483. {
  6484. name: "Normal",
  6485. height: math.unit(1.72, "m")
  6486. }
  6487. ]
  6488. ))
  6489. characterMakers.push(() => makeCharacter(
  6490. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6491. {
  6492. front: {
  6493. height: math.unit(1.69, "meters"),
  6494. weight: math.unit(68, "kg"),
  6495. name: "Front",
  6496. image: {
  6497. source: "./media/characters/martin/front.svg",
  6498. extra: 596 / 581
  6499. }
  6500. }
  6501. },
  6502. [
  6503. {
  6504. name: "Micro",
  6505. height: math.unit(6.85, "cm"),
  6506. default: true
  6507. },
  6508. {
  6509. name: "Normal",
  6510. height: math.unit(1.69, "m")
  6511. }
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6516. {
  6517. front: {
  6518. height: math.unit(1.69, "meters"),
  6519. weight: math.unit(68, "kg"),
  6520. name: "Front",
  6521. image: {
  6522. source: "./media/characters/juno/front.svg"
  6523. }
  6524. }
  6525. },
  6526. [
  6527. {
  6528. name: "Micro",
  6529. height: math.unit(7, "cm")
  6530. },
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(1.89, "m")
  6534. },
  6535. {
  6536. name: "Macro",
  6537. height: math.unit(353, "meters"),
  6538. default: true
  6539. }
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(1.93, "meters"),
  6547. weight: math.unit(83, "kg"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/samantha/front.svg"
  6551. }
  6552. },
  6553. frontClothed: {
  6554. height: math.unit(1.93, "meters"),
  6555. weight: math.unit(83, "kg"),
  6556. name: "Front (Clothed)",
  6557. image: {
  6558. source: "./media/characters/samantha/front-clothed.svg"
  6559. }
  6560. },
  6561. back: {
  6562. height: math.unit(1.93, "meters"),
  6563. weight: math.unit(83, "kg"),
  6564. name: "Back",
  6565. image: {
  6566. source: "./media/characters/samantha/back.svg"
  6567. }
  6568. },
  6569. },
  6570. [
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(1.93, "m")
  6574. },
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(74, "meters"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Macro+",
  6582. height: math.unit(223, "meters"),
  6583. },
  6584. {
  6585. name: "Megamacro",
  6586. height: math.unit(8381, "meters"),
  6587. },
  6588. {
  6589. name: "Megamacro+",
  6590. height: math.unit(12000, "kilometers")
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(1.92, "meters"),
  6599. weight: math.unit(80, "kg"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/dr-clay/front.svg"
  6603. }
  6604. },
  6605. frontClothed: {
  6606. height: math.unit(1.92, "meters"),
  6607. weight: math.unit(80, "kg"),
  6608. name: "Front (Clothed)",
  6609. image: {
  6610. source: "./media/characters/dr-clay/front-clothed.svg"
  6611. }
  6612. }
  6613. },
  6614. [
  6615. {
  6616. name: "Normal",
  6617. height: math.unit(1.92, "m")
  6618. },
  6619. {
  6620. name: "Macro",
  6621. height: math.unit(214, "meters"),
  6622. default: true
  6623. },
  6624. {
  6625. name: "Macro+",
  6626. height: math.unit(12.237, "meters"),
  6627. },
  6628. {
  6629. name: "Megamacro",
  6630. height: math.unit(557, "megameters"),
  6631. },
  6632. {
  6633. name: "Unimaginable",
  6634. height: math.unit(120e9, "lightyears")
  6635. },
  6636. ]
  6637. ))
  6638. characterMakers.push(() => makeCharacter(
  6639. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6640. {
  6641. front: {
  6642. height: math.unit(2, "meters"),
  6643. weight: math.unit(80, "kg"),
  6644. name: "Front",
  6645. image: {
  6646. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6647. }
  6648. }
  6649. },
  6650. [
  6651. {
  6652. name: "Teramacro",
  6653. height: math.unit(500000, "lightyears"),
  6654. default: true
  6655. },
  6656. ]
  6657. ))
  6658. characterMakers.push(() => makeCharacter(
  6659. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6660. {
  6661. crux: {
  6662. height: math.unit(2, "meters"),
  6663. weight: math.unit(150, "kg"),
  6664. name: "Crux",
  6665. image: {
  6666. source: "./media/characters/vemus/crux.svg",
  6667. extra: 1074/936,
  6668. bottom: 23/1097
  6669. }
  6670. },
  6671. skunkTanuki: {
  6672. height: math.unit(2, "meters"),
  6673. weight: math.unit(150, "kg"),
  6674. name: "Skunk-Tanuki",
  6675. image: {
  6676. source: "./media/characters/vemus/skunk-tanuki.svg",
  6677. extra: 926/893,
  6678. bottom: 20/946
  6679. }
  6680. },
  6681. },
  6682. [
  6683. {
  6684. name: "Normal",
  6685. height: math.unit(3.75, "meters"),
  6686. default: true
  6687. },
  6688. {
  6689. name: "Big",
  6690. height: math.unit(8, "meters")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(100, "meters")
  6695. },
  6696. {
  6697. name: "Macro+",
  6698. height: math.unit(1500, "meters")
  6699. },
  6700. {
  6701. name: "Stellar",
  6702. height: math.unit(14e8, "meters")
  6703. },
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(2, "meters"),
  6711. weight: math.unit(70, "kg"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/beherit/front.svg",
  6715. extra: 1408 / 1242
  6716. }
  6717. }
  6718. },
  6719. [
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(6, "feet")
  6723. },
  6724. {
  6725. name: "Lorg",
  6726. height: math.unit(25, "feet"),
  6727. default: true
  6728. },
  6729. {
  6730. name: "Lorger",
  6731. height: math.unit(75, "feet")
  6732. },
  6733. {
  6734. name: "Macro",
  6735. height: math.unit(200, "meters")
  6736. },
  6737. ]
  6738. ))
  6739. characterMakers.push(() => makeCharacter(
  6740. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6741. {
  6742. front: {
  6743. height: math.unit(2, "meters"),
  6744. weight: math.unit(150, "kg"),
  6745. name: "Front",
  6746. image: {
  6747. source: "./media/characters/everett/front.svg",
  6748. extra: 2038 / 1737,
  6749. bottom: 0.03
  6750. }
  6751. },
  6752. paw: {
  6753. height: math.unit(2 / 3.6, "meters"),
  6754. name: "Paw",
  6755. image: {
  6756. source: "./media/characters/everett/paw.svg"
  6757. }
  6758. },
  6759. },
  6760. [
  6761. {
  6762. name: "Normal",
  6763. height: math.unit(15, "feet"),
  6764. default: true
  6765. },
  6766. {
  6767. name: "Lorg",
  6768. height: math.unit(70, "feet"),
  6769. default: true
  6770. },
  6771. {
  6772. name: "Lorger",
  6773. height: math.unit(250, "feet")
  6774. },
  6775. {
  6776. name: "Macro",
  6777. height: math.unit(500, "meters")
  6778. },
  6779. ]
  6780. ))
  6781. characterMakers.push(() => makeCharacter(
  6782. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6783. {
  6784. front: {
  6785. height: math.unit(2, "meters"),
  6786. weight: math.unit(86, "kg"),
  6787. name: "Front",
  6788. image: {
  6789. source: "./media/characters/rose/front.svg",
  6790. extra: 1785/1636,
  6791. bottom: 30/1815
  6792. }
  6793. },
  6794. frontSporty: {
  6795. height: math.unit(2, "meters"),
  6796. weight: math.unit(86, "kg"),
  6797. name: "Front (Sporty)",
  6798. image: {
  6799. source: "./media/characters/rose/front-sporty.svg",
  6800. extra: 350/335,
  6801. bottom: 10/360
  6802. }
  6803. },
  6804. frontAlt: {
  6805. height: math.unit(1.6, "meters"),
  6806. weight: math.unit(86, "kg"),
  6807. name: "Front (Alt)",
  6808. image: {
  6809. source: "./media/characters/rose/front-alt.svg",
  6810. extra: 299/283,
  6811. bottom: 3/302
  6812. }
  6813. },
  6814. plush: {
  6815. height: math.unit(2, "meters"),
  6816. weight: math.unit(86/3, "kg"),
  6817. name: "Plush",
  6818. image: {
  6819. source: "./media/characters/rose/plush.svg",
  6820. extra: 361/337,
  6821. bottom: 11/372
  6822. }
  6823. },
  6824. },
  6825. [
  6826. {
  6827. name: "True Micro",
  6828. height: math.unit(9, "cm")
  6829. },
  6830. {
  6831. name: "Micro",
  6832. height: math.unit(16, "cm")
  6833. },
  6834. {
  6835. name: "Normal",
  6836. height: math.unit(1.85, "meters"),
  6837. default: true
  6838. },
  6839. {
  6840. name: "Mini-Macro",
  6841. height: math.unit(5, "meters")
  6842. },
  6843. {
  6844. name: "Macro",
  6845. height: math.unit(15, "meters")
  6846. },
  6847. {
  6848. name: "True Macro",
  6849. height: math.unit(40, "meters")
  6850. },
  6851. {
  6852. name: "City Scale",
  6853. height: math.unit(1, "km")
  6854. },
  6855. ]
  6856. ))
  6857. characterMakers.push(() => makeCharacter(
  6858. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6859. {
  6860. front: {
  6861. height: math.unit(2, "meters"),
  6862. weight: math.unit(350, "lbs"),
  6863. name: "Front",
  6864. image: {
  6865. source: "./media/characters/regal/front.svg"
  6866. }
  6867. },
  6868. back: {
  6869. height: math.unit(2, "meters"),
  6870. weight: math.unit(350, "lbs"),
  6871. name: "Back",
  6872. image: {
  6873. source: "./media/characters/regal/back.svg"
  6874. }
  6875. },
  6876. },
  6877. [
  6878. {
  6879. name: "Macro",
  6880. height: math.unit(350, "feet"),
  6881. default: true
  6882. }
  6883. ]
  6884. ))
  6885. characterMakers.push(() => makeCharacter(
  6886. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6887. {
  6888. front: {
  6889. height: math.unit(4 + 11 / 12, "feet"),
  6890. weight: math.unit(100, "lbs"),
  6891. name: "Front",
  6892. image: {
  6893. source: "./media/characters/opal/front.svg"
  6894. }
  6895. },
  6896. frontAlt: {
  6897. height: math.unit(4 + 11 / 12, "feet"),
  6898. weight: math.unit(100, "lbs"),
  6899. name: "Front (Alt)",
  6900. image: {
  6901. source: "./media/characters/opal/front-alt.svg"
  6902. }
  6903. },
  6904. },
  6905. [
  6906. {
  6907. name: "Small",
  6908. height: math.unit(4 + 11 / 12, "feet")
  6909. },
  6910. {
  6911. name: "Normal",
  6912. height: math.unit(20, "feet"),
  6913. default: true
  6914. },
  6915. {
  6916. name: "Macro",
  6917. height: math.unit(120, "feet")
  6918. },
  6919. {
  6920. name: "Megamacro",
  6921. height: math.unit(80, "miles")
  6922. },
  6923. {
  6924. name: "True Size",
  6925. height: math.unit(100000, "lightyears")
  6926. },
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6931. {
  6932. front: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(200, "lbs"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/vector-wuff/front.svg"
  6938. }
  6939. }
  6940. },
  6941. [
  6942. {
  6943. name: "Normal",
  6944. height: math.unit(2.8, "meters")
  6945. },
  6946. {
  6947. name: "Macro",
  6948. height: math.unit(450, "meters"),
  6949. default: true
  6950. },
  6951. {
  6952. name: "Megamacro",
  6953. height: math.unit(15, "kilometers")
  6954. }
  6955. ]
  6956. ))
  6957. characterMakers.push(() => makeCharacter(
  6958. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6959. {
  6960. front: {
  6961. height: math.unit(6, "feet"),
  6962. weight: math.unit(256, "lbs"),
  6963. name: "Front",
  6964. image: {
  6965. source: "./media/characters/dannik/front.svg"
  6966. }
  6967. }
  6968. },
  6969. [
  6970. {
  6971. name: "Macro",
  6972. height: math.unit(69.57, "meters"),
  6973. default: true
  6974. },
  6975. ]
  6976. ))
  6977. characterMakers.push(() => makeCharacter(
  6978. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6979. {
  6980. front: {
  6981. height: math.unit(6, "feet"),
  6982. weight: math.unit(120, "lbs"),
  6983. name: "Front",
  6984. image: {
  6985. source: "./media/characters/azura-saharah/front.svg"
  6986. }
  6987. },
  6988. back: {
  6989. height: math.unit(6, "feet"),
  6990. weight: math.unit(120, "lbs"),
  6991. name: "Back",
  6992. image: {
  6993. source: "./media/characters/azura-saharah/back.svg"
  6994. }
  6995. },
  6996. },
  6997. [
  6998. {
  6999. name: "Macro",
  7000. height: math.unit(100, "feet"),
  7001. default: true
  7002. },
  7003. ]
  7004. ))
  7005. characterMakers.push(() => makeCharacter(
  7006. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7007. {
  7008. side: {
  7009. height: math.unit(5 + 4 / 12, "feet"),
  7010. weight: math.unit(163, "lbs"),
  7011. name: "Side",
  7012. image: {
  7013. source: "./media/characters/kennedy/side.svg"
  7014. }
  7015. }
  7016. },
  7017. [
  7018. {
  7019. name: "Standard Doggo",
  7020. height: math.unit(5 + 4 / 12, "feet")
  7021. },
  7022. {
  7023. name: "Big Doggo",
  7024. height: math.unit(25 + 3 / 12, "feet"),
  7025. default: true
  7026. },
  7027. ]
  7028. ))
  7029. characterMakers.push(() => makeCharacter(
  7030. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7031. {
  7032. front: {
  7033. height: math.unit(6, "feet"),
  7034. weight: math.unit(90, "lbs"),
  7035. name: "Front",
  7036. image: {
  7037. source: "./media/characters/odi-lunar/front.svg"
  7038. }
  7039. }
  7040. },
  7041. [
  7042. {
  7043. name: "Micro",
  7044. height: math.unit(3, "inches"),
  7045. default: true
  7046. },
  7047. {
  7048. name: "Normal",
  7049. height: math.unit(5.5, "feet")
  7050. }
  7051. ]
  7052. ))
  7053. characterMakers.push(() => makeCharacter(
  7054. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7055. {
  7056. back: {
  7057. height: math.unit(6, "feet"),
  7058. weight: math.unit(220, "lbs"),
  7059. name: "Back",
  7060. image: {
  7061. source: "./media/characters/mandake/back.svg"
  7062. }
  7063. }
  7064. },
  7065. [
  7066. {
  7067. name: "Normal",
  7068. height: math.unit(7, "feet"),
  7069. default: true
  7070. },
  7071. {
  7072. name: "Macro",
  7073. height: math.unit(78, "feet")
  7074. },
  7075. {
  7076. name: "Macro+",
  7077. height: math.unit(300, "meters")
  7078. },
  7079. {
  7080. name: "Macro++",
  7081. height: math.unit(2400, "feet")
  7082. },
  7083. {
  7084. name: "Megamacro",
  7085. height: math.unit(5167, "meters")
  7086. },
  7087. {
  7088. name: "Gigamacro",
  7089. height: math.unit(41769, "miles")
  7090. },
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7095. {
  7096. front: {
  7097. height: math.unit(6, "feet"),
  7098. weight: math.unit(120, "lbs"),
  7099. name: "Front",
  7100. image: {
  7101. source: "./media/characters/yozey/front.svg"
  7102. }
  7103. },
  7104. frontAlt: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(120, "lbs"),
  7107. name: "Front (Alt)",
  7108. image: {
  7109. source: "./media/characters/yozey/front-alt.svg"
  7110. }
  7111. },
  7112. side: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(120, "lbs"),
  7115. name: "Side",
  7116. image: {
  7117. source: "./media/characters/yozey/side.svg"
  7118. }
  7119. },
  7120. },
  7121. [
  7122. {
  7123. name: "Micro",
  7124. height: math.unit(3, "inches"),
  7125. default: true
  7126. },
  7127. {
  7128. name: "Normal",
  7129. height: math.unit(6, "feet")
  7130. }
  7131. ]
  7132. ))
  7133. characterMakers.push(() => makeCharacter(
  7134. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7135. {
  7136. front: {
  7137. height: math.unit(6, "feet"),
  7138. weight: math.unit(103, "lbs"),
  7139. name: "Front",
  7140. image: {
  7141. source: "./media/characters/valeska-voss/front.svg"
  7142. }
  7143. }
  7144. },
  7145. [
  7146. {
  7147. name: "Mini-Sized Sub",
  7148. height: math.unit(3.1, "inches")
  7149. },
  7150. {
  7151. name: "Mid-Sized Sub",
  7152. height: math.unit(6.2, "inches")
  7153. },
  7154. {
  7155. name: "Full-Sized Sub",
  7156. height: math.unit(9.3, "inches")
  7157. },
  7158. {
  7159. name: "Normal",
  7160. height: math.unit(5 + 2 / 12, "foot"),
  7161. default: true
  7162. },
  7163. ]
  7164. ))
  7165. characterMakers.push(() => makeCharacter(
  7166. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7167. {
  7168. front: {
  7169. height: math.unit(6, "feet"),
  7170. weight: math.unit(160, "lbs"),
  7171. name: "Front",
  7172. image: {
  7173. source: "./media/characters/gene-zeta/front.svg",
  7174. extra: 3006 / 2826,
  7175. bottom: 182 / 3188
  7176. }
  7177. }
  7178. },
  7179. [
  7180. {
  7181. name: "Micro",
  7182. height: math.unit(6, "inches")
  7183. },
  7184. {
  7185. name: "Normal",
  7186. height: math.unit(5 + 11 / 12, "foot"),
  7187. default: true
  7188. },
  7189. {
  7190. name: "Macro",
  7191. height: math.unit(140, "feet")
  7192. },
  7193. {
  7194. name: "Supercharged",
  7195. height: math.unit(2500, "feet")
  7196. },
  7197. ]
  7198. ))
  7199. characterMakers.push(() => makeCharacter(
  7200. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7201. {
  7202. front: {
  7203. height: math.unit(6, "feet"),
  7204. weight: math.unit(350, "lbs"),
  7205. name: "Front",
  7206. image: {
  7207. source: "./media/characters/razinox/front.svg",
  7208. extra: 1686 / 1548,
  7209. bottom: 28.2 / 1868
  7210. }
  7211. },
  7212. back: {
  7213. height: math.unit(6, "feet"),
  7214. weight: math.unit(350, "lbs"),
  7215. name: "Back",
  7216. image: {
  7217. source: "./media/characters/razinox/back.svg",
  7218. extra: 1660 / 1590,
  7219. bottom: 15 / 1665
  7220. }
  7221. },
  7222. },
  7223. [
  7224. {
  7225. name: "Normal",
  7226. height: math.unit(10 + 8 / 12, "foot")
  7227. },
  7228. {
  7229. name: "Minimacro",
  7230. height: math.unit(15, "foot")
  7231. },
  7232. {
  7233. name: "Macro",
  7234. height: math.unit(60, "foot"),
  7235. default: true
  7236. },
  7237. {
  7238. name: "Megamacro",
  7239. height: math.unit(5, "miles")
  7240. },
  7241. {
  7242. name: "Gigamacro",
  7243. height: math.unit(6000, "miles")
  7244. },
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7249. {
  7250. front: {
  7251. height: math.unit(6, "feet"),
  7252. weight: math.unit(150, "lbs"),
  7253. name: "Front",
  7254. image: {
  7255. source: "./media/characters/cobalt/front.svg"
  7256. }
  7257. }
  7258. },
  7259. [
  7260. {
  7261. name: "Normal",
  7262. height: math.unit(8 + 1 / 12, "foot")
  7263. },
  7264. {
  7265. name: "Macro",
  7266. height: math.unit(111, "foot"),
  7267. default: true
  7268. },
  7269. {
  7270. name: "Supracosmic",
  7271. height: math.unit(1e42, "feet")
  7272. },
  7273. ]
  7274. ))
  7275. characterMakers.push(() => makeCharacter(
  7276. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7277. {
  7278. front: {
  7279. height: math.unit(6, "feet"),
  7280. weight: math.unit(140, "lbs"),
  7281. name: "Front",
  7282. image: {
  7283. source: "./media/characters/amanda/front.svg"
  7284. }
  7285. }
  7286. },
  7287. [
  7288. {
  7289. name: "Micro",
  7290. height: math.unit(5, "inches"),
  7291. default: true
  7292. },
  7293. ]
  7294. ))
  7295. characterMakers.push(() => makeCharacter(
  7296. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7297. {
  7298. front: {
  7299. height: math.unit(2.75, "meters"),
  7300. weight: math.unit(1200, "lb"),
  7301. name: "Front",
  7302. image: {
  7303. source: "./media/characters/teal/front.svg",
  7304. extra: 2463 / 2320,
  7305. bottom: 166 / 2629
  7306. }
  7307. },
  7308. back: {
  7309. height: math.unit(2.75, "meters"),
  7310. weight: math.unit(1200, "lb"),
  7311. name: "Back",
  7312. image: {
  7313. source: "./media/characters/teal/back.svg",
  7314. extra: 2580 / 2489,
  7315. bottom: 151 / 2731
  7316. }
  7317. },
  7318. sitting: {
  7319. height: math.unit(1.9, "meters"),
  7320. weight: math.unit(1200, "lb"),
  7321. name: "Sitting",
  7322. image: {
  7323. source: "./media/characters/teal/sitting.svg",
  7324. extra: 623 / 590,
  7325. bottom: 121 / 744
  7326. }
  7327. },
  7328. standing: {
  7329. height: math.unit(2.75, "meters"),
  7330. weight: math.unit(1200, "lb"),
  7331. name: "Standing",
  7332. image: {
  7333. source: "./media/characters/teal/standing.svg",
  7334. extra: 923 / 893,
  7335. bottom: 60 / 983
  7336. }
  7337. },
  7338. stretching: {
  7339. height: math.unit(3.65, "meters"),
  7340. weight: math.unit(1200, "lb"),
  7341. name: "Stretching",
  7342. image: {
  7343. source: "./media/characters/teal/stretching.svg",
  7344. extra: 1276 / 1244,
  7345. bottom: 0 / 1276
  7346. }
  7347. },
  7348. legged: {
  7349. height: math.unit(1.3, "meters"),
  7350. weight: math.unit(100, "lb"),
  7351. name: "Legged",
  7352. image: {
  7353. source: "./media/characters/teal/legged.svg",
  7354. extra: 462 / 437,
  7355. bottom: 24 / 486
  7356. }
  7357. },
  7358. naga: {
  7359. height: math.unit(5.4, "meters"),
  7360. weight: math.unit(4000, "lb"),
  7361. name: "Naga",
  7362. image: {
  7363. source: "./media/characters/teal/naga.svg",
  7364. extra: 1902 / 1858,
  7365. bottom: 0 / 1902
  7366. }
  7367. },
  7368. hand: {
  7369. height: math.unit(0.52, "meters"),
  7370. name: "Hand",
  7371. image: {
  7372. source: "./media/characters/teal/hand.svg"
  7373. }
  7374. },
  7375. maw: {
  7376. height: math.unit(0.43, "meters"),
  7377. name: "Maw",
  7378. image: {
  7379. source: "./media/characters/teal/maw.svg"
  7380. }
  7381. },
  7382. slit: {
  7383. height: math.unit(0.25, "meters"),
  7384. name: "Slit",
  7385. image: {
  7386. source: "./media/characters/teal/slit.svg"
  7387. }
  7388. },
  7389. },
  7390. [
  7391. {
  7392. name: "Normal",
  7393. height: math.unit(2.75, "meters"),
  7394. default: true
  7395. },
  7396. {
  7397. name: "Macro",
  7398. height: math.unit(300, "feet")
  7399. },
  7400. {
  7401. name: "Macro+",
  7402. height: math.unit(2000, "feet")
  7403. },
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7408. {
  7409. frontCat: {
  7410. height: math.unit(6, "feet"),
  7411. weight: math.unit(180, "lbs"),
  7412. name: "Front (Cat)",
  7413. image: {
  7414. source: "./media/characters/ravin-amulet/front-cat.svg"
  7415. }
  7416. },
  7417. frontCatAlt: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(180, "lbs"),
  7420. name: "Front (Alt, Cat)",
  7421. image: {
  7422. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7423. }
  7424. },
  7425. frontWerewolf: {
  7426. height: math.unit(6 * 1.2, "feet"),
  7427. weight: math.unit(225, "lbs"),
  7428. name: "Front (Werewolf)",
  7429. image: {
  7430. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7431. }
  7432. },
  7433. backWerewolf: {
  7434. height: math.unit(6 * 1.2, "feet"),
  7435. weight: math.unit(225, "lbs"),
  7436. name: "Back (Werewolf)",
  7437. image: {
  7438. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7439. }
  7440. },
  7441. },
  7442. [
  7443. {
  7444. name: "Nano",
  7445. height: math.unit(1, "micrometer")
  7446. },
  7447. {
  7448. name: "Micro",
  7449. height: math.unit(1, "inch")
  7450. },
  7451. {
  7452. name: "Normal",
  7453. height: math.unit(6, "feet"),
  7454. default: true
  7455. },
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(60, "feet")
  7459. }
  7460. ]
  7461. ))
  7462. characterMakers.push(() => makeCharacter(
  7463. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7464. {
  7465. front: {
  7466. height: math.unit(6, "feet"),
  7467. weight: math.unit(165, "lbs"),
  7468. name: "Front",
  7469. image: {
  7470. source: "./media/characters/fluoresce/front.svg"
  7471. }
  7472. }
  7473. },
  7474. [
  7475. {
  7476. name: "Micro",
  7477. height: math.unit(6, "cm")
  7478. },
  7479. {
  7480. name: "Normal",
  7481. height: math.unit(5 + 7 / 12, "feet"),
  7482. default: true
  7483. },
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(56, "feet")
  7487. },
  7488. {
  7489. name: "Megamacro",
  7490. height: math.unit(1.9, "miles")
  7491. },
  7492. ]
  7493. ))
  7494. characterMakers.push(() => makeCharacter(
  7495. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7496. {
  7497. front: {
  7498. height: math.unit(9 + 6 / 12, "feet"),
  7499. weight: math.unit(523, "lbs"),
  7500. name: "Side",
  7501. image: {
  7502. source: "./media/characters/aurora/side.svg"
  7503. }
  7504. }
  7505. },
  7506. [
  7507. {
  7508. name: "Normal",
  7509. height: math.unit(9 + 6 / 12, "feet")
  7510. },
  7511. {
  7512. name: "Macro",
  7513. height: math.unit(96, "feet"),
  7514. default: true
  7515. },
  7516. {
  7517. name: "Macro+",
  7518. height: math.unit(243, "feet")
  7519. },
  7520. ]
  7521. ))
  7522. characterMakers.push(() => makeCharacter(
  7523. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7524. {
  7525. front: {
  7526. height: math.unit(194, "cm"),
  7527. weight: math.unit(90, "kg"),
  7528. name: "Front",
  7529. image: {
  7530. source: "./media/characters/ranek/front.svg"
  7531. }
  7532. },
  7533. side: {
  7534. height: math.unit(194, "cm"),
  7535. weight: math.unit(90, "kg"),
  7536. name: "Side",
  7537. image: {
  7538. source: "./media/characters/ranek/side.svg"
  7539. }
  7540. },
  7541. back: {
  7542. height: math.unit(194, "cm"),
  7543. weight: math.unit(90, "kg"),
  7544. name: "Back",
  7545. image: {
  7546. source: "./media/characters/ranek/back.svg"
  7547. }
  7548. },
  7549. feral: {
  7550. height: math.unit(30, "cm"),
  7551. weight: math.unit(1.6, "lbs"),
  7552. name: "Feral",
  7553. image: {
  7554. source: "./media/characters/ranek/feral.svg"
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(194, "cm"),
  7562. default: true
  7563. },
  7564. {
  7565. name: "Macro",
  7566. height: math.unit(100, "meters")
  7567. },
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7572. {
  7573. front: {
  7574. height: math.unit(5 + 6 / 12, "feet"),
  7575. weight: math.unit(153, "lbs"),
  7576. name: "Front",
  7577. image: {
  7578. source: "./media/characters/andrew-cooper/front.svg"
  7579. }
  7580. },
  7581. },
  7582. [
  7583. {
  7584. name: "Nano",
  7585. height: math.unit(1, "mm")
  7586. },
  7587. {
  7588. name: "Micro",
  7589. height: math.unit(2, "inches")
  7590. },
  7591. {
  7592. name: "Normal",
  7593. height: math.unit(5 + 6 / 12, "feet"),
  7594. default: true
  7595. }
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7600. {
  7601. front: {
  7602. height: math.unit(6, "feet"),
  7603. weight: math.unit(180, "lbs"),
  7604. name: "Front",
  7605. image: {
  7606. source: "./media/characters/akane-sato/front.svg",
  7607. extra: 1219 / 1140
  7608. }
  7609. },
  7610. back: {
  7611. height: math.unit(6, "feet"),
  7612. weight: math.unit(180, "lbs"),
  7613. name: "Back",
  7614. image: {
  7615. source: "./media/characters/akane-sato/back.svg",
  7616. extra: 1219 / 1170
  7617. }
  7618. },
  7619. },
  7620. [
  7621. {
  7622. name: "Normal",
  7623. height: math.unit(2.5, "meters")
  7624. },
  7625. {
  7626. name: "Macro",
  7627. height: math.unit(250, "meters"),
  7628. default: true
  7629. },
  7630. {
  7631. name: "Megamacro",
  7632. height: math.unit(25, "km")
  7633. },
  7634. ]
  7635. ))
  7636. characterMakers.push(() => makeCharacter(
  7637. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7638. {
  7639. front: {
  7640. height: math.unit(6, "feet"),
  7641. weight: math.unit(65, "kg"),
  7642. name: "Front",
  7643. image: {
  7644. source: "./media/characters/rook/front.svg",
  7645. extra: 960 / 950
  7646. }
  7647. }
  7648. },
  7649. [
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(8.8, "feet")
  7653. },
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(88, "feet"),
  7657. default: true
  7658. },
  7659. {
  7660. name: "Megamacro",
  7661. height: math.unit(8, "miles")
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(12 + 2 / 12, "feet"),
  7670. weight: math.unit(808, "lbs"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/prodigy/front.svg"
  7674. }
  7675. }
  7676. },
  7677. [
  7678. {
  7679. name: "Normal",
  7680. height: math.unit(12 + 2 / 12, "feet"),
  7681. default: true
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(143, "feet")
  7686. },
  7687. {
  7688. name: "Macro+",
  7689. height: math.unit(400, "feet")
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7695. {
  7696. front: {
  7697. height: math.unit(6, "feet"),
  7698. weight: math.unit(225, "lbs"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/daniel/front.svg"
  7702. }
  7703. },
  7704. leaning: {
  7705. height: math.unit(6, "feet"),
  7706. weight: math.unit(225, "lbs"),
  7707. name: "Leaning",
  7708. image: {
  7709. source: "./media/characters/daniel/leaning.svg"
  7710. }
  7711. },
  7712. },
  7713. [
  7714. {
  7715. name: "Macro",
  7716. height: math.unit(1000, "feet"),
  7717. default: true
  7718. },
  7719. ]
  7720. ))
  7721. characterMakers.push(() => makeCharacter(
  7722. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7723. {
  7724. front: {
  7725. height: math.unit(6, "feet"),
  7726. weight: math.unit(88, "lbs"),
  7727. name: "Front",
  7728. image: {
  7729. source: "./media/characters/chiros/front.svg",
  7730. extra: 306 / 226
  7731. }
  7732. },
  7733. side: {
  7734. height: math.unit(6, "feet"),
  7735. weight: math.unit(88, "lbs"),
  7736. name: "Side",
  7737. image: {
  7738. source: "./media/characters/chiros/side.svg",
  7739. extra: 306 / 226
  7740. }
  7741. },
  7742. },
  7743. [
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(6, "cm"),
  7747. default: true
  7748. },
  7749. ]
  7750. ))
  7751. characterMakers.push(() => makeCharacter(
  7752. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7753. {
  7754. front: {
  7755. height: math.unit(6, "feet"),
  7756. weight: math.unit(100, "lbs"),
  7757. name: "Front",
  7758. image: {
  7759. source: "./media/characters/selka/front.svg",
  7760. extra: 947 / 887
  7761. }
  7762. }
  7763. },
  7764. [
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(5, "cm"),
  7768. default: true
  7769. },
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7774. {
  7775. front: {
  7776. height: math.unit(8 + 3 / 12, "feet"),
  7777. weight: math.unit(424, "lbs"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/verin/front.svg",
  7781. extra: 1845 / 1550
  7782. }
  7783. },
  7784. frontArmored: {
  7785. height: math.unit(8 + 3 / 12, "feet"),
  7786. weight: math.unit(424, "lbs"),
  7787. name: "Front (Armored)",
  7788. image: {
  7789. source: "./media/characters/verin/front-armor.svg",
  7790. extra: 1845 / 1550,
  7791. bottom: 0.01
  7792. }
  7793. },
  7794. back: {
  7795. height: math.unit(8 + 3 / 12, "feet"),
  7796. weight: math.unit(424, "lbs"),
  7797. name: "Back",
  7798. image: {
  7799. source: "./media/characters/verin/back.svg",
  7800. bottom: 0.1,
  7801. extra: 1
  7802. }
  7803. },
  7804. foot: {
  7805. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7806. name: "Foot",
  7807. image: {
  7808. source: "./media/characters/verin/foot.svg"
  7809. }
  7810. },
  7811. },
  7812. [
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(8 + 3 / 12, "feet")
  7816. },
  7817. {
  7818. name: "Minimacro",
  7819. height: math.unit(21, "feet"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "Macro",
  7824. height: math.unit(626, "feet")
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(2.718, "meters"),
  7833. weight: math.unit(150, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/sovrim-terraquian/front.svg"
  7837. }
  7838. },
  7839. back: {
  7840. height: math.unit(2.718, "meters"),
  7841. weight: math.unit(150, "lbs"),
  7842. name: "Back",
  7843. image: {
  7844. source: "./media/characters/sovrim-terraquian/back.svg"
  7845. }
  7846. }
  7847. },
  7848. [
  7849. {
  7850. name: "Micro",
  7851. height: math.unit(2, "inches")
  7852. },
  7853. {
  7854. name: "Small",
  7855. height: math.unit(1, "meter")
  7856. },
  7857. {
  7858. name: "Normal",
  7859. height: math.unit(Math.E, "meters"),
  7860. default: true
  7861. },
  7862. {
  7863. name: "Macro",
  7864. height: math.unit(20, "meters")
  7865. },
  7866. {
  7867. name: "Macro+",
  7868. height: math.unit(400, "meters")
  7869. },
  7870. ]
  7871. ))
  7872. characterMakers.push(() => makeCharacter(
  7873. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7874. {
  7875. front: {
  7876. height: math.unit(7, "feet"),
  7877. weight: math.unit(489, "lbs"),
  7878. name: "Front",
  7879. image: {
  7880. source: "./media/characters/reece-silvermane/front.svg",
  7881. bottom: 0.02,
  7882. extra: 1
  7883. }
  7884. },
  7885. },
  7886. [
  7887. {
  7888. name: "Macro",
  7889. height: math.unit(1.5, "miles"),
  7890. default: true
  7891. },
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7896. {
  7897. front: {
  7898. height: math.unit(6, "feet"),
  7899. weight: math.unit(78, "kg"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/kane/front.svg",
  7903. extra: 978 / 899
  7904. }
  7905. },
  7906. },
  7907. [
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(2.1, "m"),
  7911. },
  7912. {
  7913. name: "Macro",
  7914. height: math.unit(1, "km"),
  7915. default: true
  7916. },
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7921. {
  7922. front: {
  7923. height: math.unit(6, "feet"),
  7924. weight: math.unit(200, "kg"),
  7925. name: "Front",
  7926. image: {
  7927. source: "./media/characters/tegon/front.svg",
  7928. bottom: 0.01,
  7929. extra: 1
  7930. }
  7931. },
  7932. },
  7933. [
  7934. {
  7935. name: "Micro",
  7936. height: math.unit(1, "inch")
  7937. },
  7938. {
  7939. name: "Normal",
  7940. height: math.unit(6 + 3 / 12, "feet"),
  7941. default: true
  7942. },
  7943. {
  7944. name: "Macro",
  7945. height: math.unit(300, "feet")
  7946. },
  7947. {
  7948. name: "Megamacro",
  7949. height: math.unit(69, "miles")
  7950. },
  7951. ]
  7952. ))
  7953. characterMakers.push(() => makeCharacter(
  7954. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7955. {
  7956. side: {
  7957. height: math.unit(6, "feet"),
  7958. weight: math.unit(2304, "lbs"),
  7959. name: "Side",
  7960. image: {
  7961. source: "./media/characters/arcturax/side.svg",
  7962. extra: 790 / 376,
  7963. bottom: 0.01
  7964. }
  7965. },
  7966. },
  7967. [
  7968. {
  7969. name: "Micro",
  7970. height: math.unit(2, "inch")
  7971. },
  7972. {
  7973. name: "Normal",
  7974. height: math.unit(6, "feet")
  7975. },
  7976. {
  7977. name: "Macro",
  7978. height: math.unit(39, "feet"),
  7979. default: true
  7980. },
  7981. {
  7982. name: "Megamacro",
  7983. height: math.unit(7, "miles")
  7984. },
  7985. ]
  7986. ))
  7987. characterMakers.push(() => makeCharacter(
  7988. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7989. {
  7990. front: {
  7991. height: math.unit(6, "feet"),
  7992. weight: math.unit(50, "lbs"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/sentri/front.svg",
  7996. extra: 1750 / 1570,
  7997. bottom: 0.025
  7998. }
  7999. },
  8000. frontAlt: {
  8001. height: math.unit(6, "feet"),
  8002. weight: math.unit(50, "lbs"),
  8003. name: "Front (Alt)",
  8004. image: {
  8005. source: "./media/characters/sentri/front-alt.svg",
  8006. extra: 1750 / 1570,
  8007. bottom: 0.025
  8008. }
  8009. },
  8010. },
  8011. [
  8012. {
  8013. name: "Normal",
  8014. height: math.unit(15, "feet"),
  8015. default: true
  8016. },
  8017. {
  8018. name: "Macro",
  8019. height: math.unit(2500, "feet")
  8020. }
  8021. ]
  8022. ))
  8023. characterMakers.push(() => makeCharacter(
  8024. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8025. {
  8026. front: {
  8027. height: math.unit(5 + 8 / 12, "feet"),
  8028. weight: math.unit(130, "lbs"),
  8029. name: "Front",
  8030. image: {
  8031. source: "./media/characters/corvin/front.svg",
  8032. extra: 1803 / 1629
  8033. }
  8034. },
  8035. frontShirt: {
  8036. height: math.unit(5 + 8 / 12, "feet"),
  8037. weight: math.unit(130, "lbs"),
  8038. name: "Front (Shirt)",
  8039. image: {
  8040. source: "./media/characters/corvin/front-shirt.svg",
  8041. extra: 1803 / 1629
  8042. }
  8043. },
  8044. frontPoncho: {
  8045. height: math.unit(5 + 8 / 12, "feet"),
  8046. weight: math.unit(130, "lbs"),
  8047. name: "Front (Poncho)",
  8048. image: {
  8049. source: "./media/characters/corvin/front-poncho.svg",
  8050. extra: 1803 / 1629
  8051. }
  8052. },
  8053. side: {
  8054. height: math.unit(5 + 8 / 12, "feet"),
  8055. weight: math.unit(130, "lbs"),
  8056. name: "Side",
  8057. image: {
  8058. source: "./media/characters/corvin/side.svg",
  8059. extra: 1012 / 945
  8060. }
  8061. },
  8062. back: {
  8063. height: math.unit(5 + 8 / 12, "feet"),
  8064. weight: math.unit(130, "lbs"),
  8065. name: "Back",
  8066. image: {
  8067. source: "./media/characters/corvin/back.svg",
  8068. extra: 1803 / 1629
  8069. }
  8070. },
  8071. },
  8072. [
  8073. {
  8074. name: "Micro",
  8075. height: math.unit(3, "inches")
  8076. },
  8077. {
  8078. name: "Normal",
  8079. height: math.unit(5 + 8 / 12, "feet")
  8080. },
  8081. {
  8082. name: "Macro",
  8083. height: math.unit(300, "feet"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Megamacro",
  8088. height: math.unit(500, "miles")
  8089. }
  8090. ]
  8091. ))
  8092. characterMakers.push(() => makeCharacter(
  8093. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8094. {
  8095. front: {
  8096. height: math.unit(6, "feet"),
  8097. weight: math.unit(135, "lbs"),
  8098. name: "Front",
  8099. image: {
  8100. source: "./media/characters/q/front.svg",
  8101. extra: 854 / 752,
  8102. bottom: 0.005
  8103. }
  8104. },
  8105. back: {
  8106. height: math.unit(6, "feet"),
  8107. weight: math.unit(130, "lbs"),
  8108. name: "Back",
  8109. image: {
  8110. source: "./media/characters/q/back.svg",
  8111. extra: 854 / 752
  8112. }
  8113. },
  8114. },
  8115. [
  8116. {
  8117. name: "Macro",
  8118. height: math.unit(90, "feet"),
  8119. default: true
  8120. },
  8121. {
  8122. name: "Extra Macro",
  8123. height: math.unit(300, "feet"),
  8124. },
  8125. {
  8126. name: "BIG WALF",
  8127. height: math.unit(750, "feet"),
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8133. {
  8134. front: {
  8135. height: math.unit(6, "feet"),
  8136. weight: math.unit(150, "lbs"),
  8137. name: "Front",
  8138. image: {
  8139. source: "./media/characters/carley/front.svg",
  8140. extra: 3927 / 3540,
  8141. bottom: 29.2 / 735
  8142. }
  8143. }
  8144. },
  8145. [
  8146. {
  8147. name: "Normal",
  8148. height: math.unit(6 + 3 / 12, "feet")
  8149. },
  8150. {
  8151. name: "Macro",
  8152. height: math.unit(185, "feet"),
  8153. default: true
  8154. },
  8155. {
  8156. name: "Megamacro",
  8157. height: math.unit(8, "miles"),
  8158. },
  8159. ]
  8160. ))
  8161. characterMakers.push(() => makeCharacter(
  8162. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8163. {
  8164. front: {
  8165. height: math.unit(3, "feet"),
  8166. weight: math.unit(28, "lbs"),
  8167. name: "Front",
  8168. image: {
  8169. source: "./media/characters/citrine/front.svg"
  8170. }
  8171. }
  8172. },
  8173. [
  8174. {
  8175. name: "Normal",
  8176. height: math.unit(3, "feet"),
  8177. default: true
  8178. }
  8179. ]
  8180. ))
  8181. characterMakers.push(() => makeCharacter(
  8182. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8183. {
  8184. front: {
  8185. height: math.unit(14, "feet"),
  8186. weight: math.unit(1450, "kg"),
  8187. capacity: math.unit(15, "people"),
  8188. name: "Front",
  8189. image: {
  8190. source: "./media/characters/aura-starwind/front.svg",
  8191. extra: 1440/1327,
  8192. bottom: 11/1451
  8193. }
  8194. },
  8195. side: {
  8196. height: math.unit(14, "feet"),
  8197. weight: math.unit(1450, "kg"),
  8198. capacity: math.unit(15, "people"),
  8199. name: "Side",
  8200. image: {
  8201. source: "./media/characters/aura-starwind/side.svg",
  8202. extra: 1654 / 1497
  8203. }
  8204. },
  8205. taur: {
  8206. height: math.unit(18, "feet"),
  8207. weight: math.unit(5500, "kg"),
  8208. capacity: math.unit(50, "people"),
  8209. name: "Taur",
  8210. image: {
  8211. source: "./media/characters/aura-starwind/taur.svg",
  8212. extra: 1760 / 1650
  8213. }
  8214. },
  8215. feral: {
  8216. height: math.unit(46, "feet"),
  8217. weight: math.unit(25000, "kg"),
  8218. capacity: math.unit(120, "people"),
  8219. name: "Feral",
  8220. image: {
  8221. source: "./media/characters/aura-starwind/feral.svg"
  8222. }
  8223. },
  8224. },
  8225. [
  8226. {
  8227. name: "Normal",
  8228. height: math.unit(14, "feet"),
  8229. default: true
  8230. },
  8231. {
  8232. name: "Macro",
  8233. height: math.unit(50, "meters")
  8234. },
  8235. {
  8236. name: "Megamacro",
  8237. height: math.unit(5000, "meters")
  8238. },
  8239. {
  8240. name: "Gigamacro",
  8241. height: math.unit(100000, "kilometers")
  8242. },
  8243. ]
  8244. ))
  8245. characterMakers.push(() => makeCharacter(
  8246. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8247. {
  8248. front: {
  8249. height: math.unit(2 + 7 / 12, "feet"),
  8250. weight: math.unit(32, "lbs"),
  8251. name: "Front",
  8252. image: {
  8253. source: "./media/characters/rivet/front.svg",
  8254. extra: 1716 / 1658,
  8255. bottom: 0.03
  8256. }
  8257. },
  8258. foot: {
  8259. height: math.unit(0.551, "feet"),
  8260. name: "Rivet's Foot",
  8261. image: {
  8262. source: "./media/characters/rivet/foot.svg"
  8263. },
  8264. rename: true
  8265. }
  8266. },
  8267. [
  8268. {
  8269. name: "Micro",
  8270. height: math.unit(1.5, "inches"),
  8271. },
  8272. {
  8273. name: "Normal",
  8274. height: math.unit(2 + 7 / 12, "feet"),
  8275. default: true
  8276. },
  8277. {
  8278. name: "Macro",
  8279. height: math.unit(85, "feet")
  8280. },
  8281. {
  8282. name: "Megamacro",
  8283. height: math.unit(2.2, "km")
  8284. }
  8285. ]
  8286. ))
  8287. characterMakers.push(() => makeCharacter(
  8288. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8289. {
  8290. front: {
  8291. height: math.unit(5 + 9 / 12, "feet"),
  8292. weight: math.unit(150, "lbs"),
  8293. name: "Front",
  8294. image: {
  8295. source: "./media/characters/coffee/front.svg",
  8296. extra: 3666 / 3032,
  8297. bottom: 0.04
  8298. }
  8299. },
  8300. foot: {
  8301. height: math.unit(1.29, "feet"),
  8302. name: "Foot",
  8303. image: {
  8304. source: "./media/characters/coffee/foot.svg"
  8305. }
  8306. },
  8307. },
  8308. [
  8309. {
  8310. name: "Micro",
  8311. height: math.unit(2, "inches"),
  8312. },
  8313. {
  8314. name: "Normal",
  8315. height: math.unit(5 + 9 / 12, "feet"),
  8316. default: true
  8317. },
  8318. {
  8319. name: "Macro",
  8320. height: math.unit(800, "feet")
  8321. },
  8322. {
  8323. name: "Megamacro",
  8324. height: math.unit(25, "miles")
  8325. }
  8326. ]
  8327. ))
  8328. characterMakers.push(() => makeCharacter(
  8329. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8330. {
  8331. front: {
  8332. height: math.unit(6, "feet"),
  8333. weight: math.unit(200, "lbs"),
  8334. name: "Front",
  8335. image: {
  8336. source: "./media/characters/chari-gal/front.svg",
  8337. extra: 1568 / 1385,
  8338. bottom: 0.047
  8339. }
  8340. },
  8341. gigantamax: {
  8342. height: math.unit(6 * 16, "feet"),
  8343. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8344. name: "Gigantamax",
  8345. image: {
  8346. source: "./media/characters/chari-gal/gigantamax.svg",
  8347. extra: 1124 / 888,
  8348. bottom: 0.03
  8349. }
  8350. },
  8351. },
  8352. [
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(5 + 7 / 12, "feet")
  8356. },
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(200, "feet"),
  8360. default: true
  8361. }
  8362. ]
  8363. ))
  8364. characterMakers.push(() => makeCharacter(
  8365. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8366. {
  8367. front: {
  8368. height: math.unit(6, "feet"),
  8369. weight: math.unit(150, "lbs"),
  8370. name: "Front",
  8371. image: {
  8372. source: "./media/characters/nova/front.svg",
  8373. extra: 5000 / 4722,
  8374. bottom: 0.02
  8375. }
  8376. }
  8377. },
  8378. [
  8379. {
  8380. name: "Micro-",
  8381. height: math.unit(0.8, "inches")
  8382. },
  8383. {
  8384. name: "Micro",
  8385. height: math.unit(2, "inches"),
  8386. default: true
  8387. },
  8388. ]
  8389. ))
  8390. characterMakers.push(() => makeCharacter(
  8391. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8392. {
  8393. front: {
  8394. height: math.unit(3 + 1 / 12, "feet"),
  8395. weight: math.unit(21.7, "lbs"),
  8396. name: "Front",
  8397. image: {
  8398. source: "./media/characters/argent/front.svg",
  8399. extra: 1471 / 1331,
  8400. bottom: 100.8 / 1575.5
  8401. }
  8402. }
  8403. },
  8404. [
  8405. {
  8406. name: "Micro",
  8407. height: math.unit(2, "inches")
  8408. },
  8409. {
  8410. name: "Normal",
  8411. height: math.unit(3 + 1 / 12, "feet"),
  8412. default: true
  8413. },
  8414. {
  8415. name: "Macro",
  8416. height: math.unit(120, "feet")
  8417. },
  8418. ]
  8419. ))
  8420. characterMakers.push(() => makeCharacter(
  8421. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8422. {
  8423. lamp: {
  8424. height: math.unit(7 * 1559 / 989, "feet"),
  8425. name: "Magic Lamp",
  8426. image: {
  8427. source: "./media/characters/mira-al-cul/lamp.svg",
  8428. extra: 1617 / 1559
  8429. }
  8430. },
  8431. front: {
  8432. height: math.unit(7, "feet"),
  8433. name: "Front",
  8434. image: {
  8435. source: "./media/characters/mira-al-cul/front.svg",
  8436. extra: 1044 / 990
  8437. }
  8438. },
  8439. },
  8440. [
  8441. {
  8442. name: "Heavily Restricted",
  8443. height: math.unit(7 * 1559 / 989, "feet")
  8444. },
  8445. {
  8446. name: "Freshly Freed",
  8447. height: math.unit(50 * 1559 / 989, "feet")
  8448. },
  8449. {
  8450. name: "World Encompassing",
  8451. height: math.unit(10000 * 1559 / 989, "miles")
  8452. },
  8453. {
  8454. name: "Galactic",
  8455. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8456. },
  8457. {
  8458. name: "Palmed Universe",
  8459. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8460. default: true
  8461. },
  8462. {
  8463. name: "Multiversal Matriarch",
  8464. height: math.unit(8.87e10, "yottameters")
  8465. },
  8466. {
  8467. name: "Void Mother",
  8468. height: math.unit(3.14e110, "yottaparsecs")
  8469. },
  8470. {
  8471. name: "Toying with Transcendence",
  8472. height: math.unit(1e307, "meters")
  8473. },
  8474. ]
  8475. ))
  8476. characterMakers.push(() => makeCharacter(
  8477. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8478. {
  8479. front: {
  8480. height: math.unit(17 + 1 / 12, "feet"),
  8481. weight: math.unit(476.2 * 5, "lbs"),
  8482. name: "Front",
  8483. image: {
  8484. source: "./media/characters/kuro-shi-uchū/front.svg",
  8485. extra: 2329 / 1835,
  8486. bottom: 0.02
  8487. }
  8488. },
  8489. },
  8490. [
  8491. {
  8492. name: "Micro",
  8493. height: math.unit(2, "inches")
  8494. },
  8495. {
  8496. name: "Normal",
  8497. height: math.unit(12, "meters")
  8498. },
  8499. {
  8500. name: "Planetary",
  8501. height: math.unit(0.00929, "AU"),
  8502. default: true
  8503. },
  8504. {
  8505. name: "Universal",
  8506. height: math.unit(20, "gigaparsecs")
  8507. },
  8508. ]
  8509. ))
  8510. characterMakers.push(() => makeCharacter(
  8511. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8512. {
  8513. front: {
  8514. height: math.unit(5 + 2 / 12, "feet"),
  8515. weight: math.unit(120, "lbs"),
  8516. name: "Front",
  8517. image: {
  8518. source: "./media/characters/katherine/front.svg",
  8519. extra: 2075 / 1969
  8520. }
  8521. },
  8522. dress: {
  8523. height: math.unit(5 + 2 / 12, "feet"),
  8524. weight: math.unit(120, "lbs"),
  8525. name: "Dress",
  8526. image: {
  8527. source: "./media/characters/katherine/dress.svg",
  8528. extra: 2258 / 2064
  8529. }
  8530. },
  8531. },
  8532. [
  8533. {
  8534. name: "Micro",
  8535. height: math.unit(1, "inches"),
  8536. default: true
  8537. },
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(5 + 2 / 12, "feet")
  8541. },
  8542. {
  8543. name: "Macro",
  8544. height: math.unit(100, "meters")
  8545. },
  8546. {
  8547. name: "Megamacro",
  8548. height: math.unit(80, "miles")
  8549. },
  8550. ]
  8551. ))
  8552. characterMakers.push(() => makeCharacter(
  8553. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8554. {
  8555. front: {
  8556. height: math.unit(7 + 8 / 12, "feet"),
  8557. weight: math.unit(250, "lbs"),
  8558. name: "Front",
  8559. image: {
  8560. source: "./media/characters/yevis/front.svg",
  8561. extra: 1938 / 1755
  8562. }
  8563. }
  8564. },
  8565. [
  8566. {
  8567. name: "Mortal",
  8568. height: math.unit(7 + 8 / 12, "feet")
  8569. },
  8570. {
  8571. name: "Battle",
  8572. height: math.unit(25 + 11 / 12, "feet")
  8573. },
  8574. {
  8575. name: "Wrath",
  8576. height: math.unit(1654 + 11 / 12, "feet")
  8577. },
  8578. {
  8579. name: "Planet Destroyer",
  8580. height: math.unit(12000, "miles")
  8581. },
  8582. {
  8583. name: "Galaxy Conqueror",
  8584. height: math.unit(1.45, "zettameters"),
  8585. default: true
  8586. },
  8587. {
  8588. name: "Universal War",
  8589. height: math.unit(184, "gigaparsecs")
  8590. },
  8591. {
  8592. name: "Eternity War",
  8593. height: math.unit(1.98e55, "yottaparsecs")
  8594. },
  8595. ]
  8596. ))
  8597. characterMakers.push(() => makeCharacter(
  8598. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8599. {
  8600. front: {
  8601. height: math.unit(5 + 8 / 12, "feet"),
  8602. weight: math.unit(63, "kg"),
  8603. name: "Front",
  8604. image: {
  8605. source: "./media/characters/xavier/front.svg",
  8606. extra: 944 / 883
  8607. }
  8608. },
  8609. frontStretch: {
  8610. height: math.unit(5 + 8 / 12, "feet"),
  8611. weight: math.unit(63, "kg"),
  8612. name: "Stretching",
  8613. image: {
  8614. source: "./media/characters/xavier/front-stretch.svg",
  8615. extra: 962 / 820
  8616. }
  8617. },
  8618. },
  8619. [
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(5 + 8 / 12, "feet")
  8623. },
  8624. {
  8625. name: "Macro",
  8626. height: math.unit(100, "meters"),
  8627. default: true
  8628. },
  8629. {
  8630. name: "McLargeHuge",
  8631. height: math.unit(10, "miles")
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8637. {
  8638. front: {
  8639. height: math.unit(5 + 5 / 12, "feet"),
  8640. weight: math.unit(150, "lb"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/joshii/front.svg",
  8644. extra: 765 / 653,
  8645. bottom: 51 / 816
  8646. }
  8647. },
  8648. foot: {
  8649. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8650. name: "Foot",
  8651. image: {
  8652. source: "./media/characters/joshii/foot.svg"
  8653. }
  8654. },
  8655. },
  8656. [
  8657. {
  8658. name: "Micro",
  8659. height: math.unit(2, "inches"),
  8660. default: true
  8661. },
  8662. {
  8663. name: "Normal",
  8664. height: math.unit(5 + 5 / 12, "feet")
  8665. },
  8666. {
  8667. name: "Macro",
  8668. height: math.unit(785, "feet")
  8669. },
  8670. {
  8671. name: "Megamacro",
  8672. height: math.unit(24.5, "miles")
  8673. },
  8674. ]
  8675. ))
  8676. characterMakers.push(() => makeCharacter(
  8677. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8678. {
  8679. front: {
  8680. height: math.unit(6, "feet"),
  8681. weight: math.unit(150, "lb"),
  8682. name: "Front",
  8683. image: {
  8684. source: "./media/characters/goddess-elizabeth/front.svg",
  8685. extra: 1800 / 1525,
  8686. bottom: 0.005
  8687. }
  8688. },
  8689. foot: {
  8690. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8691. name: "Foot",
  8692. image: {
  8693. source: "./media/characters/goddess-elizabeth/foot.svg"
  8694. }
  8695. },
  8696. mouth: {
  8697. height: math.unit(6, "feet"),
  8698. name: "Mouth",
  8699. image: {
  8700. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8701. }
  8702. },
  8703. },
  8704. [
  8705. {
  8706. name: "Micro",
  8707. height: math.unit(12, "feet")
  8708. },
  8709. {
  8710. name: "Normal",
  8711. height: math.unit(80, "miles"),
  8712. default: true
  8713. },
  8714. {
  8715. name: "Macro",
  8716. height: math.unit(15000, "parsecs")
  8717. },
  8718. ]
  8719. ))
  8720. characterMakers.push(() => makeCharacter(
  8721. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8722. {
  8723. front: {
  8724. height: math.unit(5 + 9 / 12, "feet"),
  8725. weight: math.unit(144, "lb"),
  8726. name: "Front",
  8727. image: {
  8728. source: "./media/characters/kara/front.svg"
  8729. }
  8730. },
  8731. feet: {
  8732. height: math.unit(6 / 6.765, "feet"),
  8733. name: "Kara's Feet",
  8734. rename: true,
  8735. image: {
  8736. source: "./media/characters/kara/feet.svg"
  8737. }
  8738. },
  8739. },
  8740. [
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(5 + 9 / 12, "feet")
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(174, "feet"),
  8748. default: true
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8754. {
  8755. front: {
  8756. height: math.unit(18, "feet"),
  8757. weight: math.unit(4050, "lb"),
  8758. name: "Front",
  8759. image: {
  8760. source: "./media/characters/tyrone/front.svg",
  8761. extra: 2405 / 2270,
  8762. bottom: 182 / 2587
  8763. }
  8764. },
  8765. },
  8766. [
  8767. {
  8768. name: "Normal",
  8769. height: math.unit(18, "feet"),
  8770. default: true
  8771. },
  8772. {
  8773. name: "Macro",
  8774. height: math.unit(300, "feet")
  8775. },
  8776. {
  8777. name: "Megamacro",
  8778. height: math.unit(15, "km")
  8779. },
  8780. {
  8781. name: "Gigamacro",
  8782. height: math.unit(500, "km")
  8783. },
  8784. {
  8785. name: "Teramacro",
  8786. height: math.unit(0.5, "gigameters")
  8787. },
  8788. {
  8789. name: "Omnimacro",
  8790. height: math.unit(1e252, "yottauniverse")
  8791. },
  8792. ]
  8793. ))
  8794. characterMakers.push(() => makeCharacter(
  8795. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8796. {
  8797. front: {
  8798. height: math.unit(7 + 8 / 12, "feet"),
  8799. weight: math.unit(120, "lb"),
  8800. name: "Front",
  8801. image: {
  8802. source: "./media/characters/danny/front.svg",
  8803. extra: 1490 / 1350
  8804. }
  8805. },
  8806. back: {
  8807. height: math.unit(7 + 8 / 12, "feet"),
  8808. weight: math.unit(120, "lb"),
  8809. name: "Back",
  8810. image: {
  8811. source: "./media/characters/danny/back.svg",
  8812. extra: 1490 / 1350
  8813. }
  8814. },
  8815. },
  8816. [
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(7 + 8 / 12, "feet"),
  8820. default: true
  8821. },
  8822. ]
  8823. ))
  8824. characterMakers.push(() => makeCharacter(
  8825. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8826. {
  8827. front: {
  8828. height: math.unit(3.5, "inches"),
  8829. weight: math.unit(19, "grams"),
  8830. name: "Front",
  8831. image: {
  8832. source: "./media/characters/mallow/front.svg",
  8833. extra: 471 / 431
  8834. }
  8835. },
  8836. back: {
  8837. height: math.unit(3.5, "inches"),
  8838. weight: math.unit(19, "grams"),
  8839. name: "Back",
  8840. image: {
  8841. source: "./media/characters/mallow/back.svg",
  8842. extra: 471 / 431
  8843. }
  8844. },
  8845. },
  8846. [
  8847. {
  8848. name: "Normal",
  8849. height: math.unit(3.5, "inches"),
  8850. default: true
  8851. },
  8852. ]
  8853. ))
  8854. characterMakers.push(() => makeCharacter(
  8855. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8856. {
  8857. front: {
  8858. height: math.unit(9, "feet"),
  8859. weight: math.unit(230, "kg"),
  8860. name: "Front",
  8861. image: {
  8862. source: "./media/characters/starry-aqua/front.svg"
  8863. }
  8864. },
  8865. back: {
  8866. height: math.unit(9, "feet"),
  8867. weight: math.unit(230, "kg"),
  8868. name: "Back",
  8869. image: {
  8870. source: "./media/characters/starry-aqua/back.svg"
  8871. }
  8872. },
  8873. hand: {
  8874. height: math.unit(9 * 0.1168, "feet"),
  8875. name: "Hand",
  8876. image: {
  8877. source: "./media/characters/starry-aqua/hand.svg"
  8878. }
  8879. },
  8880. foot: {
  8881. height: math.unit(9 * 0.18, "feet"),
  8882. name: "Foot",
  8883. image: {
  8884. source: "./media/characters/starry-aqua/foot.svg"
  8885. }
  8886. }
  8887. },
  8888. [
  8889. {
  8890. name: "Micro",
  8891. height: math.unit(3, "inches")
  8892. },
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(9, "feet")
  8896. },
  8897. {
  8898. name: "Macro",
  8899. height: math.unit(300, "feet"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Megamacro",
  8904. height: math.unit(3200, "feet")
  8905. }
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8910. {
  8911. front: {
  8912. height: math.unit(6, "feet"),
  8913. weight: math.unit(230, "lb"),
  8914. name: "Front",
  8915. image: {
  8916. source: "./media/characters/luka/front.svg",
  8917. extra: 1,
  8918. bottom: 0.025
  8919. }
  8920. },
  8921. },
  8922. [
  8923. {
  8924. name: "Normal",
  8925. height: math.unit(12 + 8 / 12, "feet"),
  8926. default: true
  8927. },
  8928. {
  8929. name: "Minimacro",
  8930. height: math.unit(20, "feet")
  8931. },
  8932. {
  8933. name: "Macro",
  8934. height: math.unit(250, "feet")
  8935. },
  8936. {
  8937. name: "Megamacro",
  8938. height: math.unit(5, "miles")
  8939. },
  8940. {
  8941. name: "Gigamacro",
  8942. height: math.unit(8000, "miles")
  8943. },
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(6, "feet"),
  8951. weight: math.unit(150, "lb"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/natalie-nightring/front.svg",
  8955. extra: 1,
  8956. bottom: 0.06
  8957. }
  8958. },
  8959. },
  8960. [
  8961. {
  8962. name: "Uh Oh",
  8963. height: math.unit(0.1, "mm")
  8964. },
  8965. {
  8966. name: "Small",
  8967. height: math.unit(3, "inches")
  8968. },
  8969. {
  8970. name: "Human Scale",
  8971. height: math.unit(6, "feet")
  8972. },
  8973. {
  8974. name: "Librarian",
  8975. height: math.unit(50, "feet"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "Immense",
  8980. height: math.unit(200, "miles")
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(6, "feet"),
  8989. weight: math.unit(180, "lbs"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/danni-rosie/front.svg",
  8993. extra: 1260 / 1128,
  8994. bottom: 0.022
  8995. }
  8996. },
  8997. },
  8998. [
  8999. {
  9000. name: "Micro",
  9001. height: math.unit(2, "inches"),
  9002. default: true
  9003. },
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9008. {
  9009. front: {
  9010. height: math.unit(5 + 9 / 12, "feet"),
  9011. weight: math.unit(220, "lb"),
  9012. name: "Front",
  9013. image: {
  9014. source: "./media/characters/samantha-kruse/front.svg",
  9015. extra: (985 / 935),
  9016. bottom: 0.03
  9017. }
  9018. },
  9019. frontUndressed: {
  9020. height: math.unit(5 + 9 / 12, "feet"),
  9021. weight: math.unit(220, "lb"),
  9022. name: "Front (Undressed)",
  9023. image: {
  9024. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9025. extra: (973 / 923),
  9026. bottom: 0.025
  9027. }
  9028. },
  9029. fat: {
  9030. height: math.unit(5 + 9 / 12, "feet"),
  9031. weight: math.unit(900, "lb"),
  9032. name: "Front (Fat)",
  9033. image: {
  9034. source: "./media/characters/samantha-kruse/fat.svg",
  9035. extra: 2688 / 2561
  9036. }
  9037. },
  9038. },
  9039. [
  9040. {
  9041. name: "Normal",
  9042. height: math.unit(5 + 9 / 12, "feet"),
  9043. default: true
  9044. }
  9045. ]
  9046. ))
  9047. characterMakers.push(() => makeCharacter(
  9048. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9049. {
  9050. back: {
  9051. height: math.unit(5 + 4 / 12, "feet"),
  9052. weight: math.unit(4963, "lb"),
  9053. name: "Back",
  9054. image: {
  9055. source: "./media/characters/amelia-rosie/back.svg",
  9056. extra: 1113 / 963,
  9057. bottom: 0.01
  9058. }
  9059. },
  9060. },
  9061. [
  9062. {
  9063. name: "Level 0",
  9064. height: math.unit(5 + 4 / 12, "feet")
  9065. },
  9066. {
  9067. name: "Level 1",
  9068. height: math.unit(164597, "feet"),
  9069. default: true
  9070. },
  9071. {
  9072. name: "Level 2",
  9073. height: math.unit(956243, "miles")
  9074. },
  9075. {
  9076. name: "Level 3",
  9077. height: math.unit(29421709423, "miles")
  9078. },
  9079. {
  9080. name: "Level 4",
  9081. height: math.unit(154, "lightyears")
  9082. },
  9083. {
  9084. name: "Level 5",
  9085. height: math.unit(4738272, "lightyears")
  9086. },
  9087. {
  9088. name: "Level 6",
  9089. height: math.unit(145787152896, "lightyears")
  9090. },
  9091. ]
  9092. ))
  9093. characterMakers.push(() => makeCharacter(
  9094. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9095. {
  9096. front: {
  9097. height: math.unit(5 + 11 / 12, "feet"),
  9098. weight: math.unit(65, "kg"),
  9099. name: "Front",
  9100. image: {
  9101. source: "./media/characters/rook-kitara/front.svg",
  9102. extra: 1347 / 1274,
  9103. bottom: 0.005
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Totally Unfair",
  9110. height: math.unit(1.8, "mm")
  9111. },
  9112. {
  9113. name: "Lap Rookie",
  9114. height: math.unit(1.4, "feet")
  9115. },
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(5 + 11 / 12, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "How Did This Happen",
  9123. height: math.unit(80, "miles")
  9124. }
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9129. {
  9130. front: {
  9131. height: math.unit(7, "feet"),
  9132. weight: math.unit(300, "lb"),
  9133. name: "Front",
  9134. image: {
  9135. source: "./media/characters/pisces/front.svg",
  9136. extra: 2255 / 2115,
  9137. bottom: 0.03
  9138. }
  9139. },
  9140. back: {
  9141. height: math.unit(7, "feet"),
  9142. weight: math.unit(300, "lb"),
  9143. name: "Back",
  9144. image: {
  9145. source: "./media/characters/pisces/back.svg",
  9146. extra: 2146 / 2055,
  9147. bottom: 0.04
  9148. }
  9149. },
  9150. },
  9151. [
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(7, "feet"),
  9155. default: true
  9156. },
  9157. {
  9158. name: "Swimming Pool",
  9159. height: math.unit(12.2, "meters")
  9160. },
  9161. {
  9162. name: "Olympic Swimming Pool",
  9163. height: math.unit(56.3, "meters")
  9164. },
  9165. {
  9166. name: "Lake Superior",
  9167. height: math.unit(93900, "meters")
  9168. },
  9169. {
  9170. name: "Mediterranean Sea",
  9171. height: math.unit(644457, "meters")
  9172. },
  9173. {
  9174. name: "World's Oceans",
  9175. height: math.unit(4567491, "meters")
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(2.3, "meters"),
  9184. weight: math.unit(120, "kg"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/zelas/front.svg"
  9188. }
  9189. },
  9190. side: {
  9191. height: math.unit(2.3, "meters"),
  9192. weight: math.unit(120, "kg"),
  9193. name: "Side",
  9194. image: {
  9195. source: "./media/characters/zelas/side.svg"
  9196. }
  9197. },
  9198. back: {
  9199. height: math.unit(2.3, "meters"),
  9200. weight: math.unit(120, "kg"),
  9201. name: "Back",
  9202. image: {
  9203. source: "./media/characters/zelas/back.svg"
  9204. }
  9205. },
  9206. foot: {
  9207. height: math.unit(1.116, "feet"),
  9208. name: "Foot",
  9209. image: {
  9210. source: "./media/characters/zelas/foot.svg"
  9211. }
  9212. },
  9213. },
  9214. [
  9215. {
  9216. name: "Normal",
  9217. height: math.unit(2.3, "meters")
  9218. },
  9219. {
  9220. name: "Macro",
  9221. height: math.unit(30, "meters"),
  9222. default: true
  9223. },
  9224. ]
  9225. ))
  9226. characterMakers.push(() => makeCharacter(
  9227. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9228. {
  9229. front: {
  9230. height: math.unit(1, "inch"),
  9231. weight: math.unit(0.21, "grams"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/talbot/front.svg",
  9235. extra: 594 / 544
  9236. }
  9237. },
  9238. },
  9239. [
  9240. {
  9241. name: "Micro",
  9242. height: math.unit(1, "inch"),
  9243. default: true
  9244. },
  9245. ]
  9246. ))
  9247. characterMakers.push(() => makeCharacter(
  9248. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9249. {
  9250. front: {
  9251. height: math.unit(3 + 3 / 12, "feet"),
  9252. weight: math.unit(51.8, "lb"),
  9253. name: "Front",
  9254. image: {
  9255. source: "./media/characters/fliss/front.svg",
  9256. extra: 840 / 640
  9257. }
  9258. },
  9259. },
  9260. [
  9261. {
  9262. name: "Teeny Tiny",
  9263. height: math.unit(1, "mm")
  9264. },
  9265. {
  9266. name: "Small",
  9267. height: math.unit(1, "inch"),
  9268. default: true
  9269. },
  9270. {
  9271. name: "Standard Sylveon",
  9272. height: math.unit(3 + 3 / 12, "feet")
  9273. },
  9274. {
  9275. name: "Large Nuisance",
  9276. height: math.unit(33, "feet")
  9277. },
  9278. {
  9279. name: "City Filler",
  9280. height: math.unit(3000, "feet")
  9281. },
  9282. {
  9283. name: "New Horizon",
  9284. height: math.unit(6000, "miles")
  9285. },
  9286. ]
  9287. ))
  9288. characterMakers.push(() => makeCharacter(
  9289. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9290. {
  9291. front: {
  9292. height: math.unit(5, "cm"),
  9293. weight: math.unit(1.94, "g"),
  9294. name: "Front",
  9295. image: {
  9296. source: "./media/characters/fleta/front.svg",
  9297. extra: 835 / 803
  9298. }
  9299. },
  9300. back: {
  9301. height: math.unit(5, "cm"),
  9302. weight: math.unit(1.94, "g"),
  9303. name: "Back",
  9304. image: {
  9305. source: "./media/characters/fleta/back.svg",
  9306. extra: 835 / 803
  9307. }
  9308. },
  9309. },
  9310. [
  9311. {
  9312. name: "Micro",
  9313. height: math.unit(5, "cm"),
  9314. default: true
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(6, "feet"),
  9323. weight: math.unit(225, "lb"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/dominic/front.svg",
  9327. extra: 1770 / 1620,
  9328. bottom: 0.025
  9329. }
  9330. },
  9331. back: {
  9332. height: math.unit(6, "feet"),
  9333. weight: math.unit(225, "lb"),
  9334. name: "Back",
  9335. image: {
  9336. source: "./media/characters/dominic/back.svg",
  9337. extra: 1745 / 1620,
  9338. bottom: 0.065
  9339. }
  9340. },
  9341. },
  9342. [
  9343. {
  9344. name: "Nano",
  9345. height: math.unit(0.1, "mm")
  9346. },
  9347. {
  9348. name: "Micro-",
  9349. height: math.unit(1, "mm")
  9350. },
  9351. {
  9352. name: "Micro",
  9353. height: math.unit(4, "inches")
  9354. },
  9355. {
  9356. name: "Normal",
  9357. height: math.unit(6 + 4 / 12, "feet"),
  9358. default: true
  9359. },
  9360. {
  9361. name: "Macro",
  9362. height: math.unit(115, "feet")
  9363. },
  9364. {
  9365. name: "Macro+",
  9366. height: math.unit(955, "feet")
  9367. },
  9368. {
  9369. name: "Megamacro",
  9370. height: math.unit(8990, "feet")
  9371. },
  9372. {
  9373. name: "Gigmacro",
  9374. height: math.unit(9310, "miles")
  9375. },
  9376. {
  9377. name: "Teramacro",
  9378. height: math.unit(1567005010, "miles")
  9379. },
  9380. {
  9381. name: "Examacro",
  9382. height: math.unit(1425, "parsecs")
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9388. {
  9389. front: {
  9390. height: math.unit(400, "feet"),
  9391. weight: math.unit(44444444, "lb"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/major-colonel/front.svg"
  9395. }
  9396. },
  9397. back: {
  9398. height: math.unit(400, "feet"),
  9399. weight: math.unit(44444444, "lb"),
  9400. name: "Back",
  9401. image: {
  9402. source: "./media/characters/major-colonel/back.svg"
  9403. }
  9404. },
  9405. },
  9406. [
  9407. {
  9408. name: "Macro",
  9409. height: math.unit(400, "feet"),
  9410. default: true
  9411. },
  9412. ]
  9413. ))
  9414. characterMakers.push(() => makeCharacter(
  9415. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9416. {
  9417. catFront: {
  9418. height: math.unit(6, "feet"),
  9419. weight: math.unit(120, "lb"),
  9420. name: "Front (Cat Side)",
  9421. image: {
  9422. source: "./media/characters/axel-lycan/cat-front.svg",
  9423. extra: 430 / 402,
  9424. bottom: 43 / 472.35
  9425. }
  9426. },
  9427. catBack: {
  9428. height: math.unit(6, "feet"),
  9429. weight: math.unit(120, "lb"),
  9430. name: "Back (Cat Side)",
  9431. image: {
  9432. source: "./media/characters/axel-lycan/cat-back.svg",
  9433. extra: 447 / 419,
  9434. bottom: 23.3 / 469
  9435. }
  9436. },
  9437. wolfFront: {
  9438. height: math.unit(6, "feet"),
  9439. weight: math.unit(120, "lb"),
  9440. name: "Front (Wolf Side)",
  9441. image: {
  9442. source: "./media/characters/axel-lycan/wolf-front.svg",
  9443. extra: 485 / 456,
  9444. bottom: 19 / 504
  9445. }
  9446. },
  9447. wolfBack: {
  9448. height: math.unit(6, "feet"),
  9449. weight: math.unit(120, "lb"),
  9450. name: "Back (Wolf Side)",
  9451. image: {
  9452. source: "./media/characters/axel-lycan/wolf-back.svg",
  9453. extra: 475 / 438,
  9454. bottom: 39.2 / 514
  9455. }
  9456. },
  9457. },
  9458. [
  9459. {
  9460. name: "Macro",
  9461. height: math.unit(1, "km"),
  9462. default: true
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9468. {
  9469. front: {
  9470. height: math.unit(5 + 9 / 12, "feet"),
  9471. weight: math.unit(175, "lb"),
  9472. name: "Front",
  9473. image: {
  9474. source: "./media/characters/vanrel-hyena/front.svg",
  9475. extra: 1086 / 1010,
  9476. bottom: 0.04
  9477. }
  9478. },
  9479. },
  9480. [
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(5 + 9 / 12, "feet"),
  9484. default: true
  9485. },
  9486. ]
  9487. ))
  9488. characterMakers.push(() => makeCharacter(
  9489. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9490. {
  9491. front: {
  9492. height: math.unit(6, "feet"),
  9493. weight: math.unit(103, "lb"),
  9494. name: "Front",
  9495. image: {
  9496. source: "./media/characters/abbott-absol/front.svg",
  9497. extra: 2010 / 1842
  9498. }
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Megamicro",
  9504. height: math.unit(0.1, "mm")
  9505. },
  9506. {
  9507. name: "Micro",
  9508. height: math.unit(1, "inch")
  9509. },
  9510. {
  9511. name: "Normal",
  9512. height: math.unit(6, "feet"),
  9513. default: true
  9514. },
  9515. ]
  9516. ))
  9517. characterMakers.push(() => makeCharacter(
  9518. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9519. {
  9520. front: {
  9521. height: math.unit(6, "feet"),
  9522. weight: math.unit(264, "lb"),
  9523. name: "Front",
  9524. image: {
  9525. source: "./media/characters/hector/front.svg",
  9526. extra: 2280 / 2130,
  9527. bottom: 0.07
  9528. }
  9529. },
  9530. },
  9531. [
  9532. {
  9533. name: "Normal",
  9534. height: math.unit(12.25, "foot"),
  9535. default: true
  9536. },
  9537. {
  9538. name: "Macro",
  9539. height: math.unit(160, "feet")
  9540. },
  9541. ]
  9542. ))
  9543. characterMakers.push(() => makeCharacter(
  9544. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9545. {
  9546. front: {
  9547. height: math.unit(6, "feet"),
  9548. weight: math.unit(150, "lb"),
  9549. name: "Front",
  9550. image: {
  9551. source: "./media/characters/sal/front.svg",
  9552. extra: 1846 / 1699,
  9553. bottom: 0.04
  9554. }
  9555. },
  9556. },
  9557. [
  9558. {
  9559. name: "Megamacro",
  9560. height: math.unit(10, "miles"),
  9561. default: true
  9562. },
  9563. ]
  9564. ))
  9565. characterMakers.push(() => makeCharacter(
  9566. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9567. {
  9568. front: {
  9569. height: math.unit(3, "meters"),
  9570. weight: math.unit(450, "kg"),
  9571. name: "front",
  9572. image: {
  9573. source: "./media/characters/ranger/front.svg",
  9574. extra: 2401 / 2243,
  9575. bottom: 0.05
  9576. }
  9577. },
  9578. },
  9579. [
  9580. {
  9581. name: "Normal",
  9582. height: math.unit(3, "meters"),
  9583. default: true
  9584. },
  9585. ]
  9586. ))
  9587. characterMakers.push(() => makeCharacter(
  9588. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9589. {
  9590. front: {
  9591. height: math.unit(14, "feet"),
  9592. weight: math.unit(800, "kg"),
  9593. name: "Front",
  9594. image: {
  9595. source: "./media/characters/theresa/front.svg",
  9596. extra: 3575 / 3346,
  9597. bottom: 0.03
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(14, "feet"),
  9605. default: true
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9611. {
  9612. front: {
  9613. height: math.unit(6, "feet"),
  9614. weight: math.unit(3, "kg"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/ine/front.svg",
  9618. extra: 678 / 539,
  9619. bottom: 0.023
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(2.265, "feet"),
  9627. default: true
  9628. },
  9629. ]
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9633. {
  9634. front: {
  9635. height: math.unit(5, "feet"),
  9636. weight: math.unit(30, "kg"),
  9637. name: "Front",
  9638. image: {
  9639. source: "./media/characters/vial/front.svg",
  9640. extra: 1365 / 1277,
  9641. bottom: 0.04
  9642. }
  9643. },
  9644. },
  9645. [
  9646. {
  9647. name: "Normal",
  9648. height: math.unit(5, "feet"),
  9649. default: true
  9650. },
  9651. ]
  9652. ))
  9653. characterMakers.push(() => makeCharacter(
  9654. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9655. {
  9656. side: {
  9657. height: math.unit(3.4, "meters"),
  9658. weight: math.unit(1000, "lb"),
  9659. name: "Side",
  9660. image: {
  9661. source: "./media/characters/rovoska/side.svg",
  9662. extra: 4403 / 1515
  9663. }
  9664. },
  9665. },
  9666. [
  9667. {
  9668. name: "Normal",
  9669. height: math.unit(3.4, "meters"),
  9670. default: true
  9671. },
  9672. ]
  9673. ))
  9674. characterMakers.push(() => makeCharacter(
  9675. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9676. {
  9677. front: {
  9678. height: math.unit(8, "feet"),
  9679. weight: math.unit(315, "lb"),
  9680. name: "Front",
  9681. image: {
  9682. source: "./media/characters/gunner-rotthbauer/front.svg"
  9683. }
  9684. },
  9685. back: {
  9686. height: math.unit(8, "feet"),
  9687. weight: math.unit(315, "lb"),
  9688. name: "Back",
  9689. image: {
  9690. source: "./media/characters/gunner-rotthbauer/back.svg"
  9691. }
  9692. },
  9693. },
  9694. [
  9695. {
  9696. name: "Micro",
  9697. height: math.unit(3.5, "inches")
  9698. },
  9699. {
  9700. name: "Normal",
  9701. height: math.unit(8, "feet"),
  9702. default: true
  9703. },
  9704. {
  9705. name: "Macro",
  9706. height: math.unit(250, "feet")
  9707. },
  9708. {
  9709. name: "Megamacro",
  9710. height: math.unit(1, "AU")
  9711. },
  9712. ]
  9713. ))
  9714. characterMakers.push(() => makeCharacter(
  9715. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9716. {
  9717. front: {
  9718. height: math.unit(5 + 5 / 12, "feet"),
  9719. weight: math.unit(140, "lb"),
  9720. name: "Front",
  9721. image: {
  9722. source: "./media/characters/allatia/front.svg",
  9723. extra: 1227 / 1180,
  9724. bottom: 0.027
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(5 + 5 / 12, "feet")
  9732. },
  9733. {
  9734. name: "Macro",
  9735. height: math.unit(250, "feet"),
  9736. default: true
  9737. },
  9738. {
  9739. name: "Megamacro",
  9740. height: math.unit(8, "miles")
  9741. }
  9742. ]
  9743. ))
  9744. characterMakers.push(() => makeCharacter(
  9745. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9746. {
  9747. front: {
  9748. height: math.unit(6, "feet"),
  9749. weight: math.unit(120, "lb"),
  9750. name: "Front",
  9751. image: {
  9752. source: "./media/characters/tene/front.svg",
  9753. extra: 1728 / 1578,
  9754. bottom: 0.022
  9755. }
  9756. },
  9757. stomping: {
  9758. height: math.unit(2.025, "meters"),
  9759. weight: math.unit(120, "lb"),
  9760. name: "Stomping",
  9761. image: {
  9762. source: "./media/characters/tene/stomping.svg",
  9763. extra: 938 / 873,
  9764. bottom: 0.01
  9765. }
  9766. },
  9767. sitting: {
  9768. height: math.unit(1, "meter"),
  9769. weight: math.unit(120, "lb"),
  9770. name: "Sitting",
  9771. image: {
  9772. source: "./media/characters/tene/sitting.svg",
  9773. extra: 437 / 415,
  9774. bottom: 0.1
  9775. }
  9776. },
  9777. feral: {
  9778. height: math.unit(3.9, "feet"),
  9779. weight: math.unit(250, "lb"),
  9780. name: "Feral",
  9781. image: {
  9782. source: "./media/characters/tene/feral.svg",
  9783. extra: 717 / 458,
  9784. bottom: 0.179
  9785. }
  9786. },
  9787. },
  9788. [
  9789. {
  9790. name: "Normal",
  9791. height: math.unit(6, "feet")
  9792. },
  9793. {
  9794. name: "Macro",
  9795. height: math.unit(300, "feet"),
  9796. default: true
  9797. },
  9798. {
  9799. name: "Megamacro",
  9800. height: math.unit(5, "miles")
  9801. },
  9802. ]
  9803. ))
  9804. characterMakers.push(() => makeCharacter(
  9805. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9806. {
  9807. side: {
  9808. height: math.unit(6, "feet"),
  9809. name: "Side",
  9810. image: {
  9811. source: "./media/characters/evander/side.svg",
  9812. extra: 877 / 477
  9813. }
  9814. },
  9815. },
  9816. [
  9817. {
  9818. name: "Normal",
  9819. height: math.unit(0.83, "meters"),
  9820. default: true
  9821. },
  9822. ]
  9823. ))
  9824. characterMakers.push(() => makeCharacter(
  9825. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9826. {
  9827. front: {
  9828. height: math.unit(12, "feet"),
  9829. weight: math.unit(1000, "lb"),
  9830. name: "Front",
  9831. image: {
  9832. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9833. extra: 1762 / 1611
  9834. }
  9835. },
  9836. back: {
  9837. height: math.unit(12, "feet"),
  9838. weight: math.unit(1000, "lb"),
  9839. name: "Back",
  9840. image: {
  9841. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9842. extra: 1762 / 1611
  9843. }
  9844. },
  9845. },
  9846. [
  9847. {
  9848. name: "Normal",
  9849. height: math.unit(12, "feet"),
  9850. default: true
  9851. },
  9852. {
  9853. name: "Kaiju",
  9854. height: math.unit(150, "feet")
  9855. },
  9856. ]
  9857. ))
  9858. characterMakers.push(() => makeCharacter(
  9859. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9860. {
  9861. front: {
  9862. height: math.unit(6, "feet"),
  9863. weight: math.unit(150, "lb"),
  9864. name: "Front",
  9865. image: {
  9866. source: "./media/characters/zero-alurus/front.svg"
  9867. }
  9868. },
  9869. back: {
  9870. height: math.unit(6, "feet"),
  9871. weight: math.unit(150, "lb"),
  9872. name: "Back",
  9873. image: {
  9874. source: "./media/characters/zero-alurus/back.svg"
  9875. }
  9876. },
  9877. },
  9878. [
  9879. {
  9880. name: "Normal",
  9881. height: math.unit(5 + 10 / 12, "feet")
  9882. },
  9883. {
  9884. name: "Macro",
  9885. height: math.unit(60, "feet"),
  9886. default: true
  9887. },
  9888. {
  9889. name: "Macro+",
  9890. height: math.unit(450, "feet")
  9891. },
  9892. ]
  9893. ))
  9894. characterMakers.push(() => makeCharacter(
  9895. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9896. {
  9897. front: {
  9898. height: math.unit(6, "feet"),
  9899. weight: math.unit(200, "lb"),
  9900. name: "Front",
  9901. image: {
  9902. source: "./media/characters/mega-shi/front.svg",
  9903. extra: 1279 / 1250,
  9904. bottom: 0.02
  9905. }
  9906. },
  9907. back: {
  9908. height: math.unit(6, "feet"),
  9909. weight: math.unit(200, "lb"),
  9910. name: "Back",
  9911. image: {
  9912. source: "./media/characters/mega-shi/back.svg",
  9913. extra: 1279 / 1250,
  9914. bottom: 0.02
  9915. }
  9916. },
  9917. },
  9918. [
  9919. {
  9920. name: "Micro",
  9921. height: math.unit(16 + 6 / 12, "feet")
  9922. },
  9923. {
  9924. name: "Third Dimension",
  9925. height: math.unit(40, "meters")
  9926. },
  9927. {
  9928. name: "Normal",
  9929. height: math.unit(660, "feet"),
  9930. default: true
  9931. },
  9932. {
  9933. name: "Megamacro",
  9934. height: math.unit(10, "miles")
  9935. },
  9936. {
  9937. name: "Planetary Launch",
  9938. height: math.unit(500, "miles")
  9939. },
  9940. {
  9941. name: "Interstellar",
  9942. height: math.unit(1e9, "miles")
  9943. },
  9944. {
  9945. name: "Leaving the Universe",
  9946. height: math.unit(1, "gigaparsec")
  9947. },
  9948. {
  9949. name: "Travelling Universes",
  9950. height: math.unit(30e15, "parsecs")
  9951. },
  9952. ]
  9953. ))
  9954. characterMakers.push(() => makeCharacter(
  9955. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9956. {
  9957. front: {
  9958. height: math.unit(6, "feet"),
  9959. weight: math.unit(150, "lb"),
  9960. name: "Front",
  9961. image: {
  9962. source: "./media/characters/odyssey/front.svg",
  9963. extra: 1782 / 1582,
  9964. bottom: 0.01
  9965. }
  9966. },
  9967. side: {
  9968. height: math.unit(5.7, "feet"),
  9969. weight: math.unit(140, "lb"),
  9970. name: "Side",
  9971. image: {
  9972. source: "./media/characters/odyssey/side.svg",
  9973. extra: 6462 / 5700
  9974. }
  9975. },
  9976. },
  9977. [
  9978. {
  9979. name: "Normal",
  9980. height: math.unit(5 + 4 / 12, "feet")
  9981. },
  9982. {
  9983. name: "Macro",
  9984. height: math.unit(1, "km")
  9985. },
  9986. {
  9987. name: "Megamacro",
  9988. height: math.unit(3000, "km")
  9989. },
  9990. {
  9991. name: "Gigamacro",
  9992. height: math.unit(1, "AU"),
  9993. default: true
  9994. },
  9995. {
  9996. name: "Omniversal",
  9997. height: math.unit(100e14, "lightyears")
  9998. },
  9999. ]
  10000. ))
  10001. characterMakers.push(() => makeCharacter(
  10002. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10003. {
  10004. front: {
  10005. height: math.unit(6, "feet"),
  10006. weight: math.unit(300, "lb"),
  10007. name: "Front",
  10008. image: {
  10009. source: "./media/characters/mekuto/front.svg",
  10010. extra: 921 / 832,
  10011. bottom: 0.03
  10012. }
  10013. },
  10014. hand: {
  10015. height: math.unit(6 / 10.24, "feet"),
  10016. name: "Hand",
  10017. image: {
  10018. source: "./media/characters/mekuto/hand.svg"
  10019. }
  10020. },
  10021. foot: {
  10022. height: math.unit(6 / 5.05, "feet"),
  10023. name: "Foot",
  10024. image: {
  10025. source: "./media/characters/mekuto/foot.svg"
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Minimicro",
  10032. height: math.unit(0.2, "inches")
  10033. },
  10034. {
  10035. name: "Micro",
  10036. height: math.unit(1.5, "inches")
  10037. },
  10038. {
  10039. name: "Normal",
  10040. height: math.unit(5 + 11 / 12, "feet"),
  10041. default: true
  10042. },
  10043. {
  10044. name: "Minimacro",
  10045. height: math.unit(17 + 9 / 12, "feet")
  10046. },
  10047. {
  10048. name: "Macro",
  10049. height: math.unit(177.5, "feet")
  10050. },
  10051. {
  10052. name: "Megamacro",
  10053. height: math.unit(152, "miles")
  10054. },
  10055. ]
  10056. ))
  10057. characterMakers.push(() => makeCharacter(
  10058. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10059. {
  10060. front: {
  10061. height: math.unit(6.5, "inches"),
  10062. weight: math.unit(13, "oz"),
  10063. name: "Front",
  10064. image: {
  10065. source: "./media/characters/dafydd-tomos/front.svg",
  10066. extra: 2990 / 2603,
  10067. bottom: 0.03
  10068. }
  10069. },
  10070. },
  10071. [
  10072. {
  10073. name: "Micro",
  10074. height: math.unit(6.5, "inches"),
  10075. default: true
  10076. },
  10077. ]
  10078. ))
  10079. characterMakers.push(() => makeCharacter(
  10080. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10081. {
  10082. front: {
  10083. height: math.unit(6, "feet"),
  10084. weight: math.unit(150, "lb"),
  10085. name: "Front",
  10086. image: {
  10087. source: "./media/characters/splinter/front.svg",
  10088. extra: 2990 / 2882,
  10089. bottom: 0.04
  10090. }
  10091. },
  10092. back: {
  10093. height: math.unit(6, "feet"),
  10094. weight: math.unit(150, "lb"),
  10095. name: "Back",
  10096. image: {
  10097. source: "./media/characters/splinter/back.svg",
  10098. extra: 2990 / 2882,
  10099. bottom: 0.04
  10100. }
  10101. },
  10102. },
  10103. [
  10104. {
  10105. name: "Normal",
  10106. height: math.unit(6, "feet")
  10107. },
  10108. {
  10109. name: "Macro",
  10110. height: math.unit(230, "meters"),
  10111. default: true
  10112. },
  10113. ]
  10114. ))
  10115. characterMakers.push(() => makeCharacter(
  10116. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10117. {
  10118. front: {
  10119. height: math.unit(4 + 10 / 12, "feet"),
  10120. weight: math.unit(480, "lb"),
  10121. name: "Front",
  10122. image: {
  10123. source: "./media/characters/snow-gabumon/front.svg",
  10124. extra: 1140 / 963,
  10125. bottom: 0.058
  10126. }
  10127. },
  10128. back: {
  10129. height: math.unit(4 + 10 / 12, "feet"),
  10130. weight: math.unit(480, "lb"),
  10131. name: "Back",
  10132. image: {
  10133. source: "./media/characters/snow-gabumon/back.svg",
  10134. extra: 1115 / 962,
  10135. bottom: 0.041
  10136. }
  10137. },
  10138. frontUndresed: {
  10139. height: math.unit(4 + 10 / 12, "feet"),
  10140. weight: math.unit(480, "lb"),
  10141. name: "Front (Undressed)",
  10142. image: {
  10143. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10144. extra: 1061 / 960,
  10145. bottom: 0.045
  10146. }
  10147. },
  10148. },
  10149. [
  10150. {
  10151. name: "Micro",
  10152. height: math.unit(1, "inch")
  10153. },
  10154. {
  10155. name: "Normal",
  10156. height: math.unit(4 + 10 / 12, "feet"),
  10157. default: true
  10158. },
  10159. {
  10160. name: "Macro",
  10161. height: math.unit(200, "feet")
  10162. },
  10163. {
  10164. name: "Megamacro",
  10165. height: math.unit(120, "miles")
  10166. },
  10167. {
  10168. name: "Gigamacro",
  10169. height: math.unit(9800, "miles")
  10170. },
  10171. ]
  10172. ))
  10173. characterMakers.push(() => makeCharacter(
  10174. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10175. {
  10176. front: {
  10177. height: math.unit(1.7, "meters"),
  10178. weight: math.unit(140, "lb"),
  10179. name: "Front",
  10180. image: {
  10181. source: "./media/characters/moody/front.svg",
  10182. extra: 3226 / 3007,
  10183. bottom: 0.087
  10184. }
  10185. },
  10186. },
  10187. [
  10188. {
  10189. name: "Micro",
  10190. height: math.unit(1, "mm")
  10191. },
  10192. {
  10193. name: "Normal",
  10194. height: math.unit(1.7, "meters"),
  10195. default: true
  10196. },
  10197. {
  10198. name: "Macro",
  10199. height: math.unit(80, "meters")
  10200. },
  10201. {
  10202. name: "Macro+",
  10203. height: math.unit(500, "meters")
  10204. },
  10205. ]
  10206. ))
  10207. characterMakers.push(() => makeCharacter(
  10208. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10209. {
  10210. front: {
  10211. height: math.unit(6, "feet"),
  10212. weight: math.unit(150, "lb"),
  10213. name: "Front",
  10214. image: {
  10215. source: "./media/characters/zyas/front.svg",
  10216. extra: 1180 / 1120,
  10217. bottom: 0.045
  10218. }
  10219. },
  10220. },
  10221. [
  10222. {
  10223. name: "Normal",
  10224. height: math.unit(10, "feet"),
  10225. default: true
  10226. },
  10227. {
  10228. name: "Macro",
  10229. height: math.unit(500, "feet")
  10230. },
  10231. {
  10232. name: "Megamacro",
  10233. height: math.unit(5, "miles")
  10234. },
  10235. {
  10236. name: "Teramacro",
  10237. height: math.unit(150000, "miles")
  10238. },
  10239. ]
  10240. ))
  10241. characterMakers.push(() => makeCharacter(
  10242. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10243. {
  10244. front: {
  10245. height: math.unit(6, "feet"),
  10246. weight: math.unit(150, "lb"),
  10247. name: "Front",
  10248. image: {
  10249. source: "./media/characters/cuon/front.svg",
  10250. extra: 1390 / 1320,
  10251. bottom: 0.008
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Micro",
  10258. height: math.unit(3, "inches")
  10259. },
  10260. {
  10261. name: "Normal",
  10262. height: math.unit(18 + 9 / 12, "feet"),
  10263. default: true
  10264. },
  10265. {
  10266. name: "Macro",
  10267. height: math.unit(360, "feet")
  10268. },
  10269. {
  10270. name: "Megamacro",
  10271. height: math.unit(360, "miles")
  10272. },
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10277. {
  10278. front: {
  10279. height: math.unit(2.4, "meters"),
  10280. weight: math.unit(70, "kg"),
  10281. name: "Front",
  10282. image: {
  10283. source: "./media/characters/nyanuxk/front.svg",
  10284. extra: 1172 / 1084,
  10285. bottom: 0.065
  10286. }
  10287. },
  10288. side: {
  10289. height: math.unit(2.4, "meters"),
  10290. weight: math.unit(70, "kg"),
  10291. name: "Side",
  10292. image: {
  10293. source: "./media/characters/nyanuxk/side.svg",
  10294. extra: 1190 / 1132,
  10295. bottom: 0.007
  10296. }
  10297. },
  10298. back: {
  10299. height: math.unit(2.4, "meters"),
  10300. weight: math.unit(70, "kg"),
  10301. name: "Back",
  10302. image: {
  10303. source: "./media/characters/nyanuxk/back.svg",
  10304. extra: 1200 / 1141,
  10305. bottom: 0.015
  10306. }
  10307. },
  10308. foot: {
  10309. height: math.unit(0.52, "meters"),
  10310. name: "Foot",
  10311. image: {
  10312. source: "./media/characters/nyanuxk/foot.svg"
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Micro",
  10319. height: math.unit(2, "cm")
  10320. },
  10321. {
  10322. name: "Normal",
  10323. height: math.unit(2.4, "meters"),
  10324. default: true
  10325. },
  10326. {
  10327. name: "Smaller Macro",
  10328. height: math.unit(120, "meters")
  10329. },
  10330. {
  10331. name: "Bigger Macro",
  10332. height: math.unit(1.2, "km")
  10333. },
  10334. {
  10335. name: "Megamacro",
  10336. height: math.unit(15, "kilometers")
  10337. },
  10338. {
  10339. name: "Gigamacro",
  10340. height: math.unit(2000, "km")
  10341. },
  10342. {
  10343. name: "Teramacro",
  10344. height: math.unit(500000, "km")
  10345. },
  10346. ]
  10347. ))
  10348. characterMakers.push(() => makeCharacter(
  10349. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10350. {
  10351. side: {
  10352. height: math.unit(6, "feet"),
  10353. name: "Side",
  10354. image: {
  10355. source: "./media/characters/ailbhe/side.svg",
  10356. extra: 757 / 464,
  10357. bottom: 0.041
  10358. }
  10359. },
  10360. },
  10361. [
  10362. {
  10363. name: "Normal",
  10364. height: math.unit(1.07, "meters"),
  10365. default: true
  10366. },
  10367. ]
  10368. ))
  10369. characterMakers.push(() => makeCharacter(
  10370. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10371. {
  10372. front: {
  10373. height: math.unit(6, "feet"),
  10374. weight: math.unit(120, "kg"),
  10375. name: "Front",
  10376. image: {
  10377. source: "./media/characters/zevulfius/front.svg",
  10378. extra: 965 / 903
  10379. }
  10380. },
  10381. side: {
  10382. height: math.unit(6, "feet"),
  10383. weight: math.unit(120, "kg"),
  10384. name: "Side",
  10385. image: {
  10386. source: "./media/characters/zevulfius/side.svg",
  10387. extra: 939 / 900
  10388. }
  10389. },
  10390. back: {
  10391. height: math.unit(6, "feet"),
  10392. weight: math.unit(120, "kg"),
  10393. name: "Back",
  10394. image: {
  10395. source: "./media/characters/zevulfius/back.svg",
  10396. extra: 918 / 854,
  10397. bottom: 0.005
  10398. }
  10399. },
  10400. foot: {
  10401. height: math.unit(6 / 3.72, "feet"),
  10402. name: "Foot",
  10403. image: {
  10404. source: "./media/characters/zevulfius/foot.svg"
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Macro",
  10411. height: math.unit(750, "meters")
  10412. },
  10413. {
  10414. name: "Megamacro",
  10415. height: math.unit(20, "km"),
  10416. default: true
  10417. },
  10418. {
  10419. name: "Gigamacro",
  10420. height: math.unit(2000, "km")
  10421. },
  10422. {
  10423. name: "Teramacro",
  10424. height: math.unit(250000, "km")
  10425. },
  10426. ]
  10427. ))
  10428. characterMakers.push(() => makeCharacter(
  10429. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10430. {
  10431. front: {
  10432. height: math.unit(100, "feet"),
  10433. weight: math.unit(350, "kg"),
  10434. name: "Front",
  10435. image: {
  10436. source: "./media/characters/rikes/front.svg",
  10437. extra: 1565 / 1483,
  10438. bottom: 0.017
  10439. }
  10440. },
  10441. },
  10442. [
  10443. {
  10444. name: "Macro",
  10445. height: math.unit(100, "feet"),
  10446. default: true
  10447. },
  10448. ]
  10449. ))
  10450. characterMakers.push(() => makeCharacter(
  10451. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10452. {
  10453. front: {
  10454. height: math.unit(8, "feet"),
  10455. weight: math.unit(356, "lb"),
  10456. name: "Front",
  10457. image: {
  10458. source: "./media/characters/adam-silver-mane/front.svg",
  10459. extra: 1036/937,
  10460. bottom: 63/1099
  10461. }
  10462. },
  10463. side: {
  10464. height: math.unit(8, "feet"),
  10465. weight: math.unit(356, "lb"),
  10466. name: "Side",
  10467. image: {
  10468. source: "./media/characters/adam-silver-mane/side.svg",
  10469. extra: 997/901,
  10470. bottom: 59/1056
  10471. }
  10472. },
  10473. frontNsfw: {
  10474. height: math.unit(8, "feet"),
  10475. weight: math.unit(356, "lb"),
  10476. name: "Front (NSFW)",
  10477. image: {
  10478. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10479. extra: 1036/937,
  10480. bottom: 63/1099
  10481. }
  10482. },
  10483. sideNsfw: {
  10484. height: math.unit(8, "feet"),
  10485. weight: math.unit(356, "lb"),
  10486. name: "Side (NSFW)",
  10487. image: {
  10488. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10489. extra: 997/901,
  10490. bottom: 59/1056
  10491. }
  10492. },
  10493. dick: {
  10494. height: math.unit(2.1, "feet"),
  10495. name: "Dick",
  10496. image: {
  10497. source: "./media/characters/adam-silver-mane/dick.svg"
  10498. }
  10499. },
  10500. taur: {
  10501. height: math.unit(16, "feet"),
  10502. weight: math.unit(1500, "kg"),
  10503. name: "Taur",
  10504. image: {
  10505. source: "./media/characters/adam-silver-mane/taur.svg",
  10506. extra: 1713 / 1571,
  10507. bottom: 0.01
  10508. }
  10509. },
  10510. },
  10511. [
  10512. {
  10513. name: "Normal",
  10514. height: math.unit(8, "feet")
  10515. },
  10516. {
  10517. name: "Minimacro",
  10518. height: math.unit(80, "feet")
  10519. },
  10520. {
  10521. name: "MDA",
  10522. height: math.unit(80, "meters")
  10523. },
  10524. {
  10525. name: "Macro",
  10526. height: math.unit(800, "feet"),
  10527. default: true
  10528. },
  10529. {
  10530. name: "Megamacro",
  10531. height: math.unit(8000, "feet")
  10532. },
  10533. {
  10534. name: "Gigamacro",
  10535. height: math.unit(800, "miles")
  10536. },
  10537. {
  10538. name: "Teramacro",
  10539. height: math.unit(80000, "miles")
  10540. },
  10541. {
  10542. name: "Celestial",
  10543. height: math.unit(8e6, "miles")
  10544. },
  10545. {
  10546. name: "Star Dragon",
  10547. height: math.unit(800000, "parsecs")
  10548. },
  10549. {
  10550. name: "Godly",
  10551. height: math.unit(800, "teraparsecs")
  10552. },
  10553. ]
  10554. ))
  10555. characterMakers.push(() => makeCharacter(
  10556. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10557. {
  10558. front: {
  10559. height: math.unit(6, "feet"),
  10560. weight: math.unit(150, "lb"),
  10561. name: "Front",
  10562. image: {
  10563. source: "./media/characters/ky'owin/front.svg",
  10564. extra: 3888 / 3068,
  10565. bottom: 0.015
  10566. }
  10567. },
  10568. },
  10569. [
  10570. {
  10571. name: "Normal",
  10572. height: math.unit(6 + 8 / 12, "feet")
  10573. },
  10574. {
  10575. name: "Large",
  10576. height: math.unit(68, "feet")
  10577. },
  10578. {
  10579. name: "Macro",
  10580. height: math.unit(132, "feet")
  10581. },
  10582. {
  10583. name: "Macro+",
  10584. height: math.unit(340, "feet")
  10585. },
  10586. {
  10587. name: "Macro++",
  10588. height: math.unit(680, "feet"),
  10589. default: true
  10590. },
  10591. {
  10592. name: "Megamacro",
  10593. height: math.unit(1, "mile")
  10594. },
  10595. {
  10596. name: "Megamacro+",
  10597. height: math.unit(10, "miles")
  10598. },
  10599. ]
  10600. ))
  10601. characterMakers.push(() => makeCharacter(
  10602. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10603. {
  10604. front: {
  10605. height: math.unit(4, "feet"),
  10606. weight: math.unit(50, "lb"),
  10607. name: "Front",
  10608. image: {
  10609. source: "./media/characters/mal/front.svg",
  10610. extra: 785 / 724,
  10611. bottom: 0.07
  10612. }
  10613. },
  10614. },
  10615. [
  10616. {
  10617. name: "Micro",
  10618. height: math.unit(4, "inches")
  10619. },
  10620. {
  10621. name: "Normal",
  10622. height: math.unit(4, "feet"),
  10623. default: true
  10624. },
  10625. {
  10626. name: "Macro",
  10627. height: math.unit(200, "feet")
  10628. },
  10629. ]
  10630. ))
  10631. characterMakers.push(() => makeCharacter(
  10632. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10633. {
  10634. front: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(150, "lb"),
  10637. name: "Front",
  10638. image: {
  10639. source: "./media/characters/jordan-deware/front.svg",
  10640. extra: 1191 / 1012
  10641. }
  10642. },
  10643. },
  10644. [
  10645. {
  10646. name: "Nano",
  10647. height: math.unit(0.01, "mm")
  10648. },
  10649. {
  10650. name: "Minimicro",
  10651. height: math.unit(1, "mm")
  10652. },
  10653. {
  10654. name: "Micro",
  10655. height: math.unit(0.5, "inches")
  10656. },
  10657. {
  10658. name: "Normal",
  10659. height: math.unit(4, "feet"),
  10660. default: true
  10661. },
  10662. {
  10663. name: "Minimacro",
  10664. height: math.unit(40, "meters")
  10665. },
  10666. {
  10667. name: "Small Macro",
  10668. height: math.unit(400, "meters")
  10669. },
  10670. {
  10671. name: "Macro",
  10672. height: math.unit(4, "miles")
  10673. },
  10674. {
  10675. name: "Megamacro",
  10676. height: math.unit(40, "miles")
  10677. },
  10678. {
  10679. name: "Megamacro+",
  10680. height: math.unit(400, "miles")
  10681. },
  10682. {
  10683. name: "Gigamacro",
  10684. height: math.unit(400000, "miles")
  10685. },
  10686. ]
  10687. ))
  10688. characterMakers.push(() => makeCharacter(
  10689. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10690. {
  10691. side: {
  10692. height: math.unit(6, "feet"),
  10693. weight: math.unit(150, "lb"),
  10694. name: "Side",
  10695. image: {
  10696. source: "./media/characters/kimiko/side.svg",
  10697. extra: 600 / 358
  10698. }
  10699. },
  10700. },
  10701. [
  10702. {
  10703. name: "Normal",
  10704. height: math.unit(15, "feet"),
  10705. default: true
  10706. },
  10707. {
  10708. name: "Macro",
  10709. height: math.unit(220, "feet")
  10710. },
  10711. {
  10712. name: "Macro+",
  10713. height: math.unit(1450, "feet")
  10714. },
  10715. {
  10716. name: "Megamacro",
  10717. height: math.unit(11500, "feet")
  10718. },
  10719. {
  10720. name: "Gigamacro",
  10721. height: math.unit(9500, "miles")
  10722. },
  10723. {
  10724. name: "Teramacro",
  10725. height: math.unit(2208005005, "miles")
  10726. },
  10727. {
  10728. name: "Examacro",
  10729. height: math.unit(2750, "parsecs")
  10730. },
  10731. {
  10732. name: "Zettamacro",
  10733. height: math.unit(101500, "parsecs")
  10734. },
  10735. ]
  10736. ))
  10737. characterMakers.push(() => makeCharacter(
  10738. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10739. {
  10740. front: {
  10741. height: math.unit(6, "feet"),
  10742. weight: math.unit(70, "kg"),
  10743. name: "Front",
  10744. image: {
  10745. source: "./media/characters/andrew-sleepy/front.svg"
  10746. }
  10747. },
  10748. side: {
  10749. height: math.unit(6, "feet"),
  10750. weight: math.unit(70, "kg"),
  10751. name: "Side",
  10752. image: {
  10753. source: "./media/characters/andrew-sleepy/side.svg"
  10754. }
  10755. },
  10756. },
  10757. [
  10758. {
  10759. name: "Micro",
  10760. height: math.unit(1, "mm"),
  10761. default: true
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10767. {
  10768. front: {
  10769. height: math.unit(6, "feet"),
  10770. weight: math.unit(150, "lb"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/judio/front.svg",
  10774. extra: 1258 / 1110
  10775. }
  10776. },
  10777. },
  10778. [
  10779. {
  10780. name: "Normal",
  10781. height: math.unit(5 + 6 / 12, "feet")
  10782. },
  10783. {
  10784. name: "Macro",
  10785. height: math.unit(1000, "feet"),
  10786. default: true
  10787. },
  10788. {
  10789. name: "Megamacro",
  10790. height: math.unit(10, "miles")
  10791. },
  10792. ]
  10793. ))
  10794. characterMakers.push(() => makeCharacter(
  10795. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10796. {
  10797. front: {
  10798. height: math.unit(6, "feet"),
  10799. weight: math.unit(68, "kg"),
  10800. name: "Front",
  10801. image: {
  10802. source: "./media/characters/nomaxice/front.svg",
  10803. extra: 1498 / 1073,
  10804. bottom: 0.075
  10805. }
  10806. },
  10807. foot: {
  10808. height: math.unit(1.1, "feet"),
  10809. name: "Foot",
  10810. image: {
  10811. source: "./media/characters/nomaxice/foot.svg"
  10812. }
  10813. },
  10814. },
  10815. [
  10816. {
  10817. name: "Micro",
  10818. height: math.unit(8, "cm")
  10819. },
  10820. {
  10821. name: "Norm",
  10822. height: math.unit(1.82, "m")
  10823. },
  10824. {
  10825. name: "Norm+",
  10826. height: math.unit(8.8, "feet")
  10827. },
  10828. {
  10829. name: "Big",
  10830. height: math.unit(8, "meters"),
  10831. default: true
  10832. },
  10833. {
  10834. name: "Macro",
  10835. height: math.unit(18, "meters")
  10836. },
  10837. {
  10838. name: "Macro+",
  10839. height: math.unit(88, "meters")
  10840. },
  10841. ]
  10842. ))
  10843. characterMakers.push(() => makeCharacter(
  10844. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10845. {
  10846. front: {
  10847. height: math.unit(12, "feet"),
  10848. weight: math.unit(1.5, "tons"),
  10849. name: "Front",
  10850. image: {
  10851. source: "./media/characters/dydros/front.svg",
  10852. extra: 863 / 800,
  10853. bottom: 0.015
  10854. }
  10855. },
  10856. back: {
  10857. height: math.unit(12, "feet"),
  10858. weight: math.unit(1.5, "tons"),
  10859. name: "Back",
  10860. image: {
  10861. source: "./media/characters/dydros/back.svg",
  10862. extra: 900 / 843,
  10863. bottom: 0.005
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Normal",
  10870. height: math.unit(12, "feet"),
  10871. default: true
  10872. },
  10873. ]
  10874. ))
  10875. characterMakers.push(() => makeCharacter(
  10876. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10877. {
  10878. front: {
  10879. height: math.unit(6, "feet"),
  10880. weight: math.unit(100, "kg"),
  10881. name: "Front",
  10882. image: {
  10883. source: "./media/characters/riggi/front.svg",
  10884. extra: 5787 / 5303
  10885. }
  10886. },
  10887. hyper: {
  10888. height: math.unit(6 * 5 / 3, "feet"),
  10889. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10890. name: "Hyper",
  10891. image: {
  10892. source: "./media/characters/riggi/hyper.svg",
  10893. extra: 3595 / 3485
  10894. }
  10895. },
  10896. },
  10897. [
  10898. {
  10899. name: "Small Macro",
  10900. height: math.unit(50, "feet")
  10901. },
  10902. {
  10903. name: "Default",
  10904. height: math.unit(200, "feet"),
  10905. default: true
  10906. },
  10907. {
  10908. name: "Loom",
  10909. height: math.unit(10000, "feet")
  10910. },
  10911. {
  10912. name: "Cruising Altitude",
  10913. height: math.unit(30000, "feet")
  10914. },
  10915. {
  10916. name: "Megamacro",
  10917. height: math.unit(100, "miles")
  10918. },
  10919. {
  10920. name: "Continent Sized",
  10921. height: math.unit(2800, "miles")
  10922. },
  10923. {
  10924. name: "Earth Sized",
  10925. height: math.unit(8000, "miles")
  10926. },
  10927. ]
  10928. ))
  10929. characterMakers.push(() => makeCharacter(
  10930. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10931. {
  10932. front: {
  10933. height: math.unit(6, "feet"),
  10934. weight: math.unit(250, "lb"),
  10935. name: "Front",
  10936. image: {
  10937. source: "./media/characters/alexi/front.svg",
  10938. extra: 3483 / 3291,
  10939. bottom: 0.04
  10940. }
  10941. },
  10942. back: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(250, "lb"),
  10945. name: "Back",
  10946. image: {
  10947. source: "./media/characters/alexi/back.svg",
  10948. extra: 3533 / 3356,
  10949. bottom: 0.021
  10950. }
  10951. },
  10952. frontTransforming: {
  10953. height: math.unit(8.58, "feet"),
  10954. weight: math.unit(1300, "lb"),
  10955. name: "Transforming",
  10956. image: {
  10957. source: "./media/characters/alexi/front-transforming.svg",
  10958. extra: 437 / 409,
  10959. bottom: 19 / 458.66
  10960. }
  10961. },
  10962. frontTransformed: {
  10963. height: math.unit(12.5, "feet"),
  10964. weight: math.unit(4000, "lb"),
  10965. name: "Transformed",
  10966. image: {
  10967. source: "./media/characters/alexi/front-transformed.svg",
  10968. extra: 639 / 614,
  10969. bottom: 30.55 / 671
  10970. }
  10971. },
  10972. },
  10973. [
  10974. {
  10975. name: "Normal",
  10976. height: math.unit(14, "feet"),
  10977. default: true
  10978. },
  10979. {
  10980. name: "Minimacro",
  10981. height: math.unit(30, "meters")
  10982. },
  10983. {
  10984. name: "Macro",
  10985. height: math.unit(500, "meters")
  10986. },
  10987. {
  10988. name: "Megamacro",
  10989. height: math.unit(9000, "km")
  10990. },
  10991. {
  10992. name: "Teramacro",
  10993. height: math.unit(384000, "km")
  10994. },
  10995. ]
  10996. ))
  10997. characterMakers.push(() => makeCharacter(
  10998. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10999. {
  11000. front: {
  11001. height: math.unit(6, "feet"),
  11002. weight: math.unit(150, "lb"),
  11003. name: "Front",
  11004. image: {
  11005. source: "./media/characters/kayroo/front.svg",
  11006. extra: 1153 / 1038,
  11007. bottom: 0.06
  11008. }
  11009. },
  11010. foot: {
  11011. height: math.unit(6, "feet"),
  11012. weight: math.unit(150, "lb"),
  11013. name: "Foot",
  11014. image: {
  11015. source: "./media/characters/kayroo/foot.svg"
  11016. }
  11017. },
  11018. },
  11019. [
  11020. {
  11021. name: "Normal",
  11022. height: math.unit(8, "feet"),
  11023. default: true
  11024. },
  11025. {
  11026. name: "Minimacro",
  11027. height: math.unit(250, "feet")
  11028. },
  11029. {
  11030. name: "Macro",
  11031. height: math.unit(2800, "feet")
  11032. },
  11033. {
  11034. name: "Megamacro",
  11035. height: math.unit(5200, "feet")
  11036. },
  11037. {
  11038. name: "Gigamacro",
  11039. height: math.unit(27000, "feet")
  11040. },
  11041. {
  11042. name: "Omega",
  11043. height: math.unit(45000, "feet")
  11044. },
  11045. ]
  11046. ))
  11047. characterMakers.push(() => makeCharacter(
  11048. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11049. {
  11050. front: {
  11051. height: math.unit(18, "feet"),
  11052. weight: math.unit(5800, "lb"),
  11053. name: "Front",
  11054. image: {
  11055. source: "./media/characters/rhys/front.svg",
  11056. extra: 3386 / 3090,
  11057. bottom: 0.07
  11058. }
  11059. },
  11060. },
  11061. [
  11062. {
  11063. name: "Normal",
  11064. height: math.unit(18, "feet"),
  11065. default: true
  11066. },
  11067. {
  11068. name: "Working Size",
  11069. height: math.unit(200, "feet")
  11070. },
  11071. {
  11072. name: "Demolition Size",
  11073. height: math.unit(2000, "feet")
  11074. },
  11075. {
  11076. name: "Maximum Licensed Size",
  11077. height: math.unit(5, "miles")
  11078. },
  11079. {
  11080. name: "Maximum Observed Size",
  11081. height: math.unit(10, "yottameters")
  11082. },
  11083. ]
  11084. ))
  11085. characterMakers.push(() => makeCharacter(
  11086. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11087. {
  11088. front: {
  11089. height: math.unit(6, "feet"),
  11090. weight: math.unit(250, "lb"),
  11091. name: "Front",
  11092. image: {
  11093. source: "./media/characters/toto/front.svg",
  11094. extra: 527 / 479,
  11095. bottom: 0.05
  11096. }
  11097. },
  11098. },
  11099. [
  11100. {
  11101. name: "Micro",
  11102. height: math.unit(3, "feet")
  11103. },
  11104. {
  11105. name: "Normal",
  11106. height: math.unit(10, "feet")
  11107. },
  11108. {
  11109. name: "Macro",
  11110. height: math.unit(150, "feet"),
  11111. default: true
  11112. },
  11113. {
  11114. name: "Megamacro",
  11115. height: math.unit(1200, "feet")
  11116. },
  11117. ]
  11118. ))
  11119. characterMakers.push(() => makeCharacter(
  11120. { name: "King", species: ["lion"], tags: ["anthro"] },
  11121. {
  11122. back: {
  11123. height: math.unit(6, "feet"),
  11124. weight: math.unit(150, "lb"),
  11125. name: "Back",
  11126. image: {
  11127. source: "./media/characters/king/back.svg"
  11128. }
  11129. },
  11130. },
  11131. [
  11132. {
  11133. name: "Micro",
  11134. height: math.unit(2, "inches")
  11135. },
  11136. {
  11137. name: "Normal",
  11138. height: math.unit(8, "feet")
  11139. },
  11140. {
  11141. name: "Macro",
  11142. height: math.unit(200, "feet"),
  11143. default: true
  11144. },
  11145. {
  11146. name: "Megamacro",
  11147. height: math.unit(50, "miles")
  11148. },
  11149. ]
  11150. ))
  11151. characterMakers.push(() => makeCharacter(
  11152. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11153. {
  11154. anthro: {
  11155. height: math.unit(6 + 5 / 12, "feet"),
  11156. weight: math.unit(280, "lb"),
  11157. name: "Anthro",
  11158. image: {
  11159. source: "./media/characters/cordite/anthro.svg",
  11160. extra: 1986 / 1905,
  11161. bottom: 0.025
  11162. }
  11163. },
  11164. feral: {
  11165. height: math.unit(2, "feet"),
  11166. weight: math.unit(90, "lb"),
  11167. name: "Feral",
  11168. image: {
  11169. source: "./media/characters/cordite/feral.svg",
  11170. extra: 1260 / 755,
  11171. bottom: 0.05
  11172. }
  11173. },
  11174. },
  11175. [
  11176. {
  11177. name: "Normal",
  11178. height: math.unit(6 + 5 / 12, "feet"),
  11179. default: true
  11180. },
  11181. ]
  11182. ))
  11183. characterMakers.push(() => makeCharacter(
  11184. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11185. {
  11186. front: {
  11187. height: math.unit(6, "feet"),
  11188. weight: math.unit(150, "lb"),
  11189. name: "Front",
  11190. image: {
  11191. source: "./media/characters/pianostrong/front.svg",
  11192. extra: 6577 / 6254,
  11193. bottom: 0.02
  11194. }
  11195. },
  11196. side: {
  11197. height: math.unit(6, "feet"),
  11198. weight: math.unit(150, "lb"),
  11199. name: "Side",
  11200. image: {
  11201. source: "./media/characters/pianostrong/side.svg",
  11202. extra: 6106 / 5730
  11203. }
  11204. },
  11205. back: {
  11206. height: math.unit(6, "feet"),
  11207. weight: math.unit(150, "lb"),
  11208. name: "Back",
  11209. image: {
  11210. source: "./media/characters/pianostrong/back.svg",
  11211. extra: 6085 / 5733,
  11212. bottom: 0.01
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Macro",
  11219. height: math.unit(100, "feet")
  11220. },
  11221. {
  11222. name: "Macro+",
  11223. height: math.unit(300, "feet"),
  11224. default: true
  11225. },
  11226. {
  11227. name: "Macro++",
  11228. height: math.unit(1000, "feet")
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11234. {
  11235. front: {
  11236. height: math.unit(6, "feet"),
  11237. weight: math.unit(150, "lb"),
  11238. name: "Front",
  11239. image: {
  11240. source: "./media/characters/kona/front.svg",
  11241. extra: 2960 / 2629,
  11242. bottom: 0.005
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(11 + 8 / 12, "feet")
  11250. },
  11251. {
  11252. name: "Macro",
  11253. height: math.unit(850, "feet"),
  11254. default: true
  11255. },
  11256. {
  11257. name: "Macro+",
  11258. height: math.unit(1.5, "km"),
  11259. default: true
  11260. },
  11261. {
  11262. name: "Megamacro",
  11263. height: math.unit(80, "miles")
  11264. },
  11265. {
  11266. name: "Gigamacro",
  11267. height: math.unit(3500, "miles")
  11268. },
  11269. ]
  11270. ))
  11271. characterMakers.push(() => makeCharacter(
  11272. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11273. {
  11274. side: {
  11275. height: math.unit(1.9, "meters"),
  11276. weight: math.unit(326, "kg"),
  11277. name: "Side",
  11278. image: {
  11279. source: "./media/characters/levi/side.svg",
  11280. extra: 1704 / 1334,
  11281. bottom: 0.02
  11282. }
  11283. },
  11284. },
  11285. [
  11286. {
  11287. name: "Normal",
  11288. height: math.unit(1.9, "meters"),
  11289. default: true
  11290. },
  11291. {
  11292. name: "Macro",
  11293. height: math.unit(20, "meters")
  11294. },
  11295. {
  11296. name: "Macro+",
  11297. height: math.unit(200, "meters")
  11298. },
  11299. {
  11300. name: "Megamacro",
  11301. height: math.unit(2, "km")
  11302. },
  11303. {
  11304. name: "Megamacro+",
  11305. height: math.unit(20, "km")
  11306. },
  11307. {
  11308. name: "Gigamacro",
  11309. height: math.unit(2500, "km")
  11310. },
  11311. {
  11312. name: "Gigamacro+",
  11313. height: math.unit(120000, "km")
  11314. },
  11315. {
  11316. name: "Teramacro",
  11317. height: math.unit(7.77e6, "km")
  11318. },
  11319. ]
  11320. ))
  11321. characterMakers.push(() => makeCharacter(
  11322. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11323. {
  11324. front: {
  11325. height: math.unit(6 + 4/12, "feet"),
  11326. weight: math.unit(190, "lb"),
  11327. name: "Front",
  11328. image: {
  11329. source: "./media/characters/bmc/front.svg",
  11330. extra: 1626/1472,
  11331. bottom: 79/1705
  11332. }
  11333. },
  11334. back: {
  11335. height: math.unit(6 + 4/12, "feet"),
  11336. weight: math.unit(190, "lb"),
  11337. name: "Back",
  11338. image: {
  11339. source: "./media/characters/bmc/back.svg",
  11340. extra: 1640/1479,
  11341. bottom: 45/1685
  11342. }
  11343. },
  11344. frontArmor: {
  11345. height: math.unit(6 + 4/12, "feet"),
  11346. weight: math.unit(190, "lb"),
  11347. name: "Front-armor",
  11348. image: {
  11349. source: "./media/characters/bmc/front-armor.svg",
  11350. extra: 1538/1468,
  11351. bottom: 79/1617
  11352. }
  11353. },
  11354. },
  11355. [
  11356. {
  11357. name: "Human-sized",
  11358. height: math.unit(6 + 4 / 12, "feet")
  11359. },
  11360. {
  11361. name: "Interactive Size",
  11362. height: math.unit(25, "feet")
  11363. },
  11364. {
  11365. name: "Small",
  11366. height: math.unit(250, "feet")
  11367. },
  11368. {
  11369. name: "Normal",
  11370. height: math.unit(1250, "feet"),
  11371. default: true
  11372. },
  11373. {
  11374. name: "Good Day",
  11375. height: math.unit(88, "miles")
  11376. },
  11377. {
  11378. name: "Largest Measured Size",
  11379. height: math.unit(105.960, "galaxies")
  11380. },
  11381. ]
  11382. ))
  11383. characterMakers.push(() => makeCharacter(
  11384. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11385. {
  11386. front: {
  11387. height: math.unit(20, "feet"),
  11388. weight: math.unit(2016, "kg"),
  11389. name: "Front",
  11390. image: {
  11391. source: "./media/characters/sven-the-kaiju/front.svg",
  11392. extra: 1277/1250,
  11393. bottom: 35/1312
  11394. }
  11395. },
  11396. mouth: {
  11397. height: math.unit(1.85, "feet"),
  11398. name: "Mouth",
  11399. image: {
  11400. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11401. }
  11402. },
  11403. },
  11404. [
  11405. {
  11406. name: "Fairy",
  11407. height: math.unit(6, "inches")
  11408. },
  11409. {
  11410. name: "Normal",
  11411. height: math.unit(20, "feet"),
  11412. default: true
  11413. },
  11414. {
  11415. name: "Rampage",
  11416. height: math.unit(200, "feet")
  11417. },
  11418. {
  11419. name: "Archfey Forest Guardian",
  11420. height: math.unit(1, "mile")
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11426. {
  11427. front: {
  11428. height: math.unit(4, "meters"),
  11429. weight: math.unit(2, "tons"),
  11430. name: "Front",
  11431. image: {
  11432. source: "./media/characters/marik/front.svg",
  11433. extra: 1057 / 1003,
  11434. bottom: 0.08
  11435. }
  11436. },
  11437. },
  11438. [
  11439. {
  11440. name: "Normal",
  11441. height: math.unit(4, "meters"),
  11442. default: true
  11443. },
  11444. {
  11445. name: "Macro",
  11446. height: math.unit(20, "meters")
  11447. },
  11448. {
  11449. name: "Megamacro",
  11450. height: math.unit(50, "km")
  11451. },
  11452. {
  11453. name: "Gigamacro",
  11454. height: math.unit(100, "km")
  11455. },
  11456. {
  11457. name: "Alpha Macro",
  11458. height: math.unit(7.88e7, "yottameters")
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11464. {
  11465. front: {
  11466. height: math.unit(6, "feet"),
  11467. weight: math.unit(110, "lb"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/mel/front.svg",
  11471. extra: 736 / 617,
  11472. bottom: 0.017
  11473. }
  11474. },
  11475. },
  11476. [
  11477. {
  11478. name: "Pico",
  11479. height: math.unit(3, "pm")
  11480. },
  11481. {
  11482. name: "Nano",
  11483. height: math.unit(3, "nm")
  11484. },
  11485. {
  11486. name: "Micro",
  11487. height: math.unit(0.3, "mm"),
  11488. default: true
  11489. },
  11490. {
  11491. name: "Micro+",
  11492. height: math.unit(3, "mm")
  11493. },
  11494. {
  11495. name: "Normal",
  11496. height: math.unit(5 + 10.5 / 12, "feet")
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11502. {
  11503. kaiju: {
  11504. height: math.unit(1.75, "meters"),
  11505. weight: math.unit(55, "kg"),
  11506. name: "Kaiju",
  11507. image: {
  11508. source: "./media/characters/lykonous/kaiju.svg",
  11509. extra: 1055 / 946,
  11510. bottom: 0.135
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(2.5, "meters"),
  11518. default: true
  11519. },
  11520. {
  11521. name: "Kaiju Dragon",
  11522. height: math.unit(60, "meters")
  11523. },
  11524. {
  11525. name: "Mega Kaiju",
  11526. height: math.unit(120, "km")
  11527. },
  11528. {
  11529. name: "Giga Kaiju",
  11530. height: math.unit(200, "megameters")
  11531. },
  11532. {
  11533. name: "Terra Kaiju",
  11534. height: math.unit(400, "gigameters")
  11535. },
  11536. {
  11537. name: "Kaiju Dragon God",
  11538. height: math.unit(13000, "exaparsecs")
  11539. },
  11540. ]
  11541. ))
  11542. characterMakers.push(() => makeCharacter(
  11543. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11544. {
  11545. front: {
  11546. height: math.unit(6, "feet"),
  11547. weight: math.unit(150, "lb"),
  11548. name: "Front",
  11549. image: {
  11550. source: "./media/characters/blü/front.svg",
  11551. extra: 1883 / 1564,
  11552. bottom: 0.031
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Normal",
  11559. height: math.unit(13, "feet"),
  11560. default: true
  11561. },
  11562. {
  11563. name: "Big Boi",
  11564. height: math.unit(150, "meters")
  11565. },
  11566. {
  11567. name: "Mini Stomper",
  11568. height: math.unit(300, "meters")
  11569. },
  11570. {
  11571. name: "Macro",
  11572. height: math.unit(1000, "meters")
  11573. },
  11574. {
  11575. name: "Megamacro",
  11576. height: math.unit(11000, "meters")
  11577. },
  11578. {
  11579. name: "Gigamacro",
  11580. height: math.unit(11000, "km")
  11581. },
  11582. {
  11583. name: "Teramacro",
  11584. height: math.unit(420000, "km")
  11585. },
  11586. {
  11587. name: "Examacro",
  11588. height: math.unit(120, "parsecs")
  11589. },
  11590. {
  11591. name: "God Tho",
  11592. height: math.unit(98000000000, "parsecs")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11598. {
  11599. taurFront: {
  11600. height: math.unit(6, "feet"),
  11601. weight: math.unit(200, "lb"),
  11602. name: "Taur (Front)",
  11603. image: {
  11604. source: "./media/characters/scales/taur-front.svg",
  11605. extra: 1,
  11606. bottom: 0.05
  11607. }
  11608. },
  11609. taurBack: {
  11610. height: math.unit(6, "feet"),
  11611. weight: math.unit(200, "lb"),
  11612. name: "Taur (Back)",
  11613. image: {
  11614. source: "./media/characters/scales/taur-back.svg",
  11615. extra: 1,
  11616. bottom: 0.08
  11617. }
  11618. },
  11619. anthro: {
  11620. height: math.unit(6 * 7 / 12, "feet"),
  11621. weight: math.unit(100, "lb"),
  11622. name: "Anthro",
  11623. image: {
  11624. source: "./media/characters/scales/anthro.svg",
  11625. extra: 1,
  11626. bottom: 0.06
  11627. }
  11628. },
  11629. },
  11630. [
  11631. {
  11632. name: "Normal",
  11633. height: math.unit(12, "feet"),
  11634. default: true
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11640. {
  11641. front: {
  11642. height: math.unit(6, "feet"),
  11643. weight: math.unit(150, "lb"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/koragos/front.svg",
  11647. extra: 841 / 794,
  11648. bottom: 0.035
  11649. }
  11650. },
  11651. back: {
  11652. height: math.unit(6, "feet"),
  11653. weight: math.unit(150, "lb"),
  11654. name: "Back",
  11655. image: {
  11656. source: "./media/characters/koragos/back.svg",
  11657. extra: 841 / 810,
  11658. bottom: 0.022
  11659. }
  11660. },
  11661. },
  11662. [
  11663. {
  11664. name: "Normal",
  11665. height: math.unit(6 + 11 / 12, "feet"),
  11666. default: true
  11667. },
  11668. {
  11669. name: "Macro",
  11670. height: math.unit(490, "feet")
  11671. },
  11672. {
  11673. name: "Megamacro",
  11674. height: math.unit(10, "miles")
  11675. },
  11676. {
  11677. name: "Gigamacro",
  11678. height: math.unit(50, "miles")
  11679. },
  11680. ]
  11681. ))
  11682. characterMakers.push(() => makeCharacter(
  11683. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11684. {
  11685. front: {
  11686. height: math.unit(6, "feet"),
  11687. weight: math.unit(250, "lb"),
  11688. name: "Front",
  11689. image: {
  11690. source: "./media/characters/xylrem/front.svg",
  11691. extra: 3323 / 3050,
  11692. bottom: 0.065
  11693. }
  11694. },
  11695. },
  11696. [
  11697. {
  11698. name: "Micro",
  11699. height: math.unit(4, "feet")
  11700. },
  11701. {
  11702. name: "Normal",
  11703. height: math.unit(16, "feet"),
  11704. default: true
  11705. },
  11706. {
  11707. name: "Macro",
  11708. height: math.unit(2720, "feet")
  11709. },
  11710. {
  11711. name: "Megamacro",
  11712. height: math.unit(25000, "miles")
  11713. },
  11714. ]
  11715. ))
  11716. characterMakers.push(() => makeCharacter(
  11717. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11718. {
  11719. front: {
  11720. height: math.unit(8, "feet"),
  11721. weight: math.unit(250, "kg"),
  11722. name: "Front",
  11723. image: {
  11724. source: "./media/characters/ikideru/front.svg",
  11725. extra: 930 / 870,
  11726. bottom: 0.087
  11727. }
  11728. },
  11729. back: {
  11730. height: math.unit(8, "feet"),
  11731. weight: math.unit(250, "kg"),
  11732. name: "Back",
  11733. image: {
  11734. source: "./media/characters/ikideru/back.svg",
  11735. extra: 919 / 852,
  11736. bottom: 0.055
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Rare",
  11743. height: math.unit(8, "feet"),
  11744. default: true
  11745. },
  11746. {
  11747. name: "Playful Loom",
  11748. height: math.unit(80, "feet")
  11749. },
  11750. {
  11751. name: "City Leaner",
  11752. height: math.unit(230, "feet")
  11753. },
  11754. {
  11755. name: "Megamacro",
  11756. height: math.unit(2500, "feet")
  11757. },
  11758. {
  11759. name: "Gigamacro",
  11760. height: math.unit(26400, "feet")
  11761. },
  11762. {
  11763. name: "Tectonic Shifter",
  11764. height: math.unit(1.7, "megameters")
  11765. },
  11766. {
  11767. name: "Planet Carer",
  11768. height: math.unit(21, "megameters")
  11769. },
  11770. {
  11771. name: "God",
  11772. height: math.unit(11157.22, "parsecs")
  11773. },
  11774. ]
  11775. ))
  11776. characterMakers.push(() => makeCharacter(
  11777. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11778. {
  11779. front: {
  11780. height: math.unit(6, "feet"),
  11781. weight: math.unit(120, "lb"),
  11782. name: "Front",
  11783. image: {
  11784. source: "./media/characters/neo/front.svg"
  11785. }
  11786. },
  11787. },
  11788. [
  11789. {
  11790. name: "Micro",
  11791. height: math.unit(2, "inches"),
  11792. default: true
  11793. },
  11794. {
  11795. name: "Human Size",
  11796. height: math.unit(5 + 8 / 12, "feet")
  11797. },
  11798. ]
  11799. ))
  11800. characterMakers.push(() => makeCharacter(
  11801. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11802. {
  11803. front: {
  11804. height: math.unit(13 + 10 / 12, "feet"),
  11805. weight: math.unit(5320, "lb"),
  11806. name: "Front",
  11807. image: {
  11808. source: "./media/characters/chauncey-chantz/front.svg",
  11809. extra: 1587 / 1435,
  11810. bottom: 0.02
  11811. }
  11812. },
  11813. },
  11814. [
  11815. {
  11816. name: "Normal",
  11817. height: math.unit(13 + 10 / 12, "feet"),
  11818. default: true
  11819. },
  11820. {
  11821. name: "Macro",
  11822. height: math.unit(45, "feet")
  11823. },
  11824. {
  11825. name: "Megamacro",
  11826. height: math.unit(250, "miles")
  11827. },
  11828. {
  11829. name: "Planetary",
  11830. height: math.unit(10000, "miles")
  11831. },
  11832. {
  11833. name: "Galactic",
  11834. height: math.unit(40000, "parsecs")
  11835. },
  11836. {
  11837. name: "Universal",
  11838. height: math.unit(1, "yottameter")
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11844. {
  11845. front: {
  11846. height: math.unit(6, "feet"),
  11847. weight: math.unit(150, "lb"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/epifox/front.svg",
  11851. extra: 1,
  11852. bottom: 0.075
  11853. }
  11854. },
  11855. },
  11856. [
  11857. {
  11858. name: "Micro",
  11859. height: math.unit(6, "inches")
  11860. },
  11861. {
  11862. name: "Normal",
  11863. height: math.unit(12, "feet"),
  11864. default: true
  11865. },
  11866. {
  11867. name: "Macro",
  11868. height: math.unit(3810, "feet")
  11869. },
  11870. {
  11871. name: "Megamacro",
  11872. height: math.unit(500, "miles")
  11873. },
  11874. ]
  11875. ))
  11876. characterMakers.push(() => makeCharacter(
  11877. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11878. {
  11879. front: {
  11880. height: math.unit(1.8796, "m"),
  11881. weight: math.unit(230, "lb"),
  11882. name: "Front",
  11883. image: {
  11884. source: "./media/characters/colin-t/front.svg",
  11885. extra: 1272 / 1193,
  11886. bottom: 0.07
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Micro",
  11893. height: math.unit(0.571, "meters")
  11894. },
  11895. {
  11896. name: "Normal",
  11897. height: math.unit(1.8796, "meters"),
  11898. default: true
  11899. },
  11900. {
  11901. name: "Tall",
  11902. height: math.unit(4, "meters")
  11903. },
  11904. {
  11905. name: "Macro",
  11906. height: math.unit(67.241, "meters")
  11907. },
  11908. {
  11909. name: "Megamacro",
  11910. height: math.unit(371.856, "meters")
  11911. },
  11912. {
  11913. name: "Planetary",
  11914. height: math.unit(12631.5689, "km")
  11915. },
  11916. ]
  11917. ))
  11918. characterMakers.push(() => makeCharacter(
  11919. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11920. {
  11921. front: {
  11922. height: math.unit(1.85, "meters"),
  11923. weight: math.unit(80, "kg"),
  11924. name: "Front",
  11925. image: {
  11926. source: "./media/characters/matvei/front.svg",
  11927. extra: 614 / 594,
  11928. bottom: 0.01
  11929. }
  11930. },
  11931. },
  11932. [
  11933. {
  11934. name: "Normal",
  11935. height: math.unit(1.85, "meters"),
  11936. default: true
  11937. },
  11938. ]
  11939. ))
  11940. characterMakers.push(() => makeCharacter(
  11941. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11942. {
  11943. front: {
  11944. height: math.unit(5 + 9 / 12, "feet"),
  11945. weight: math.unit(70, "lb"),
  11946. name: "Front",
  11947. image: {
  11948. source: "./media/characters/quincy/front.svg",
  11949. extra: 3041 / 2751
  11950. }
  11951. },
  11952. back: {
  11953. height: math.unit(5 + 9 / 12, "feet"),
  11954. weight: math.unit(70, "lb"),
  11955. name: "Back",
  11956. image: {
  11957. source: "./media/characters/quincy/back.svg",
  11958. extra: 3041 / 2751
  11959. }
  11960. },
  11961. flying: {
  11962. height: math.unit(5 + 4 / 12, "feet"),
  11963. weight: math.unit(70, "lb"),
  11964. name: "Flying",
  11965. image: {
  11966. source: "./media/characters/quincy/flying.svg",
  11967. extra: 1044 / 930
  11968. }
  11969. },
  11970. },
  11971. [
  11972. {
  11973. name: "Micro",
  11974. height: math.unit(3, "cm")
  11975. },
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(5 + 9 / 12, "feet")
  11979. },
  11980. {
  11981. name: "Macro",
  11982. height: math.unit(200, "meters"),
  11983. default: true
  11984. },
  11985. {
  11986. name: "Megamacro",
  11987. height: math.unit(1000, "meters")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(3 + 11/12, "feet"),
  11996. weight: math.unit(50, "lb"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/vanrel/front.svg",
  12000. extra: 1104/949,
  12001. bottom: 52/1156
  12002. }
  12003. },
  12004. back: {
  12005. height: math.unit(3 + 11/12, "feet"),
  12006. weight: math.unit(50, "lb"),
  12007. name: "Back",
  12008. image: {
  12009. source: "./media/characters/vanrel/back.svg",
  12010. extra: 1119/976,
  12011. bottom: 37/1156
  12012. }
  12013. },
  12014. tome: {
  12015. height: math.unit(1.35, "feet"),
  12016. weight: math.unit(10, "lb"),
  12017. name: "Vanrel's Tome",
  12018. rename: true,
  12019. image: {
  12020. source: "./media/characters/vanrel/tome.svg"
  12021. }
  12022. },
  12023. beans: {
  12024. height: math.unit(0.89, "feet"),
  12025. name: "Beans",
  12026. image: {
  12027. source: "./media/characters/vanrel/beans.svg"
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Normal",
  12034. height: math.unit(3 + 11/12, "feet"),
  12035. default: true
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(7 + 5 / 12, "feet"),
  12044. name: "Front",
  12045. image: {
  12046. source: "./media/characters/kuiper-vanrel/front.svg",
  12047. extra: 1219/1169,
  12048. bottom: 69/1288
  12049. }
  12050. },
  12051. back: {
  12052. height: math.unit(7 + 5 / 12, "feet"),
  12053. name: "Back",
  12054. image: {
  12055. source: "./media/characters/kuiper-vanrel/back.svg",
  12056. extra: 1236/1193,
  12057. bottom: 27/1263
  12058. }
  12059. },
  12060. foot: {
  12061. height: math.unit(0.55, "meters"),
  12062. name: "Foot",
  12063. image: {
  12064. source: "./media/characters/kuiper-vanrel/foot.svg",
  12065. }
  12066. },
  12067. battle: {
  12068. height: math.unit(6.824, "feet"),
  12069. name: "Battle",
  12070. image: {
  12071. source: "./media/characters/kuiper-vanrel/battle.svg",
  12072. extra: 1466 / 1327,
  12073. bottom: 29 / 1492.5
  12074. }
  12075. },
  12076. meerkui: {
  12077. height: math.unit(18, "inches"),
  12078. name: "Meerkui",
  12079. image: {
  12080. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12081. extra: 1354/1289,
  12082. bottom: 69/1423
  12083. }
  12084. },
  12085. },
  12086. [
  12087. {
  12088. name: "Normal",
  12089. height: math.unit(7 + 5 / 12, "feet"),
  12090. default: true
  12091. },
  12092. ]
  12093. ))
  12094. characterMakers.push(() => makeCharacter(
  12095. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12096. {
  12097. front: {
  12098. height: math.unit(8 + 5 / 12, "feet"),
  12099. name: "Front",
  12100. image: {
  12101. source: "./media/characters/keset-vanrel/front.svg",
  12102. extra: 1231/1148,
  12103. bottom: 82/1313
  12104. }
  12105. },
  12106. back: {
  12107. height: math.unit(8 + 5 / 12, "feet"),
  12108. name: "Back",
  12109. image: {
  12110. source: "./media/characters/keset-vanrel/back.svg",
  12111. extra: 1240/1174,
  12112. bottom: 33/1273
  12113. }
  12114. },
  12115. hand: {
  12116. height: math.unit(0.6, "meters"),
  12117. name: "Hand",
  12118. image: {
  12119. source: "./media/characters/keset-vanrel/hand.svg"
  12120. }
  12121. },
  12122. foot: {
  12123. height: math.unit(0.94978, "meters"),
  12124. name: "Foot",
  12125. image: {
  12126. source: "./media/characters/keset-vanrel/foot.svg"
  12127. }
  12128. },
  12129. battle: {
  12130. height: math.unit(7.408, "feet"),
  12131. name: "Battle",
  12132. image: {
  12133. source: "./media/characters/keset-vanrel/battle.svg",
  12134. extra: 1890 / 1386,
  12135. bottom: 73.28 / 1970
  12136. }
  12137. },
  12138. },
  12139. [
  12140. {
  12141. name: "Normal",
  12142. height: math.unit(8 + 5 / 12, "feet"),
  12143. default: true
  12144. },
  12145. ]
  12146. ))
  12147. characterMakers.push(() => makeCharacter(
  12148. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12149. {
  12150. front: {
  12151. height: math.unit(6, "feet"),
  12152. weight: math.unit(150, "lb"),
  12153. name: "Front",
  12154. image: {
  12155. source: "./media/characters/neos/front.svg",
  12156. extra: 1696 / 992,
  12157. bottom: 0.14
  12158. }
  12159. },
  12160. },
  12161. [
  12162. {
  12163. name: "Normal",
  12164. height: math.unit(54, "cm"),
  12165. default: true
  12166. },
  12167. {
  12168. name: "Macro",
  12169. height: math.unit(100, "m")
  12170. },
  12171. {
  12172. name: "Megamacro",
  12173. height: math.unit(10, "km")
  12174. },
  12175. {
  12176. name: "Megamacro+",
  12177. height: math.unit(100, "km")
  12178. },
  12179. {
  12180. name: "Gigamacro",
  12181. height: math.unit(100, "Mm")
  12182. },
  12183. {
  12184. name: "Teramacro",
  12185. height: math.unit(100, "Gm")
  12186. },
  12187. {
  12188. name: "Examacro",
  12189. height: math.unit(100, "Em")
  12190. },
  12191. {
  12192. name: "Godly",
  12193. height: math.unit(10000, "Ym")
  12194. },
  12195. {
  12196. name: "Beyond Godly",
  12197. height: math.unit(25, "multiverses")
  12198. },
  12199. ]
  12200. ))
  12201. characterMakers.push(() => makeCharacter(
  12202. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12203. {
  12204. feminine: {
  12205. height: math.unit(5, "feet"),
  12206. weight: math.unit(100, "lb"),
  12207. name: "Feminine",
  12208. image: {
  12209. source: "./media/characters/sammy-mouse/feminine.svg",
  12210. extra: 2526 / 2425,
  12211. bottom: 0.123
  12212. }
  12213. },
  12214. masculine: {
  12215. height: math.unit(5, "feet"),
  12216. weight: math.unit(100, "lb"),
  12217. name: "Masculine",
  12218. image: {
  12219. source: "./media/characters/sammy-mouse/masculine.svg",
  12220. extra: 2526 / 2425,
  12221. bottom: 0.123
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Micro",
  12228. height: math.unit(5, "inches")
  12229. },
  12230. {
  12231. name: "Normal",
  12232. height: math.unit(5, "feet"),
  12233. default: true
  12234. },
  12235. {
  12236. name: "Macro",
  12237. height: math.unit(60, "feet")
  12238. },
  12239. ]
  12240. ))
  12241. characterMakers.push(() => makeCharacter(
  12242. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12243. {
  12244. front: {
  12245. height: math.unit(4, "feet"),
  12246. weight: math.unit(50, "lb"),
  12247. name: "Front",
  12248. image: {
  12249. source: "./media/characters/kole/front.svg",
  12250. extra: 1423 / 1303,
  12251. bottom: 0.025
  12252. }
  12253. },
  12254. back: {
  12255. height: math.unit(4, "feet"),
  12256. weight: math.unit(50, "lb"),
  12257. name: "Back",
  12258. image: {
  12259. source: "./media/characters/kole/back.svg",
  12260. extra: 1426 / 1280,
  12261. bottom: 0.02
  12262. }
  12263. },
  12264. },
  12265. [
  12266. {
  12267. name: "Normal",
  12268. height: math.unit(4, "feet"),
  12269. default: true
  12270. },
  12271. ]
  12272. ))
  12273. characterMakers.push(() => makeCharacter(
  12274. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12275. {
  12276. front: {
  12277. height: math.unit(2.5, "feet"),
  12278. weight: math.unit(32, "lb"),
  12279. name: "Front",
  12280. image: {
  12281. source: "./media/characters/rufran/front.svg",
  12282. extra: 1313/885,
  12283. bottom: 94/1407
  12284. }
  12285. },
  12286. side: {
  12287. height: math.unit(2.5, "feet"),
  12288. weight: math.unit(32, "lb"),
  12289. name: "Side",
  12290. image: {
  12291. source: "./media/characters/rufran/side.svg",
  12292. extra: 1109/852,
  12293. bottom: 118/1227
  12294. }
  12295. },
  12296. back: {
  12297. height: math.unit(2.5, "feet"),
  12298. weight: math.unit(32, "lb"),
  12299. name: "Back",
  12300. image: {
  12301. source: "./media/characters/rufran/back.svg",
  12302. extra: 1280/878,
  12303. bottom: 131/1411
  12304. }
  12305. },
  12306. mouth: {
  12307. height: math.unit(1.13, "feet"),
  12308. name: "Mouth",
  12309. image: {
  12310. source: "./media/characters/rufran/mouth.svg"
  12311. }
  12312. },
  12313. foot: {
  12314. height: math.unit(1.33, "feet"),
  12315. name: "Foot",
  12316. image: {
  12317. source: "./media/characters/rufran/foot.svg"
  12318. }
  12319. },
  12320. koboldFront: {
  12321. height: math.unit(2 + 6 / 12, "feet"),
  12322. weight: math.unit(20, "lb"),
  12323. name: "Front (Kobold)",
  12324. image: {
  12325. source: "./media/characters/rufran/kobold-front.svg",
  12326. extra: 2041 / 1839,
  12327. bottom: 0.055
  12328. }
  12329. },
  12330. koboldBack: {
  12331. height: math.unit(2 + 6 / 12, "feet"),
  12332. weight: math.unit(20, "lb"),
  12333. name: "Back (Kobold)",
  12334. image: {
  12335. source: "./media/characters/rufran/kobold-back.svg",
  12336. extra: 2054 / 1839,
  12337. bottom: 0.01
  12338. }
  12339. },
  12340. koboldHand: {
  12341. height: math.unit(0.2166, "meters"),
  12342. name: "Hand (Kobold)",
  12343. image: {
  12344. source: "./media/characters/rufran/kobold-hand.svg"
  12345. }
  12346. },
  12347. koboldFoot: {
  12348. height: math.unit(0.185, "meters"),
  12349. name: "Foot (Kobold)",
  12350. image: {
  12351. source: "./media/characters/rufran/kobold-foot.svg"
  12352. }
  12353. },
  12354. },
  12355. [
  12356. {
  12357. name: "Micro",
  12358. height: math.unit(1, "inch")
  12359. },
  12360. {
  12361. name: "Normal",
  12362. height: math.unit(2 + 6 / 12, "feet"),
  12363. default: true
  12364. },
  12365. {
  12366. name: "Big",
  12367. height: math.unit(60, "feet")
  12368. },
  12369. {
  12370. name: "Macro",
  12371. height: math.unit(325, "feet")
  12372. },
  12373. ]
  12374. ))
  12375. characterMakers.push(() => makeCharacter(
  12376. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12377. {
  12378. front: {
  12379. height: math.unit(0.3, "meters"),
  12380. weight: math.unit(3.5, "kg"),
  12381. name: "Front",
  12382. image: {
  12383. source: "./media/characters/chip/front.svg",
  12384. extra: 748 / 674
  12385. }
  12386. },
  12387. },
  12388. [
  12389. {
  12390. name: "Micro",
  12391. height: math.unit(1, "inch"),
  12392. default: true
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12398. {
  12399. side: {
  12400. height: math.unit(2.3, "meters"),
  12401. weight: math.unit(3500, "lb"),
  12402. name: "Side",
  12403. image: {
  12404. source: "./media/characters/torvid/side.svg",
  12405. extra: 1972 / 722,
  12406. bottom: 0.035
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Normal",
  12413. height: math.unit(2.3, "meters"),
  12414. default: true
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12420. {
  12421. front: {
  12422. height: math.unit(2, "meters"),
  12423. weight: math.unit(150.5, "kg"),
  12424. name: "Front",
  12425. image: {
  12426. source: "./media/characters/susan/front.svg",
  12427. extra: 693 / 635,
  12428. bottom: 0.05
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Megamacro",
  12435. height: math.unit(505, "miles"),
  12436. default: true
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(6, "feet"),
  12445. weight: math.unit(150, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/raindrops/front.svg",
  12449. extra: 2655 / 2461,
  12450. bottom: 49 / 2705
  12451. }
  12452. },
  12453. back: {
  12454. height: math.unit(6, "feet"),
  12455. weight: math.unit(150, "lb"),
  12456. name: "Back",
  12457. image: {
  12458. source: "./media/characters/raindrops/back.svg",
  12459. extra: 2574 / 2400,
  12460. bottom: 65 / 2634
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Micro",
  12467. height: math.unit(6, "inches")
  12468. },
  12469. {
  12470. name: "Normal",
  12471. height: math.unit(6 + 2 / 12, "feet")
  12472. },
  12473. {
  12474. name: "Macro",
  12475. height: math.unit(131, "feet"),
  12476. default: true
  12477. },
  12478. {
  12479. name: "Megamacro",
  12480. height: math.unit(15, "miles")
  12481. },
  12482. {
  12483. name: "Gigamacro",
  12484. height: math.unit(4000, "miles")
  12485. },
  12486. {
  12487. name: "Teramacro",
  12488. height: math.unit(315000, "miles")
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12494. {
  12495. front: {
  12496. height: math.unit(2.794, "meters"),
  12497. weight: math.unit(325, "kg"),
  12498. name: "Front",
  12499. image: {
  12500. source: "./media/characters/tezwa/front.svg",
  12501. extra: 2083 / 1906,
  12502. bottom: 0.031
  12503. }
  12504. },
  12505. foot: {
  12506. height: math.unit(0.687, "meters"),
  12507. name: "Foot",
  12508. image: {
  12509. source: "./media/characters/tezwa/foot.svg"
  12510. }
  12511. },
  12512. },
  12513. [
  12514. {
  12515. name: "Normal",
  12516. height: math.unit(9 + 2 / 12, "feet"),
  12517. default: true
  12518. },
  12519. ]
  12520. ))
  12521. characterMakers.push(() => makeCharacter(
  12522. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12523. {
  12524. front: {
  12525. height: math.unit(58, "feet"),
  12526. weight: math.unit(89000, "lb"),
  12527. name: "Front",
  12528. image: {
  12529. source: "./media/characters/typhus/front.svg",
  12530. extra: 816 / 800,
  12531. bottom: 0.065
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Macro",
  12538. height: math.unit(58, "feet"),
  12539. default: true
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12545. {
  12546. front: {
  12547. height: math.unit(12, "feet"),
  12548. weight: math.unit(6, "tonnes"),
  12549. name: "Front",
  12550. image: {
  12551. source: "./media/characters/lyra-von-wulf/front.svg",
  12552. extra: 1,
  12553. bottom: 0.10
  12554. }
  12555. },
  12556. frontMecha: {
  12557. height: math.unit(12, "feet"),
  12558. weight: math.unit(12, "tonnes"),
  12559. name: "Front (Mecha)",
  12560. image: {
  12561. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12562. extra: 1,
  12563. bottom: 0.042
  12564. }
  12565. },
  12566. maw: {
  12567. height: math.unit(2.2, "feet"),
  12568. name: "Maw",
  12569. image: {
  12570. source: "./media/characters/lyra-von-wulf/maw.svg"
  12571. }
  12572. },
  12573. },
  12574. [
  12575. {
  12576. name: "Normal",
  12577. height: math.unit(12, "feet"),
  12578. default: true
  12579. },
  12580. {
  12581. name: "Classic",
  12582. height: math.unit(50, "feet")
  12583. },
  12584. {
  12585. name: "Macro",
  12586. height: math.unit(500, "feet")
  12587. },
  12588. {
  12589. name: "Megamacro",
  12590. height: math.unit(1, "mile")
  12591. },
  12592. {
  12593. name: "Gigamacro",
  12594. height: math.unit(400, "miles")
  12595. },
  12596. {
  12597. name: "Teramacro",
  12598. height: math.unit(22000, "miles")
  12599. },
  12600. {
  12601. name: "Solarmacro",
  12602. height: math.unit(8600000, "miles")
  12603. },
  12604. {
  12605. name: "Galactic",
  12606. height: math.unit(1057000, "lightyears")
  12607. },
  12608. ]
  12609. ))
  12610. characterMakers.push(() => makeCharacter(
  12611. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12612. {
  12613. front: {
  12614. height: math.unit(6 + 10 / 12, "feet"),
  12615. weight: math.unit(150, "lb"),
  12616. name: "Front",
  12617. image: {
  12618. source: "./media/characters/dixon/front.svg",
  12619. extra: 3361 / 3209,
  12620. bottom: 0.01
  12621. }
  12622. },
  12623. },
  12624. [
  12625. {
  12626. name: "Normal",
  12627. height: math.unit(6 + 10 / 12, "feet"),
  12628. default: true
  12629. },
  12630. {
  12631. name: "Big",
  12632. height: math.unit(12, "meters")
  12633. },
  12634. {
  12635. name: "Macro",
  12636. height: math.unit(500, "meters")
  12637. },
  12638. {
  12639. name: "Megamacro",
  12640. height: math.unit(2, "km")
  12641. },
  12642. ]
  12643. ))
  12644. characterMakers.push(() => makeCharacter(
  12645. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12646. {
  12647. front: {
  12648. height: math.unit(185, "cm"),
  12649. weight: math.unit(68, "kg"),
  12650. name: "Front",
  12651. image: {
  12652. source: "./media/characters/kauko/front.svg",
  12653. extra: 1455 / 1421,
  12654. bottom: 0.03
  12655. }
  12656. },
  12657. back: {
  12658. height: math.unit(185, "cm"),
  12659. weight: math.unit(68, "kg"),
  12660. name: "Back",
  12661. image: {
  12662. source: "./media/characters/kauko/back.svg",
  12663. extra: 1455 / 1421,
  12664. bottom: 0.004
  12665. }
  12666. },
  12667. },
  12668. [
  12669. {
  12670. name: "Normal",
  12671. height: math.unit(185, "cm"),
  12672. default: true
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12678. {
  12679. front: {
  12680. height: math.unit(6, "feet"),
  12681. weight: math.unit(150, "kg"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/varg/front.svg",
  12685. extra: 1108 / 1018,
  12686. bottom: 0.0375
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(5, "meters")
  12694. },
  12695. {
  12696. name: "Macro",
  12697. height: math.unit(200, "meters")
  12698. },
  12699. {
  12700. name: "Megamacro",
  12701. height: math.unit(20, "kilometers")
  12702. },
  12703. {
  12704. name: "True Size",
  12705. height: math.unit(211, "km"),
  12706. default: true
  12707. },
  12708. {
  12709. name: "Gigamacro",
  12710. height: math.unit(1000, "km")
  12711. },
  12712. {
  12713. name: "Gigamacro+",
  12714. height: math.unit(8000, "km")
  12715. },
  12716. {
  12717. name: "Teramacro",
  12718. height: math.unit(1000000, "km")
  12719. },
  12720. ]
  12721. ))
  12722. characterMakers.push(() => makeCharacter(
  12723. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12724. {
  12725. front: {
  12726. height: math.unit(7 + 7 / 12, "feet"),
  12727. weight: math.unit(267, "lb"),
  12728. name: "Front",
  12729. image: {
  12730. source: "./media/characters/dayza/front.svg",
  12731. extra: 1262 / 1200,
  12732. bottom: 0.035
  12733. }
  12734. },
  12735. side: {
  12736. height: math.unit(7 + 7 / 12, "feet"),
  12737. weight: math.unit(267, "lb"),
  12738. name: "Side",
  12739. image: {
  12740. source: "./media/characters/dayza/side.svg",
  12741. extra: 1295 / 1245,
  12742. bottom: 0.05
  12743. }
  12744. },
  12745. back: {
  12746. height: math.unit(7 + 7 / 12, "feet"),
  12747. weight: math.unit(267, "lb"),
  12748. name: "Back",
  12749. image: {
  12750. source: "./media/characters/dayza/back.svg",
  12751. extra: 1241 / 1170
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(7 + 7 / 12, "feet"),
  12759. default: true
  12760. },
  12761. {
  12762. name: "Macro",
  12763. height: math.unit(155, "feet")
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12769. {
  12770. front: {
  12771. height: math.unit(6 + 5 / 12, "feet"),
  12772. weight: math.unit(160, "lb"),
  12773. name: "Front",
  12774. image: {
  12775. source: "./media/characters/xanthos/front.svg",
  12776. extra: 1,
  12777. bottom: 0.04
  12778. }
  12779. },
  12780. back: {
  12781. height: math.unit(6 + 5 / 12, "feet"),
  12782. weight: math.unit(160, "lb"),
  12783. name: "Back",
  12784. image: {
  12785. source: "./media/characters/xanthos/back.svg",
  12786. extra: 1,
  12787. bottom: 0.03
  12788. }
  12789. },
  12790. hand: {
  12791. height: math.unit(0.928, "feet"),
  12792. name: "Hand",
  12793. image: {
  12794. source: "./media/characters/xanthos/hand.svg"
  12795. }
  12796. },
  12797. foot: {
  12798. height: math.unit(1.286, "feet"),
  12799. name: "Foot",
  12800. image: {
  12801. source: "./media/characters/xanthos/foot.svg"
  12802. }
  12803. },
  12804. },
  12805. [
  12806. {
  12807. name: "Normal",
  12808. height: math.unit(6 + 5 / 12, "feet"),
  12809. default: true
  12810. },
  12811. {
  12812. name: "Normal+",
  12813. height: math.unit(6, "meters")
  12814. },
  12815. {
  12816. name: "Macro",
  12817. height: math.unit(40, "feet")
  12818. },
  12819. {
  12820. name: "Macro+",
  12821. height: math.unit(200, "meters")
  12822. },
  12823. {
  12824. name: "Megamacro",
  12825. height: math.unit(20, "km")
  12826. },
  12827. {
  12828. name: "Megamacro+",
  12829. height: math.unit(100, "km")
  12830. },
  12831. {
  12832. name: "Gigamacro",
  12833. height: math.unit(200, "megameters")
  12834. },
  12835. {
  12836. name: "Gigamacro+",
  12837. height: math.unit(1.5, "gigameters")
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12843. {
  12844. front: {
  12845. height: math.unit(6 + 3 / 12, "feet"),
  12846. weight: math.unit(215, "lb"),
  12847. name: "Front",
  12848. image: {
  12849. source: "./media/characters/grynn/front.svg",
  12850. extra: 4627 / 4209,
  12851. bottom: 0.047
  12852. }
  12853. },
  12854. },
  12855. [
  12856. {
  12857. name: "Micro",
  12858. height: math.unit(6, "inches")
  12859. },
  12860. {
  12861. name: "Normal",
  12862. height: math.unit(6 + 3 / 12, "feet"),
  12863. default: true
  12864. },
  12865. {
  12866. name: "Big",
  12867. height: math.unit(104, "feet")
  12868. },
  12869. {
  12870. name: "Macro",
  12871. height: math.unit(944, "feet")
  12872. },
  12873. {
  12874. name: "Macro+",
  12875. height: math.unit(9480, "feet")
  12876. },
  12877. {
  12878. name: "Megamacro",
  12879. height: math.unit(78752, "feet")
  12880. },
  12881. {
  12882. name: "Megamacro+",
  12883. height: math.unit(630128, "feet")
  12884. },
  12885. {
  12886. name: "Megamacro++",
  12887. height: math.unit(3150695, "feet")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(7 + 5 / 12, "feet"),
  12896. weight: math.unit(450, "lb"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/mocha-aura/front.svg",
  12900. extra: 1907 / 1817,
  12901. bottom: 0.04
  12902. }
  12903. },
  12904. back: {
  12905. height: math.unit(7 + 5 / 12, "feet"),
  12906. weight: math.unit(450, "lb"),
  12907. name: "Back",
  12908. image: {
  12909. source: "./media/characters/mocha-aura/back.svg",
  12910. extra: 1900 / 1825,
  12911. bottom: 0.045
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Nano",
  12918. height: math.unit(1, "nm")
  12919. },
  12920. {
  12921. name: "Megamicro",
  12922. height: math.unit(1, "mm")
  12923. },
  12924. {
  12925. name: "Micro",
  12926. height: math.unit(3, "inches")
  12927. },
  12928. {
  12929. name: "Normal",
  12930. height: math.unit(7 + 5 / 12, "feet"),
  12931. default: true
  12932. },
  12933. {
  12934. name: "Macro",
  12935. height: math.unit(30, "feet")
  12936. },
  12937. {
  12938. name: "Megamacro",
  12939. height: math.unit(3500, "feet")
  12940. },
  12941. {
  12942. name: "Teramacro",
  12943. height: math.unit(500000, "miles")
  12944. },
  12945. {
  12946. name: "Petamacro",
  12947. height: math.unit(50000000000000000, "parsecs")
  12948. },
  12949. ]
  12950. ))
  12951. characterMakers.push(() => makeCharacter(
  12952. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12953. {
  12954. front: {
  12955. height: math.unit(6, "feet"),
  12956. weight: math.unit(150, "lb"),
  12957. name: "Front",
  12958. image: {
  12959. source: "./media/characters/ilisha-devya/front.svg",
  12960. extra: 1,
  12961. bottom: 0.175
  12962. }
  12963. },
  12964. back: {
  12965. height: math.unit(6, "feet"),
  12966. weight: math.unit(150, "lb"),
  12967. name: "Back",
  12968. image: {
  12969. source: "./media/characters/ilisha-devya/back.svg",
  12970. extra: 1,
  12971. bottom: 0.015
  12972. }
  12973. },
  12974. },
  12975. [
  12976. {
  12977. name: "Macro",
  12978. height: math.unit(500, "feet"),
  12979. default: true
  12980. },
  12981. {
  12982. name: "Megamacro",
  12983. height: math.unit(10, "miles")
  12984. },
  12985. {
  12986. name: "Gigamacro",
  12987. height: math.unit(100000, "miles")
  12988. },
  12989. {
  12990. name: "Examacro",
  12991. height: math.unit(1e9, "lightyears")
  12992. },
  12993. {
  12994. name: "Omniversal",
  12995. height: math.unit(1e33, "lightyears")
  12996. },
  12997. {
  12998. name: "Beyond Infinite",
  12999. height: math.unit(1e100, "lightyears")
  13000. },
  13001. ]
  13002. ))
  13003. characterMakers.push(() => makeCharacter(
  13004. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13005. {
  13006. Side: {
  13007. height: math.unit(6, "feet"),
  13008. weight: math.unit(150, "lb"),
  13009. name: "Side",
  13010. image: {
  13011. source: "./media/characters/mira/side.svg",
  13012. extra: 900 / 799,
  13013. bottom: 0.02
  13014. }
  13015. },
  13016. },
  13017. [
  13018. {
  13019. name: "Human Size",
  13020. height: math.unit(6, "feet")
  13021. },
  13022. {
  13023. name: "Macro",
  13024. height: math.unit(100, "feet"),
  13025. default: true
  13026. },
  13027. {
  13028. name: "Megamacro",
  13029. height: math.unit(10, "miles")
  13030. },
  13031. {
  13032. name: "Gigamacro",
  13033. height: math.unit(25000, "miles")
  13034. },
  13035. {
  13036. name: "Teramacro",
  13037. height: math.unit(300, "AU")
  13038. },
  13039. {
  13040. name: "Full Size",
  13041. height: math.unit(4.5e10, "lightyears")
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13047. {
  13048. front: {
  13049. height: math.unit(6, "feet"),
  13050. weight: math.unit(150, "lb"),
  13051. name: "Front",
  13052. image: {
  13053. source: "./media/characters/holly/front.svg",
  13054. extra: 639 / 606
  13055. }
  13056. },
  13057. back: {
  13058. height: math.unit(6, "feet"),
  13059. weight: math.unit(150, "lb"),
  13060. name: "Back",
  13061. image: {
  13062. source: "./media/characters/holly/back.svg",
  13063. extra: 623 / 598
  13064. }
  13065. },
  13066. frontWorking: {
  13067. height: math.unit(6, "feet"),
  13068. weight: math.unit(150, "lb"),
  13069. name: "Front (Working)",
  13070. image: {
  13071. source: "./media/characters/holly/front-working.svg",
  13072. extra: 607 / 577,
  13073. bottom: 0.048
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Normal",
  13080. height: math.unit(12 + 3 / 12, "feet"),
  13081. default: true
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(6, "feet"),
  13090. weight: math.unit(150, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/porter/front.svg",
  13094. extra: 1,
  13095. bottom: 0.01
  13096. }
  13097. },
  13098. frontRobes: {
  13099. height: math.unit(6, "feet"),
  13100. weight: math.unit(150, "lb"),
  13101. name: "Front (Robes)",
  13102. image: {
  13103. source: "./media/characters/porter/front-robes.svg",
  13104. extra: 1.01,
  13105. bottom: 0.01
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Normal",
  13112. height: math.unit(11 + 9 / 12, "feet"),
  13113. default: true
  13114. },
  13115. ]
  13116. ))
  13117. characterMakers.push(() => makeCharacter(
  13118. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13119. {
  13120. legendary: {
  13121. height: math.unit(6, "feet"),
  13122. weight: math.unit(150, "lb"),
  13123. name: "Legendary",
  13124. image: {
  13125. source: "./media/characters/lucy/legendary.svg",
  13126. extra: 1355 / 1100,
  13127. bottom: 0.045
  13128. }
  13129. },
  13130. },
  13131. [
  13132. {
  13133. name: "Legendary",
  13134. height: math.unit(86882 * 2, "miles"),
  13135. default: true
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13141. {
  13142. front: {
  13143. height: math.unit(6, "feet"),
  13144. weight: math.unit(150, "lb"),
  13145. name: "Front",
  13146. image: {
  13147. source: "./media/characters/drusilla/front.svg",
  13148. extra: 678 / 635,
  13149. bottom: 0.03
  13150. }
  13151. },
  13152. back: {
  13153. height: math.unit(6, "feet"),
  13154. weight: math.unit(150, "lb"),
  13155. name: "Back",
  13156. image: {
  13157. source: "./media/characters/drusilla/back.svg",
  13158. extra: 678 / 635,
  13159. bottom: 0.005
  13160. }
  13161. },
  13162. },
  13163. [
  13164. {
  13165. name: "Macro",
  13166. height: math.unit(100, "feet")
  13167. },
  13168. {
  13169. name: "Canon Height",
  13170. height: math.unit(2000, "feet"),
  13171. default: true
  13172. },
  13173. ]
  13174. ))
  13175. characterMakers.push(() => makeCharacter(
  13176. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13177. {
  13178. front: {
  13179. height: math.unit(6, "feet"),
  13180. weight: math.unit(180, "lb"),
  13181. name: "Front",
  13182. image: {
  13183. source: "./media/characters/renard-thatch/front.svg",
  13184. extra: 2411 / 2275,
  13185. bottom: 0.01
  13186. }
  13187. },
  13188. frontPosing: {
  13189. height: math.unit(6, "feet"),
  13190. weight: math.unit(180, "lb"),
  13191. name: "Front (Posing)",
  13192. image: {
  13193. source: "./media/characters/renard-thatch/front-posing.svg",
  13194. extra: 2381 / 2261,
  13195. bottom: 0.01
  13196. }
  13197. },
  13198. back: {
  13199. height: math.unit(6, "feet"),
  13200. weight: math.unit(180, "lb"),
  13201. name: "Back",
  13202. image: {
  13203. source: "./media/characters/renard-thatch/back.svg",
  13204. extra: 2428 / 2288
  13205. }
  13206. },
  13207. },
  13208. [
  13209. {
  13210. name: "Micro",
  13211. height: math.unit(3, "inches")
  13212. },
  13213. {
  13214. name: "Default",
  13215. height: math.unit(6, "feet"),
  13216. default: true
  13217. },
  13218. {
  13219. name: "Macro",
  13220. height: math.unit(75, "feet")
  13221. },
  13222. ]
  13223. ))
  13224. characterMakers.push(() => makeCharacter(
  13225. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13226. {
  13227. front: {
  13228. height: math.unit(1450, "feet"),
  13229. weight: math.unit(1.21e6, "tons"),
  13230. name: "Front",
  13231. image: {
  13232. source: "./media/characters/sekvra/front.svg",
  13233. extra: 1,
  13234. bottom: 0.03
  13235. }
  13236. },
  13237. frontClothed: {
  13238. height: math.unit(1450, "feet"),
  13239. weight: math.unit(1.21e6, "tons"),
  13240. name: "Front (Clothed)",
  13241. image: {
  13242. source: "./media/characters/sekvra/front-clothed.svg",
  13243. extra: 1,
  13244. bottom: 0.03
  13245. }
  13246. },
  13247. side: {
  13248. height: math.unit(1450, "feet"),
  13249. weight: math.unit(1.21e6, "tons"),
  13250. name: "Side",
  13251. image: {
  13252. source: "./media/characters/sekvra/side.svg",
  13253. extra: 1,
  13254. bottom: 0.025
  13255. }
  13256. },
  13257. back: {
  13258. height: math.unit(1450, "feet"),
  13259. weight: math.unit(1.21e6, "tons"),
  13260. name: "Back",
  13261. image: {
  13262. source: "./media/characters/sekvra/back.svg",
  13263. extra: 1,
  13264. bottom: 0.005
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Macro",
  13271. height: math.unit(1450, "feet"),
  13272. default: true
  13273. },
  13274. {
  13275. name: "Megamacro",
  13276. height: math.unit(15000, "feet")
  13277. },
  13278. ]
  13279. ))
  13280. characterMakers.push(() => makeCharacter(
  13281. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13282. {
  13283. front: {
  13284. height: math.unit(6, "feet"),
  13285. weight: math.unit(150, "lb"),
  13286. name: "Front",
  13287. image: {
  13288. source: "./media/characters/carmine/front.svg",
  13289. extra: 1,
  13290. bottom: 0.035
  13291. }
  13292. },
  13293. frontArmor: {
  13294. height: math.unit(6, "feet"),
  13295. weight: math.unit(150, "lb"),
  13296. name: "Front (Armor)",
  13297. image: {
  13298. source: "./media/characters/carmine/front-armor.svg",
  13299. extra: 1,
  13300. bottom: 0.035
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Large",
  13307. height: math.unit(1, "mile")
  13308. },
  13309. {
  13310. name: "Huge",
  13311. height: math.unit(40, "miles"),
  13312. default: true
  13313. },
  13314. {
  13315. name: "Colossal",
  13316. height: math.unit(2500, "miles")
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13322. {
  13323. front: {
  13324. height: math.unit(6, "feet"),
  13325. weight: math.unit(150, "lb"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/elyssia/front.svg",
  13329. extra: 2201 / 2035,
  13330. bottom: 0.05
  13331. }
  13332. },
  13333. frontClothed: {
  13334. height: math.unit(6, "feet"),
  13335. weight: math.unit(150, "lb"),
  13336. name: "Front (Clothed)",
  13337. image: {
  13338. source: "./media/characters/elyssia/front-clothed.svg",
  13339. extra: 2201 / 2035,
  13340. bottom: 0.05
  13341. }
  13342. },
  13343. back: {
  13344. height: math.unit(6, "feet"),
  13345. weight: math.unit(150, "lb"),
  13346. name: "Back",
  13347. image: {
  13348. source: "./media/characters/elyssia/back.svg",
  13349. extra: 2201 / 2035,
  13350. bottom: 0.013
  13351. }
  13352. },
  13353. },
  13354. [
  13355. {
  13356. name: "Smaller",
  13357. height: math.unit(150, "feet")
  13358. },
  13359. {
  13360. name: "Standard",
  13361. height: math.unit(1400, "feet"),
  13362. default: true
  13363. },
  13364. {
  13365. name: "Distracted",
  13366. height: math.unit(15000, "feet")
  13367. },
  13368. ]
  13369. ))
  13370. characterMakers.push(() => makeCharacter(
  13371. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13372. {
  13373. front: {
  13374. height: math.unit(7 + 4 / 12, "feet"),
  13375. weight: math.unit(500, "lb"),
  13376. name: "Front",
  13377. image: {
  13378. source: "./media/characters/geno-maxwell/front.svg",
  13379. extra: 2207 / 2040,
  13380. bottom: 0.015
  13381. }
  13382. },
  13383. },
  13384. [
  13385. {
  13386. name: "Micro",
  13387. height: math.unit(3, "inches")
  13388. },
  13389. {
  13390. name: "Normal",
  13391. height: math.unit(7 + 4 / 12, "feet"),
  13392. default: true
  13393. },
  13394. {
  13395. name: "Macro",
  13396. height: math.unit(220, "feet")
  13397. },
  13398. {
  13399. name: "Megamacro",
  13400. height: math.unit(11, "miles")
  13401. },
  13402. ]
  13403. ))
  13404. characterMakers.push(() => makeCharacter(
  13405. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13406. {
  13407. front: {
  13408. height: math.unit(7 + 4 / 12, "feet"),
  13409. weight: math.unit(500, "lb"),
  13410. name: "Front",
  13411. image: {
  13412. source: "./media/characters/regena-maxwell/front.svg",
  13413. extra: 3115 / 2770,
  13414. bottom: 0.02
  13415. }
  13416. },
  13417. },
  13418. [
  13419. {
  13420. name: "Normal",
  13421. height: math.unit(7 + 4 / 12, "feet"),
  13422. default: true
  13423. },
  13424. {
  13425. name: "Macro",
  13426. height: math.unit(220, "feet")
  13427. },
  13428. {
  13429. name: "Megamacro",
  13430. height: math.unit(11, "miles")
  13431. },
  13432. ]
  13433. ))
  13434. characterMakers.push(() => makeCharacter(
  13435. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13436. {
  13437. front: {
  13438. height: math.unit(6, "feet"),
  13439. weight: math.unit(150, "lb"),
  13440. name: "Front",
  13441. image: {
  13442. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13443. extra: 860 / 690,
  13444. bottom: 0.03
  13445. }
  13446. },
  13447. },
  13448. [
  13449. {
  13450. name: "Normal",
  13451. height: math.unit(1.7, "meters"),
  13452. default: true
  13453. },
  13454. ]
  13455. ))
  13456. characterMakers.push(() => makeCharacter(
  13457. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13458. {
  13459. front: {
  13460. height: math.unit(6, "feet"),
  13461. weight: math.unit(150, "lb"),
  13462. name: "Front",
  13463. image: {
  13464. source: "./media/characters/quilly/front.svg",
  13465. extra: 890 / 776
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Gigamacro",
  13472. height: math.unit(404090, "miles"),
  13473. default: true
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(7 + 8 / 12, "feet"),
  13482. weight: math.unit(350, "lb"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/tempest/front.svg",
  13486. extra: 1175 / 1086,
  13487. bottom: 0.02
  13488. }
  13489. },
  13490. },
  13491. [
  13492. {
  13493. name: "Normal",
  13494. height: math.unit(7 + 8 / 12, "feet"),
  13495. default: true
  13496. },
  13497. ]
  13498. ))
  13499. characterMakers.push(() => makeCharacter(
  13500. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13501. {
  13502. side: {
  13503. height: math.unit(4 + 5 / 12, "feet"),
  13504. weight: math.unit(80, "lb"),
  13505. name: "Side",
  13506. image: {
  13507. source: "./media/characters/rodger/side.svg",
  13508. extra: 1235 / 1118
  13509. }
  13510. },
  13511. },
  13512. [
  13513. {
  13514. name: "Micro",
  13515. height: math.unit(1, "inch")
  13516. },
  13517. {
  13518. name: "Normal",
  13519. height: math.unit(4 + 5 / 12, "feet"),
  13520. default: true
  13521. },
  13522. {
  13523. name: "Macro",
  13524. height: math.unit(120, "feet")
  13525. },
  13526. ]
  13527. ))
  13528. characterMakers.push(() => makeCharacter(
  13529. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13530. {
  13531. front: {
  13532. height: math.unit(6, "feet"),
  13533. weight: math.unit(150, "lb"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/danyel/front.svg",
  13537. extra: 1185 / 1123,
  13538. bottom: 0.05
  13539. }
  13540. },
  13541. },
  13542. [
  13543. {
  13544. name: "Shrunken",
  13545. height: math.unit(0.5, "mm")
  13546. },
  13547. {
  13548. name: "Micro",
  13549. height: math.unit(1, "mm"),
  13550. default: true
  13551. },
  13552. {
  13553. name: "Upsized",
  13554. height: math.unit(5 + 5 / 12, "feet")
  13555. },
  13556. ]
  13557. ))
  13558. characterMakers.push(() => makeCharacter(
  13559. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13560. {
  13561. front: {
  13562. height: math.unit(5 + 6 / 12, "feet"),
  13563. weight: math.unit(200, "lb"),
  13564. name: "Front",
  13565. image: {
  13566. source: "./media/characters/vivian-bijoux/front.svg",
  13567. extra: 1,
  13568. bottom: 0.072
  13569. }
  13570. },
  13571. },
  13572. [
  13573. {
  13574. name: "Normal",
  13575. height: math.unit(5 + 6 / 12, "feet"),
  13576. default: true
  13577. },
  13578. {
  13579. name: "Bad Dream",
  13580. height: math.unit(500, "feet")
  13581. },
  13582. {
  13583. name: "Nightmare",
  13584. height: math.unit(500, "miles")
  13585. },
  13586. ]
  13587. ))
  13588. characterMakers.push(() => makeCharacter(
  13589. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13590. {
  13591. front: {
  13592. height: math.unit(6 + 1 / 12, "feet"),
  13593. weight: math.unit(260, "lb"),
  13594. name: "Front",
  13595. image: {
  13596. source: "./media/characters/zeta/front.svg",
  13597. extra: 1968 / 1889,
  13598. bottom: 0.06
  13599. }
  13600. },
  13601. back: {
  13602. height: math.unit(6 + 1 / 12, "feet"),
  13603. weight: math.unit(260, "lb"),
  13604. name: "Back",
  13605. image: {
  13606. source: "./media/characters/zeta/back.svg",
  13607. extra: 1944 / 1858,
  13608. bottom: 0.03
  13609. }
  13610. },
  13611. hand: {
  13612. height: math.unit(1.112, "feet"),
  13613. name: "Hand",
  13614. image: {
  13615. source: "./media/characters/zeta/hand.svg"
  13616. }
  13617. },
  13618. foot: {
  13619. height: math.unit(1.48, "feet"),
  13620. name: "Foot",
  13621. image: {
  13622. source: "./media/characters/zeta/foot.svg"
  13623. }
  13624. },
  13625. },
  13626. [
  13627. {
  13628. name: "Micro",
  13629. height: math.unit(6, "inches")
  13630. },
  13631. {
  13632. name: "Normal",
  13633. height: math.unit(6 + 1 / 12, "feet"),
  13634. default: true
  13635. },
  13636. {
  13637. name: "Macro",
  13638. height: math.unit(20, "feet")
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(150, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/jamie-larsen/front.svg",
  13651. extra: 962 / 933,
  13652. bottom: 0.02
  13653. }
  13654. },
  13655. back: {
  13656. height: math.unit(6, "feet"),
  13657. weight: math.unit(150, "lb"),
  13658. name: "Back",
  13659. image: {
  13660. source: "./media/characters/jamie-larsen/back.svg",
  13661. extra: 997 / 946
  13662. }
  13663. },
  13664. },
  13665. [
  13666. {
  13667. name: "Macro",
  13668. height: math.unit(28 + 7 / 12, "feet"),
  13669. default: true
  13670. },
  13671. {
  13672. name: "Macro+",
  13673. height: math.unit(180, "feet")
  13674. },
  13675. {
  13676. name: "Megamacro",
  13677. height: math.unit(10, "miles")
  13678. },
  13679. {
  13680. name: "Gigamacro",
  13681. height: math.unit(200000, "miles")
  13682. },
  13683. ]
  13684. ))
  13685. characterMakers.push(() => makeCharacter(
  13686. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13687. {
  13688. front: {
  13689. height: math.unit(6, "feet"),
  13690. weight: math.unit(120, "lb"),
  13691. name: "Front",
  13692. image: {
  13693. source: "./media/characters/vance/front.svg",
  13694. extra: 1980 / 1890,
  13695. bottom: 0.09
  13696. }
  13697. },
  13698. back: {
  13699. height: math.unit(6, "feet"),
  13700. weight: math.unit(120, "lb"),
  13701. name: "Back",
  13702. image: {
  13703. source: "./media/characters/vance/back.svg",
  13704. extra: 2081 / 1994,
  13705. bottom: 0.014
  13706. }
  13707. },
  13708. hand: {
  13709. height: math.unit(0.88, "feet"),
  13710. name: "Hand",
  13711. image: {
  13712. source: "./media/characters/vance/hand.svg"
  13713. }
  13714. },
  13715. foot: {
  13716. height: math.unit(0.64, "feet"),
  13717. name: "Foot",
  13718. image: {
  13719. source: "./media/characters/vance/foot.svg"
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Small",
  13726. height: math.unit(90, "feet"),
  13727. default: true
  13728. },
  13729. {
  13730. name: "Macro",
  13731. height: math.unit(100, "meters")
  13732. },
  13733. {
  13734. name: "Megamacro",
  13735. height: math.unit(15, "miles")
  13736. },
  13737. ]
  13738. ))
  13739. characterMakers.push(() => makeCharacter(
  13740. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13741. {
  13742. front: {
  13743. height: math.unit(6, "feet"),
  13744. weight: math.unit(180, "lb"),
  13745. name: "Front",
  13746. image: {
  13747. source: "./media/characters/xochitl/front.svg",
  13748. extra: 2297 / 2261,
  13749. bottom: 0.065
  13750. }
  13751. },
  13752. back: {
  13753. height: math.unit(6, "feet"),
  13754. weight: math.unit(180, "lb"),
  13755. name: "Back",
  13756. image: {
  13757. source: "./media/characters/xochitl/back.svg",
  13758. extra: 2386 / 2354,
  13759. bottom: 0.01
  13760. }
  13761. },
  13762. foot: {
  13763. height: math.unit(6 / 5 * 1.15, "feet"),
  13764. weight: math.unit(150, "lb"),
  13765. name: "Foot",
  13766. image: {
  13767. source: "./media/characters/xochitl/foot.svg"
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Macro",
  13774. height: math.unit(80, "feet")
  13775. },
  13776. {
  13777. name: "Macro+",
  13778. height: math.unit(400, "feet"),
  13779. default: true
  13780. },
  13781. {
  13782. name: "Gigamacro",
  13783. height: math.unit(80000, "miles")
  13784. },
  13785. {
  13786. name: "Gigamacro+",
  13787. height: math.unit(400000, "miles")
  13788. },
  13789. {
  13790. name: "Teramacro",
  13791. height: math.unit(300, "AU")
  13792. },
  13793. ]
  13794. ))
  13795. characterMakers.push(() => makeCharacter(
  13796. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13797. {
  13798. front: {
  13799. height: math.unit(6, "feet"),
  13800. weight: math.unit(150, "lb"),
  13801. name: "Front",
  13802. image: {
  13803. source: "./media/characters/vincent/front.svg",
  13804. extra: 1130 / 1080,
  13805. bottom: 0.055
  13806. }
  13807. },
  13808. beak: {
  13809. height: math.unit(6 * 0.1, "feet"),
  13810. name: "Beak",
  13811. image: {
  13812. source: "./media/characters/vincent/beak.svg"
  13813. }
  13814. },
  13815. hand: {
  13816. height: math.unit(6 * 0.85, "feet"),
  13817. weight: math.unit(150, "lb"),
  13818. name: "Hand",
  13819. image: {
  13820. source: "./media/characters/vincent/hand.svg"
  13821. }
  13822. },
  13823. foot: {
  13824. height: math.unit(6 * 0.19, "feet"),
  13825. weight: math.unit(150, "lb"),
  13826. name: "Foot",
  13827. image: {
  13828. source: "./media/characters/vincent/foot.svg"
  13829. }
  13830. },
  13831. },
  13832. [
  13833. {
  13834. name: "Base",
  13835. height: math.unit(6 + 5 / 12, "feet"),
  13836. default: true
  13837. },
  13838. {
  13839. name: "Macro",
  13840. height: math.unit(300, "feet")
  13841. },
  13842. {
  13843. name: "Megamacro",
  13844. height: math.unit(2, "miles")
  13845. },
  13846. {
  13847. name: "Gigamacro",
  13848. height: math.unit(1000, "miles")
  13849. },
  13850. ]
  13851. ))
  13852. characterMakers.push(() => makeCharacter(
  13853. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13854. {
  13855. front: {
  13856. height: math.unit(2, "meters"),
  13857. weight: math.unit(500, "kg"),
  13858. name: "Front",
  13859. image: {
  13860. source: "./media/characters/coatl/front.svg",
  13861. extra: 3948 / 3500,
  13862. bottom: 0.082
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Normal",
  13869. height: math.unit(4, "meters")
  13870. },
  13871. {
  13872. name: "Macro",
  13873. height: math.unit(100, "meters"),
  13874. default: true
  13875. },
  13876. {
  13877. name: "Macro+",
  13878. height: math.unit(300, "meters")
  13879. },
  13880. {
  13881. name: "Megamacro",
  13882. height: math.unit(3, "gigameters")
  13883. },
  13884. {
  13885. name: "Megamacro+",
  13886. height: math.unit(300, "terameters")
  13887. },
  13888. {
  13889. name: "Megamacro++",
  13890. height: math.unit(3, "lightyears")
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13896. {
  13897. front: {
  13898. height: math.unit(6, "feet"),
  13899. weight: math.unit(50, "kg"),
  13900. name: "front",
  13901. image: {
  13902. source: "./media/characters/shiroryu/front.svg",
  13903. extra: 1990 / 1935
  13904. }
  13905. },
  13906. },
  13907. [
  13908. {
  13909. name: "Mortal Mingling",
  13910. height: math.unit(3, "meters")
  13911. },
  13912. {
  13913. name: "Kaiju-ish",
  13914. height: math.unit(250, "meters")
  13915. },
  13916. {
  13917. name: "Somewhat Godly",
  13918. height: math.unit(400, "km"),
  13919. default: true
  13920. },
  13921. {
  13922. name: "Planetary",
  13923. height: math.unit(300, "megameters")
  13924. },
  13925. {
  13926. name: "Galaxy-dwarfing",
  13927. height: math.unit(450, "kiloparsecs")
  13928. },
  13929. {
  13930. name: "Universe Eater",
  13931. height: math.unit(150, "gigaparsecs")
  13932. },
  13933. {
  13934. name: "Almost Immeasurable",
  13935. height: math.unit(1.3e266, "yottaparsecs")
  13936. },
  13937. ]
  13938. ))
  13939. characterMakers.push(() => makeCharacter(
  13940. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13941. {
  13942. front: {
  13943. height: math.unit(6, "feet"),
  13944. weight: math.unit(150, "lb"),
  13945. name: "Front",
  13946. image: {
  13947. source: "./media/characters/umeko/front.svg",
  13948. extra: 1,
  13949. bottom: 0.019
  13950. }
  13951. },
  13952. frontArmored: {
  13953. height: math.unit(6, "feet"),
  13954. weight: math.unit(150, "lb"),
  13955. name: "Front (Armored)",
  13956. image: {
  13957. source: "./media/characters/umeko/front-armored.svg",
  13958. extra: 1,
  13959. bottom: 0.021
  13960. }
  13961. },
  13962. },
  13963. [
  13964. {
  13965. name: "Macro",
  13966. height: math.unit(220, "feet"),
  13967. default: true
  13968. },
  13969. {
  13970. name: "Guardian Dragon",
  13971. height: math.unit(50, "miles")
  13972. },
  13973. {
  13974. name: "Cosmic",
  13975. height: math.unit(800000, "miles")
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(6, "feet"),
  13984. weight: math.unit(150, "lb"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/cassidy/front.svg",
  13988. extra: 1,
  13989. bottom: 0.043
  13990. }
  13991. },
  13992. },
  13993. [
  13994. {
  13995. name: "Canon Height",
  13996. height: math.unit(120, "feet"),
  13997. default: true
  13998. },
  13999. {
  14000. name: "Macro+",
  14001. height: math.unit(400, "feet")
  14002. },
  14003. {
  14004. name: "Macro++",
  14005. height: math.unit(4000, "feet")
  14006. },
  14007. {
  14008. name: "Megamacro",
  14009. height: math.unit(3, "miles")
  14010. },
  14011. ]
  14012. ))
  14013. characterMakers.push(() => makeCharacter(
  14014. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14015. {
  14016. front: {
  14017. height: math.unit(6, "feet"),
  14018. weight: math.unit(150, "lb"),
  14019. name: "Front",
  14020. image: {
  14021. source: "./media/characters/isaac/front.svg",
  14022. extra: 896 / 815,
  14023. bottom: 0.11
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Human Size",
  14030. height: math.unit(8, "feet"),
  14031. default: true
  14032. },
  14033. {
  14034. name: "Macro",
  14035. height: math.unit(400, "feet")
  14036. },
  14037. {
  14038. name: "Megamacro",
  14039. height: math.unit(50, "miles")
  14040. },
  14041. {
  14042. name: "Canon Height",
  14043. height: math.unit(200, "AU")
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14049. {
  14050. front: {
  14051. height: math.unit(6, "feet"),
  14052. weight: math.unit(72, "kg"),
  14053. name: "Front",
  14054. image: {
  14055. source: "./media/characters/sleekit/front.svg",
  14056. extra: 4693 / 4487,
  14057. bottom: 0.012
  14058. }
  14059. },
  14060. },
  14061. [
  14062. {
  14063. name: "Minimum Height",
  14064. height: math.unit(10, "meters")
  14065. },
  14066. {
  14067. name: "Smaller",
  14068. height: math.unit(25, "meters")
  14069. },
  14070. {
  14071. name: "Larger",
  14072. height: math.unit(38, "meters"),
  14073. default: true
  14074. },
  14075. {
  14076. name: "Maximum height",
  14077. height: math.unit(100, "meters")
  14078. },
  14079. ]
  14080. ))
  14081. characterMakers.push(() => makeCharacter(
  14082. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14083. {
  14084. front: {
  14085. height: math.unit(6, "feet"),
  14086. weight: math.unit(150, "lb"),
  14087. name: "Front",
  14088. image: {
  14089. source: "./media/characters/nillia/front.svg",
  14090. extra: 2195 / 2037,
  14091. bottom: 0.005
  14092. }
  14093. },
  14094. back: {
  14095. height: math.unit(6, "feet"),
  14096. weight: math.unit(150, "lb"),
  14097. name: "Back",
  14098. image: {
  14099. source: "./media/characters/nillia/back.svg",
  14100. extra: 2195 / 2037,
  14101. bottom: 0.005
  14102. }
  14103. },
  14104. },
  14105. [
  14106. {
  14107. name: "Canon Height",
  14108. height: math.unit(489, "feet"),
  14109. default: true
  14110. }
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14115. {
  14116. front: {
  14117. height: math.unit(6, "feet"),
  14118. weight: math.unit(150, "lb"),
  14119. name: "Front",
  14120. image: {
  14121. source: "./media/characters/mesmyriza/front.svg",
  14122. extra: 2067 / 1784,
  14123. bottom: 0.035
  14124. }
  14125. },
  14126. foot: {
  14127. height: math.unit(6 / (250 / 35), "feet"),
  14128. name: "Foot",
  14129. image: {
  14130. source: "./media/characters/mesmyriza/foot.svg"
  14131. }
  14132. },
  14133. },
  14134. [
  14135. {
  14136. name: "Macro",
  14137. height: math.unit(457, "meters"),
  14138. default: true
  14139. },
  14140. {
  14141. name: "Megamacro",
  14142. height: math.unit(8, "megameters")
  14143. },
  14144. ]
  14145. ))
  14146. characterMakers.push(() => makeCharacter(
  14147. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14148. {
  14149. front: {
  14150. height: math.unit(6, "feet"),
  14151. weight: math.unit(250, "lb"),
  14152. name: "Front",
  14153. image: {
  14154. source: "./media/characters/saudade/front.svg",
  14155. extra: 1172 / 1139,
  14156. bottom: 0.035
  14157. }
  14158. },
  14159. },
  14160. [
  14161. {
  14162. name: "Micro",
  14163. height: math.unit(3, "inches")
  14164. },
  14165. {
  14166. name: "Normal",
  14167. height: math.unit(6, "feet"),
  14168. default: true
  14169. },
  14170. {
  14171. name: "Macro",
  14172. height: math.unit(50, "feet")
  14173. },
  14174. {
  14175. name: "Megamacro",
  14176. height: math.unit(2800, "feet")
  14177. },
  14178. ]
  14179. ))
  14180. characterMakers.push(() => makeCharacter(
  14181. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14182. {
  14183. front: {
  14184. height: math.unit(5 + 4 / 12, "feet"),
  14185. weight: math.unit(100, "lb"),
  14186. name: "Front",
  14187. image: {
  14188. source: "./media/characters/keireer/front.svg",
  14189. extra: 716 / 666,
  14190. bottom: 0.05
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Normal",
  14197. height: math.unit(5 + 4 / 12, "feet"),
  14198. default: true
  14199. },
  14200. ]
  14201. ))
  14202. characterMakers.push(() => makeCharacter(
  14203. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14204. {
  14205. front: {
  14206. height: math.unit(6, "feet"),
  14207. weight: math.unit(90, "kg"),
  14208. name: "Front",
  14209. image: {
  14210. source: "./media/characters/mirja/front.svg",
  14211. extra: 1789 / 1683,
  14212. bottom: 0.05
  14213. }
  14214. },
  14215. frontDressed: {
  14216. height: math.unit(6, "feet"),
  14217. weight: math.unit(90, "lb"),
  14218. name: "Front (Dressed)",
  14219. image: {
  14220. source: "./media/characters/mirja/front-dressed.svg",
  14221. extra: 1789 / 1683,
  14222. bottom: 0.05
  14223. }
  14224. },
  14225. back: {
  14226. height: math.unit(6, "feet"),
  14227. weight: math.unit(90, "lb"),
  14228. name: "Back",
  14229. image: {
  14230. source: "./media/characters/mirja/back.svg",
  14231. extra: 953 / 917,
  14232. bottom: 0.017
  14233. }
  14234. },
  14235. },
  14236. [
  14237. {
  14238. name: "\"Incognito\"",
  14239. height: math.unit(3, "meters")
  14240. },
  14241. {
  14242. name: "Strolling Size",
  14243. height: math.unit(15, "km")
  14244. },
  14245. {
  14246. name: "Larger Strolling Size",
  14247. height: math.unit(400, "km")
  14248. },
  14249. {
  14250. name: "Preferred Size",
  14251. height: math.unit(5000, "km")
  14252. },
  14253. {
  14254. name: "True Size",
  14255. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14256. default: true
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14262. {
  14263. front: {
  14264. height: math.unit(15, "feet"),
  14265. weight: math.unit(880, "kg"),
  14266. name: "Front",
  14267. image: {
  14268. source: "./media/characters/nightraver/front.svg",
  14269. extra: 2444 / 2160,
  14270. bottom: 0.027
  14271. }
  14272. },
  14273. back: {
  14274. height: math.unit(15, "feet"),
  14275. weight: math.unit(880, "kg"),
  14276. name: "Back",
  14277. image: {
  14278. source: "./media/characters/nightraver/back.svg",
  14279. extra: 2309 / 2180,
  14280. bottom: 0.005
  14281. }
  14282. },
  14283. sole: {
  14284. height: math.unit(2.878, "feet"),
  14285. name: "Sole",
  14286. image: {
  14287. source: "./media/characters/nightraver/sole.svg"
  14288. }
  14289. },
  14290. foot: {
  14291. height: math.unit(2.285, "feet"),
  14292. name: "Foot",
  14293. image: {
  14294. source: "./media/characters/nightraver/foot.svg"
  14295. }
  14296. },
  14297. maw: {
  14298. height: math.unit(2.67, "feet"),
  14299. name: "Maw",
  14300. image: {
  14301. source: "./media/characters/nightraver/maw.svg"
  14302. }
  14303. },
  14304. },
  14305. [
  14306. {
  14307. name: "Micro",
  14308. height: math.unit(1, "cm")
  14309. },
  14310. {
  14311. name: "Normal",
  14312. height: math.unit(15, "feet"),
  14313. default: true
  14314. },
  14315. {
  14316. name: "Macro",
  14317. height: math.unit(300, "feet")
  14318. },
  14319. {
  14320. name: "Megamacro",
  14321. height: math.unit(300, "miles")
  14322. },
  14323. {
  14324. name: "Gigamacro",
  14325. height: math.unit(10000, "miles")
  14326. },
  14327. ]
  14328. ))
  14329. characterMakers.push(() => makeCharacter(
  14330. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14331. {
  14332. side: {
  14333. height: math.unit(2, "inches"),
  14334. weight: math.unit(5, "grams"),
  14335. name: "Side",
  14336. image: {
  14337. source: "./media/characters/arc/side.svg"
  14338. }
  14339. },
  14340. },
  14341. [
  14342. {
  14343. name: "Micro",
  14344. height: math.unit(2, "inches"),
  14345. default: true
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14351. {
  14352. front: {
  14353. height: math.unit(1.1938, "meters"),
  14354. weight: math.unit(54, "kg"),
  14355. name: "Front",
  14356. image: {
  14357. source: "./media/characters/nebula-shahar/front.svg",
  14358. extra: 1642 / 1436,
  14359. bottom: 0.06
  14360. }
  14361. },
  14362. },
  14363. [
  14364. {
  14365. name: "Megamicro",
  14366. height: math.unit(0.3, "mm")
  14367. },
  14368. {
  14369. name: "Micro",
  14370. height: math.unit(3, "cm")
  14371. },
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(138, "cm"),
  14375. default: true
  14376. },
  14377. {
  14378. name: "Macro",
  14379. height: math.unit(30, "m")
  14380. },
  14381. ]
  14382. ))
  14383. characterMakers.push(() => makeCharacter(
  14384. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14385. {
  14386. front: {
  14387. height: math.unit(5.24, "feet"),
  14388. weight: math.unit(150, "lb"),
  14389. name: "Front",
  14390. image: {
  14391. source: "./media/characters/shayla/front.svg",
  14392. extra: 1512 / 1414,
  14393. bottom: 0.01
  14394. }
  14395. },
  14396. back: {
  14397. height: math.unit(5.24, "feet"),
  14398. weight: math.unit(150, "lb"),
  14399. name: "Back",
  14400. image: {
  14401. source: "./media/characters/shayla/back.svg",
  14402. extra: 1512 / 1414
  14403. }
  14404. },
  14405. hand: {
  14406. height: math.unit(0.7781496062992126, "feet"),
  14407. name: "Hand",
  14408. image: {
  14409. source: "./media/characters/shayla/hand.svg"
  14410. }
  14411. },
  14412. foot: {
  14413. height: math.unit(1.4206036745406823, "feet"),
  14414. name: "Foot",
  14415. image: {
  14416. source: "./media/characters/shayla/foot.svg"
  14417. }
  14418. },
  14419. },
  14420. [
  14421. {
  14422. name: "Micro",
  14423. height: math.unit(0.32, "feet")
  14424. },
  14425. {
  14426. name: "Normal",
  14427. height: math.unit(5.24, "feet"),
  14428. default: true
  14429. },
  14430. {
  14431. name: "Macro",
  14432. height: math.unit(492.12, "feet")
  14433. },
  14434. {
  14435. name: "Megamacro",
  14436. height: math.unit(186.41, "miles")
  14437. },
  14438. ]
  14439. ))
  14440. characterMakers.push(() => makeCharacter(
  14441. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14442. {
  14443. front: {
  14444. height: math.unit(2.2, "m"),
  14445. weight: math.unit(120, "kg"),
  14446. name: "Front",
  14447. image: {
  14448. source: "./media/characters/pia-jr/front.svg",
  14449. extra: 1000 / 970,
  14450. bottom: 0.035
  14451. }
  14452. },
  14453. hand: {
  14454. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14455. name: "Hand",
  14456. image: {
  14457. source: "./media/characters/pia-jr/hand.svg"
  14458. }
  14459. },
  14460. paw: {
  14461. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14462. name: "Paw",
  14463. image: {
  14464. source: "./media/characters/pia-jr/paw.svg"
  14465. }
  14466. },
  14467. },
  14468. [
  14469. {
  14470. name: "Micro",
  14471. height: math.unit(1.2, "cm")
  14472. },
  14473. {
  14474. name: "Normal",
  14475. height: math.unit(2.2, "m"),
  14476. default: true
  14477. },
  14478. {
  14479. name: "Macro",
  14480. height: math.unit(180, "m")
  14481. },
  14482. {
  14483. name: "Megamacro",
  14484. height: math.unit(420, "km")
  14485. },
  14486. ]
  14487. ))
  14488. characterMakers.push(() => makeCharacter(
  14489. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14490. {
  14491. front: {
  14492. height: math.unit(2, "m"),
  14493. weight: math.unit(115, "kg"),
  14494. name: "Front",
  14495. image: {
  14496. source: "./media/characters/pia-sr/front.svg",
  14497. extra: 760 / 730,
  14498. bottom: 0.015
  14499. }
  14500. },
  14501. back: {
  14502. height: math.unit(2, "m"),
  14503. weight: math.unit(115, "kg"),
  14504. name: "Back",
  14505. image: {
  14506. source: "./media/characters/pia-sr/back.svg",
  14507. extra: 760 / 730,
  14508. bottom: 0.01
  14509. }
  14510. },
  14511. hand: {
  14512. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14513. name: "Hand",
  14514. image: {
  14515. source: "./media/characters/pia-sr/hand.svg"
  14516. }
  14517. },
  14518. foot: {
  14519. height: math.unit(1.83, "feet"),
  14520. name: "Foot",
  14521. image: {
  14522. source: "./media/characters/pia-sr/foot.svg"
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Micro",
  14529. height: math.unit(88, "mm")
  14530. },
  14531. {
  14532. name: "Normal",
  14533. height: math.unit(2, "m"),
  14534. default: true
  14535. },
  14536. {
  14537. name: "Macro",
  14538. height: math.unit(200, "m")
  14539. },
  14540. {
  14541. name: "Megamacro",
  14542. height: math.unit(420, "km")
  14543. },
  14544. ]
  14545. ))
  14546. characterMakers.push(() => makeCharacter(
  14547. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14548. {
  14549. front: {
  14550. height: math.unit(8 + 2 / 12, "feet"),
  14551. weight: math.unit(300, "lb"),
  14552. name: "Front",
  14553. image: {
  14554. source: "./media/characters/kibibyte/front.svg",
  14555. extra: 2221 / 2098,
  14556. bottom: 0.04
  14557. }
  14558. },
  14559. },
  14560. [
  14561. {
  14562. name: "Normal",
  14563. height: math.unit(8 + 2 / 12, "feet"),
  14564. default: true
  14565. },
  14566. {
  14567. name: "Socialable Macro",
  14568. height: math.unit(50, "feet")
  14569. },
  14570. {
  14571. name: "Macro",
  14572. height: math.unit(300, "feet")
  14573. },
  14574. {
  14575. name: "Megamacro",
  14576. height: math.unit(500, "miles")
  14577. },
  14578. ]
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14582. {
  14583. front: {
  14584. height: math.unit(6, "feet"),
  14585. weight: math.unit(150, "lb"),
  14586. name: "Front",
  14587. image: {
  14588. source: "./media/characters/felix/front.svg",
  14589. extra: 762 / 722,
  14590. bottom: 0.02
  14591. }
  14592. },
  14593. frontClothed: {
  14594. height: math.unit(6, "feet"),
  14595. weight: math.unit(150, "lb"),
  14596. name: "Front (Clothed)",
  14597. image: {
  14598. source: "./media/characters/felix/front-clothed.svg",
  14599. extra: 762 / 722,
  14600. bottom: 0.02
  14601. }
  14602. },
  14603. },
  14604. [
  14605. {
  14606. name: "Normal",
  14607. height: math.unit(6 + 8 / 12, "feet"),
  14608. default: true
  14609. },
  14610. {
  14611. name: "Macro",
  14612. height: math.unit(2600, "feet")
  14613. },
  14614. {
  14615. name: "Megamacro",
  14616. height: math.unit(450, "miles")
  14617. },
  14618. ]
  14619. ))
  14620. characterMakers.push(() => makeCharacter(
  14621. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14622. {
  14623. front: {
  14624. height: math.unit(6 + 1 / 12, "feet"),
  14625. weight: math.unit(250, "lb"),
  14626. name: "Front",
  14627. image: {
  14628. source: "./media/characters/tobo/front.svg",
  14629. extra: 608 / 586,
  14630. bottom: 0.023
  14631. }
  14632. },
  14633. back: {
  14634. height: math.unit(6 + 1 / 12, "feet"),
  14635. weight: math.unit(250, "lb"),
  14636. name: "Back",
  14637. image: {
  14638. source: "./media/characters/tobo/back.svg",
  14639. extra: 608 / 586
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Nano",
  14646. height: math.unit(2, "nm")
  14647. },
  14648. {
  14649. name: "Megamicro",
  14650. height: math.unit(0.1, "mm")
  14651. },
  14652. {
  14653. name: "Micro",
  14654. height: math.unit(1, "inch"),
  14655. default: true
  14656. },
  14657. {
  14658. name: "Human-sized",
  14659. height: math.unit(6 + 1 / 12, "feet")
  14660. },
  14661. {
  14662. name: "Macro",
  14663. height: math.unit(250, "feet")
  14664. },
  14665. {
  14666. name: "Megamacro",
  14667. height: math.unit(75, "miles")
  14668. },
  14669. {
  14670. name: "Texas-sized",
  14671. height: math.unit(750, "miles")
  14672. },
  14673. {
  14674. name: "Teramacro",
  14675. height: math.unit(50000, "miles")
  14676. },
  14677. ]
  14678. ))
  14679. characterMakers.push(() => makeCharacter(
  14680. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14681. {
  14682. front: {
  14683. height: math.unit(6, "feet"),
  14684. weight: math.unit(269, "lb"),
  14685. name: "Front",
  14686. image: {
  14687. source: "./media/characters/danny-kapowsky/front.svg",
  14688. extra: 766 / 736,
  14689. bottom: 0.044
  14690. }
  14691. },
  14692. back: {
  14693. height: math.unit(6, "feet"),
  14694. weight: math.unit(269, "lb"),
  14695. name: "Back",
  14696. image: {
  14697. source: "./media/characters/danny-kapowsky/back.svg",
  14698. extra: 797 / 760,
  14699. bottom: 0.025
  14700. }
  14701. },
  14702. },
  14703. [
  14704. {
  14705. name: "Macro",
  14706. height: math.unit(150, "feet"),
  14707. default: true
  14708. },
  14709. {
  14710. name: "Macro+",
  14711. height: math.unit(200, "feet")
  14712. },
  14713. {
  14714. name: "Macro++",
  14715. height: math.unit(300, "feet")
  14716. },
  14717. {
  14718. name: "Macro+++",
  14719. height: math.unit(400, "feet")
  14720. },
  14721. ]
  14722. ))
  14723. characterMakers.push(() => makeCharacter(
  14724. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14725. {
  14726. side: {
  14727. height: math.unit(6, "feet"),
  14728. weight: math.unit(170, "lb"),
  14729. name: "Side",
  14730. image: {
  14731. source: "./media/characters/finn/side.svg",
  14732. extra: 1953 / 1807,
  14733. bottom: 0.057
  14734. }
  14735. },
  14736. },
  14737. [
  14738. {
  14739. name: "Megamacro",
  14740. height: math.unit(14445, "feet"),
  14741. default: true
  14742. },
  14743. ]
  14744. ))
  14745. characterMakers.push(() => makeCharacter(
  14746. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14747. {
  14748. front: {
  14749. height: math.unit(5 + 6 / 12, "feet"),
  14750. weight: math.unit(125, "lb"),
  14751. name: "Front",
  14752. image: {
  14753. source: "./media/characters/roy/front.svg",
  14754. extra: 1,
  14755. bottom: 0.11
  14756. }
  14757. },
  14758. },
  14759. [
  14760. {
  14761. name: "Micro",
  14762. height: math.unit(3, "inches"),
  14763. default: true
  14764. },
  14765. {
  14766. name: "Normal",
  14767. height: math.unit(5 + 6 / 12, "feet")
  14768. },
  14769. {
  14770. name: "Lesser Macro",
  14771. height: math.unit(60, "feet")
  14772. },
  14773. {
  14774. name: "Greater Macro",
  14775. height: math.unit(120, "feet")
  14776. },
  14777. ]
  14778. ))
  14779. characterMakers.push(() => makeCharacter(
  14780. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14781. {
  14782. front: {
  14783. height: math.unit(6, "feet"),
  14784. weight: math.unit(100, "lb"),
  14785. name: "Front",
  14786. image: {
  14787. source: "./media/characters/aevsivs/front.svg",
  14788. extra: 1,
  14789. bottom: 0.03
  14790. }
  14791. },
  14792. back: {
  14793. height: math.unit(6, "feet"),
  14794. weight: math.unit(100, "lb"),
  14795. name: "Back",
  14796. image: {
  14797. source: "./media/characters/aevsivs/back.svg"
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Micro",
  14804. height: math.unit(2, "inches"),
  14805. default: true
  14806. },
  14807. {
  14808. name: "Normal",
  14809. height: math.unit(5, "feet")
  14810. },
  14811. ]
  14812. ))
  14813. characterMakers.push(() => makeCharacter(
  14814. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14815. {
  14816. front: {
  14817. height: math.unit(5 + 7 / 12, "feet"),
  14818. weight: math.unit(159, "lb"),
  14819. name: "Front",
  14820. image: {
  14821. source: "./media/characters/hildegard/front.svg",
  14822. extra: 289 / 269,
  14823. bottom: 7.63 / 297.8
  14824. }
  14825. },
  14826. back: {
  14827. height: math.unit(5 + 7 / 12, "feet"),
  14828. weight: math.unit(159, "lb"),
  14829. name: "Back",
  14830. image: {
  14831. source: "./media/characters/hildegard/back.svg",
  14832. extra: 280 / 260,
  14833. bottom: 2.3 / 282
  14834. }
  14835. },
  14836. },
  14837. [
  14838. {
  14839. name: "Normal",
  14840. height: math.unit(5 + 7 / 12, "feet"),
  14841. default: true
  14842. },
  14843. ]
  14844. ))
  14845. characterMakers.push(() => makeCharacter(
  14846. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14847. {
  14848. bernard: {
  14849. height: math.unit(2 + 7 / 12, "feet"),
  14850. weight: math.unit(66, "lb"),
  14851. name: "Bernard",
  14852. rename: true,
  14853. image: {
  14854. source: "./media/characters/bernard-wilder/bernard.svg",
  14855. extra: 192 / 128,
  14856. bottom: 0.05
  14857. }
  14858. },
  14859. wilder: {
  14860. height: math.unit(5 + 8 / 12, "feet"),
  14861. weight: math.unit(143, "lb"),
  14862. name: "Wilder",
  14863. rename: true,
  14864. image: {
  14865. source: "./media/characters/bernard-wilder/wilder.svg",
  14866. extra: 361 / 312,
  14867. bottom: 0.02
  14868. }
  14869. },
  14870. },
  14871. [
  14872. {
  14873. name: "Normal",
  14874. height: math.unit(2 + 7 / 12, "feet"),
  14875. default: true
  14876. },
  14877. ]
  14878. ))
  14879. characterMakers.push(() => makeCharacter(
  14880. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14881. {
  14882. anthro: {
  14883. height: math.unit(6 + 1 / 12, "feet"),
  14884. weight: math.unit(155, "lb"),
  14885. name: "Anthro",
  14886. image: {
  14887. source: "./media/characters/hearth/anthro.svg",
  14888. extra: 260 / 250,
  14889. bottom: 0.02
  14890. }
  14891. },
  14892. feral: {
  14893. height: math.unit(3.78, "feet"),
  14894. weight: math.unit(35, "kg"),
  14895. name: "Feral",
  14896. image: {
  14897. source: "./media/characters/hearth/feral.svg",
  14898. extra: 153 / 135,
  14899. bottom: 0.03
  14900. }
  14901. },
  14902. },
  14903. [
  14904. {
  14905. name: "Normal",
  14906. height: math.unit(6 + 1 / 12, "feet"),
  14907. default: true
  14908. },
  14909. ]
  14910. ))
  14911. characterMakers.push(() => makeCharacter(
  14912. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14913. {
  14914. front: {
  14915. height: math.unit(6, "feet"),
  14916. weight: math.unit(182, "lb"),
  14917. name: "Front",
  14918. image: {
  14919. source: "./media/characters/ingrid/front.svg",
  14920. extra: 294 / 268,
  14921. bottom: 0.027
  14922. }
  14923. },
  14924. },
  14925. [
  14926. {
  14927. name: "Normal",
  14928. height: math.unit(6, "feet"),
  14929. default: true
  14930. },
  14931. ]
  14932. ))
  14933. characterMakers.push(() => makeCharacter(
  14934. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14935. {
  14936. eevee: {
  14937. height: math.unit(2 + 10 / 12, "feet"),
  14938. weight: math.unit(86, "lb"),
  14939. name: "Malgam",
  14940. image: {
  14941. source: "./media/characters/malgam/eevee.svg",
  14942. extra: 218 / 180,
  14943. bottom: 0.2
  14944. }
  14945. },
  14946. sylveon: {
  14947. height: math.unit(4, "feet"),
  14948. weight: math.unit(101, "lb"),
  14949. name: "Future Malgam",
  14950. rename: true,
  14951. image: {
  14952. source: "./media/characters/malgam/sylveon.svg",
  14953. extra: 371 / 325,
  14954. bottom: 0.015
  14955. }
  14956. },
  14957. gigantamax: {
  14958. height: math.unit(50, "feet"),
  14959. name: "Gigantamax Malgam",
  14960. rename: true,
  14961. image: {
  14962. source: "./media/characters/malgam/gigantamax.svg"
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Normal",
  14969. height: math.unit(2 + 10 / 12, "feet"),
  14970. default: true
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14976. {
  14977. front: {
  14978. height: math.unit(5 + 11 / 12, "feet"),
  14979. weight: math.unit(188, "lb"),
  14980. name: "Front",
  14981. image: {
  14982. source: "./media/characters/fleur/front.svg",
  14983. extra: 309 / 283,
  14984. bottom: 0.007
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Normal",
  14991. height: math.unit(5 + 11 / 12, "feet"),
  14992. default: true
  14993. },
  14994. ]
  14995. ))
  14996. characterMakers.push(() => makeCharacter(
  14997. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14998. {
  14999. front: {
  15000. height: math.unit(5 + 4 / 12, "feet"),
  15001. weight: math.unit(122, "lb"),
  15002. name: "Front",
  15003. image: {
  15004. source: "./media/characters/jude/front.svg",
  15005. extra: 288 / 273,
  15006. bottom: 0.03
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Normal",
  15013. height: math.unit(5 + 4 / 12, "feet"),
  15014. default: true
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15020. {
  15021. front: {
  15022. height: math.unit(5 + 11 / 12, "feet"),
  15023. weight: math.unit(190, "lb"),
  15024. name: "Front",
  15025. image: {
  15026. source: "./media/characters/seara/front.svg",
  15027. extra: 1,
  15028. bottom: 0.05
  15029. }
  15030. },
  15031. },
  15032. [
  15033. {
  15034. name: "Normal",
  15035. height: math.unit(5 + 11 / 12, "feet"),
  15036. default: true
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15042. {
  15043. front: {
  15044. height: math.unit(16 + 5 / 12, "feet"),
  15045. weight: math.unit(524, "lb"),
  15046. name: "Front",
  15047. image: {
  15048. source: "./media/characters/caspian/front.svg",
  15049. extra: 1,
  15050. bottom: 0.04
  15051. }
  15052. },
  15053. },
  15054. [
  15055. {
  15056. name: "Normal",
  15057. height: math.unit(16 + 5 / 12, "feet"),
  15058. default: true
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15064. {
  15065. front: {
  15066. height: math.unit(5 + 7 / 12, "feet"),
  15067. weight: math.unit(170, "lb"),
  15068. name: "Front",
  15069. image: {
  15070. source: "./media/characters/mika/front.svg",
  15071. extra: 1,
  15072. bottom: 0.016
  15073. }
  15074. },
  15075. },
  15076. [
  15077. {
  15078. name: "Normal",
  15079. height: math.unit(5 + 7 / 12, "feet"),
  15080. default: true
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15086. {
  15087. front: {
  15088. height: math.unit(6 + 2 / 12, "feet"),
  15089. weight: math.unit(268, "lb"),
  15090. name: "Front",
  15091. image: {
  15092. source: "./media/characters/sol/front.svg",
  15093. extra: 247 / 231,
  15094. bottom: 0.05
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(6 + 2 / 12, "feet"),
  15102. default: true
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15108. {
  15109. buizel: {
  15110. height: math.unit(2 + 5 / 12, "feet"),
  15111. weight: math.unit(87, "lb"),
  15112. name: "Buizel",
  15113. image: {
  15114. source: "./media/characters/umiko/buizel.svg",
  15115. extra: 172 / 157,
  15116. bottom: 0.01
  15117. }
  15118. },
  15119. floatzel: {
  15120. height: math.unit(5 + 9 / 12, "feet"),
  15121. weight: math.unit(250, "lb"),
  15122. name: "Floatzel",
  15123. image: {
  15124. source: "./media/characters/umiko/floatzel.svg",
  15125. extra: 262 / 248
  15126. }
  15127. },
  15128. },
  15129. [
  15130. {
  15131. name: "Normal",
  15132. height: math.unit(2 + 5 / 12, "feet"),
  15133. default: true
  15134. },
  15135. ]
  15136. ))
  15137. characterMakers.push(() => makeCharacter(
  15138. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15139. {
  15140. front: {
  15141. height: math.unit(6 + 2 / 12, "feet"),
  15142. weight: math.unit(146, "lb"),
  15143. name: "Front",
  15144. image: {
  15145. source: "./media/characters/iliac/front.svg",
  15146. extra: 389 / 365,
  15147. bottom: 0.035
  15148. }
  15149. },
  15150. },
  15151. [
  15152. {
  15153. name: "Normal",
  15154. height: math.unit(6 + 2 / 12, "feet"),
  15155. default: true
  15156. },
  15157. ]
  15158. ))
  15159. characterMakers.push(() => makeCharacter(
  15160. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15161. {
  15162. front: {
  15163. height: math.unit(6, "feet"),
  15164. weight: math.unit(170, "lb"),
  15165. name: "Front",
  15166. image: {
  15167. source: "./media/characters/topaz/front.svg",
  15168. extra: 317 / 303,
  15169. bottom: 0.055
  15170. }
  15171. },
  15172. },
  15173. [
  15174. {
  15175. name: "Normal",
  15176. height: math.unit(6, "feet"),
  15177. default: true
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(5 + 11 / 12, "feet"),
  15186. weight: math.unit(144, "lb"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/gabriel/front.svg",
  15190. extra: 285 / 262,
  15191. bottom: 0.004
  15192. }
  15193. },
  15194. },
  15195. [
  15196. {
  15197. name: "Normal",
  15198. height: math.unit(5 + 11 / 12, "feet"),
  15199. default: true
  15200. },
  15201. ]
  15202. ))
  15203. characterMakers.push(() => makeCharacter(
  15204. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15205. {
  15206. side: {
  15207. height: math.unit(6 + 5 / 12, "feet"),
  15208. weight: math.unit(300, "lb"),
  15209. name: "Side",
  15210. image: {
  15211. source: "./media/characters/tempest-suicune/side.svg",
  15212. extra: 195 / 154,
  15213. bottom: 0.04
  15214. }
  15215. },
  15216. },
  15217. [
  15218. {
  15219. name: "Normal",
  15220. height: math.unit(6 + 5 / 12, "feet"),
  15221. default: true
  15222. },
  15223. ]
  15224. ))
  15225. characterMakers.push(() => makeCharacter(
  15226. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15227. {
  15228. front: {
  15229. height: math.unit(7 + 2 / 12, "feet"),
  15230. weight: math.unit(322, "lb"),
  15231. name: "Front",
  15232. image: {
  15233. source: "./media/characters/vulcan/front.svg",
  15234. extra: 154 / 147,
  15235. bottom: 0.04
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Normal",
  15242. height: math.unit(7 + 2 / 12, "feet"),
  15243. default: true
  15244. },
  15245. ]
  15246. ))
  15247. characterMakers.push(() => makeCharacter(
  15248. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15249. {
  15250. front: {
  15251. height: math.unit(5 + 10 / 12, "feet"),
  15252. weight: math.unit(264, "lb"),
  15253. name: "Front",
  15254. image: {
  15255. source: "./media/characters/gault/front.svg",
  15256. extra: 161 / 140,
  15257. bottom: 0.028
  15258. }
  15259. },
  15260. },
  15261. [
  15262. {
  15263. name: "Normal",
  15264. height: math.unit(5 + 10 / 12, "feet"),
  15265. default: true
  15266. },
  15267. ]
  15268. ))
  15269. characterMakers.push(() => makeCharacter(
  15270. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15271. {
  15272. front: {
  15273. height: math.unit(6, "feet"),
  15274. weight: math.unit(150, "lb"),
  15275. name: "Front",
  15276. image: {
  15277. source: "./media/characters/shard/front.svg",
  15278. extra: 273 / 238,
  15279. bottom: 0.02
  15280. }
  15281. },
  15282. },
  15283. [
  15284. {
  15285. name: "Normal",
  15286. height: math.unit(3 + 6 / 12, "feet"),
  15287. default: true
  15288. },
  15289. ]
  15290. ))
  15291. characterMakers.push(() => makeCharacter(
  15292. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15293. {
  15294. front: {
  15295. height: math.unit(5 + 11 / 12, "feet"),
  15296. weight: math.unit(146, "lb"),
  15297. name: "Front",
  15298. image: {
  15299. source: "./media/characters/ashe/front.svg",
  15300. extra: 400 / 373,
  15301. bottom: 0.01
  15302. }
  15303. },
  15304. },
  15305. [
  15306. {
  15307. name: "Normal",
  15308. height: math.unit(5 + 11 / 12, "feet"),
  15309. default: true
  15310. },
  15311. ]
  15312. ))
  15313. characterMakers.push(() => makeCharacter(
  15314. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15315. {
  15316. front: {
  15317. height: math.unit(5 + 5 / 12, "feet"),
  15318. weight: math.unit(135, "lb"),
  15319. name: "Front",
  15320. image: {
  15321. source: "./media/characters/beatrix/front.svg",
  15322. extra: 392 / 379,
  15323. bottom: 0.01
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Normal",
  15330. height: math.unit(6, "feet"),
  15331. default: true
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15337. {
  15338. front: {
  15339. height: math.unit(6, "feet"),
  15340. weight: math.unit(150, "lb"),
  15341. name: "Front",
  15342. image: {
  15343. source: "./media/characters/ignatius/front.svg",
  15344. extra: 245 / 222,
  15345. bottom: 0.01
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Normal",
  15352. height: math.unit(5 + 5 / 12, "feet"),
  15353. default: true
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15359. {
  15360. front: {
  15361. height: math.unit(6 + 2 / 12, "feet"),
  15362. weight: math.unit(138, "lb"),
  15363. name: "Front",
  15364. image: {
  15365. source: "./media/characters/mei-li/front.svg",
  15366. extra: 237 / 229,
  15367. bottom: 0.03
  15368. }
  15369. },
  15370. },
  15371. [
  15372. {
  15373. name: "Normal",
  15374. height: math.unit(6 + 2 / 12, "feet"),
  15375. default: true
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15381. {
  15382. front: {
  15383. height: math.unit(2 + 4 / 12, "feet"),
  15384. weight: math.unit(62, "lb"),
  15385. name: "Front",
  15386. image: {
  15387. source: "./media/characters/puru/front.svg",
  15388. extra: 206 / 149,
  15389. bottom: 0.06
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Normal",
  15396. height: math.unit(2 + 4 / 12, "feet"),
  15397. default: true
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15403. {
  15404. anthro: {
  15405. height: math.unit(5 + 8/12, "feet"),
  15406. weight: math.unit(200, "lb"),
  15407. energyNeed: math.unit(2000, "kcal"),
  15408. name: "Anthro",
  15409. image: {
  15410. source: "./media/characters/kee/anthro.svg",
  15411. extra: 3251/3184,
  15412. bottom: 250/3501
  15413. }
  15414. },
  15415. taur: {
  15416. height: math.unit(11, "feet"),
  15417. weight: math.unit(500, "lb"),
  15418. energyNeed: math.unit(5000, "kcal"),
  15419. name: "Taur",
  15420. image: {
  15421. source: "./media/characters/kee/taur.svg",
  15422. extra: 1362/1320,
  15423. bottom: 83/1445
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Normal",
  15430. height: math.unit(5 + 8/12, "feet"),
  15431. default: true
  15432. },
  15433. {
  15434. name: "Macro",
  15435. height: math.unit(35, "feet")
  15436. },
  15437. ]
  15438. ))
  15439. characterMakers.push(() => makeCharacter(
  15440. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15441. {
  15442. anthro: {
  15443. height: math.unit(7, "feet"),
  15444. weight: math.unit(190, "lb"),
  15445. name: "Anthro",
  15446. image: {
  15447. source: "./media/characters/cobalt-dracha/anthro.svg",
  15448. extra: 231 / 225,
  15449. bottom: 0.04
  15450. }
  15451. },
  15452. feral: {
  15453. height: math.unit(9 + 7 / 12, "feet"),
  15454. weight: math.unit(294, "lb"),
  15455. name: "Feral",
  15456. image: {
  15457. source: "./media/characters/cobalt-dracha/feral.svg",
  15458. extra: 692 / 633,
  15459. bottom: 0.05
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Normal",
  15466. height: math.unit(7, "feet"),
  15467. default: true
  15468. },
  15469. ]
  15470. ))
  15471. characterMakers.push(() => makeCharacter(
  15472. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15473. {
  15474. fallen: {
  15475. height: math.unit(11 + 8 / 12, "feet"),
  15476. weight: math.unit(485, "lb"),
  15477. name: "Java (Fallen)",
  15478. rename: true,
  15479. image: {
  15480. source: "./media/characters/java/fallen.svg",
  15481. extra: 226 / 208,
  15482. bottom: 0.005
  15483. }
  15484. },
  15485. godkin: {
  15486. height: math.unit(10 + 6 / 12, "feet"),
  15487. weight: math.unit(328, "lb"),
  15488. name: "Java (Godkin)",
  15489. rename: true,
  15490. image: {
  15491. source: "./media/characters/java/godkin.svg",
  15492. extra: 270 / 262,
  15493. bottom: 0.02
  15494. }
  15495. },
  15496. },
  15497. [
  15498. {
  15499. name: "Normal",
  15500. height: math.unit(11 + 8 / 12, "feet"),
  15501. default: true
  15502. },
  15503. ]
  15504. ))
  15505. characterMakers.push(() => makeCharacter(
  15506. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15507. {
  15508. front: {
  15509. height: math.unit(7 + 8 / 12, "feet"),
  15510. weight: math.unit(320, "lb"),
  15511. name: "Front",
  15512. image: {
  15513. source: "./media/characters/skoll/front.svg",
  15514. extra: 232 / 220,
  15515. bottom: 0.02
  15516. }
  15517. },
  15518. },
  15519. [
  15520. {
  15521. name: "Normal",
  15522. height: math.unit(7 + 8 / 12, "feet"),
  15523. default: true
  15524. },
  15525. ]
  15526. ))
  15527. characterMakers.push(() => makeCharacter(
  15528. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15529. {
  15530. front: {
  15531. height: math.unit(5 + 9 / 12, "feet"),
  15532. weight: math.unit(170, "lb"),
  15533. name: "Front",
  15534. image: {
  15535. source: "./media/characters/purna/front.svg",
  15536. extra: 239 / 229,
  15537. bottom: 0.01
  15538. }
  15539. },
  15540. },
  15541. [
  15542. {
  15543. name: "Normal",
  15544. height: math.unit(5 + 9 / 12, "feet"),
  15545. default: true
  15546. },
  15547. ]
  15548. ))
  15549. characterMakers.push(() => makeCharacter(
  15550. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15551. {
  15552. front: {
  15553. height: math.unit(5 + 9 / 12, "feet"),
  15554. weight: math.unit(142, "lb"),
  15555. name: "Front",
  15556. image: {
  15557. source: "./media/characters/kuva/front.svg",
  15558. extra: 281 / 271,
  15559. bottom: 0.006
  15560. }
  15561. },
  15562. },
  15563. [
  15564. {
  15565. name: "Normal",
  15566. height: math.unit(5 + 9 / 12, "feet"),
  15567. default: true
  15568. },
  15569. ]
  15570. ))
  15571. characterMakers.push(() => makeCharacter(
  15572. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15573. {
  15574. anthro: {
  15575. height: math.unit(9 + 2 / 12, "feet"),
  15576. weight: math.unit(270, "lb"),
  15577. name: "Anthro",
  15578. image: {
  15579. source: "./media/characters/embra/anthro.svg",
  15580. extra: 200 / 187,
  15581. bottom: 0.02
  15582. }
  15583. },
  15584. feral: {
  15585. height: math.unit(18 + 8 / 12, "feet"),
  15586. weight: math.unit(576, "lb"),
  15587. name: "Feral",
  15588. image: {
  15589. source: "./media/characters/embra/feral.svg",
  15590. extra: 152 / 137,
  15591. bottom: 0.037
  15592. }
  15593. },
  15594. },
  15595. [
  15596. {
  15597. name: "Normal",
  15598. height: math.unit(9 + 2 / 12, "feet"),
  15599. default: true
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15605. {
  15606. anthro: {
  15607. height: math.unit(10 + 9 / 12, "feet"),
  15608. weight: math.unit(224, "lb"),
  15609. name: "Anthro",
  15610. image: {
  15611. source: "./media/characters/grottos/anthro.svg",
  15612. extra: 350 / 332,
  15613. bottom: 0.045
  15614. }
  15615. },
  15616. feral: {
  15617. height: math.unit(20 + 7 / 12, "feet"),
  15618. weight: math.unit(629, "lb"),
  15619. name: "Feral",
  15620. image: {
  15621. source: "./media/characters/grottos/feral.svg",
  15622. extra: 207 / 190,
  15623. bottom: 0.05
  15624. }
  15625. },
  15626. },
  15627. [
  15628. {
  15629. name: "Normal",
  15630. height: math.unit(10 + 9 / 12, "feet"),
  15631. default: true
  15632. },
  15633. ]
  15634. ))
  15635. characterMakers.push(() => makeCharacter(
  15636. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15637. {
  15638. anthro: {
  15639. height: math.unit(9 + 6 / 12, "feet"),
  15640. weight: math.unit(298, "lb"),
  15641. name: "Anthro",
  15642. image: {
  15643. source: "./media/characters/frifna/anthro.svg",
  15644. extra: 282 / 269,
  15645. bottom: 0.015
  15646. }
  15647. },
  15648. feral: {
  15649. height: math.unit(16 + 2 / 12, "feet"),
  15650. weight: math.unit(624, "lb"),
  15651. name: "Feral",
  15652. image: {
  15653. source: "./media/characters/frifna/feral.svg"
  15654. }
  15655. },
  15656. },
  15657. [
  15658. {
  15659. name: "Normal",
  15660. height: math.unit(9 + 6 / 12, "feet"),
  15661. default: true
  15662. },
  15663. ]
  15664. ))
  15665. characterMakers.push(() => makeCharacter(
  15666. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15667. {
  15668. front: {
  15669. height: math.unit(6 + 2 / 12, "feet"),
  15670. weight: math.unit(168, "lb"),
  15671. name: "Front",
  15672. image: {
  15673. source: "./media/characters/elise/front.svg",
  15674. extra: 276 / 271
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(6 + 2 / 12, "feet"),
  15682. default: true
  15683. },
  15684. ]
  15685. ))
  15686. characterMakers.push(() => makeCharacter(
  15687. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15688. {
  15689. front: {
  15690. height: math.unit(5 + 10 / 12, "feet"),
  15691. weight: math.unit(210, "lb"),
  15692. name: "Front",
  15693. image: {
  15694. source: "./media/characters/glade/front.svg",
  15695. extra: 258 / 247,
  15696. bottom: 0.008
  15697. }
  15698. },
  15699. },
  15700. [
  15701. {
  15702. name: "Normal",
  15703. height: math.unit(5 + 10 / 12, "feet"),
  15704. default: true
  15705. },
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15710. {
  15711. front: {
  15712. height: math.unit(5 + 10 / 12, "feet"),
  15713. weight: math.unit(129, "lb"),
  15714. name: "Front",
  15715. image: {
  15716. source: "./media/characters/rina/front.svg",
  15717. extra: 266 / 255,
  15718. bottom: 0.005
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(5 + 10 / 12, "feet"),
  15726. default: true
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15732. {
  15733. front: {
  15734. height: math.unit(6 + 1 / 12, "feet"),
  15735. weight: math.unit(192, "lb"),
  15736. name: "Front",
  15737. image: {
  15738. source: "./media/characters/veronica/front.svg",
  15739. extra: 319 / 309,
  15740. bottom: 0.005
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(6 + 1 / 12, "feet"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(9 + 3 / 12, "feet"),
  15757. weight: math.unit(1100, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/braxton/front.svg",
  15761. extra: 1057 / 984,
  15762. bottom: 0.05
  15763. }
  15764. },
  15765. },
  15766. [
  15767. {
  15768. name: "Normal",
  15769. height: math.unit(9 + 3 / 12, "feet")
  15770. },
  15771. {
  15772. name: "Giant",
  15773. height: math.unit(300, "feet"),
  15774. default: true
  15775. },
  15776. {
  15777. name: "Macro",
  15778. height: math.unit(700, "feet")
  15779. },
  15780. {
  15781. name: "Megamacro",
  15782. height: math.unit(6000, "feet")
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15788. {
  15789. front: {
  15790. height: math.unit(6 + 7 / 12, "feet"),
  15791. weight: math.unit(150, "lb"),
  15792. name: "Front",
  15793. image: {
  15794. source: "./media/characters/blue-feyonics/front.svg",
  15795. extra: 1403 / 1306,
  15796. bottom: 0.047
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Normal",
  15803. height: math.unit(6 + 7 / 12, "feet"),
  15804. default: true
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15810. {
  15811. front: {
  15812. height: math.unit(1.8, "meters"),
  15813. weight: math.unit(60, "kg"),
  15814. name: "Front",
  15815. image: {
  15816. source: "./media/characters/maxwell/front.svg",
  15817. extra: 2060 / 1873
  15818. }
  15819. },
  15820. },
  15821. [
  15822. {
  15823. name: "Micro",
  15824. height: math.unit(1, "mm")
  15825. },
  15826. {
  15827. name: "Normal",
  15828. height: math.unit(1.8, "meter"),
  15829. default: true
  15830. },
  15831. {
  15832. name: "Macro",
  15833. height: math.unit(30, "meters")
  15834. },
  15835. {
  15836. name: "Megamacro",
  15837. height: math.unit(10, "km")
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(6, "feet"),
  15846. weight: math.unit(150, "lb"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/jack/front.svg",
  15850. extra: 1754 / 1640,
  15851. bottom: 0.01
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Normal",
  15858. height: math.unit(80000, "feet"),
  15859. default: true
  15860. },
  15861. {
  15862. name: "Max size",
  15863. height: math.unit(10, "lightyears")
  15864. },
  15865. ]
  15866. ))
  15867. characterMakers.push(() => makeCharacter(
  15868. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15869. {
  15870. urban: {
  15871. height: math.unit(5, "feet"),
  15872. weight: math.unit(240, "lb"),
  15873. name: "Urban",
  15874. image: {
  15875. source: "./media/characters/cafat/urban.svg",
  15876. extra: 1223/1126,
  15877. bottom: 205/1428
  15878. }
  15879. },
  15880. summer: {
  15881. height: math.unit(5, "feet"),
  15882. weight: math.unit(240, "lb"),
  15883. name: "Summer",
  15884. image: {
  15885. source: "./media/characters/cafat/summer.svg",
  15886. extra: 1223/1126,
  15887. bottom: 205/1428
  15888. }
  15889. },
  15890. winter: {
  15891. height: math.unit(5, "feet"),
  15892. weight: math.unit(240, "lb"),
  15893. name: "Winter",
  15894. image: {
  15895. source: "./media/characters/cafat/winter.svg",
  15896. extra: 1223/1126,
  15897. bottom: 205/1428
  15898. }
  15899. },
  15900. lingerie: {
  15901. height: math.unit(5, "feet"),
  15902. weight: math.unit(240, "lb"),
  15903. name: "Lingerie",
  15904. image: {
  15905. source: "./media/characters/cafat/lingerie.svg",
  15906. extra: 1223/1126,
  15907. bottom: 205/1428
  15908. }
  15909. },
  15910. upright: {
  15911. height: math.unit(6.3, "feet"),
  15912. weight: math.unit(240, "lb"),
  15913. name: "Upright",
  15914. image: {
  15915. source: "./media/characters/cafat/upright.svg",
  15916. bottom: 0.01
  15917. }
  15918. },
  15919. uprightFull: {
  15920. height: math.unit(6.3, "feet"),
  15921. weight: math.unit(240, "lb"),
  15922. name: "Upright (Full)",
  15923. image: {
  15924. source: "./media/characters/cafat/upright-full.svg",
  15925. bottom: 0.01
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Small",
  15932. height: math.unit(5, "feet"),
  15933. default: true
  15934. },
  15935. {
  15936. name: "Large",
  15937. height: math.unit(13, "feet")
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15943. {
  15944. front: {
  15945. height: math.unit(6, "feet"),
  15946. weight: math.unit(150, "lb"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/verin-raharra/front.svg",
  15950. extra: 5019 / 4835,
  15951. bottom: 0.023
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(7 + 5 / 12, "feet"),
  15959. default: true
  15960. },
  15961. {
  15962. name: "Upsized",
  15963. height: math.unit(20, "feet")
  15964. },
  15965. ]
  15966. ))
  15967. characterMakers.push(() => makeCharacter(
  15968. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15969. {
  15970. front: {
  15971. height: math.unit(7, "feet"),
  15972. weight: math.unit(230, "lb"),
  15973. name: "Front",
  15974. image: {
  15975. source: "./media/characters/nakata/front.svg",
  15976. extra: 1.005,
  15977. bottom: 0.01
  15978. }
  15979. },
  15980. },
  15981. [
  15982. {
  15983. name: "Normal",
  15984. height: math.unit(7, "feet"),
  15985. default: true
  15986. },
  15987. {
  15988. name: "Big",
  15989. height: math.unit(14, "feet")
  15990. },
  15991. {
  15992. name: "Macro",
  15993. height: math.unit(400, "feet")
  15994. },
  15995. ]
  15996. ))
  15997. characterMakers.push(() => makeCharacter(
  15998. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15999. {
  16000. front: {
  16001. height: math.unit(4.91, "feet"),
  16002. weight: math.unit(100, "lb"),
  16003. name: "Front",
  16004. image: {
  16005. source: "./media/characters/lily/front.svg",
  16006. extra: 1585 / 1415,
  16007. bottom: 0.02
  16008. }
  16009. },
  16010. },
  16011. [
  16012. {
  16013. name: "Normal",
  16014. height: math.unit(4.91, "feet"),
  16015. default: true
  16016. },
  16017. ]
  16018. ))
  16019. characterMakers.push(() => makeCharacter(
  16020. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16021. {
  16022. laying: {
  16023. height: math.unit(4 + 4 / 12, "feet"),
  16024. weight: math.unit(600, "lb"),
  16025. name: "Laying",
  16026. image: {
  16027. source: "./media/characters/sheila/laying.svg",
  16028. extra: 1333 / 1265,
  16029. bottom: 0.16
  16030. }
  16031. },
  16032. },
  16033. [
  16034. {
  16035. name: "Normal",
  16036. height: math.unit(4 + 4 / 12, "feet"),
  16037. default: true
  16038. },
  16039. ]
  16040. ))
  16041. characterMakers.push(() => makeCharacter(
  16042. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16043. {
  16044. front: {
  16045. height: math.unit(6, "feet"),
  16046. weight: math.unit(190, "lb"),
  16047. name: "Front",
  16048. image: {
  16049. source: "./media/characters/sax/front.svg",
  16050. extra: 1187 / 973,
  16051. bottom: 0.042
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Micro",
  16058. height: math.unit(4, "inches"),
  16059. default: true
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(6, "feet"),
  16068. weight: math.unit(150, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/pandora/front.svg",
  16072. extra: 2720 / 2556,
  16073. bottom: 0.015
  16074. }
  16075. },
  16076. back: {
  16077. height: math.unit(6, "feet"),
  16078. weight: math.unit(150, "lb"),
  16079. name: "Back",
  16080. image: {
  16081. source: "./media/characters/pandora/back.svg",
  16082. extra: 2720 / 2556,
  16083. bottom: 0.01
  16084. }
  16085. },
  16086. beans: {
  16087. height: math.unit(6 / 8, "feet"),
  16088. name: "Beans",
  16089. image: {
  16090. source: "./media/characters/pandora/beans.svg"
  16091. }
  16092. },
  16093. collar: {
  16094. height: math.unit(0.31, "feet"),
  16095. name: "Collar",
  16096. image: {
  16097. source: "./media/characters/pandora/collar.svg"
  16098. }
  16099. },
  16100. skirt: {
  16101. height: math.unit(6, "feet"),
  16102. weight: math.unit(150, "lb"),
  16103. name: "Skirt",
  16104. image: {
  16105. source: "./media/characters/pandora/skirt.svg",
  16106. extra: 1622 / 1525,
  16107. bottom: 0.015
  16108. }
  16109. },
  16110. hoodie: {
  16111. height: math.unit(6, "feet"),
  16112. weight: math.unit(150, "lb"),
  16113. name: "Hoodie",
  16114. image: {
  16115. source: "./media/characters/pandora/hoodie.svg",
  16116. extra: 1622 / 1525,
  16117. bottom: 0.015
  16118. }
  16119. },
  16120. casual: {
  16121. height: math.unit(6, "feet"),
  16122. weight: math.unit(150, "lb"),
  16123. name: "Casual",
  16124. image: {
  16125. source: "./media/characters/pandora/casual.svg",
  16126. extra: 1622 / 1525,
  16127. bottom: 0.015
  16128. }
  16129. },
  16130. },
  16131. [
  16132. {
  16133. name: "Normal",
  16134. height: math.unit(6, "feet")
  16135. },
  16136. {
  16137. name: "Big Steppy",
  16138. height: math.unit(1, "km"),
  16139. default: true
  16140. },
  16141. {
  16142. name: "Galactic Steppy",
  16143. height: math.unit(2, "gigameters")
  16144. },
  16145. ]
  16146. ))
  16147. characterMakers.push(() => makeCharacter(
  16148. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16149. {
  16150. side: {
  16151. height: math.unit(10, "feet"),
  16152. weight: math.unit(800, "kg"),
  16153. name: "Side",
  16154. image: {
  16155. source: "./media/characters/venio-darcony/side.svg",
  16156. extra: 1373 / 1003,
  16157. bottom: 0.037
  16158. }
  16159. },
  16160. front: {
  16161. height: math.unit(19, "feet"),
  16162. weight: math.unit(800, "kg"),
  16163. name: "Front",
  16164. image: {
  16165. source: "./media/characters/venio-darcony/front.svg"
  16166. }
  16167. },
  16168. back: {
  16169. height: math.unit(19, "feet"),
  16170. weight: math.unit(800, "kg"),
  16171. name: "Back",
  16172. image: {
  16173. source: "./media/characters/venio-darcony/back.svg"
  16174. }
  16175. },
  16176. sideNsfw: {
  16177. height: math.unit(10, "feet"),
  16178. weight: math.unit(800, "kg"),
  16179. name: "Side (NSFW)",
  16180. image: {
  16181. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16182. extra: 1373 / 1003,
  16183. bottom: 0.037
  16184. }
  16185. },
  16186. frontNsfw: {
  16187. height: math.unit(19, "feet"),
  16188. weight: math.unit(800, "kg"),
  16189. name: "Front (NSFW)",
  16190. image: {
  16191. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16192. }
  16193. },
  16194. backNsfw: {
  16195. height: math.unit(19, "feet"),
  16196. weight: math.unit(800, "kg"),
  16197. name: "Back (NSFW)",
  16198. image: {
  16199. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16200. }
  16201. },
  16202. sideArmored: {
  16203. height: math.unit(10, "feet"),
  16204. weight: math.unit(800, "kg"),
  16205. name: "Side (Armored)",
  16206. image: {
  16207. source: "./media/characters/venio-darcony/side-armored.svg",
  16208. extra: 1373 / 1003,
  16209. bottom: 0.037
  16210. }
  16211. },
  16212. frontArmored: {
  16213. height: math.unit(19, "feet"),
  16214. weight: math.unit(900, "kg"),
  16215. name: "Front (Armored)",
  16216. image: {
  16217. source: "./media/characters/venio-darcony/front-armored.svg"
  16218. }
  16219. },
  16220. backArmored: {
  16221. height: math.unit(19, "feet"),
  16222. weight: math.unit(900, "kg"),
  16223. name: "Back (Armored)",
  16224. image: {
  16225. source: "./media/characters/venio-darcony/back-armored.svg"
  16226. }
  16227. },
  16228. sword: {
  16229. height: math.unit(10, "feet"),
  16230. weight: math.unit(50, "lb"),
  16231. name: "Sword",
  16232. image: {
  16233. source: "./media/characters/venio-darcony/sword.svg"
  16234. }
  16235. },
  16236. },
  16237. [
  16238. {
  16239. name: "Normal",
  16240. height: math.unit(10, "feet")
  16241. },
  16242. {
  16243. name: "Macro",
  16244. height: math.unit(130, "feet"),
  16245. default: true
  16246. },
  16247. {
  16248. name: "Macro+",
  16249. height: math.unit(240, "feet")
  16250. },
  16251. ]
  16252. ))
  16253. characterMakers.push(() => makeCharacter(
  16254. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16255. {
  16256. front: {
  16257. height: math.unit(6, "feet"),
  16258. weight: math.unit(150, "lb"),
  16259. name: "Front",
  16260. image: {
  16261. source: "./media/characters/veski/front.svg",
  16262. extra: 1299 / 1225,
  16263. bottom: 0.04
  16264. }
  16265. },
  16266. back: {
  16267. height: math.unit(6, "feet"),
  16268. weight: math.unit(150, "lb"),
  16269. name: "Back",
  16270. image: {
  16271. source: "./media/characters/veski/back.svg",
  16272. extra: 1299 / 1225,
  16273. bottom: 0.008
  16274. }
  16275. },
  16276. maw: {
  16277. height: math.unit(1.5 * 1.21, "feet"),
  16278. name: "Maw",
  16279. image: {
  16280. source: "./media/characters/veski/maw.svg"
  16281. }
  16282. },
  16283. },
  16284. [
  16285. {
  16286. name: "Macro",
  16287. height: math.unit(2, "km"),
  16288. default: true
  16289. },
  16290. ]
  16291. ))
  16292. characterMakers.push(() => makeCharacter(
  16293. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16294. {
  16295. front: {
  16296. height: math.unit(5 + 7 / 12, "feet"),
  16297. name: "Front",
  16298. image: {
  16299. source: "./media/characters/isabelle/front.svg",
  16300. extra: 2130 / 1976,
  16301. bottom: 0.05
  16302. }
  16303. },
  16304. },
  16305. [
  16306. {
  16307. name: "Supermicro",
  16308. height: math.unit(10, "micrometers")
  16309. },
  16310. {
  16311. name: "Micro",
  16312. height: math.unit(1, "inch")
  16313. },
  16314. {
  16315. name: "Tiny",
  16316. height: math.unit(5, "inches")
  16317. },
  16318. {
  16319. name: "Standard",
  16320. height: math.unit(5 + 7 / 12, "inches")
  16321. },
  16322. {
  16323. name: "Macro",
  16324. height: math.unit(80, "meters"),
  16325. default: true
  16326. },
  16327. {
  16328. name: "Megamacro",
  16329. height: math.unit(250, "meters")
  16330. },
  16331. {
  16332. name: "Gigamacro",
  16333. height: math.unit(5, "km")
  16334. },
  16335. {
  16336. name: "Cosmic",
  16337. height: math.unit(2.5e6, "miles")
  16338. },
  16339. ]
  16340. ))
  16341. characterMakers.push(() => makeCharacter(
  16342. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16343. {
  16344. front: {
  16345. height: math.unit(6, "feet"),
  16346. weight: math.unit(150, "lb"),
  16347. name: "Front",
  16348. image: {
  16349. source: "./media/characters/hanzo/front.svg",
  16350. extra: 374 / 344,
  16351. bottom: 0.02
  16352. }
  16353. },
  16354. },
  16355. [
  16356. {
  16357. name: "Normal",
  16358. height: math.unit(8, "feet"),
  16359. default: true
  16360. },
  16361. ]
  16362. ))
  16363. characterMakers.push(() => makeCharacter(
  16364. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16365. {
  16366. front: {
  16367. height: math.unit(7, "feet"),
  16368. weight: math.unit(130, "lb"),
  16369. name: "Front",
  16370. image: {
  16371. source: "./media/characters/anna/front.svg",
  16372. extra: 169 / 145,
  16373. bottom: 0.06
  16374. }
  16375. },
  16376. full: {
  16377. height: math.unit(4.96, "feet"),
  16378. weight: math.unit(220, "lb"),
  16379. name: "Full",
  16380. image: {
  16381. source: "./media/characters/anna/full.svg",
  16382. extra: 138 / 114,
  16383. bottom: 0.15
  16384. }
  16385. },
  16386. tongue: {
  16387. height: math.unit(2.53, "feet"),
  16388. name: "Tongue",
  16389. image: {
  16390. source: "./media/characters/anna/tongue.svg"
  16391. }
  16392. },
  16393. },
  16394. [
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(7, "feet"),
  16398. default: true
  16399. },
  16400. ]
  16401. ))
  16402. characterMakers.push(() => makeCharacter(
  16403. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16404. {
  16405. front: {
  16406. height: math.unit(7, "feet"),
  16407. weight: math.unit(150, "lb"),
  16408. name: "Front",
  16409. image: {
  16410. source: "./media/characters/ian-corvid/front.svg",
  16411. extra: 150 / 142,
  16412. bottom: 0.02
  16413. }
  16414. },
  16415. back: {
  16416. height: math.unit(7, "feet"),
  16417. weight: math.unit(150, "lb"),
  16418. name: "Back",
  16419. image: {
  16420. source: "./media/characters/ian-corvid/back.svg",
  16421. extra: 150 / 143,
  16422. bottom: 0.01
  16423. }
  16424. },
  16425. stomping: {
  16426. height: math.unit(7, "feet"),
  16427. weight: math.unit(150, "lb"),
  16428. name: "Stomping",
  16429. image: {
  16430. source: "./media/characters/ian-corvid/stomping.svg",
  16431. extra: 76 / 72
  16432. }
  16433. },
  16434. sitting: {
  16435. height: math.unit(7 / 1.8, "feet"),
  16436. weight: math.unit(150, "lb"),
  16437. name: "Sitting",
  16438. image: {
  16439. source: "./media/characters/ian-corvid/sitting.svg",
  16440. extra: 1400 / 1269,
  16441. bottom: 0.15
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Tiny Microw",
  16448. height: math.unit(1, "inch")
  16449. },
  16450. {
  16451. name: "Microw",
  16452. height: math.unit(6, "inches")
  16453. },
  16454. {
  16455. name: "Crow",
  16456. height: math.unit(7 + 1 / 12, "feet"),
  16457. default: true
  16458. },
  16459. {
  16460. name: "Macrow",
  16461. height: math.unit(176, "feet")
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16467. {
  16468. front: {
  16469. height: math.unit(5 + 7 / 12, "feet"),
  16470. weight: math.unit(147, "lb"),
  16471. name: "Front",
  16472. image: {
  16473. source: "./media/characters/natalie-kellon/front.svg",
  16474. extra: 1214 / 1141,
  16475. bottom: 0.02
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Micro",
  16482. height: math.unit(1 / 16, "inch")
  16483. },
  16484. {
  16485. name: "Tiny",
  16486. height: math.unit(4, "inches")
  16487. },
  16488. {
  16489. name: "Normal",
  16490. height: math.unit(5 + 7 / 12, "feet"),
  16491. default: true
  16492. },
  16493. {
  16494. name: "Amazon",
  16495. height: math.unit(12, "feet")
  16496. },
  16497. {
  16498. name: "Giantess",
  16499. height: math.unit(160, "meters")
  16500. },
  16501. {
  16502. name: "Titaness",
  16503. height: math.unit(800, "meters")
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(6, "feet"),
  16512. weight: math.unit(150, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/alluria/front.svg",
  16516. extra: 806 / 738,
  16517. bottom: 0.01
  16518. }
  16519. },
  16520. side: {
  16521. height: math.unit(6, "feet"),
  16522. weight: math.unit(150, "lb"),
  16523. name: "Side",
  16524. image: {
  16525. source: "./media/characters/alluria/side.svg",
  16526. extra: 800 / 750,
  16527. }
  16528. },
  16529. back: {
  16530. height: math.unit(6, "feet"),
  16531. weight: math.unit(150, "lb"),
  16532. name: "Back",
  16533. image: {
  16534. source: "./media/characters/alluria/back.svg",
  16535. extra: 806 / 738,
  16536. }
  16537. },
  16538. frontMaid: {
  16539. height: math.unit(6, "feet"),
  16540. weight: math.unit(150, "lb"),
  16541. name: "Front (Maid)",
  16542. image: {
  16543. source: "./media/characters/alluria/front-maid.svg",
  16544. extra: 806 / 738,
  16545. bottom: 0.01
  16546. }
  16547. },
  16548. sideMaid: {
  16549. height: math.unit(6, "feet"),
  16550. weight: math.unit(150, "lb"),
  16551. name: "Side (Maid)",
  16552. image: {
  16553. source: "./media/characters/alluria/side-maid.svg",
  16554. extra: 800 / 750,
  16555. bottom: 0.005
  16556. }
  16557. },
  16558. backMaid: {
  16559. height: math.unit(6, "feet"),
  16560. weight: math.unit(150, "lb"),
  16561. name: "Back (Maid)",
  16562. image: {
  16563. source: "./media/characters/alluria/back-maid.svg",
  16564. extra: 806 / 738,
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Micro",
  16571. height: math.unit(6, "inches"),
  16572. default: true
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16578. {
  16579. front: {
  16580. height: math.unit(6, "feet"),
  16581. weight: math.unit(150, "lb"),
  16582. name: "Front",
  16583. image: {
  16584. source: "./media/characters/kyle/front.svg",
  16585. extra: 1069 / 962,
  16586. bottom: 77.228 / 1727.45
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Macro",
  16593. height: math.unit(150, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16600. {
  16601. front: {
  16602. height: math.unit(6, "feet"),
  16603. weight: math.unit(300, "lb"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/duncan/front.svg",
  16607. extra: 1650 / 1482,
  16608. bottom: 0.05
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Macro",
  16615. height: math.unit(100, "feet"),
  16616. default: true
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16622. {
  16623. front: {
  16624. height: math.unit(5 + 4 / 12, "feet"),
  16625. weight: math.unit(220, "lb"),
  16626. name: "Front",
  16627. image: {
  16628. source: "./media/characters/memory/front.svg",
  16629. extra: 3641 / 3545,
  16630. bottom: 0.03
  16631. }
  16632. },
  16633. back: {
  16634. height: math.unit(5 + 4 / 12, "feet"),
  16635. weight: math.unit(220, "lb"),
  16636. name: "Back",
  16637. image: {
  16638. source: "./media/characters/memory/back.svg",
  16639. extra: 3641 / 3545,
  16640. bottom: 0.025
  16641. }
  16642. },
  16643. frontSkirt: {
  16644. height: math.unit(5 + 4 / 12, "feet"),
  16645. weight: math.unit(220, "lb"),
  16646. name: "Front (Skirt)",
  16647. image: {
  16648. source: "./media/characters/memory/front-skirt.svg",
  16649. extra: 3641 / 3545,
  16650. bottom: 0.03
  16651. }
  16652. },
  16653. frontDress: {
  16654. height: math.unit(5 + 4 / 12, "feet"),
  16655. weight: math.unit(220, "lb"),
  16656. name: "Front (Dress)",
  16657. image: {
  16658. source: "./media/characters/memory/front-dress.svg",
  16659. extra: 3641 / 3545,
  16660. bottom: 0.03
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Micro",
  16667. height: math.unit(6, "inches"),
  16668. default: true
  16669. },
  16670. {
  16671. name: "Normal",
  16672. height: math.unit(5 + 4 / 12, "feet")
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16678. {
  16679. front: {
  16680. height: math.unit(4 + 11 / 12, "feet"),
  16681. weight: math.unit(100, "lb"),
  16682. name: "Front",
  16683. image: {
  16684. source: "./media/characters/luno/front.svg",
  16685. extra: 1535 / 1487,
  16686. bottom: 0.03
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Micro",
  16693. height: math.unit(3, "inches")
  16694. },
  16695. {
  16696. name: "Normal",
  16697. height: math.unit(4 + 11 / 12, "feet"),
  16698. default: true
  16699. },
  16700. {
  16701. name: "Macro",
  16702. height: math.unit(300, "feet")
  16703. },
  16704. {
  16705. name: "Megamacro",
  16706. height: math.unit(700, "miles")
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16712. {
  16713. front: {
  16714. height: math.unit(6 + 2 / 12, "feet"),
  16715. weight: math.unit(170, "lb"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/jamesy/front.svg",
  16719. extra: 440 / 382,
  16720. bottom: 0.005
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Micro",
  16727. height: math.unit(3, "inches")
  16728. },
  16729. {
  16730. name: "Normal",
  16731. height: math.unit(6 + 2 / 12, "feet"),
  16732. default: true
  16733. },
  16734. {
  16735. name: "Macro",
  16736. height: math.unit(300, "feet")
  16737. },
  16738. {
  16739. name: "Megamacro",
  16740. height: math.unit(700, "miles")
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16746. {
  16747. front: {
  16748. height: math.unit(6, "feet"),
  16749. weight: math.unit(160, "lb"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/mark/front.svg",
  16753. extra: 3300 / 3100,
  16754. bottom: 136.42 / 3440.47
  16755. }
  16756. },
  16757. },
  16758. [
  16759. {
  16760. name: "Macro",
  16761. height: math.unit(120, "meters")
  16762. },
  16763. {
  16764. name: "Bigger Macro",
  16765. height: math.unit(350, "meters")
  16766. },
  16767. {
  16768. name: "Megamacro",
  16769. height: math.unit(8, "km"),
  16770. default: true
  16771. },
  16772. {
  16773. name: "Continental",
  16774. height: math.unit(4550, "km")
  16775. },
  16776. {
  16777. name: "Planetary",
  16778. height: math.unit(65000, "km")
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(6, "feet"),
  16787. weight: math.unit(400, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/mac/front.svg",
  16791. extra: 1048 / 987.7,
  16792. bottom: 60 / 1107.6,
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Macro",
  16799. height: math.unit(500, "feet"),
  16800. default: true
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16806. {
  16807. front: {
  16808. height: math.unit(5 + 2 / 12, "feet"),
  16809. weight: math.unit(190, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/bari/front.svg",
  16813. extra: 3156 / 2880,
  16814. bottom: 0.03
  16815. }
  16816. },
  16817. back: {
  16818. height: math.unit(5 + 2 / 12, "feet"),
  16819. weight: math.unit(190, "lb"),
  16820. name: "Back",
  16821. image: {
  16822. source: "./media/characters/bari/back.svg",
  16823. extra: 3260 / 2834,
  16824. bottom: 0.025
  16825. }
  16826. },
  16827. frontPlush: {
  16828. height: math.unit(5 + 2 / 12, "feet"),
  16829. weight: math.unit(190, "lb"),
  16830. name: "Front (Plush)",
  16831. image: {
  16832. source: "./media/characters/bari/front-plush.svg",
  16833. extra: 1112 / 1061,
  16834. bottom: 0.002
  16835. }
  16836. },
  16837. },
  16838. [
  16839. {
  16840. name: "Micro",
  16841. height: math.unit(3, "inches")
  16842. },
  16843. {
  16844. name: "Normal",
  16845. height: math.unit(5 + 2 / 12, "feet"),
  16846. default: true
  16847. },
  16848. {
  16849. name: "Macro",
  16850. height: math.unit(20, "feet")
  16851. },
  16852. ]
  16853. ))
  16854. characterMakers.push(() => makeCharacter(
  16855. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16856. {
  16857. front: {
  16858. height: math.unit(6 + 1 / 12, "feet"),
  16859. weight: math.unit(275, "lb"),
  16860. name: "Front",
  16861. image: {
  16862. source: "./media/characters/hunter-misha-raven/front.svg"
  16863. }
  16864. },
  16865. },
  16866. [
  16867. {
  16868. name: "Mortal",
  16869. height: math.unit(6 + 1 / 12, "feet")
  16870. },
  16871. {
  16872. name: "Divine",
  16873. height: math.unit(1.12134e34, "parsecs"),
  16874. default: true
  16875. },
  16876. ]
  16877. ))
  16878. characterMakers.push(() => makeCharacter(
  16879. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16880. {
  16881. front: {
  16882. height: math.unit(6 + 3 / 12, "feet"),
  16883. weight: math.unit(220, "lb"),
  16884. name: "Front",
  16885. image: {
  16886. source: "./media/characters/max-calore/front.svg",
  16887. extra: 1700 / 1648,
  16888. bottom: 0.01
  16889. }
  16890. },
  16891. back: {
  16892. height: math.unit(6 + 3 / 12, "feet"),
  16893. weight: math.unit(220, "lb"),
  16894. name: "Back",
  16895. image: {
  16896. source: "./media/characters/max-calore/back.svg",
  16897. extra: 1700 / 1648,
  16898. bottom: 0.01
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(6 + 3 / 12, "feet"),
  16906. default: true
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16912. {
  16913. side: {
  16914. height: math.unit(2 + 8 / 12, "feet"),
  16915. weight: math.unit(99, "lb"),
  16916. name: "Side",
  16917. image: {
  16918. source: "./media/characters/aspen/side.svg",
  16919. extra: 152 / 138,
  16920. bottom: 0.032
  16921. }
  16922. },
  16923. },
  16924. [
  16925. {
  16926. name: "Normal",
  16927. height: math.unit(2 + 8 / 12, "feet"),
  16928. default: true
  16929. },
  16930. ]
  16931. ))
  16932. characterMakers.push(() => makeCharacter(
  16933. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16934. {
  16935. side: {
  16936. height: math.unit(3 + 2 / 12, "feet"),
  16937. weight: math.unit(224, "lb"),
  16938. name: "Side",
  16939. image: {
  16940. source: "./media/characters/sheila-feral-wolf/side.svg",
  16941. extra: 179 / 166,
  16942. bottom: 0.03
  16943. }
  16944. },
  16945. },
  16946. [
  16947. {
  16948. name: "Normal",
  16949. height: math.unit(3 + 2 / 12, "feet"),
  16950. default: true
  16951. },
  16952. ]
  16953. ))
  16954. characterMakers.push(() => makeCharacter(
  16955. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16956. {
  16957. side: {
  16958. height: math.unit(1 + 9 / 12, "feet"),
  16959. weight: math.unit(38, "lb"),
  16960. name: "Side",
  16961. image: {
  16962. source: "./media/characters/michelle/side.svg",
  16963. extra: 147 / 136.7,
  16964. bottom: 0.03
  16965. }
  16966. },
  16967. },
  16968. [
  16969. {
  16970. name: "Normal",
  16971. height: math.unit(1 + 9 / 12, "feet"),
  16972. default: true
  16973. },
  16974. ]
  16975. ))
  16976. characterMakers.push(() => makeCharacter(
  16977. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16978. {
  16979. front: {
  16980. height: math.unit(1 + 1 / 12, "feet"),
  16981. weight: math.unit(18, "lb"),
  16982. name: "Front",
  16983. image: {
  16984. source: "./media/characters/nino/front.svg"
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(1 + 1 / 12, "feet"),
  16992. default: true
  16993. },
  16994. ]
  16995. ))
  16996. characterMakers.push(() => makeCharacter(
  16997. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16998. {
  16999. front: {
  17000. height: math.unit(1, "feet"),
  17001. weight: math.unit(16, "lb"),
  17002. name: "Front",
  17003. image: {
  17004. source: "./media/characters/viola/front.svg"
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(1, "feet"),
  17012. default: true
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17018. {
  17019. front: {
  17020. height: math.unit(6 + 5 / 12, "feet"),
  17021. weight: math.unit(580, "lb"),
  17022. name: "Front",
  17023. image: {
  17024. source: "./media/characters/atlas/front.svg",
  17025. extra: 298.5 / 290,
  17026. bottom: 0.015
  17027. }
  17028. },
  17029. },
  17030. [
  17031. {
  17032. name: "Normal",
  17033. height: math.unit(6 + 5 / 12, "feet"),
  17034. default: true
  17035. },
  17036. ]
  17037. ))
  17038. characterMakers.push(() => makeCharacter(
  17039. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17040. {
  17041. side: {
  17042. height: math.unit(1 + 10 / 12, "feet"),
  17043. weight: math.unit(25, "lb"),
  17044. name: "Side",
  17045. image: {
  17046. source: "./media/characters/davy/side.svg",
  17047. extra: 200 / 170,
  17048. bottom: 0.01
  17049. }
  17050. },
  17051. },
  17052. [
  17053. {
  17054. name: "Normal",
  17055. height: math.unit(1 + 10 / 12, "feet"),
  17056. default: true
  17057. },
  17058. ]
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17062. {
  17063. side: {
  17064. height: math.unit(4 + 8 / 12, "feet"),
  17065. weight: math.unit(166, "lb"),
  17066. name: "Side",
  17067. image: {
  17068. source: "./media/characters/fiona/side.svg",
  17069. extra: 232 / 220,
  17070. bottom: 0.03
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(4 + 8 / 12, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17084. {
  17085. front: {
  17086. height: math.unit(2, "feet"),
  17087. weight: math.unit(62, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/lyla/front.svg",
  17091. bottom: 0.1
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(2, "feet"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17105. {
  17106. side: {
  17107. height: math.unit(1.8, "feet"),
  17108. weight: math.unit(44, "lb"),
  17109. name: "Side",
  17110. image: {
  17111. source: "./media/characters/perseus/side.svg",
  17112. bottom: 0.21
  17113. }
  17114. },
  17115. },
  17116. [
  17117. {
  17118. name: "Normal",
  17119. height: math.unit(1.8, "feet"),
  17120. default: true
  17121. },
  17122. ]
  17123. ))
  17124. characterMakers.push(() => makeCharacter(
  17125. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17126. {
  17127. side: {
  17128. height: math.unit(4 + 2 / 12, "feet"),
  17129. weight: math.unit(20, "lb"),
  17130. name: "Side",
  17131. image: {
  17132. source: "./media/characters/remus/side.svg"
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(4 + 2 / 12, "feet"),
  17140. default: true
  17141. },
  17142. ]
  17143. ))
  17144. characterMakers.push(() => makeCharacter(
  17145. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17146. {
  17147. front: {
  17148. height: math.unit(4 + 11 / 12, "feet"),
  17149. weight: math.unit(114, "lb"),
  17150. name: "Front",
  17151. image: {
  17152. source: "./media/characters/raf/front.svg",
  17153. bottom: 20.5 / 1863
  17154. }
  17155. },
  17156. side: {
  17157. height: math.unit(4 + 11 / 12, "feet"),
  17158. weight: math.unit(114, "lb"),
  17159. name: "Side",
  17160. image: {
  17161. source: "./media/characters/raf/side.svg",
  17162. bottom: 22 / 1822
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Micro",
  17169. height: math.unit(2, "inches")
  17170. },
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(4 + 11 / 12, "feet"),
  17174. default: true
  17175. },
  17176. {
  17177. name: "Macro",
  17178. height: math.unit(70, "feet")
  17179. },
  17180. ]
  17181. ))
  17182. characterMakers.push(() => makeCharacter(
  17183. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17184. {
  17185. front: {
  17186. height: math.unit(1.5, "meters"),
  17187. weight: math.unit(68, "kg"),
  17188. name: "Front",
  17189. image: {
  17190. source: "./media/characters/liam-einarr/front.svg",
  17191. extra: 2822 / 2666
  17192. }
  17193. },
  17194. back: {
  17195. height: math.unit(1.5, "meters"),
  17196. weight: math.unit(68, "kg"),
  17197. name: "Back",
  17198. image: {
  17199. source: "./media/characters/liam-einarr/back.svg",
  17200. extra: 2822 / 2666,
  17201. bottom: 0.015
  17202. }
  17203. },
  17204. },
  17205. [
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(1.5, "meters"),
  17209. default: true
  17210. },
  17211. {
  17212. name: "Macro",
  17213. height: math.unit(150, "meters")
  17214. },
  17215. {
  17216. name: "Megamacro",
  17217. height: math.unit(35, "km")
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17223. {
  17224. front: {
  17225. height: math.unit(6, "feet"),
  17226. weight: math.unit(75, "kg"),
  17227. name: "Front",
  17228. image: {
  17229. source: "./media/characters/linda/front.svg",
  17230. extra: 930 / 874,
  17231. bottom: 0.004
  17232. }
  17233. },
  17234. },
  17235. [
  17236. {
  17237. name: "Normal",
  17238. height: math.unit(6, "feet"),
  17239. default: true
  17240. },
  17241. ]
  17242. ))
  17243. characterMakers.push(() => makeCharacter(
  17244. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17245. {
  17246. front: {
  17247. height: math.unit(6 + 8 / 12, "feet"),
  17248. weight: math.unit(220, "lb"),
  17249. name: "Front",
  17250. image: {
  17251. source: "./media/characters/caylex/front.svg",
  17252. extra: 821 / 772,
  17253. bottom: 0.07
  17254. }
  17255. },
  17256. back: {
  17257. height: math.unit(6 + 8 / 12, "feet"),
  17258. weight: math.unit(220, "lb"),
  17259. name: "Back",
  17260. image: {
  17261. source: "./media/characters/caylex/back.svg",
  17262. extra: 821 / 772,
  17263. bottom: 0.022
  17264. }
  17265. },
  17266. hand: {
  17267. height: math.unit(1.25, "feet"),
  17268. name: "Hand",
  17269. image: {
  17270. source: "./media/characters/caylex/hand.svg"
  17271. }
  17272. },
  17273. foot: {
  17274. height: math.unit(1.6, "feet"),
  17275. name: "Foot",
  17276. image: {
  17277. source: "./media/characters/caylex/foot.svg"
  17278. }
  17279. },
  17280. armored: {
  17281. height: math.unit(6 + 8 / 12, "feet"),
  17282. weight: math.unit(250, "lb"),
  17283. name: "Armored",
  17284. image: {
  17285. source: "./media/characters/caylex/armored.svg",
  17286. extra: 1420 / 1310,
  17287. bottom: 0.045
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Normal",
  17294. height: math.unit(6 + 8 / 12, "feet"),
  17295. default: true
  17296. },
  17297. {
  17298. name: "Normal+",
  17299. height: math.unit(12, "feet")
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17305. {
  17306. front: {
  17307. height: math.unit(7 + 6 / 12, "feet"),
  17308. weight: math.unit(288, "lb"),
  17309. name: "Front",
  17310. image: {
  17311. source: "./media/characters/alana/front.svg",
  17312. extra: 679 / 653,
  17313. bottom: 22.5 / 701
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Normal",
  17320. height: math.unit(7 + 6 / 12, "feet")
  17321. },
  17322. {
  17323. name: "Large",
  17324. height: math.unit(50, "feet")
  17325. },
  17326. {
  17327. name: "Macro",
  17328. height: math.unit(100, "feet"),
  17329. default: true
  17330. },
  17331. {
  17332. name: "Macro+",
  17333. height: math.unit(200, "feet")
  17334. },
  17335. ]
  17336. ))
  17337. characterMakers.push(() => makeCharacter(
  17338. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17339. {
  17340. front: {
  17341. height: math.unit(6 + 1 / 12, "feet"),
  17342. weight: math.unit(210, "lb"),
  17343. name: "Front",
  17344. image: {
  17345. source: "./media/characters/hasani/front.svg",
  17346. extra: 244 / 232,
  17347. bottom: 0.01
  17348. }
  17349. },
  17350. back: {
  17351. height: math.unit(6 + 1 / 12, "feet"),
  17352. weight: math.unit(210, "lb"),
  17353. name: "Back",
  17354. image: {
  17355. source: "./media/characters/hasani/back.svg",
  17356. extra: 244 / 232,
  17357. bottom: 0.01
  17358. }
  17359. },
  17360. },
  17361. [
  17362. {
  17363. name: "Normal",
  17364. height: math.unit(6 + 1 / 12, "feet")
  17365. },
  17366. {
  17367. name: "Macro",
  17368. height: math.unit(175, "feet"),
  17369. default: true
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17375. {
  17376. front: {
  17377. height: math.unit(1.82, "meters"),
  17378. weight: math.unit(140, "lb"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/nita/front.svg",
  17382. extra: 2473 / 2363,
  17383. bottom: 0.01
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(1.82, "m")
  17391. },
  17392. {
  17393. name: "Macro",
  17394. height: math.unit(300, "m")
  17395. },
  17396. {
  17397. name: "Mistake Canon",
  17398. height: math.unit(0.5, "miles"),
  17399. default: true
  17400. },
  17401. {
  17402. name: "Big Mistake",
  17403. height: math.unit(13, "miles")
  17404. },
  17405. {
  17406. name: "Playing God",
  17407. height: math.unit(2450, "miles")
  17408. },
  17409. ]
  17410. ))
  17411. characterMakers.push(() => makeCharacter(
  17412. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17413. {
  17414. front: {
  17415. height: math.unit(4, "feet"),
  17416. weight: math.unit(120, "lb"),
  17417. name: "Front",
  17418. image: {
  17419. source: "./media/characters/shiriko/front.svg",
  17420. extra: 970/934,
  17421. bottom: 5/975
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(4, "feet"),
  17429. default: true
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17435. {
  17436. front: {
  17437. height: math.unit(6, "feet"),
  17438. name: "front",
  17439. image: {
  17440. source: "./media/characters/deja/front.svg",
  17441. extra: 926 / 840,
  17442. bottom: 0.07
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Planck Length",
  17449. height: math.unit(1.6e-35, "meters")
  17450. },
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(30.48, "meters"),
  17454. default: true
  17455. },
  17456. {
  17457. name: "Universal",
  17458. height: math.unit(8.8e26, "meters")
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17464. {
  17465. side: {
  17466. height: math.unit(8, "feet"),
  17467. weight: math.unit(6300, "lb"),
  17468. name: "Side",
  17469. image: {
  17470. source: "./media/characters/anima/side.svg",
  17471. bottom: 0.035
  17472. }
  17473. },
  17474. },
  17475. [
  17476. {
  17477. name: "Normal",
  17478. height: math.unit(8, "feet"),
  17479. default: true
  17480. },
  17481. ]
  17482. ))
  17483. characterMakers.push(() => makeCharacter(
  17484. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17485. {
  17486. front: {
  17487. height: math.unit(8, "feet"),
  17488. weight: math.unit(350, "lb"),
  17489. name: "Front",
  17490. image: {
  17491. source: "./media/characters/bianca/front.svg",
  17492. extra: 234 / 225,
  17493. bottom: 0.03
  17494. }
  17495. },
  17496. },
  17497. [
  17498. {
  17499. name: "Normal",
  17500. height: math.unit(8, "feet"),
  17501. default: true
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17507. {
  17508. front: {
  17509. height: math.unit(6, "feet"),
  17510. weight: math.unit(150, "lb"),
  17511. name: "Front",
  17512. image: {
  17513. source: "./media/characters/adinia/front.svg",
  17514. extra: 1845 / 1672,
  17515. bottom: 0.02
  17516. }
  17517. },
  17518. back: {
  17519. height: math.unit(6, "feet"),
  17520. weight: math.unit(150, "lb"),
  17521. name: "Back",
  17522. image: {
  17523. source: "./media/characters/adinia/back.svg",
  17524. extra: 1845 / 1672,
  17525. bottom: 0.002
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(11 + 5 / 12, "feet"),
  17533. default: true
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17539. {
  17540. front: {
  17541. height: math.unit(3, "meters"),
  17542. weight: math.unit(200, "kg"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/lykasa/front.svg",
  17546. extra: 1076 / 976,
  17547. bottom: 0.06
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(3, "meters")
  17555. },
  17556. {
  17557. name: "Kaiju",
  17558. height: math.unit(120, "meters"),
  17559. default: true
  17560. },
  17561. {
  17562. name: "Mega Kaiju",
  17563. height: math.unit(240, "km")
  17564. },
  17565. {
  17566. name: "Giga Kaiju",
  17567. height: math.unit(400, "megameters")
  17568. },
  17569. {
  17570. name: "Tera Kaiju",
  17571. height: math.unit(800, "gigameters")
  17572. },
  17573. {
  17574. name: "Kaiju Dragon Goddess",
  17575. height: math.unit(26, "zettaparsecs")
  17576. },
  17577. ]
  17578. ))
  17579. characterMakers.push(() => makeCharacter(
  17580. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17581. {
  17582. side: {
  17583. height: math.unit(283 / 124 * 6, "feet"),
  17584. weight: math.unit(35000, "lb"),
  17585. name: "Side",
  17586. image: {
  17587. source: "./media/characters/malfaren/side.svg",
  17588. extra: 2500 / 1010,
  17589. bottom: 0.01
  17590. }
  17591. },
  17592. front: {
  17593. height: math.unit(22.36, "feet"),
  17594. weight: math.unit(35000, "lb"),
  17595. name: "Front",
  17596. image: {
  17597. source: "./media/characters/malfaren/front.svg",
  17598. extra: 1631 / 1476,
  17599. bottom: 0.01
  17600. }
  17601. },
  17602. maw: {
  17603. height: math.unit(6.9, "feet"),
  17604. name: "Maw",
  17605. image: {
  17606. source: "./media/characters/malfaren/maw.svg"
  17607. }
  17608. },
  17609. },
  17610. [
  17611. {
  17612. name: "Big",
  17613. height: math.unit(283 / 162 * 6, "feet"),
  17614. },
  17615. {
  17616. name: "Bigger",
  17617. height: math.unit(283 / 124 * 6, "feet")
  17618. },
  17619. {
  17620. name: "Massive",
  17621. height: math.unit(283 / 92 * 6, "feet"),
  17622. default: true
  17623. },
  17624. {
  17625. name: "👀💦",
  17626. height: math.unit(283 / 73 * 6, "feet"),
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17632. {
  17633. front: {
  17634. height: math.unit(1.7, "m"),
  17635. weight: math.unit(70, "kg"),
  17636. name: "Front",
  17637. image: {
  17638. source: "./media/characters/kernel/front.svg",
  17639. extra: 222 / 210,
  17640. bottom: 0.007
  17641. }
  17642. },
  17643. },
  17644. [
  17645. {
  17646. name: "Nano",
  17647. height: math.unit(17, "micrometers")
  17648. },
  17649. {
  17650. name: "Micro",
  17651. height: math.unit(1.7, "mm")
  17652. },
  17653. {
  17654. name: "Small",
  17655. height: math.unit(1.7, "cm")
  17656. },
  17657. {
  17658. name: "Normal",
  17659. height: math.unit(1.7, "m"),
  17660. default: true
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17666. {
  17667. front: {
  17668. height: math.unit(1.75, "meters"),
  17669. weight: math.unit(65, "kg"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/jayne-folest/front.svg",
  17673. extra: 2115 / 2007,
  17674. bottom: 0.02
  17675. }
  17676. },
  17677. back: {
  17678. height: math.unit(1.75, "meters"),
  17679. weight: math.unit(65, "kg"),
  17680. name: "Back",
  17681. image: {
  17682. source: "./media/characters/jayne-folest/back.svg",
  17683. extra: 2115 / 2007,
  17684. bottom: 0.005
  17685. }
  17686. },
  17687. frontClothed: {
  17688. height: math.unit(1.75, "meters"),
  17689. weight: math.unit(65, "kg"),
  17690. name: "Front (Clothed)",
  17691. image: {
  17692. source: "./media/characters/jayne-folest/front-clothed.svg",
  17693. extra: 2115 / 2007,
  17694. bottom: 0.035
  17695. }
  17696. },
  17697. hand: {
  17698. height: math.unit(1 / 1.260, "feet"),
  17699. name: "Hand",
  17700. image: {
  17701. source: "./media/characters/jayne-folest/hand.svg"
  17702. }
  17703. },
  17704. foot: {
  17705. height: math.unit(1 / 0.918, "feet"),
  17706. name: "Foot",
  17707. image: {
  17708. source: "./media/characters/jayne-folest/foot.svg"
  17709. }
  17710. },
  17711. },
  17712. [
  17713. {
  17714. name: "Micro",
  17715. height: math.unit(4, "cm")
  17716. },
  17717. {
  17718. name: "Normal",
  17719. height: math.unit(1.75, "meters")
  17720. },
  17721. {
  17722. name: "Macro",
  17723. height: math.unit(47.5, "meters"),
  17724. default: true
  17725. },
  17726. ]
  17727. ))
  17728. characterMakers.push(() => makeCharacter(
  17729. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17730. {
  17731. front: {
  17732. height: math.unit(180, "cm"),
  17733. weight: math.unit(70, "kg"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/algier/front.svg",
  17737. extra: 596 / 572,
  17738. bottom: 0.04
  17739. }
  17740. },
  17741. back: {
  17742. height: math.unit(180, "cm"),
  17743. weight: math.unit(70, "kg"),
  17744. name: "Back",
  17745. image: {
  17746. source: "./media/characters/algier/back.svg",
  17747. extra: 596 / 572,
  17748. bottom: 0.025
  17749. }
  17750. },
  17751. frontdressed: {
  17752. height: math.unit(180, "cm"),
  17753. weight: math.unit(150, "kg"),
  17754. name: "Front-dressed",
  17755. image: {
  17756. source: "./media/characters/algier/front-dressed.svg",
  17757. extra: 596 / 572,
  17758. bottom: 0.038
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Micro",
  17765. height: math.unit(5, "cm")
  17766. },
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(180, "cm"),
  17770. default: true
  17771. },
  17772. {
  17773. name: "Macro",
  17774. height: math.unit(64, "m")
  17775. },
  17776. ]
  17777. ))
  17778. characterMakers.push(() => makeCharacter(
  17779. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17780. {
  17781. upright: {
  17782. height: math.unit(7, "feet"),
  17783. weight: math.unit(300, "lb"),
  17784. name: "Upright",
  17785. image: {
  17786. source: "./media/characters/pretzel/upright.svg",
  17787. extra: 534 / 522,
  17788. bottom: 0.065
  17789. }
  17790. },
  17791. sprawling: {
  17792. height: math.unit(3.75, "feet"),
  17793. weight: math.unit(300, "lb"),
  17794. name: "Sprawling",
  17795. image: {
  17796. source: "./media/characters/pretzel/sprawling.svg",
  17797. extra: 314 / 281,
  17798. bottom: 0.1
  17799. }
  17800. },
  17801. tongue: {
  17802. height: math.unit(2, "feet"),
  17803. name: "Tongue",
  17804. image: {
  17805. source: "./media/characters/pretzel/tongue.svg"
  17806. }
  17807. },
  17808. },
  17809. [
  17810. {
  17811. name: "Normal",
  17812. height: math.unit(7, "feet"),
  17813. default: true
  17814. },
  17815. {
  17816. name: "Oversized",
  17817. height: math.unit(15, "feet")
  17818. },
  17819. {
  17820. name: "Huge",
  17821. height: math.unit(30, "feet")
  17822. },
  17823. {
  17824. name: "Macro",
  17825. height: math.unit(250, "feet")
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17831. {
  17832. sideFront: {
  17833. height: math.unit(5 + 2 / 12, "feet"),
  17834. weight: math.unit(120, "lb"),
  17835. name: "Front Side",
  17836. image: {
  17837. source: "./media/characters/roxi/side-front.svg",
  17838. extra: 2924 / 2717,
  17839. bottom: 0.08
  17840. }
  17841. },
  17842. sideBack: {
  17843. height: math.unit(5 + 2 / 12, "feet"),
  17844. weight: math.unit(120, "lb"),
  17845. name: "Back Side",
  17846. image: {
  17847. source: "./media/characters/roxi/side-back.svg",
  17848. extra: 2904 / 2693,
  17849. bottom: 0.06
  17850. }
  17851. },
  17852. front: {
  17853. height: math.unit(5 + 2 / 12, "feet"),
  17854. weight: math.unit(120, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/roxi/front.svg",
  17858. extra: 2028 / 1907,
  17859. bottom: 0.01
  17860. }
  17861. },
  17862. frontAlt: {
  17863. height: math.unit(5 + 2 / 12, "feet"),
  17864. weight: math.unit(120, "lb"),
  17865. name: "Front (Alt)",
  17866. image: {
  17867. source: "./media/characters/roxi/front-alt.svg",
  17868. extra: 1828 / 1798,
  17869. bottom: 0.01
  17870. }
  17871. },
  17872. sitting: {
  17873. height: math.unit(2.8, "feet"),
  17874. weight: math.unit(120, "lb"),
  17875. name: "Sitting",
  17876. image: {
  17877. source: "./media/characters/roxi/sitting.svg",
  17878. extra: 2660 / 2462,
  17879. bottom: 0.1
  17880. }
  17881. },
  17882. },
  17883. [
  17884. {
  17885. name: "Normal",
  17886. height: math.unit(5 + 2 / 12, "feet"),
  17887. default: true
  17888. },
  17889. ]
  17890. ))
  17891. characterMakers.push(() => makeCharacter(
  17892. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17893. {
  17894. side: {
  17895. height: math.unit(55, "feet"),
  17896. weight: math.unit(153, "tons"),
  17897. name: "Side",
  17898. image: {
  17899. source: "./media/characters/shadow/side.svg",
  17900. extra: 701 / 628,
  17901. bottom: 0.02
  17902. }
  17903. },
  17904. flying: {
  17905. height: math.unit(145, "feet"),
  17906. weight: math.unit(153, "tons"),
  17907. name: "Flying",
  17908. image: {
  17909. source: "./media/characters/shadow/flying.svg"
  17910. }
  17911. },
  17912. },
  17913. [
  17914. {
  17915. name: "Normal",
  17916. height: math.unit(55, "feet"),
  17917. default: true
  17918. },
  17919. ]
  17920. ))
  17921. characterMakers.push(() => makeCharacter(
  17922. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17923. {
  17924. front: {
  17925. height: math.unit(6, "feet"),
  17926. weight: math.unit(200, "lb"),
  17927. name: "Front",
  17928. image: {
  17929. source: "./media/characters/marcie/front.svg",
  17930. extra: 960 / 876,
  17931. bottom: 58 / 1017.87
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Macro",
  17938. height: math.unit(1, "mile"),
  17939. default: true
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17945. {
  17946. front: {
  17947. height: math.unit(7, "feet"),
  17948. weight: math.unit(200, "lb"),
  17949. name: "Front",
  17950. image: {
  17951. source: "./media/characters/kachina/front.svg",
  17952. extra: 1290.68 / 1119,
  17953. bottom: 36.5 / 1327.18
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(7, "feet"),
  17961. default: true
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17967. {
  17968. looking: {
  17969. height: math.unit(2, "meters"),
  17970. weight: math.unit(300, "kg"),
  17971. name: "Looking",
  17972. image: {
  17973. source: "./media/characters/kash/looking.svg",
  17974. extra: 474 / 344,
  17975. bottom: 0.03
  17976. }
  17977. },
  17978. side: {
  17979. height: math.unit(2, "meters"),
  17980. weight: math.unit(300, "kg"),
  17981. name: "Side",
  17982. image: {
  17983. source: "./media/characters/kash/side.svg",
  17984. extra: 302 / 251,
  17985. bottom: 0.03
  17986. }
  17987. },
  17988. front: {
  17989. height: math.unit(2, "meters"),
  17990. weight: math.unit(300, "kg"),
  17991. name: "Front",
  17992. image: {
  17993. source: "./media/characters/kash/front.svg",
  17994. extra: 495 / 360,
  17995. bottom: 0.015
  17996. }
  17997. },
  17998. },
  17999. [
  18000. {
  18001. name: "Normal",
  18002. height: math.unit(2, "meters"),
  18003. default: true
  18004. },
  18005. {
  18006. name: "Big",
  18007. height: math.unit(3, "meters")
  18008. },
  18009. {
  18010. name: "Large",
  18011. height: math.unit(5, "meters")
  18012. },
  18013. ]
  18014. ))
  18015. characterMakers.push(() => makeCharacter(
  18016. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18017. {
  18018. feeding: {
  18019. height: math.unit(6.7, "feet"),
  18020. weight: math.unit(350, "lb"),
  18021. name: "Feeding",
  18022. image: {
  18023. source: "./media/characters/lalim/feeding.svg",
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Normal",
  18030. height: math.unit(6.7, "feet"),
  18031. default: true
  18032. },
  18033. ]
  18034. ))
  18035. characterMakers.push(() => makeCharacter(
  18036. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18037. {
  18038. front: {
  18039. height: math.unit(9.5, "feet"),
  18040. weight: math.unit(600, "lb"),
  18041. name: "Front",
  18042. image: {
  18043. source: "./media/characters/de'vout/front.svg",
  18044. extra: 1443 / 1328,
  18045. bottom: 0.025
  18046. }
  18047. },
  18048. back: {
  18049. height: math.unit(9.5, "feet"),
  18050. weight: math.unit(600, "lb"),
  18051. name: "Back",
  18052. image: {
  18053. source: "./media/characters/de'vout/back.svg",
  18054. extra: 1443 / 1328
  18055. }
  18056. },
  18057. frontDressed: {
  18058. height: math.unit(9.5, "feet"),
  18059. weight: math.unit(600, "lb"),
  18060. name: "Front (Dressed",
  18061. image: {
  18062. source: "./media/characters/de'vout/front-dressed.svg",
  18063. extra: 1443 / 1328,
  18064. bottom: 0.025
  18065. }
  18066. },
  18067. backDressed: {
  18068. height: math.unit(9.5, "feet"),
  18069. weight: math.unit(600, "lb"),
  18070. name: "Back (Dressed",
  18071. image: {
  18072. source: "./media/characters/de'vout/back-dressed.svg",
  18073. extra: 1443 / 1328
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(9.5, "feet"),
  18081. default: true
  18082. },
  18083. ]
  18084. ))
  18085. characterMakers.push(() => makeCharacter(
  18086. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18087. {
  18088. front: {
  18089. height: math.unit(8, "feet"),
  18090. weight: math.unit(225, "lb"),
  18091. name: "Front",
  18092. image: {
  18093. source: "./media/characters/talana/front.svg",
  18094. extra: 1410 / 1300,
  18095. bottom: 0.015
  18096. }
  18097. },
  18098. frontDressed: {
  18099. height: math.unit(8, "feet"),
  18100. weight: math.unit(225, "lb"),
  18101. name: "Front (Dressed",
  18102. image: {
  18103. source: "./media/characters/talana/front-dressed.svg",
  18104. extra: 1410 / 1300,
  18105. bottom: 0.015
  18106. }
  18107. },
  18108. },
  18109. [
  18110. {
  18111. name: "Normal",
  18112. height: math.unit(8, "feet"),
  18113. default: true
  18114. },
  18115. ]
  18116. ))
  18117. characterMakers.push(() => makeCharacter(
  18118. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18119. {
  18120. side: {
  18121. height: math.unit(7.2, "feet"),
  18122. weight: math.unit(150, "lb"),
  18123. name: "Side",
  18124. image: {
  18125. source: "./media/characters/xeauvok/side.svg",
  18126. extra: 1975 / 1523,
  18127. bottom: 0.07
  18128. }
  18129. },
  18130. },
  18131. [
  18132. {
  18133. name: "Normal",
  18134. height: math.unit(7.2, "feet"),
  18135. default: true
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18141. {
  18142. side: {
  18143. height: math.unit(10, "feet"),
  18144. weight: math.unit(900, "kg"),
  18145. name: "Side",
  18146. image: {
  18147. source: "./media/characters/zara/side.svg",
  18148. extra: 504 / 498
  18149. }
  18150. },
  18151. },
  18152. [
  18153. {
  18154. name: "Normal",
  18155. height: math.unit(10, "feet"),
  18156. default: true
  18157. },
  18158. ]
  18159. ))
  18160. characterMakers.push(() => makeCharacter(
  18161. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18162. {
  18163. side: {
  18164. height: math.unit(6, "feet"),
  18165. weight: math.unit(150, "lb"),
  18166. name: "Side",
  18167. image: {
  18168. source: "./media/characters/richard-dragon/side.svg",
  18169. extra: 845 / 340,
  18170. bottom: 0.017
  18171. }
  18172. },
  18173. maw: {
  18174. height: math.unit(2.97, "feet"),
  18175. name: "Maw",
  18176. image: {
  18177. source: "./media/characters/richard-dragon/maw.svg"
  18178. }
  18179. },
  18180. },
  18181. [
  18182. ]
  18183. ))
  18184. characterMakers.push(() => makeCharacter(
  18185. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18186. {
  18187. front: {
  18188. height: math.unit(4, "feet"),
  18189. weight: math.unit(100, "lb"),
  18190. name: "Front",
  18191. image: {
  18192. source: "./media/characters/richard-smeargle/front.svg",
  18193. extra: 2952 / 2820,
  18194. bottom: 0.028
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(4, "feet"),
  18202. default: true
  18203. },
  18204. {
  18205. name: "Dynamax",
  18206. height: math.unit(20, "meters")
  18207. },
  18208. ]
  18209. ))
  18210. characterMakers.push(() => makeCharacter(
  18211. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18212. {
  18213. front: {
  18214. height: math.unit(6, "feet"),
  18215. weight: math.unit(110, "lb"),
  18216. name: "Front",
  18217. image: {
  18218. source: "./media/characters/klay/front.svg",
  18219. extra: 962 / 883,
  18220. bottom: 0.04
  18221. }
  18222. },
  18223. back: {
  18224. height: math.unit(6, "feet"),
  18225. weight: math.unit(110, "lb"),
  18226. name: "Back",
  18227. image: {
  18228. source: "./media/characters/klay/back.svg",
  18229. extra: 962 / 883
  18230. }
  18231. },
  18232. beans: {
  18233. height: math.unit(1.15, "feet"),
  18234. name: "Beans",
  18235. image: {
  18236. source: "./media/characters/klay/beans.svg"
  18237. }
  18238. },
  18239. },
  18240. [
  18241. {
  18242. name: "Micro",
  18243. height: math.unit(6, "inches")
  18244. },
  18245. {
  18246. name: "Mini",
  18247. height: math.unit(3, "feet")
  18248. },
  18249. {
  18250. name: "Normal",
  18251. height: math.unit(6, "feet"),
  18252. default: true
  18253. },
  18254. {
  18255. name: "Big",
  18256. height: math.unit(25, "feet")
  18257. },
  18258. {
  18259. name: "Macro",
  18260. height: math.unit(100, "feet")
  18261. },
  18262. {
  18263. name: "Megamacro",
  18264. height: math.unit(400, "feet")
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(6, "feet"),
  18273. weight: math.unit(160, "lb"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/marcus/front.svg",
  18277. extra: 734 / 676,
  18278. bottom: 0.03
  18279. }
  18280. },
  18281. },
  18282. [
  18283. {
  18284. name: "Little",
  18285. height: math.unit(6, "feet")
  18286. },
  18287. {
  18288. name: "Normal",
  18289. height: math.unit(110, "feet"),
  18290. default: true
  18291. },
  18292. {
  18293. name: "Macro",
  18294. height: math.unit(250, "feet")
  18295. },
  18296. {
  18297. name: "Megamacro",
  18298. height: math.unit(1000, "feet")
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18304. {
  18305. front: {
  18306. height: math.unit(7, "feet"),
  18307. weight: math.unit(275, "lb"),
  18308. name: "Front",
  18309. image: {
  18310. source: "./media/characters/claude-delroute/front.svg",
  18311. extra: 230 / 214,
  18312. bottom: 0.007
  18313. }
  18314. },
  18315. side: {
  18316. height: math.unit(7, "feet"),
  18317. weight: math.unit(275, "lb"),
  18318. name: "Side",
  18319. image: {
  18320. source: "./media/characters/claude-delroute/side.svg",
  18321. extra: 222 / 214,
  18322. bottom: 0.01
  18323. }
  18324. },
  18325. back: {
  18326. height: math.unit(7, "feet"),
  18327. weight: math.unit(275, "lb"),
  18328. name: "Back",
  18329. image: {
  18330. source: "./media/characters/claude-delroute/back.svg",
  18331. extra: 230 / 214,
  18332. bottom: 0.015
  18333. }
  18334. },
  18335. maw: {
  18336. height: math.unit(0.6407, "meters"),
  18337. name: "Maw",
  18338. image: {
  18339. source: "./media/characters/claude-delroute/maw.svg"
  18340. }
  18341. },
  18342. },
  18343. [
  18344. {
  18345. name: "Normal",
  18346. height: math.unit(7, "feet"),
  18347. default: true
  18348. },
  18349. {
  18350. name: "Lorge",
  18351. height: math.unit(20, "feet")
  18352. },
  18353. ]
  18354. ))
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18357. {
  18358. front: {
  18359. height: math.unit(8 + 4 / 12, "feet"),
  18360. weight: math.unit(600, "lb"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/dragonien/front.svg",
  18364. extra: 100 / 94,
  18365. bottom: 3.3 / 103.3445
  18366. }
  18367. },
  18368. back: {
  18369. height: math.unit(8 + 4 / 12, "feet"),
  18370. weight: math.unit(600, "lb"),
  18371. name: "Back",
  18372. image: {
  18373. source: "./media/characters/dragonien/back.svg",
  18374. extra: 776 / 746,
  18375. bottom: 6.4 / 782.0616
  18376. }
  18377. },
  18378. foot: {
  18379. height: math.unit(1.54, "feet"),
  18380. name: "Foot",
  18381. image: {
  18382. source: "./media/characters/dragonien/foot.svg",
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Normal",
  18389. height: math.unit(8 + 4 / 12, "feet"),
  18390. default: true
  18391. },
  18392. {
  18393. name: "Macro",
  18394. height: math.unit(200, "feet")
  18395. },
  18396. {
  18397. name: "Megamacro",
  18398. height: math.unit(1, "mile")
  18399. },
  18400. {
  18401. name: "Gigamacro",
  18402. height: math.unit(1000, "miles")
  18403. },
  18404. ]
  18405. ))
  18406. characterMakers.push(() => makeCharacter(
  18407. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18408. {
  18409. front: {
  18410. height: math.unit(5 + 2 / 12, "feet"),
  18411. weight: math.unit(110, "lb"),
  18412. name: "Front",
  18413. image: {
  18414. source: "./media/characters/desta/front.svg",
  18415. extra: 767 / 726,
  18416. bottom: 11.7 / 779
  18417. }
  18418. },
  18419. back: {
  18420. height: math.unit(5 + 2 / 12, "feet"),
  18421. weight: math.unit(110, "lb"),
  18422. name: "Back",
  18423. image: {
  18424. source: "./media/characters/desta/back.svg",
  18425. extra: 777 / 728,
  18426. bottom: 6 / 784
  18427. }
  18428. },
  18429. frontAlt: {
  18430. height: math.unit(5 + 2 / 12, "feet"),
  18431. weight: math.unit(110, "lb"),
  18432. name: "Front",
  18433. image: {
  18434. source: "./media/characters/desta/front-alt.svg",
  18435. extra: 1482 / 1417
  18436. }
  18437. },
  18438. side: {
  18439. height: math.unit(5 + 2 / 12, "feet"),
  18440. weight: math.unit(110, "lb"),
  18441. name: "Side",
  18442. image: {
  18443. source: "./media/characters/desta/side.svg",
  18444. extra: 2579 / 2491,
  18445. bottom: 0.053
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Micro",
  18452. height: math.unit(6, "inches")
  18453. },
  18454. {
  18455. name: "Normal",
  18456. height: math.unit(5 + 2 / 12, "feet"),
  18457. default: true
  18458. },
  18459. {
  18460. name: "Macro",
  18461. height: math.unit(62, "feet")
  18462. },
  18463. {
  18464. name: "Megamacro",
  18465. height: math.unit(1800, "feet")
  18466. },
  18467. ]
  18468. ))
  18469. characterMakers.push(() => makeCharacter(
  18470. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18471. {
  18472. front: {
  18473. height: math.unit(10, "feet"),
  18474. weight: math.unit(700, "lb"),
  18475. name: "Front",
  18476. image: {
  18477. source: "./media/characters/storm-alystar/front.svg",
  18478. extra: 2112 / 1898,
  18479. bottom: 0.034
  18480. }
  18481. },
  18482. },
  18483. [
  18484. {
  18485. name: "Micro",
  18486. height: math.unit(3.5, "inches")
  18487. },
  18488. {
  18489. name: "Normal",
  18490. height: math.unit(10, "feet"),
  18491. default: true
  18492. },
  18493. {
  18494. name: "Macro",
  18495. height: math.unit(400, "feet")
  18496. },
  18497. {
  18498. name: "Deific",
  18499. height: math.unit(60, "miles")
  18500. },
  18501. ]
  18502. ))
  18503. characterMakers.push(() => makeCharacter(
  18504. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18505. {
  18506. front: {
  18507. height: math.unit(2.35, "meters"),
  18508. weight: math.unit(119, "kg"),
  18509. name: "Front",
  18510. image: {
  18511. source: "./media/characters/ilia/front.svg",
  18512. extra: 1285 / 1255,
  18513. bottom: 0.06
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Normal",
  18520. height: math.unit(2.35, "meters")
  18521. },
  18522. {
  18523. name: "Macro",
  18524. height: math.unit(140, "meters"),
  18525. default: true
  18526. },
  18527. {
  18528. name: "Megamacro",
  18529. height: math.unit(100, "miles")
  18530. },
  18531. ]
  18532. ))
  18533. characterMakers.push(() => makeCharacter(
  18534. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18535. {
  18536. front: {
  18537. height: math.unit(6 + 5 / 12, "feet"),
  18538. weight: math.unit(190, "lb"),
  18539. name: "Front",
  18540. image: {
  18541. source: "./media/characters/kingdead/front.svg",
  18542. extra: 1228 / 1177
  18543. }
  18544. },
  18545. },
  18546. [
  18547. {
  18548. name: "Micro",
  18549. height: math.unit(7, "inches")
  18550. },
  18551. {
  18552. name: "Normal",
  18553. height: math.unit(6 + 5 / 12, "feet")
  18554. },
  18555. {
  18556. name: "Macro",
  18557. height: math.unit(150, "feet"),
  18558. default: true
  18559. },
  18560. {
  18561. name: "Megamacro",
  18562. height: math.unit(200, "miles")
  18563. },
  18564. ]
  18565. ))
  18566. characterMakers.push(() => makeCharacter(
  18567. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18568. {
  18569. front: {
  18570. height: math.unit(8, "feet"),
  18571. weight: math.unit(600, "lb"),
  18572. name: "Front",
  18573. image: {
  18574. source: "./media/characters/kyrehx/front.svg",
  18575. extra: 1195 / 1095,
  18576. bottom: 0.034
  18577. }
  18578. },
  18579. },
  18580. [
  18581. {
  18582. name: "Micro",
  18583. height: math.unit(2, "inches")
  18584. },
  18585. {
  18586. name: "Normal",
  18587. height: math.unit(8, "feet"),
  18588. default: true
  18589. },
  18590. {
  18591. name: "Macro",
  18592. height: math.unit(255, "feet")
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18598. {
  18599. front: {
  18600. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18601. weight: math.unit(184, "lb"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/xang/front.svg",
  18605. extra: 845 / 755
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18613. default: true
  18614. },
  18615. {
  18616. name: "Macro",
  18617. height: math.unit(0.935 * 146, "feet")
  18618. },
  18619. {
  18620. name: "Megamacro",
  18621. height: math.unit(0.935 * 3, "miles")
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18627. {
  18628. frontDressed: {
  18629. height: math.unit(5 + 7 / 12, "feet"),
  18630. weight: math.unit(140, "lb"),
  18631. name: "Front (Dressed)",
  18632. image: {
  18633. source: "./media/characters/doc-weardno/front-dressed.svg",
  18634. extra: 263 / 234
  18635. }
  18636. },
  18637. backDressed: {
  18638. height: math.unit(5 + 7 / 12, "feet"),
  18639. weight: math.unit(140, "lb"),
  18640. name: "Back (Dressed)",
  18641. image: {
  18642. source: "./media/characters/doc-weardno/back-dressed.svg",
  18643. extra: 266 / 238
  18644. }
  18645. },
  18646. front: {
  18647. height: math.unit(5 + 7 / 12, "feet"),
  18648. weight: math.unit(140, "lb"),
  18649. name: "Front",
  18650. image: {
  18651. source: "./media/characters/doc-weardno/front.svg",
  18652. extra: 254 / 233
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Micro",
  18659. height: math.unit(3, "inches")
  18660. },
  18661. {
  18662. name: "Normal",
  18663. height: math.unit(5 + 7 / 12, "feet"),
  18664. default: true
  18665. },
  18666. {
  18667. name: "Macro",
  18668. height: math.unit(25, "feet")
  18669. },
  18670. {
  18671. name: "Megamacro",
  18672. height: math.unit(2, "miles")
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18678. {
  18679. front: {
  18680. height: math.unit(6 + 2 / 12, "feet"),
  18681. weight: math.unit(153, "lb"),
  18682. name: "Front",
  18683. image: {
  18684. source: "./media/characters/seth-whilst/front.svg",
  18685. bottom: 0.07
  18686. }
  18687. },
  18688. },
  18689. [
  18690. {
  18691. name: "Micro",
  18692. height: math.unit(5, "inches")
  18693. },
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(6 + 2 / 12, "feet"),
  18697. default: true
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(3, "inches"),
  18706. weight: math.unit(8, "grams"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/pocket-jabari/front.svg",
  18710. extra: 1024 / 974,
  18711. bottom: 0.039
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Minimicro",
  18718. height: math.unit(8, "mm")
  18719. },
  18720. {
  18721. name: "Micro",
  18722. height: math.unit(3, "inches"),
  18723. default: true
  18724. },
  18725. {
  18726. name: "Normal",
  18727. height: math.unit(3, "feet")
  18728. },
  18729. ]
  18730. ))
  18731. characterMakers.push(() => makeCharacter(
  18732. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18733. {
  18734. front: {
  18735. height: math.unit(15, "feet"),
  18736. weight: math.unit(3280, "lb"),
  18737. name: "Front",
  18738. image: {
  18739. source: "./media/characters/sapphy/front.svg",
  18740. extra: 671 / 577,
  18741. bottom: 0.085
  18742. }
  18743. },
  18744. back: {
  18745. height: math.unit(15, "feet"),
  18746. weight: math.unit(3280, "lb"),
  18747. name: "Back",
  18748. image: {
  18749. source: "./media/characters/sapphy/back.svg",
  18750. extra: 631 / 607,
  18751. bottom: 0.045
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(15, "feet")
  18759. },
  18760. {
  18761. name: "Casual Macro",
  18762. height: math.unit(120, "feet")
  18763. },
  18764. {
  18765. name: "Macro",
  18766. height: math.unit(2150, "feet"),
  18767. default: true
  18768. },
  18769. {
  18770. name: "Megamacro",
  18771. height: math.unit(8, "miles")
  18772. },
  18773. {
  18774. name: "Galaxy Mom",
  18775. height: math.unit(6, "megalightyears")
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(6, "feet"),
  18784. weight: math.unit(170, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/kiro/front.svg",
  18788. extra: 1064 / 1012,
  18789. bottom: 0.052
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Micro",
  18796. height: math.unit(6, "inches")
  18797. },
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(6, "feet"),
  18801. default: true
  18802. },
  18803. {
  18804. name: "Macro",
  18805. height: math.unit(72, "feet")
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18811. {
  18812. front: {
  18813. height: math.unit(5 + 9 / 12, "feet"),
  18814. weight: math.unit(175, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/irishfox/front.svg",
  18818. extra: 1912 / 1680,
  18819. bottom: 0.02
  18820. }
  18821. },
  18822. },
  18823. [
  18824. {
  18825. name: "Nano",
  18826. height: math.unit(1, "mm")
  18827. },
  18828. {
  18829. name: "Micro",
  18830. height: math.unit(2, "inches")
  18831. },
  18832. {
  18833. name: "Normal",
  18834. height: math.unit(5 + 9 / 12, "feet"),
  18835. default: true
  18836. },
  18837. {
  18838. name: "Macro",
  18839. height: math.unit(45, "feet")
  18840. },
  18841. ]
  18842. ))
  18843. characterMakers.push(() => makeCharacter(
  18844. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18845. {
  18846. front: {
  18847. height: math.unit(6 + 1 / 12, "feet"),
  18848. weight: math.unit(75, "lb"),
  18849. name: "Front",
  18850. image: {
  18851. source: "./media/characters/aronai-sieyes/front.svg",
  18852. extra: 1556 / 1480,
  18853. bottom: 0.015
  18854. }
  18855. },
  18856. side: {
  18857. height: math.unit(6 + 1 / 12, "feet"),
  18858. weight: math.unit(75, "lb"),
  18859. name: "Side",
  18860. image: {
  18861. source: "./media/characters/aronai-sieyes/side.svg",
  18862. extra: 1433 / 1390,
  18863. bottom: 0.0393
  18864. }
  18865. },
  18866. back: {
  18867. height: math.unit(6 + 1 / 12, "feet"),
  18868. weight: math.unit(75, "lb"),
  18869. name: "Back",
  18870. image: {
  18871. source: "./media/characters/aronai-sieyes/back.svg",
  18872. extra: 1544 / 1494,
  18873. bottom: 0.02
  18874. }
  18875. },
  18876. frontClothed: {
  18877. height: math.unit(6 + 1 / 12, "feet"),
  18878. weight: math.unit(75, "lb"),
  18879. name: "Front (Clothed)",
  18880. image: {
  18881. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18882. extra: 1582 / 1527
  18883. }
  18884. },
  18885. feral: {
  18886. height: math.unit(18, "feet"),
  18887. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18888. name: "Feral",
  18889. image: {
  18890. source: "./media/characters/aronai-sieyes/feral.svg",
  18891. extra: 1530 / 1240,
  18892. bottom: 0.035
  18893. }
  18894. },
  18895. },
  18896. [
  18897. {
  18898. name: "Micro",
  18899. height: math.unit(2, "inches")
  18900. },
  18901. {
  18902. name: "Normal",
  18903. height: math.unit(6 + 1 / 12, "feet"),
  18904. default: true
  18905. }
  18906. ]
  18907. ))
  18908. characterMakers.push(() => makeCharacter(
  18909. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18910. {
  18911. front: {
  18912. height: math.unit(12, "feet"),
  18913. weight: math.unit(410, "kg"),
  18914. name: "Front",
  18915. image: {
  18916. source: "./media/characters/xuna/front.svg",
  18917. extra: 2184 / 1980
  18918. }
  18919. },
  18920. side: {
  18921. height: math.unit(12, "feet"),
  18922. weight: math.unit(410, "kg"),
  18923. name: "Side",
  18924. image: {
  18925. source: "./media/characters/xuna/side.svg",
  18926. extra: 2184 / 1980
  18927. }
  18928. },
  18929. back: {
  18930. height: math.unit(12, "feet"),
  18931. weight: math.unit(410, "kg"),
  18932. name: "Back",
  18933. image: {
  18934. source: "./media/characters/xuna/back.svg",
  18935. extra: 2184 / 1980
  18936. }
  18937. },
  18938. },
  18939. [
  18940. {
  18941. name: "Nano glow",
  18942. height: math.unit(10, "nm")
  18943. },
  18944. {
  18945. name: "Micro floof",
  18946. height: math.unit(0.3, "m")
  18947. },
  18948. {
  18949. name: "Huggable softy boi",
  18950. height: math.unit(3.6576, "m"),
  18951. default: true
  18952. },
  18953. {
  18954. name: "Admirable floof",
  18955. height: math.unit(80, "meters")
  18956. },
  18957. {
  18958. name: "Gentle macro",
  18959. height: math.unit(300, "meters")
  18960. },
  18961. {
  18962. name: "Very careful floof",
  18963. height: math.unit(3200, "meters")
  18964. },
  18965. {
  18966. name: "The mega floof",
  18967. height: math.unit(36000, "meters")
  18968. },
  18969. {
  18970. name: "Giga-fur-Wicker",
  18971. height: math.unit(4800000, "meters")
  18972. },
  18973. {
  18974. name: "Licky world",
  18975. height: math.unit(20000000, "meters")
  18976. },
  18977. {
  18978. name: "Floofy cyan sun",
  18979. height: math.unit(1500000000, "meters")
  18980. },
  18981. {
  18982. name: "Milky Wicker",
  18983. height: math.unit(1000000000000000000000, "meters")
  18984. },
  18985. {
  18986. name: "The observing Wicker",
  18987. height: math.unit(999999999999999999999999999, "meters")
  18988. },
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18993. {
  18994. front: {
  18995. height: math.unit(5 + 9 / 12, "feet"),
  18996. weight: math.unit(150, "lb"),
  18997. name: "Front",
  18998. image: {
  18999. source: "./media/characters/arokha-sieyes/front.svg",
  19000. extra: 1425 / 1284,
  19001. bottom: 0.05
  19002. }
  19003. },
  19004. },
  19005. [
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(5 + 9 / 12, "feet")
  19009. },
  19010. {
  19011. name: "Macro",
  19012. height: math.unit(30, "meters"),
  19013. default: true
  19014. },
  19015. ]
  19016. ))
  19017. characterMakers.push(() => makeCharacter(
  19018. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19019. {
  19020. front: {
  19021. height: math.unit(6, "feet"),
  19022. weight: math.unit(180, "lb"),
  19023. name: "Front",
  19024. image: {
  19025. source: "./media/characters/arokh-sieyes/front.svg",
  19026. extra: 1830 / 1769,
  19027. bottom: 0.01
  19028. }
  19029. },
  19030. },
  19031. [
  19032. {
  19033. name: "Normal",
  19034. height: math.unit(6, "feet")
  19035. },
  19036. {
  19037. name: "Macro",
  19038. height: math.unit(30, "meters"),
  19039. default: true
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19045. {
  19046. side: {
  19047. height: math.unit(13 + 1 / 12, "feet"),
  19048. weight: math.unit(8.5, "tonnes"),
  19049. name: "Side",
  19050. image: {
  19051. source: "./media/characters/goldeneye/side.svg",
  19052. extra: 1182 / 778,
  19053. bottom: 0.067
  19054. }
  19055. },
  19056. paw: {
  19057. height: math.unit(3.4, "feet"),
  19058. name: "Paw",
  19059. image: {
  19060. source: "./media/characters/goldeneye/paw.svg"
  19061. }
  19062. },
  19063. },
  19064. [
  19065. {
  19066. name: "Normal",
  19067. height: math.unit(13 + 1 / 12, "feet"),
  19068. default: true
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19074. {
  19075. front: {
  19076. height: math.unit(6 + 1 / 12, "feet"),
  19077. weight: math.unit(210, "lb"),
  19078. name: "Front",
  19079. image: {
  19080. source: "./media/characters/leonardo-lycheborne/front.svg",
  19081. extra: 390 / 365,
  19082. bottom: 0.032
  19083. }
  19084. },
  19085. side: {
  19086. height: math.unit(6 + 1 / 12, "feet"),
  19087. weight: math.unit(210, "lb"),
  19088. name: "Side",
  19089. image: {
  19090. source: "./media/characters/leonardo-lycheborne/side.svg",
  19091. extra: 390 / 365,
  19092. bottom: 0.005
  19093. }
  19094. },
  19095. back: {
  19096. height: math.unit(6 + 1 / 12, "feet"),
  19097. weight: math.unit(210, "lb"),
  19098. name: "Back",
  19099. image: {
  19100. source: "./media/characters/leonardo-lycheborne/back.svg",
  19101. extra: 392 / 366,
  19102. bottom: 0.01
  19103. }
  19104. },
  19105. hand: {
  19106. height: math.unit(1.08, "feet"),
  19107. name: "Hand",
  19108. image: {
  19109. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19110. }
  19111. },
  19112. foot: {
  19113. height: math.unit(1.32, "feet"),
  19114. name: "Foot",
  19115. image: {
  19116. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19117. }
  19118. },
  19119. were: {
  19120. height: math.unit(20, "feet"),
  19121. weight: math.unit(7800, "lb"),
  19122. name: "Were",
  19123. image: {
  19124. source: "./media/characters/leonardo-lycheborne/were.svg",
  19125. extra: 308 / 294,
  19126. bottom: 0.048
  19127. }
  19128. },
  19129. feral: {
  19130. height: math.unit(7.5, "feet"),
  19131. weight: math.unit(600, "lb"),
  19132. name: "Feral",
  19133. image: {
  19134. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19135. extra: 210 / 186,
  19136. bottom: 0.108
  19137. }
  19138. },
  19139. taur: {
  19140. height: math.unit(11, "feet"),
  19141. weight: math.unit(3300, "lb"),
  19142. name: "Taur",
  19143. image: {
  19144. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19145. extra: 320 / 303,
  19146. bottom: 0.025
  19147. }
  19148. },
  19149. barghest: {
  19150. height: math.unit(11, "feet"),
  19151. weight: math.unit(1300, "lb"),
  19152. name: "Barghest",
  19153. image: {
  19154. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19155. extra: 323 / 302,
  19156. bottom: 0.027
  19157. }
  19158. },
  19159. dick: {
  19160. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19161. name: "Dick",
  19162. image: {
  19163. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19164. }
  19165. },
  19166. dickWere: {
  19167. height: math.unit((20) / 3.8, "feet"),
  19168. name: "Dick (Were)",
  19169. image: {
  19170. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19171. }
  19172. },
  19173. },
  19174. [
  19175. {
  19176. name: "Normal",
  19177. height: math.unit(6 + 1 / 12, "feet"),
  19178. default: true
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19184. {
  19185. front: {
  19186. height: math.unit(10, "feet"),
  19187. weight: math.unit(350, "lb"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/jet/front.svg",
  19191. extra: 2050 / 1980,
  19192. bottom: 0.013
  19193. }
  19194. },
  19195. back: {
  19196. height: math.unit(10, "feet"),
  19197. weight: math.unit(350, "lb"),
  19198. name: "Back",
  19199. image: {
  19200. source: "./media/characters/jet/back.svg",
  19201. extra: 2050 / 1980,
  19202. bottom: 0.013
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Micro",
  19209. height: math.unit(6, "inches")
  19210. },
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(10, "feet"),
  19214. default: true
  19215. },
  19216. {
  19217. name: "Macro",
  19218. height: math.unit(100, "feet")
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19224. {
  19225. front: {
  19226. height: math.unit(15, "feet"),
  19227. weight: math.unit(2800, "lb"),
  19228. name: "Front",
  19229. image: {
  19230. source: "./media/characters/tanarath/front.svg",
  19231. extra: 2392 / 2220,
  19232. bottom: 0.03
  19233. }
  19234. },
  19235. back: {
  19236. height: math.unit(15, "feet"),
  19237. weight: math.unit(2800, "lb"),
  19238. name: "Back",
  19239. image: {
  19240. source: "./media/characters/tanarath/back.svg",
  19241. extra: 2392 / 2220,
  19242. bottom: 0.03
  19243. }
  19244. },
  19245. },
  19246. [
  19247. {
  19248. name: "Normal",
  19249. height: math.unit(15, "feet"),
  19250. default: true
  19251. },
  19252. ]
  19253. ))
  19254. characterMakers.push(() => makeCharacter(
  19255. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19256. {
  19257. front: {
  19258. height: math.unit(7 + 1 / 12, "feet"),
  19259. weight: math.unit(175, "lb"),
  19260. name: "Front",
  19261. image: {
  19262. source: "./media/characters/patty-cattybatty/front.svg",
  19263. extra: 908 / 874,
  19264. bottom: 0.025
  19265. }
  19266. },
  19267. },
  19268. [
  19269. {
  19270. name: "Micro",
  19271. height: math.unit(1, "inch")
  19272. },
  19273. {
  19274. name: "Normal",
  19275. height: math.unit(7 + 1 / 12, "feet")
  19276. },
  19277. {
  19278. name: "Mini Macro",
  19279. height: math.unit(155, "feet")
  19280. },
  19281. {
  19282. name: "Macro",
  19283. height: math.unit(1077, "feet")
  19284. },
  19285. {
  19286. name: "Mega Macro",
  19287. height: math.unit(47650, "feet"),
  19288. default: true
  19289. },
  19290. {
  19291. name: "Giga Macro",
  19292. height: math.unit(440, "miles")
  19293. },
  19294. {
  19295. name: "Tera Macro",
  19296. height: math.unit(8700, "miles")
  19297. },
  19298. {
  19299. name: "Planetary Macro",
  19300. height: math.unit(32700, "miles")
  19301. },
  19302. {
  19303. name: "Solar Macro",
  19304. height: math.unit(550000, "miles")
  19305. },
  19306. {
  19307. name: "Celestial Macro",
  19308. height: math.unit(2.5, "AU")
  19309. },
  19310. ]
  19311. ))
  19312. characterMakers.push(() => makeCharacter(
  19313. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19314. {
  19315. front: {
  19316. height: math.unit(4 + 5 / 12, "feet"),
  19317. weight: math.unit(90, "lb"),
  19318. name: "Front",
  19319. image: {
  19320. source: "./media/characters/cappu/front.svg",
  19321. extra: 1247 / 1152,
  19322. bottom: 0.012
  19323. }
  19324. },
  19325. },
  19326. [
  19327. {
  19328. name: "Normal",
  19329. height: math.unit(4 + 5 / 12, "feet"),
  19330. default: true
  19331. },
  19332. ]
  19333. ))
  19334. characterMakers.push(() => makeCharacter(
  19335. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19336. {
  19337. frontDressed: {
  19338. height: math.unit(70, "cm"),
  19339. weight: math.unit(6, "kg"),
  19340. name: "Front (Dressed)",
  19341. image: {
  19342. source: "./media/characters/sebi/front-dressed.svg",
  19343. extra: 713.5 / 686.5,
  19344. bottom: 0.003
  19345. }
  19346. },
  19347. front: {
  19348. height: math.unit(70, "cm"),
  19349. weight: math.unit(5, "kg"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/sebi/front.svg",
  19353. extra: 713.5 / 686.5,
  19354. bottom: 0.003
  19355. }
  19356. }
  19357. },
  19358. [
  19359. {
  19360. name: "Normal",
  19361. height: math.unit(70, "cm"),
  19362. default: true
  19363. },
  19364. {
  19365. name: "Macro",
  19366. height: math.unit(8, "meters")
  19367. },
  19368. ]
  19369. ))
  19370. characterMakers.push(() => makeCharacter(
  19371. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19372. {
  19373. front: {
  19374. height: math.unit(6, "feet"),
  19375. weight: math.unit(150, "lb"),
  19376. name: "Front",
  19377. image: {
  19378. source: "./media/characters/typhek/front.svg",
  19379. extra: 1948 / 1929,
  19380. bottom: 0.025
  19381. }
  19382. },
  19383. side: {
  19384. height: math.unit(6, "feet"),
  19385. weight: math.unit(150, "lb"),
  19386. name: "Side",
  19387. image: {
  19388. source: "./media/characters/typhek/side.svg",
  19389. extra: 2034 / 2010,
  19390. bottom: 0.003
  19391. }
  19392. },
  19393. back: {
  19394. height: math.unit(6, "feet"),
  19395. weight: math.unit(150, "lb"),
  19396. name: "Back",
  19397. image: {
  19398. source: "./media/characters/typhek/back.svg",
  19399. extra: 2005 / 1978,
  19400. bottom: 0.004
  19401. }
  19402. },
  19403. palm: {
  19404. height: math.unit(1.2, "feet"),
  19405. name: "Palm",
  19406. image: {
  19407. source: "./media/characters/typhek/palm.svg"
  19408. }
  19409. },
  19410. fist: {
  19411. height: math.unit(1.1, "feet"),
  19412. name: "Fist",
  19413. image: {
  19414. source: "./media/characters/typhek/fist.svg"
  19415. }
  19416. },
  19417. foot: {
  19418. height: math.unit(1.57, "feet"),
  19419. name: "Foot",
  19420. image: {
  19421. source: "./media/characters/typhek/foot.svg"
  19422. }
  19423. },
  19424. sole: {
  19425. height: math.unit(2.05, "feet"),
  19426. name: "Sole",
  19427. image: {
  19428. source: "./media/characters/typhek/sole.svg"
  19429. }
  19430. },
  19431. },
  19432. [
  19433. {
  19434. name: "Macro",
  19435. height: math.unit(40, "stories"),
  19436. default: true
  19437. },
  19438. {
  19439. name: "Megamacro",
  19440. height: math.unit(1, "mile")
  19441. },
  19442. {
  19443. name: "Gigamacro",
  19444. height: math.unit(4000, "solarradii")
  19445. },
  19446. {
  19447. name: "Universal",
  19448. height: math.unit(1.1, "universes")
  19449. }
  19450. ]
  19451. ))
  19452. characterMakers.push(() => makeCharacter(
  19453. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19454. {
  19455. side: {
  19456. height: math.unit(5 + 7 / 12, "feet"),
  19457. weight: math.unit(150, "lb"),
  19458. name: "Side",
  19459. image: {
  19460. source: "./media/characters/kassy/side.svg",
  19461. extra: 1280 / 1225,
  19462. bottom: 0.002
  19463. }
  19464. },
  19465. front: {
  19466. height: math.unit(5 + 7 / 12, "feet"),
  19467. weight: math.unit(150, "lb"),
  19468. name: "Front",
  19469. image: {
  19470. source: "./media/characters/kassy/front.svg",
  19471. extra: 1280 / 1225,
  19472. bottom: 0.025
  19473. }
  19474. },
  19475. back: {
  19476. height: math.unit(5 + 7 / 12, "feet"),
  19477. weight: math.unit(150, "lb"),
  19478. name: "Back",
  19479. image: {
  19480. source: "./media/characters/kassy/back.svg",
  19481. extra: 1280 / 1225,
  19482. bottom: 0.002
  19483. }
  19484. },
  19485. foot: {
  19486. height: math.unit(1.266, "feet"),
  19487. name: "Foot",
  19488. image: {
  19489. source: "./media/characters/kassy/foot.svg"
  19490. }
  19491. },
  19492. },
  19493. [
  19494. {
  19495. name: "Normal",
  19496. height: math.unit(5 + 7 / 12, "feet")
  19497. },
  19498. {
  19499. name: "Macro",
  19500. height: math.unit(137, "feet"),
  19501. default: true
  19502. },
  19503. {
  19504. name: "Megamacro",
  19505. height: math.unit(1, "mile")
  19506. },
  19507. ]
  19508. ))
  19509. characterMakers.push(() => makeCharacter(
  19510. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19511. {
  19512. front: {
  19513. height: math.unit(6 + 1 / 12, "feet"),
  19514. weight: math.unit(200, "lb"),
  19515. name: "Front",
  19516. image: {
  19517. source: "./media/characters/neil/front.svg",
  19518. extra: 1326 / 1250,
  19519. bottom: 0.023
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(6 + 1 / 12, "feet"),
  19527. default: true
  19528. },
  19529. {
  19530. name: "Macro",
  19531. height: math.unit(200, "feet")
  19532. },
  19533. ]
  19534. ))
  19535. characterMakers.push(() => makeCharacter(
  19536. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19537. {
  19538. front: {
  19539. height: math.unit(5 + 9 / 12, "feet"),
  19540. weight: math.unit(190, "lb"),
  19541. name: "Front",
  19542. image: {
  19543. source: "./media/characters/atticus/front.svg",
  19544. extra: 2934 / 2785,
  19545. bottom: 0.025
  19546. }
  19547. },
  19548. },
  19549. [
  19550. {
  19551. name: "Normal",
  19552. height: math.unit(5 + 9 / 12, "feet"),
  19553. default: true
  19554. },
  19555. {
  19556. name: "Macro",
  19557. height: math.unit(180, "feet")
  19558. },
  19559. ]
  19560. ))
  19561. characterMakers.push(() => makeCharacter(
  19562. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19563. {
  19564. side: {
  19565. height: math.unit(9, "feet"),
  19566. weight: math.unit(650, "lb"),
  19567. name: "Side",
  19568. image: {
  19569. source: "./media/characters/milo/side.svg",
  19570. extra: 2644 / 2310,
  19571. bottom: 0.032
  19572. }
  19573. },
  19574. },
  19575. [
  19576. {
  19577. name: "Normal",
  19578. height: math.unit(9, "feet"),
  19579. default: true
  19580. },
  19581. {
  19582. name: "Macro",
  19583. height: math.unit(300, "feet")
  19584. },
  19585. ]
  19586. ))
  19587. characterMakers.push(() => makeCharacter(
  19588. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19589. {
  19590. side: {
  19591. height: math.unit(8, "meters"),
  19592. weight: math.unit(90000, "kg"),
  19593. name: "Side",
  19594. image: {
  19595. source: "./media/characters/ijzer/side.svg",
  19596. extra: 2756 / 1600,
  19597. bottom: 0.01
  19598. }
  19599. },
  19600. },
  19601. [
  19602. {
  19603. name: "Small",
  19604. height: math.unit(3, "meters")
  19605. },
  19606. {
  19607. name: "Normal",
  19608. height: math.unit(8, "meters"),
  19609. default: true
  19610. },
  19611. {
  19612. name: "Normal+",
  19613. height: math.unit(10, "meters")
  19614. },
  19615. {
  19616. name: "Bigger",
  19617. height: math.unit(24, "meters")
  19618. },
  19619. {
  19620. name: "Huge",
  19621. height: math.unit(80, "meters")
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19627. {
  19628. front: {
  19629. height: math.unit(6 + 2 / 12, "feet"),
  19630. weight: math.unit(153, "lb"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/luca-cervicum/front.svg",
  19634. extra: 370 / 327,
  19635. bottom: 0.015
  19636. }
  19637. },
  19638. back: {
  19639. height: math.unit(6 + 2 / 12, "feet"),
  19640. weight: math.unit(153, "lb"),
  19641. name: "Back",
  19642. image: {
  19643. source: "./media/characters/luca-cervicum/back.svg",
  19644. extra: 367 / 333,
  19645. bottom: 0.005
  19646. }
  19647. },
  19648. frontGear: {
  19649. height: math.unit(6 + 2 / 12, "feet"),
  19650. weight: math.unit(173, "lb"),
  19651. name: "Front (Gear)",
  19652. image: {
  19653. source: "./media/characters/luca-cervicum/front-gear.svg",
  19654. extra: 377 / 333,
  19655. bottom: 0.006
  19656. }
  19657. },
  19658. },
  19659. [
  19660. {
  19661. name: "Normal",
  19662. height: math.unit(6 + 2 / 12, "feet"),
  19663. default: true
  19664. },
  19665. ]
  19666. ))
  19667. characterMakers.push(() => makeCharacter(
  19668. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19669. {
  19670. front: {
  19671. height: math.unit(6 + 1 / 12, "feet"),
  19672. weight: math.unit(304, "lb"),
  19673. name: "Front",
  19674. image: {
  19675. source: "./media/characters/oliver/front.svg",
  19676. extra: 157 / 143,
  19677. bottom: 0.08
  19678. }
  19679. },
  19680. },
  19681. [
  19682. {
  19683. name: "Normal",
  19684. height: math.unit(6 + 1 / 12, "feet"),
  19685. default: true
  19686. },
  19687. ]
  19688. ))
  19689. characterMakers.push(() => makeCharacter(
  19690. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19691. {
  19692. front: {
  19693. height: math.unit(5 + 7 / 12, "feet"),
  19694. weight: math.unit(140, "lb"),
  19695. name: "Front",
  19696. image: {
  19697. source: "./media/characters/shane/front.svg",
  19698. extra: 304 / 289,
  19699. bottom: 0.005
  19700. }
  19701. },
  19702. },
  19703. [
  19704. {
  19705. name: "Normal",
  19706. height: math.unit(5 + 7 / 12, "feet"),
  19707. default: true
  19708. },
  19709. ]
  19710. ))
  19711. characterMakers.push(() => makeCharacter(
  19712. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19713. {
  19714. front: {
  19715. height: math.unit(5 + 9 / 12, "feet"),
  19716. weight: math.unit(178, "lb"),
  19717. name: "Front",
  19718. image: {
  19719. source: "./media/characters/shin/front.svg",
  19720. extra: 159 / 151,
  19721. bottom: 0.015
  19722. }
  19723. },
  19724. },
  19725. [
  19726. {
  19727. name: "Normal",
  19728. height: math.unit(5 + 9 / 12, "feet"),
  19729. default: true
  19730. },
  19731. ]
  19732. ))
  19733. characterMakers.push(() => makeCharacter(
  19734. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19735. {
  19736. front: {
  19737. height: math.unit(5 + 10 / 12, "feet"),
  19738. weight: math.unit(168, "lb"),
  19739. name: "Front",
  19740. image: {
  19741. source: "./media/characters/xerxes/front.svg",
  19742. extra: 282 / 260,
  19743. bottom: 0.045
  19744. }
  19745. },
  19746. },
  19747. [
  19748. {
  19749. name: "Normal",
  19750. height: math.unit(5 + 10 / 12, "feet"),
  19751. default: true
  19752. },
  19753. ]
  19754. ))
  19755. characterMakers.push(() => makeCharacter(
  19756. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19757. {
  19758. front: {
  19759. height: math.unit(6 + 7 / 12, "feet"),
  19760. weight: math.unit(208, "lb"),
  19761. name: "Front",
  19762. image: {
  19763. source: "./media/characters/chaska/front.svg",
  19764. extra: 332 / 319,
  19765. bottom: 0.015
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(6 + 7 / 12, "feet"),
  19773. default: true
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19779. {
  19780. front: {
  19781. height: math.unit(5 + 8 / 12, "feet"),
  19782. weight: math.unit(208, "lb"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/enuk/front.svg",
  19786. extra: 437 / 406,
  19787. bottom: 0.02
  19788. }
  19789. },
  19790. },
  19791. [
  19792. {
  19793. name: "Normal",
  19794. height: math.unit(5 + 8 / 12, "feet"),
  19795. default: true
  19796. },
  19797. ]
  19798. ))
  19799. characterMakers.push(() => makeCharacter(
  19800. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19801. {
  19802. front: {
  19803. height: math.unit(5 + 10 / 12, "feet"),
  19804. weight: math.unit(252, "lb"),
  19805. name: "Front",
  19806. image: {
  19807. source: "./media/characters/bruun/front.svg",
  19808. extra: 197 / 187,
  19809. bottom: 0.012
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(5 + 10 / 12, "feet"),
  19817. default: true
  19818. },
  19819. ]
  19820. ))
  19821. characterMakers.push(() => makeCharacter(
  19822. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19823. {
  19824. front: {
  19825. height: math.unit(6 + 10 / 12, "feet"),
  19826. weight: math.unit(255, "lb"),
  19827. name: "Front",
  19828. image: {
  19829. source: "./media/characters/alexeev/front.svg",
  19830. extra: 213 / 200,
  19831. bottom: 0.05
  19832. }
  19833. },
  19834. },
  19835. [
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(6 + 10 / 12, "feet"),
  19839. default: true
  19840. },
  19841. ]
  19842. ))
  19843. characterMakers.push(() => makeCharacter(
  19844. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19845. {
  19846. front: {
  19847. height: math.unit(2 + 8 / 12, "feet"),
  19848. weight: math.unit(22, "lb"),
  19849. name: "Front",
  19850. image: {
  19851. source: "./media/characters/evelyn/front.svg",
  19852. extra: 208 / 180
  19853. }
  19854. },
  19855. },
  19856. [
  19857. {
  19858. name: "Normal",
  19859. height: math.unit(2 + 8 / 12, "feet"),
  19860. default: true
  19861. },
  19862. ]
  19863. ))
  19864. characterMakers.push(() => makeCharacter(
  19865. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19866. {
  19867. front: {
  19868. height: math.unit(5 + 9 / 12, "feet"),
  19869. weight: math.unit(139, "lb"),
  19870. name: "Front",
  19871. image: {
  19872. source: "./media/characters/inca/front.svg",
  19873. extra: 294 / 291,
  19874. bottom: 0.03
  19875. }
  19876. },
  19877. },
  19878. [
  19879. {
  19880. name: "Normal",
  19881. height: math.unit(5 + 9 / 12, "feet"),
  19882. default: true
  19883. },
  19884. ]
  19885. ))
  19886. characterMakers.push(() => makeCharacter(
  19887. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19888. {
  19889. front: {
  19890. height: math.unit(5 + 1 / 12, "feet"),
  19891. weight: math.unit(84, "lb"),
  19892. name: "Front",
  19893. image: {
  19894. source: "./media/characters/magdalene/front.svg",
  19895. extra: 293 / 273
  19896. }
  19897. },
  19898. },
  19899. [
  19900. {
  19901. name: "Normal",
  19902. height: math.unit(5 + 1 / 12, "feet"),
  19903. default: true
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19909. {
  19910. front: {
  19911. height: math.unit(6 + 3 / 12, "feet"),
  19912. weight: math.unit(185, "lb"),
  19913. name: "Front",
  19914. image: {
  19915. source: "./media/characters/mera/front.svg",
  19916. extra: 291 / 277,
  19917. bottom: 0.03
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Normal",
  19924. height: math.unit(6 + 3 / 12, "feet"),
  19925. default: true
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19931. {
  19932. front: {
  19933. height: math.unit(6 + 7 / 12, "feet"),
  19934. weight: math.unit(160, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/ceres/front.svg",
  19938. extra: 1023 / 950,
  19939. bottom: 0.027
  19940. }
  19941. },
  19942. back: {
  19943. height: math.unit(6 + 7 / 12, "feet"),
  19944. weight: math.unit(160, "lb"),
  19945. name: "Back",
  19946. image: {
  19947. source: "./media/characters/ceres/back.svg",
  19948. extra: 1023 / 950
  19949. }
  19950. },
  19951. },
  19952. [
  19953. {
  19954. name: "Normal",
  19955. height: math.unit(6 + 7 / 12, "feet"),
  19956. default: true
  19957. },
  19958. ]
  19959. ))
  19960. characterMakers.push(() => makeCharacter(
  19961. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19962. {
  19963. front: {
  19964. height: math.unit(5 + 10 / 12, "feet"),
  19965. weight: math.unit(150, "lb"),
  19966. name: "Front",
  19967. image: {
  19968. source: "./media/characters/kris/front.svg",
  19969. extra: 885 / 803,
  19970. bottom: 0.03
  19971. }
  19972. },
  19973. },
  19974. [
  19975. {
  19976. name: "Normal",
  19977. height: math.unit(5 + 10 / 12, "feet"),
  19978. default: true
  19979. },
  19980. ]
  19981. ))
  19982. characterMakers.push(() => makeCharacter(
  19983. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19984. {
  19985. front: {
  19986. height: math.unit(7, "feet"),
  19987. weight: math.unit(120, "kg"),
  19988. name: "Front",
  19989. image: {
  19990. source: "./media/characters/taluthus/front.svg",
  19991. extra: 903 / 833,
  19992. bottom: 0.015
  19993. }
  19994. },
  19995. },
  19996. [
  19997. {
  19998. name: "Normal",
  19999. height: math.unit(7, "feet"),
  20000. default: true
  20001. },
  20002. {
  20003. name: "Macro",
  20004. height: math.unit(300, "feet")
  20005. },
  20006. ]
  20007. ))
  20008. characterMakers.push(() => makeCharacter(
  20009. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20010. {
  20011. front: {
  20012. height: math.unit(5 + 9 / 12, "feet"),
  20013. weight: math.unit(145, "lb"),
  20014. name: "Front",
  20015. image: {
  20016. source: "./media/characters/dawn/front.svg",
  20017. extra: 2094 / 2016,
  20018. bottom: 0.025
  20019. }
  20020. },
  20021. back: {
  20022. height: math.unit(5 + 9 / 12, "feet"),
  20023. weight: math.unit(160, "lb"),
  20024. name: "Back",
  20025. image: {
  20026. source: "./media/characters/dawn/back.svg",
  20027. extra: 2112 / 2080,
  20028. bottom: 0.005
  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: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20042. {
  20043. anthro: {
  20044. height: math.unit(8 + 3 / 12, "feet"),
  20045. weight: math.unit(450, "lb"),
  20046. name: "Anthro",
  20047. image: {
  20048. source: "./media/characters/arador/anthro.svg",
  20049. extra: 1835 / 1718,
  20050. bottom: 0.025
  20051. }
  20052. },
  20053. feral: {
  20054. height: math.unit(4, "feet"),
  20055. weight: math.unit(200, "lb"),
  20056. name: "Feral",
  20057. image: {
  20058. source: "./media/characters/arador/feral.svg",
  20059. extra: 1683 / 1514,
  20060. bottom: 0.07
  20061. }
  20062. },
  20063. },
  20064. [
  20065. {
  20066. name: "Normal",
  20067. height: math.unit(8 + 3 / 12, "feet")
  20068. },
  20069. {
  20070. name: "Macro",
  20071. height: math.unit(82.5, "feet"),
  20072. default: true
  20073. },
  20074. ]
  20075. ))
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20078. {
  20079. front: {
  20080. height: math.unit(5 + 10 / 12, "feet"),
  20081. weight: math.unit(125, "lb"),
  20082. name: "Front",
  20083. image: {
  20084. source: "./media/characters/dharsi/front.svg",
  20085. extra: 716 / 630,
  20086. bottom: 0.035
  20087. }
  20088. },
  20089. },
  20090. [
  20091. {
  20092. name: "Nano",
  20093. height: math.unit(100, "nm")
  20094. },
  20095. {
  20096. name: "Micro",
  20097. height: math.unit(2, "inches")
  20098. },
  20099. {
  20100. name: "Normal",
  20101. height: math.unit(5 + 10 / 12, "feet"),
  20102. default: true
  20103. },
  20104. {
  20105. name: "Macro",
  20106. height: math.unit(1000, "feet")
  20107. },
  20108. {
  20109. name: "Megamacro",
  20110. height: math.unit(10, "miles")
  20111. },
  20112. {
  20113. name: "Gigamacro",
  20114. height: math.unit(3000, "miles")
  20115. },
  20116. {
  20117. name: "Teramacro",
  20118. height: math.unit(500000, "miles")
  20119. },
  20120. {
  20121. name: "Teramacro+",
  20122. height: math.unit(30, "galaxies")
  20123. },
  20124. ]
  20125. ))
  20126. characterMakers.push(() => makeCharacter(
  20127. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20128. {
  20129. front: {
  20130. height: math.unit(6, "feet"),
  20131. weight: math.unit(150, "lb"),
  20132. name: "Front",
  20133. image: {
  20134. source: "./media/characters/deathy/front.svg",
  20135. extra: 1552 / 1463,
  20136. bottom: 0.025
  20137. }
  20138. },
  20139. side: {
  20140. height: math.unit(6, "feet"),
  20141. weight: math.unit(150, "lb"),
  20142. name: "Side",
  20143. image: {
  20144. source: "./media/characters/deathy/side.svg",
  20145. extra: 1604 / 1455,
  20146. bottom: 0.025
  20147. }
  20148. },
  20149. back: {
  20150. height: math.unit(6, "feet"),
  20151. weight: math.unit(150, "lb"),
  20152. name: "Back",
  20153. image: {
  20154. source: "./media/characters/deathy/back.svg",
  20155. extra: 1580 / 1463,
  20156. bottom: 0.005
  20157. }
  20158. },
  20159. },
  20160. [
  20161. {
  20162. name: "Micro",
  20163. height: math.unit(5, "millimeters")
  20164. },
  20165. {
  20166. name: "Normal",
  20167. height: math.unit(6 + 5 / 12, "feet"),
  20168. default: true
  20169. },
  20170. ]
  20171. ))
  20172. characterMakers.push(() => makeCharacter(
  20173. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20174. {
  20175. front: {
  20176. height: math.unit(16, "feet"),
  20177. weight: math.unit(4000, "lb"),
  20178. name: "Front",
  20179. image: {
  20180. source: "./media/characters/juniper/front.svg",
  20181. bottom: 0.04
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(16, "feet"),
  20189. default: true
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(6, "feet"),
  20198. weight: math.unit(150, "lb"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/hipster/front.svg",
  20202. extra: 1312 / 1209,
  20203. bottom: 0.025
  20204. }
  20205. },
  20206. back: {
  20207. height: math.unit(6, "feet"),
  20208. weight: math.unit(150, "lb"),
  20209. name: "Back",
  20210. image: {
  20211. source: "./media/characters/hipster/back.svg",
  20212. extra: 1281 / 1196,
  20213. bottom: 0.01
  20214. }
  20215. },
  20216. },
  20217. [
  20218. {
  20219. name: "Micro",
  20220. height: math.unit(1, "mm")
  20221. },
  20222. {
  20223. name: "Normal",
  20224. height: math.unit(4, "inches"),
  20225. default: true
  20226. },
  20227. {
  20228. name: "Macro",
  20229. height: math.unit(500, "feet")
  20230. },
  20231. {
  20232. name: "Megamacro",
  20233. height: math.unit(1000, "miles")
  20234. },
  20235. ]
  20236. ))
  20237. characterMakers.push(() => makeCharacter(
  20238. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20239. {
  20240. front: {
  20241. height: math.unit(6, "feet"),
  20242. weight: math.unit(150, "lb"),
  20243. name: "Front",
  20244. image: {
  20245. source: "./media/characters/tendirmuldr/front.svg",
  20246. extra: 1878 / 1772,
  20247. bottom: 0.015
  20248. }
  20249. },
  20250. },
  20251. [
  20252. {
  20253. name: "Megamacro",
  20254. height: math.unit(1500, "miles"),
  20255. default: true
  20256. },
  20257. ]
  20258. ))
  20259. characterMakers.push(() => makeCharacter(
  20260. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20261. {
  20262. front: {
  20263. height: math.unit(14, "feet"),
  20264. weight: math.unit(12000, "lb"),
  20265. name: "Front",
  20266. image: {
  20267. source: "./media/characters/mort/front.svg",
  20268. extra: 365 / 318,
  20269. bottom: 0.01
  20270. }
  20271. },
  20272. side: {
  20273. height: math.unit(14, "feet"),
  20274. weight: math.unit(12000, "lb"),
  20275. name: "Side",
  20276. image: {
  20277. source: "./media/characters/mort/side.svg",
  20278. extra: 365 / 318,
  20279. bottom: 0.052
  20280. },
  20281. default: true
  20282. },
  20283. back: {
  20284. height: math.unit(14, "feet"),
  20285. weight: math.unit(12000, "lb"),
  20286. name: "Back",
  20287. image: {
  20288. source: "./media/characters/mort/back.svg",
  20289. extra: 371 / 332,
  20290. bottom: 0.18
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(14, "feet"),
  20298. default: true
  20299. },
  20300. ]
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20304. {
  20305. front: {
  20306. height: math.unit(8, "feet"),
  20307. weight: math.unit(1, "ton"),
  20308. name: "Front",
  20309. image: {
  20310. source: "./media/characters/lycoa/front.svg",
  20311. extra: 1875 / 1789,
  20312. bottom: 0.022
  20313. }
  20314. },
  20315. back: {
  20316. height: math.unit(8, "feet"),
  20317. weight: math.unit(1, "ton"),
  20318. name: "Back",
  20319. image: {
  20320. source: "./media/characters/lycoa/back.svg",
  20321. extra: 1835 / 1781,
  20322. bottom: 0.03
  20323. }
  20324. },
  20325. head: {
  20326. height: math.unit(2.1, "feet"),
  20327. name: "Head",
  20328. image: {
  20329. source: "./media/characters/lycoa/head.svg"
  20330. }
  20331. },
  20332. tailmaw: {
  20333. height: math.unit(1.9, "feet"),
  20334. name: "Tailmaw",
  20335. image: {
  20336. source: "./media/characters/lycoa/tailmaw.svg"
  20337. }
  20338. },
  20339. tentacles: {
  20340. height: math.unit(2.1, "feet"),
  20341. name: "Tentacles",
  20342. image: {
  20343. source: "./media/characters/lycoa/tentacles.svg"
  20344. }
  20345. },
  20346. dick: {
  20347. height: math.unit(1.73, "feet"),
  20348. name: "Dick",
  20349. image: {
  20350. source: "./media/characters/lycoa/dick.svg"
  20351. }
  20352. },
  20353. },
  20354. [
  20355. {
  20356. name: "Normal",
  20357. height: math.unit(8, "feet"),
  20358. default: true
  20359. },
  20360. {
  20361. name: "Macro",
  20362. height: math.unit(30, "feet")
  20363. },
  20364. ]
  20365. ))
  20366. characterMakers.push(() => makeCharacter(
  20367. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20368. {
  20369. front: {
  20370. height: math.unit(4 + 2 / 12, "feet"),
  20371. weight: math.unit(70, "lb"),
  20372. name: "Front",
  20373. image: {
  20374. source: "./media/characters/naldara/front.svg",
  20375. extra: 841 / 720,
  20376. bottom: 0.04
  20377. }
  20378. },
  20379. naga: {
  20380. height: math.unit(23, "feet"),
  20381. weight: math.unit(15000, "kg"),
  20382. name: "Naga",
  20383. image: {
  20384. source: "./media/characters/naldara/naga.svg",
  20385. extra: 3290 / 2959,
  20386. bottom: 124 / 3432
  20387. }
  20388. },
  20389. },
  20390. [
  20391. {
  20392. name: "Normal",
  20393. height: math.unit(4 + 2 / 12, "feet"),
  20394. default: true
  20395. },
  20396. ]
  20397. ))
  20398. characterMakers.push(() => makeCharacter(
  20399. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20400. {
  20401. front: {
  20402. height: math.unit(13 + 7 / 12, "feet"),
  20403. weight: math.unit(1500, "lb"),
  20404. name: "Front",
  20405. image: {
  20406. source: "./media/characters/briar/front.svg",
  20407. extra: 626 / 596,
  20408. bottom: 0.08
  20409. }
  20410. },
  20411. },
  20412. [
  20413. {
  20414. name: "Normal",
  20415. height: math.unit(13 + 7 / 12, "feet"),
  20416. default: true
  20417. },
  20418. ]
  20419. ))
  20420. characterMakers.push(() => makeCharacter(
  20421. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20422. {
  20423. side: {
  20424. height: math.unit(10, "feet"),
  20425. weight: math.unit(500, "lb"),
  20426. name: "Side",
  20427. image: {
  20428. source: "./media/characters/vanguard/side.svg",
  20429. extra: 502 / 425,
  20430. bottom: 0.087
  20431. }
  20432. },
  20433. },
  20434. [
  20435. {
  20436. name: "Normal",
  20437. height: math.unit(10, "feet"),
  20438. default: true
  20439. },
  20440. ]
  20441. ))
  20442. characterMakers.push(() => makeCharacter(
  20443. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20444. {
  20445. front: {
  20446. height: math.unit(7.5, "feet"),
  20447. weight: math.unit(2, "lb"),
  20448. name: "Front",
  20449. image: {
  20450. source: "./media/characters/artemis/front.svg",
  20451. extra: 1192 / 1075,
  20452. bottom: 0.07
  20453. }
  20454. },
  20455. frontNsfw: {
  20456. height: math.unit(7.5, "feet"),
  20457. weight: math.unit(2, "lb"),
  20458. name: "Front (NSFW)",
  20459. image: {
  20460. source: "./media/characters/artemis/front-nsfw.svg",
  20461. extra: 1192 / 1075,
  20462. bottom: 0.07
  20463. }
  20464. },
  20465. frontNsfwer: {
  20466. height: math.unit(7.5, "feet"),
  20467. weight: math.unit(2, "lb"),
  20468. name: "Front (NSFW-er)",
  20469. image: {
  20470. source: "./media/characters/artemis/front-nsfwer.svg",
  20471. extra: 1192 / 1075,
  20472. bottom: 0.07
  20473. }
  20474. },
  20475. side: {
  20476. height: math.unit(7.5, "feet"),
  20477. weight: math.unit(2, "lb"),
  20478. name: "Side",
  20479. image: {
  20480. source: "./media/characters/artemis/side.svg",
  20481. extra: 1192 / 1075,
  20482. bottom: 0.07
  20483. }
  20484. },
  20485. sideNsfw: {
  20486. height: math.unit(7.5, "feet"),
  20487. weight: math.unit(2, "lb"),
  20488. name: "Side (NSFW)",
  20489. image: {
  20490. source: "./media/characters/artemis/side-nsfw.svg",
  20491. extra: 1192 / 1075,
  20492. bottom: 0.07
  20493. }
  20494. },
  20495. sideNsfwer: {
  20496. height: math.unit(7.5, "feet"),
  20497. weight: math.unit(2, "lb"),
  20498. name: "Side (NSFW-er)",
  20499. image: {
  20500. source: "./media/characters/artemis/side-nsfwer.svg",
  20501. extra: 1192 / 1075,
  20502. bottom: 0.07
  20503. }
  20504. },
  20505. maw: {
  20506. height: math.unit(1.1, "feet"),
  20507. name: "Maw",
  20508. image: {
  20509. source: "./media/characters/artemis/maw.svg"
  20510. }
  20511. },
  20512. stomach: {
  20513. height: math.unit(0.95, "feet"),
  20514. name: "Stomach",
  20515. image: {
  20516. source: "./media/characters/artemis/stomach.svg"
  20517. }
  20518. },
  20519. dickCanine: {
  20520. height: math.unit(1, "feet"),
  20521. name: "Dick (Canine)",
  20522. image: {
  20523. source: "./media/characters/artemis/dick-canine.svg"
  20524. }
  20525. },
  20526. dickEquine: {
  20527. height: math.unit(0.85, "feet"),
  20528. name: "Dick (Equine)",
  20529. image: {
  20530. source: "./media/characters/artemis/dick-equine.svg"
  20531. }
  20532. },
  20533. dickExotic: {
  20534. height: math.unit(0.85, "feet"),
  20535. name: "Dick (Exotic)",
  20536. image: {
  20537. source: "./media/characters/artemis/dick-exotic.svg"
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(7.5, "feet"),
  20545. default: true
  20546. },
  20547. {
  20548. name: "Enlarged",
  20549. height: math.unit(12, "feet")
  20550. },
  20551. ]
  20552. ))
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20555. {
  20556. front: {
  20557. height: math.unit(5 + 3 / 12, "feet"),
  20558. weight: math.unit(160, "lb"),
  20559. name: "Front",
  20560. image: {
  20561. source: "./media/characters/kira/front.svg",
  20562. extra: 906 / 786,
  20563. bottom: 0.01
  20564. }
  20565. },
  20566. back: {
  20567. height: math.unit(5 + 3 / 12, "feet"),
  20568. weight: math.unit(160, "lb"),
  20569. name: "Back",
  20570. image: {
  20571. source: "./media/characters/kira/back.svg",
  20572. extra: 882 / 757,
  20573. bottom: 0.005
  20574. }
  20575. },
  20576. frontDressed: {
  20577. height: math.unit(5 + 3 / 12, "feet"),
  20578. weight: math.unit(160, "lb"),
  20579. name: "Front (Dressed)",
  20580. image: {
  20581. source: "./media/characters/kira/front-dressed.svg",
  20582. extra: 906 / 786,
  20583. bottom: 0.01
  20584. }
  20585. },
  20586. beans: {
  20587. height: math.unit(0.92, "feet"),
  20588. name: "Beans",
  20589. image: {
  20590. source: "./media/characters/kira/beans.svg"
  20591. }
  20592. },
  20593. },
  20594. [
  20595. {
  20596. name: "Normal",
  20597. height: math.unit(5 + 3 / 12, "feet"),
  20598. default: true
  20599. },
  20600. ]
  20601. ))
  20602. characterMakers.push(() => makeCharacter(
  20603. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20604. {
  20605. front: {
  20606. height: math.unit(5 + 4 / 12, "feet"),
  20607. weight: math.unit(145, "lb"),
  20608. name: "Front",
  20609. image: {
  20610. source: "./media/characters/scramble/front.svg",
  20611. extra: 763 / 727,
  20612. bottom: 0.05
  20613. }
  20614. },
  20615. back: {
  20616. height: math.unit(5 + 4 / 12, "feet"),
  20617. weight: math.unit(145, "lb"),
  20618. name: "Back",
  20619. image: {
  20620. source: "./media/characters/scramble/back.svg",
  20621. extra: 826 / 737,
  20622. bottom: 0.002
  20623. }
  20624. },
  20625. },
  20626. [
  20627. {
  20628. name: "Normal",
  20629. height: math.unit(5 + 4 / 12, "feet"),
  20630. default: true
  20631. },
  20632. ]
  20633. ))
  20634. characterMakers.push(() => makeCharacter(
  20635. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20636. {
  20637. side: {
  20638. height: math.unit(6 + 2 / 12, "feet"),
  20639. weight: math.unit(190, "lb"),
  20640. name: "Side",
  20641. image: {
  20642. source: "./media/characters/biscuit/side.svg",
  20643. extra: 858 / 791,
  20644. bottom: 0.044
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Normal",
  20651. height: math.unit(6 + 2 / 12, "feet"),
  20652. default: true
  20653. },
  20654. ]
  20655. ))
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20658. {
  20659. front: {
  20660. height: math.unit(5 + 2 / 12, "feet"),
  20661. weight: math.unit(120, "lb"),
  20662. name: "Front",
  20663. image: {
  20664. source: "./media/characters/poffin/front.svg",
  20665. extra: 786 / 680,
  20666. bottom: 0.005
  20667. }
  20668. },
  20669. },
  20670. [
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(5 + 2 / 12, "feet"),
  20674. default: true
  20675. },
  20676. ]
  20677. ))
  20678. characterMakers.push(() => makeCharacter(
  20679. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20680. {
  20681. front: {
  20682. height: math.unit(6 + 3 / 12, "feet"),
  20683. weight: math.unit(519, "lb"),
  20684. name: "Front",
  20685. image: {
  20686. source: "./media/characters/dhari/front.svg",
  20687. extra: 1048 / 946,
  20688. bottom: 0.015
  20689. }
  20690. },
  20691. back: {
  20692. height: math.unit(6 + 3 / 12, "feet"),
  20693. weight: math.unit(519, "lb"),
  20694. name: "Back",
  20695. image: {
  20696. source: "./media/characters/dhari/back.svg",
  20697. extra: 1048 / 931,
  20698. bottom: 0.005
  20699. }
  20700. },
  20701. frontDressed: {
  20702. height: math.unit(6 + 3 / 12, "feet"),
  20703. weight: math.unit(519, "lb"),
  20704. name: "Front (Dressed)",
  20705. image: {
  20706. source: "./media/characters/dhari/front-dressed.svg",
  20707. extra: 1713 / 1546,
  20708. bottom: 0.02
  20709. }
  20710. },
  20711. backDressed: {
  20712. height: math.unit(6 + 3 / 12, "feet"),
  20713. weight: math.unit(519, "lb"),
  20714. name: "Back (Dressed)",
  20715. image: {
  20716. source: "./media/characters/dhari/back-dressed.svg",
  20717. extra: 1699 / 1537,
  20718. bottom: 0.01
  20719. }
  20720. },
  20721. maw: {
  20722. height: math.unit(0.95, "feet"),
  20723. name: "Maw",
  20724. image: {
  20725. source: "./media/characters/dhari/maw.svg"
  20726. }
  20727. },
  20728. wereFront: {
  20729. height: math.unit(12 + 8 / 12, "feet"),
  20730. weight: math.unit(4000, "lb"),
  20731. name: "Front (Were)",
  20732. image: {
  20733. source: "./media/characters/dhari/were-front.svg",
  20734. extra: 1065 / 969,
  20735. bottom: 0.015
  20736. }
  20737. },
  20738. wereBack: {
  20739. height: math.unit(12 + 8 / 12, "feet"),
  20740. weight: math.unit(4000, "lb"),
  20741. name: "Back (Were)",
  20742. image: {
  20743. source: "./media/characters/dhari/were-back.svg",
  20744. extra: 1065 / 969,
  20745. bottom: 0.012
  20746. }
  20747. },
  20748. wereMaw: {
  20749. height: math.unit(0.625, "meters"),
  20750. name: "Maw (Were)",
  20751. image: {
  20752. source: "./media/characters/dhari/were-maw.svg"
  20753. }
  20754. },
  20755. },
  20756. [
  20757. {
  20758. name: "Normal",
  20759. height: math.unit(6 + 3 / 12, "feet"),
  20760. default: true
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20766. {
  20767. anthro: {
  20768. height: math.unit(5 + 7 / 12, "feet"),
  20769. weight: math.unit(175, "lb"),
  20770. name: "Anthro",
  20771. image: {
  20772. source: "./media/characters/rena-dyne/anthro.svg",
  20773. extra: 1849 / 1785,
  20774. bottom: 0.005
  20775. }
  20776. },
  20777. taur: {
  20778. height: math.unit(15 + 6 / 12, "feet"),
  20779. weight: math.unit(8000, "lb"),
  20780. name: "Taur",
  20781. image: {
  20782. source: "./media/characters/rena-dyne/taur.svg",
  20783. extra: 2315 / 2234,
  20784. bottom: 0.033
  20785. }
  20786. },
  20787. },
  20788. [
  20789. {
  20790. name: "Normal",
  20791. height: math.unit(5 + 7 / 12, "feet"),
  20792. default: true
  20793. },
  20794. ]
  20795. ))
  20796. characterMakers.push(() => makeCharacter(
  20797. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20798. {
  20799. front: {
  20800. height: math.unit(8, "feet"),
  20801. weight: math.unit(600, "lb"),
  20802. name: "Front",
  20803. image: {
  20804. source: "./media/characters/weremeep/front.svg",
  20805. extra: 967 / 862,
  20806. bottom: 0.01
  20807. }
  20808. },
  20809. },
  20810. [
  20811. {
  20812. name: "Normal",
  20813. height: math.unit(8, "feet"),
  20814. default: true
  20815. },
  20816. {
  20817. name: "Lorg",
  20818. height: math.unit(12, "feet")
  20819. },
  20820. {
  20821. name: "Oh Lawd She Comin'",
  20822. height: math.unit(20, "feet")
  20823. },
  20824. ]
  20825. ))
  20826. characterMakers.push(() => makeCharacter(
  20827. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20828. {
  20829. front: {
  20830. height: math.unit(4, "feet"),
  20831. weight: math.unit(90, "lb"),
  20832. name: "Front",
  20833. image: {
  20834. source: "./media/characters/reza/front.svg",
  20835. extra: 1183 / 1111,
  20836. bottom: 0.017
  20837. }
  20838. },
  20839. back: {
  20840. height: math.unit(4, "feet"),
  20841. weight: math.unit(90, "lb"),
  20842. name: "Back",
  20843. image: {
  20844. source: "./media/characters/reza/back.svg",
  20845. extra: 1183 / 1111,
  20846. bottom: 0.01
  20847. }
  20848. },
  20849. drake: {
  20850. height: math.unit(30, "feet"),
  20851. weight: math.unit(246960, "lb"),
  20852. name: "Drake",
  20853. image: {
  20854. source: "./media/characters/reza/drake.svg",
  20855. extra: 2350 / 2024,
  20856. bottom: 60.7 / 2403
  20857. }
  20858. },
  20859. },
  20860. [
  20861. {
  20862. name: "Normal",
  20863. height: math.unit(4, "feet"),
  20864. default: true
  20865. },
  20866. ]
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20870. {
  20871. side: {
  20872. height: math.unit(15, "feet"),
  20873. weight: math.unit(14, "tons"),
  20874. name: "Side",
  20875. image: {
  20876. source: "./media/characters/athea/side.svg",
  20877. extra: 960 / 540,
  20878. bottom: 0.003
  20879. }
  20880. },
  20881. sitting: {
  20882. height: math.unit(6 * 2.85, "feet"),
  20883. weight: math.unit(14, "tons"),
  20884. name: "Sitting",
  20885. image: {
  20886. source: "./media/characters/athea/sitting.svg",
  20887. extra: 621 / 581,
  20888. bottom: 0.075
  20889. }
  20890. },
  20891. maw: {
  20892. height: math.unit(7.59498031496063, "feet"),
  20893. name: "Maw",
  20894. image: {
  20895. source: "./media/characters/athea/maw.svg"
  20896. }
  20897. },
  20898. },
  20899. [
  20900. {
  20901. name: "Lap Cat",
  20902. height: math.unit(2.5, "feet")
  20903. },
  20904. {
  20905. name: "Minimacro",
  20906. height: math.unit(15, "feet"),
  20907. default: true
  20908. },
  20909. {
  20910. name: "Macro",
  20911. height: math.unit(120, "feet")
  20912. },
  20913. {
  20914. name: "Macro+",
  20915. height: math.unit(640, "feet")
  20916. },
  20917. {
  20918. name: "Colossus",
  20919. height: math.unit(2.2, "miles")
  20920. },
  20921. ]
  20922. ))
  20923. characterMakers.push(() => makeCharacter(
  20924. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20925. {
  20926. front: {
  20927. height: math.unit(8 + 8 / 12, "feet"),
  20928. weight: math.unit(130, "kg"),
  20929. name: "Front",
  20930. image: {
  20931. source: "./media/characters/seroko/front.svg",
  20932. extra: 1385 / 1280,
  20933. bottom: 0.025
  20934. }
  20935. },
  20936. back: {
  20937. height: math.unit(8 + 8 / 12, "feet"),
  20938. weight: math.unit(130, "kg"),
  20939. name: "Back",
  20940. image: {
  20941. source: "./media/characters/seroko/back.svg",
  20942. extra: 1369 / 1238,
  20943. bottom: 0.018
  20944. }
  20945. },
  20946. frontDressed: {
  20947. height: math.unit(8 + 8 / 12, "feet"),
  20948. weight: math.unit(130, "kg"),
  20949. name: "Front (Dressed)",
  20950. image: {
  20951. source: "./media/characters/seroko/front-dressed.svg",
  20952. extra: 1366 / 1275,
  20953. bottom: 0.03
  20954. }
  20955. },
  20956. },
  20957. [
  20958. {
  20959. name: "Normal",
  20960. height: math.unit(8 + 8 / 12, "feet"),
  20961. default: true
  20962. },
  20963. ]
  20964. ))
  20965. characterMakers.push(() => makeCharacter(
  20966. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20967. {
  20968. front: {
  20969. height: math.unit(5.5, "feet"),
  20970. weight: math.unit(160, "lb"),
  20971. name: "Front",
  20972. image: {
  20973. source: "./media/characters/quatzi/front.svg",
  20974. extra: 2346 / 2242,
  20975. bottom: 0.015
  20976. }
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Normal",
  20982. height: math.unit(5.5, "feet"),
  20983. default: true
  20984. },
  20985. {
  20986. name: "Big",
  20987. height: math.unit(7.7, "feet")
  20988. },
  20989. ]
  20990. ))
  20991. characterMakers.push(() => makeCharacter(
  20992. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20993. {
  20994. front: {
  20995. height: math.unit(5 + 11 / 12, "feet"),
  20996. weight: math.unit(180, "lb"),
  20997. name: "Front",
  20998. image: {
  20999. source: "./media/characters/sen/front.svg",
  21000. extra: 1321 / 1254,
  21001. bottom: 0.015
  21002. }
  21003. },
  21004. side: {
  21005. height: math.unit(5 + 11 / 12, "feet"),
  21006. weight: math.unit(180, "lb"),
  21007. name: "Side",
  21008. image: {
  21009. source: "./media/characters/sen/side.svg",
  21010. extra: 1321 / 1254,
  21011. bottom: 0.007
  21012. }
  21013. },
  21014. back: {
  21015. height: math.unit(5 + 11 / 12, "feet"),
  21016. weight: math.unit(180, "lb"),
  21017. name: "Back",
  21018. image: {
  21019. source: "./media/characters/sen/back.svg",
  21020. extra: 1321 / 1254
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(5 + 11 / 12, "feet"),
  21028. default: true
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21034. {
  21035. front: {
  21036. height: math.unit(166.6, "cm"),
  21037. weight: math.unit(66.6, "kg"),
  21038. name: "Front",
  21039. image: {
  21040. source: "./media/characters/fruity/front.svg",
  21041. extra: 1510 / 1386,
  21042. bottom: 0.04
  21043. }
  21044. },
  21045. back: {
  21046. height: math.unit(166.6, "cm"),
  21047. weight: math.unit(66.6, "lb"),
  21048. name: "Back",
  21049. image: {
  21050. source: "./media/characters/fruity/back.svg",
  21051. extra: 1563 / 1435,
  21052. bottom: 0.005
  21053. }
  21054. },
  21055. },
  21056. [
  21057. {
  21058. name: "Normal",
  21059. height: math.unit(166.6, "cm"),
  21060. default: true
  21061. },
  21062. {
  21063. name: "Demonic",
  21064. height: math.unit(166.6, "feet")
  21065. },
  21066. ]
  21067. ))
  21068. characterMakers.push(() => makeCharacter(
  21069. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21070. {
  21071. side: {
  21072. height: math.unit(10, "feet"),
  21073. weight: math.unit(500, "lb"),
  21074. name: "Side",
  21075. image: {
  21076. source: "./media/characters/zost/side.svg",
  21077. extra: 966 / 880,
  21078. bottom: 0.075
  21079. }
  21080. },
  21081. mawFront: {
  21082. height: math.unit(1.08, "meters"),
  21083. name: "Maw (Front)",
  21084. image: {
  21085. source: "./media/characters/zost/maw-front.svg"
  21086. }
  21087. },
  21088. mawSide: {
  21089. height: math.unit(2.66, "feet"),
  21090. name: "Maw (Side)",
  21091. image: {
  21092. source: "./media/characters/zost/maw-side.svg"
  21093. }
  21094. },
  21095. },
  21096. [
  21097. {
  21098. name: "Normal",
  21099. height: math.unit(10, "feet"),
  21100. default: true
  21101. },
  21102. ]
  21103. ))
  21104. characterMakers.push(() => makeCharacter(
  21105. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21106. {
  21107. front: {
  21108. height: math.unit(5 + 4 / 12, "feet"),
  21109. weight: math.unit(120, "lb"),
  21110. name: "Front",
  21111. image: {
  21112. source: "./media/characters/luci/front.svg",
  21113. extra: 1985 / 1884,
  21114. bottom: 0.04
  21115. }
  21116. },
  21117. back: {
  21118. height: math.unit(5 + 4 / 12, "feet"),
  21119. weight: math.unit(120, "lb"),
  21120. name: "Back",
  21121. image: {
  21122. source: "./media/characters/luci/back.svg",
  21123. extra: 1892 / 1791,
  21124. bottom: 0.002
  21125. }
  21126. },
  21127. },
  21128. [
  21129. {
  21130. name: "Normal",
  21131. height: math.unit(5 + 4 / 12, "feet"),
  21132. default: true
  21133. },
  21134. ]
  21135. ))
  21136. characterMakers.push(() => makeCharacter(
  21137. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21138. {
  21139. front: {
  21140. height: math.unit(1500, "feet"),
  21141. weight: math.unit(3.8e6, "tons"),
  21142. name: "Front",
  21143. image: {
  21144. source: "./media/characters/2th/front.svg",
  21145. extra: 3489 / 3350,
  21146. bottom: 0.1
  21147. }
  21148. },
  21149. foot: {
  21150. height: math.unit(461, "feet"),
  21151. name: "Foot",
  21152. image: {
  21153. source: "./media/characters/2th/foot.svg"
  21154. }
  21155. },
  21156. },
  21157. [
  21158. {
  21159. name: "\"Micro\"",
  21160. height: math.unit(15 + 7 / 12, "feet")
  21161. },
  21162. {
  21163. name: "Normal",
  21164. height: math.unit(1500, "feet"),
  21165. default: true
  21166. },
  21167. {
  21168. name: "Macro",
  21169. height: math.unit(5000, "feet")
  21170. },
  21171. {
  21172. name: "Megamacro",
  21173. height: math.unit(15, "miles")
  21174. },
  21175. {
  21176. name: "Gigamacro",
  21177. height: math.unit(4000, "miles")
  21178. },
  21179. {
  21180. name: "Galactic",
  21181. height: math.unit(50, "AU")
  21182. },
  21183. ]
  21184. ))
  21185. characterMakers.push(() => makeCharacter(
  21186. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21187. {
  21188. front: {
  21189. height: math.unit(5 + 6 / 12, "feet"),
  21190. weight: math.unit(220, "lb"),
  21191. name: "Front",
  21192. image: {
  21193. source: "./media/characters/amethyst/front.svg",
  21194. extra: 2078 / 2040,
  21195. bottom: 0.045
  21196. }
  21197. },
  21198. back: {
  21199. height: math.unit(5 + 6 / 12, "feet"),
  21200. weight: math.unit(220, "lb"),
  21201. name: "Back",
  21202. image: {
  21203. source: "./media/characters/amethyst/back.svg",
  21204. extra: 2021 / 1989,
  21205. bottom: 0.02
  21206. }
  21207. },
  21208. },
  21209. [
  21210. {
  21211. name: "Normal",
  21212. height: math.unit(5 + 6 / 12, "feet"),
  21213. default: true
  21214. },
  21215. ]
  21216. ))
  21217. characterMakers.push(() => makeCharacter(
  21218. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21219. {
  21220. front: {
  21221. height: math.unit(4 + 11 / 12, "feet"),
  21222. weight: math.unit(120, "lb"),
  21223. name: "Front",
  21224. image: {
  21225. source: "./media/characters/yumi-akiyama/front.svg",
  21226. extra: 1327 / 1235,
  21227. bottom: 0.02
  21228. }
  21229. },
  21230. back: {
  21231. height: math.unit(4 + 11 / 12, "feet"),
  21232. weight: math.unit(120, "lb"),
  21233. name: "Back",
  21234. image: {
  21235. source: "./media/characters/yumi-akiyama/back.svg",
  21236. extra: 1287 / 1245,
  21237. bottom: 0.002
  21238. }
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Galactic",
  21244. height: math.unit(50, "galaxies"),
  21245. default: true
  21246. },
  21247. {
  21248. name: "Universal",
  21249. height: math.unit(100, "universes")
  21250. },
  21251. ]
  21252. ))
  21253. characterMakers.push(() => makeCharacter(
  21254. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21255. {
  21256. front: {
  21257. height: math.unit(8, "feet"),
  21258. weight: math.unit(500, "lb"),
  21259. name: "Front",
  21260. image: {
  21261. source: "./media/characters/rifter-yrmori/front.svg",
  21262. extra: 1180 / 1125,
  21263. bottom: 0.02
  21264. }
  21265. },
  21266. back: {
  21267. height: math.unit(8, "feet"),
  21268. weight: math.unit(500, "lb"),
  21269. name: "Back",
  21270. image: {
  21271. source: "./media/characters/rifter-yrmori/back.svg",
  21272. extra: 1190 / 1145,
  21273. bottom: 0.001
  21274. }
  21275. },
  21276. wings: {
  21277. height: math.unit(7.75, "feet"),
  21278. weight: math.unit(500, "lb"),
  21279. name: "Wings",
  21280. image: {
  21281. source: "./media/characters/rifter-yrmori/wings.svg",
  21282. extra: 1357 / 1285
  21283. }
  21284. },
  21285. maw: {
  21286. height: math.unit(0.8, "feet"),
  21287. name: "Maw",
  21288. image: {
  21289. source: "./media/characters/rifter-yrmori/maw.svg"
  21290. }
  21291. },
  21292. mawfront: {
  21293. height: math.unit(1.45, "feet"),
  21294. name: "Maw (Front)",
  21295. image: {
  21296. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21297. }
  21298. },
  21299. },
  21300. [
  21301. {
  21302. name: "Normal",
  21303. height: math.unit(8, "feet"),
  21304. default: true
  21305. },
  21306. {
  21307. name: "Macro",
  21308. height: math.unit(42, "meters")
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21314. {
  21315. were: {
  21316. height: math.unit(25 + 6 / 12, "feet"),
  21317. weight: math.unit(10000, "lb"),
  21318. name: "Were",
  21319. image: {
  21320. source: "./media/characters/tahajin/were.svg",
  21321. extra: 801 / 770,
  21322. bottom: 0.042
  21323. }
  21324. },
  21325. aquatic: {
  21326. height: math.unit(6 + 4 / 12, "feet"),
  21327. weight: math.unit(160, "lb"),
  21328. name: "Aquatic",
  21329. image: {
  21330. source: "./media/characters/tahajin/aquatic.svg",
  21331. extra: 572 / 542,
  21332. bottom: 0.04
  21333. }
  21334. },
  21335. chow: {
  21336. height: math.unit(8 + 11 / 12, "feet"),
  21337. weight: math.unit(450, "lb"),
  21338. name: "Chow",
  21339. image: {
  21340. source: "./media/characters/tahajin/chow.svg",
  21341. extra: 660 / 640,
  21342. bottom: 0.015
  21343. }
  21344. },
  21345. demiNaga: {
  21346. height: math.unit(6 + 8 / 12, "feet"),
  21347. weight: math.unit(300, "lb"),
  21348. name: "Demi Naga",
  21349. image: {
  21350. source: "./media/characters/tahajin/demi-naga.svg",
  21351. extra: 643 / 615,
  21352. bottom: 0.1
  21353. }
  21354. },
  21355. data: {
  21356. height: math.unit(5, "inches"),
  21357. weight: math.unit(0.1, "lb"),
  21358. name: "Data",
  21359. image: {
  21360. source: "./media/characters/tahajin/data.svg"
  21361. }
  21362. },
  21363. fluu: {
  21364. height: math.unit(5 + 7 / 12, "feet"),
  21365. weight: math.unit(140, "lb"),
  21366. name: "Fluu",
  21367. image: {
  21368. source: "./media/characters/tahajin/fluu.svg",
  21369. extra: 628 / 592,
  21370. bottom: 0.02
  21371. }
  21372. },
  21373. starWarrior: {
  21374. height: math.unit(4 + 5 / 12, "feet"),
  21375. weight: math.unit(50, "lb"),
  21376. name: "Star Warrior",
  21377. image: {
  21378. source: "./media/characters/tahajin/star-warrior.svg"
  21379. }
  21380. },
  21381. },
  21382. [
  21383. {
  21384. name: "Normal",
  21385. height: math.unit(25 + 6 / 12, "feet"),
  21386. default: true
  21387. },
  21388. ]
  21389. ))
  21390. characterMakers.push(() => makeCharacter(
  21391. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21392. {
  21393. front: {
  21394. height: math.unit(8, "feet"),
  21395. weight: math.unit(350, "lb"),
  21396. name: "Front",
  21397. image: {
  21398. source: "./media/characters/gabira/front.svg",
  21399. extra: 608 / 580,
  21400. bottom: 0.03
  21401. }
  21402. },
  21403. back: {
  21404. height: math.unit(8, "feet"),
  21405. weight: math.unit(350, "lb"),
  21406. name: "Back",
  21407. image: {
  21408. source: "./media/characters/gabira/back.svg",
  21409. extra: 608 / 580,
  21410. bottom: 0.03
  21411. }
  21412. },
  21413. },
  21414. [
  21415. {
  21416. name: "Normal",
  21417. height: math.unit(8, "feet"),
  21418. default: true
  21419. },
  21420. ]
  21421. ))
  21422. characterMakers.push(() => makeCharacter(
  21423. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21424. {
  21425. front: {
  21426. height: math.unit(5 + 3 / 12, "feet"),
  21427. weight: math.unit(137, "lb"),
  21428. name: "Front",
  21429. image: {
  21430. source: "./media/characters/sasha-katraine/front.svg",
  21431. bottom: 0.045
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Micro",
  21438. height: math.unit(5, "inches")
  21439. },
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(5 + 3 / 12, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21449. {
  21450. side: {
  21451. height: math.unit(4, "inches"),
  21452. weight: math.unit(200, "grams"),
  21453. name: "Side",
  21454. image: {
  21455. source: "./media/characters/der/side.svg",
  21456. extra: 719 / 400,
  21457. bottom: 30.6 / 749.9187
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Micro",
  21464. height: math.unit(4, "inches"),
  21465. default: true
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21471. {
  21472. side: {
  21473. height: math.unit(30, "meters"),
  21474. weight: math.unit(700, "tonnes"),
  21475. name: "Side",
  21476. image: {
  21477. source: "./media/characters/fixerdragon/side.svg",
  21478. extra: (1293.0514 - 116.03) / 1106.86,
  21479. bottom: 116.03 / 1293.0514
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Planck",
  21486. height: math.unit(1.6e-35, "meters")
  21487. },
  21488. {
  21489. name: "Micro",
  21490. height: math.unit(0.4, "meters")
  21491. },
  21492. {
  21493. name: "Normal",
  21494. height: math.unit(30, "meters"),
  21495. default: true
  21496. },
  21497. {
  21498. name: "Megamacro",
  21499. height: math.unit(1.2, "megameters")
  21500. },
  21501. {
  21502. name: "Teramacro",
  21503. height: math.unit(130, "terameters")
  21504. },
  21505. {
  21506. name: "Yottamacro",
  21507. height: math.unit(6200, "yottameters")
  21508. },
  21509. ]
  21510. ));
  21511. characterMakers.push(() => makeCharacter(
  21512. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21513. {
  21514. front: {
  21515. height: math.unit(8, "feet"),
  21516. weight: math.unit(250, "lb"),
  21517. name: "Front",
  21518. image: {
  21519. source: "./media/characters/kite/front.svg",
  21520. extra: 2796 / 2659,
  21521. bottom: 0.002
  21522. }
  21523. },
  21524. },
  21525. [
  21526. {
  21527. name: "Normal",
  21528. height: math.unit(8, "feet"),
  21529. default: true
  21530. },
  21531. {
  21532. name: "Macro",
  21533. height: math.unit(360, "feet")
  21534. },
  21535. {
  21536. name: "Megamacro",
  21537. height: math.unit(1500, "feet")
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21543. {
  21544. front: {
  21545. height: math.unit(5 + 10 / 12, "feet"),
  21546. weight: math.unit(150, "lb"),
  21547. name: "Front",
  21548. image: {
  21549. source: "./media/characters/poojawa-vynar/front.svg",
  21550. extra: (1506.1547 - 55) / 1356.6,
  21551. bottom: 55 / 1506.1547
  21552. }
  21553. },
  21554. frontTailless: {
  21555. height: math.unit(5 + 10 / 12, "feet"),
  21556. weight: math.unit(150, "lb"),
  21557. name: "Front (Tailless)",
  21558. image: {
  21559. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21560. extra: (1506.1547 - 55) / 1356.6,
  21561. bottom: 55 / 1506.1547
  21562. }
  21563. },
  21564. },
  21565. [
  21566. {
  21567. name: "Normal",
  21568. height: math.unit(5 + 10 / 12, "feet"),
  21569. default: true
  21570. },
  21571. ]
  21572. ))
  21573. characterMakers.push(() => makeCharacter(
  21574. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21575. {
  21576. front: {
  21577. height: math.unit(293, "meters"),
  21578. weight: math.unit(70400, "tons"),
  21579. name: "Front",
  21580. image: {
  21581. source: "./media/characters/violette/front.svg",
  21582. extra: 1227 / 1180,
  21583. bottom: 0.005
  21584. }
  21585. },
  21586. back: {
  21587. height: math.unit(293, "meters"),
  21588. weight: math.unit(70400, "tons"),
  21589. name: "Back",
  21590. image: {
  21591. source: "./media/characters/violette/back.svg",
  21592. extra: 1227 / 1180,
  21593. bottom: 0.005
  21594. }
  21595. },
  21596. },
  21597. [
  21598. {
  21599. name: "Macro",
  21600. height: math.unit(293, "meters"),
  21601. default: true
  21602. },
  21603. ]
  21604. ))
  21605. characterMakers.push(() => makeCharacter(
  21606. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21607. {
  21608. front: {
  21609. height: math.unit(1050, "feet"),
  21610. weight: math.unit(200000, "tons"),
  21611. name: "Front",
  21612. image: {
  21613. source: "./media/characters/alessandra/front.svg",
  21614. extra: 960 / 912,
  21615. bottom: 0.06
  21616. }
  21617. },
  21618. },
  21619. [
  21620. {
  21621. name: "Macro",
  21622. height: math.unit(1050, "feet")
  21623. },
  21624. {
  21625. name: "Macro+",
  21626. height: math.unit(900, "meters"),
  21627. default: true
  21628. },
  21629. ]
  21630. ))
  21631. characterMakers.push(() => makeCharacter(
  21632. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21633. {
  21634. front: {
  21635. height: math.unit(5, "feet"),
  21636. weight: math.unit(187, "lb"),
  21637. name: "Front",
  21638. image: {
  21639. source: "./media/characters/person/front.svg",
  21640. extra: 3087 / 2945,
  21641. bottom: 91 / 3181
  21642. }
  21643. },
  21644. },
  21645. [
  21646. {
  21647. name: "Micro",
  21648. height: math.unit(3, "inches")
  21649. },
  21650. {
  21651. name: "Normal",
  21652. height: math.unit(5, "feet"),
  21653. default: true
  21654. },
  21655. {
  21656. name: "Macro",
  21657. height: math.unit(90, "feet")
  21658. },
  21659. {
  21660. name: "Max Size",
  21661. height: math.unit(280, "feet")
  21662. },
  21663. ]
  21664. ))
  21665. characterMakers.push(() => makeCharacter(
  21666. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21667. {
  21668. front: {
  21669. height: math.unit(4.5, "meters"),
  21670. weight: math.unit(3200, "lb"),
  21671. name: "Front",
  21672. image: {
  21673. source: "./media/characters/ty/front.svg",
  21674. extra: 1038 / 960,
  21675. bottom: 31.156 / 1068
  21676. }
  21677. },
  21678. back: {
  21679. height: math.unit(4.5, "meters"),
  21680. weight: math.unit(3200, "lb"),
  21681. name: "Back",
  21682. image: {
  21683. source: "./media/characters/ty/back.svg",
  21684. extra: 1044 / 966,
  21685. bottom: 7.48 / 1049
  21686. }
  21687. },
  21688. },
  21689. [
  21690. {
  21691. name: "Normal",
  21692. height: math.unit(4.5, "meters"),
  21693. default: true
  21694. },
  21695. ]
  21696. ))
  21697. characterMakers.push(() => makeCharacter(
  21698. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21699. {
  21700. front: {
  21701. height: math.unit(5 + 4 / 12, "feet"),
  21702. weight: math.unit(115, "lb"),
  21703. name: "Front",
  21704. image: {
  21705. source: "./media/characters/rocky/front.svg",
  21706. extra: 1012 / 975,
  21707. bottom: 54 / 1066
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Normal",
  21714. height: math.unit(5 + 4 / 12, "feet"),
  21715. default: true
  21716. },
  21717. ]
  21718. ))
  21719. characterMakers.push(() => makeCharacter(
  21720. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21721. {
  21722. upright: {
  21723. height: math.unit(6, "meters"),
  21724. weight: math.unit(4000, "kg"),
  21725. name: "Upright",
  21726. image: {
  21727. source: "./media/characters/ruin/upright.svg",
  21728. extra: 668 / 661,
  21729. bottom: 42 / 799.8396
  21730. }
  21731. },
  21732. },
  21733. [
  21734. {
  21735. name: "Normal",
  21736. height: math.unit(6, "meters"),
  21737. default: true
  21738. },
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21743. {
  21744. front: {
  21745. height: math.unit(5, "feet"),
  21746. weight: math.unit(106, "lb"),
  21747. name: "Front",
  21748. image: {
  21749. source: "./media/characters/robin/front.svg",
  21750. extra: 862 / 799,
  21751. bottom: 42.4 / 914.8856
  21752. }
  21753. },
  21754. },
  21755. [
  21756. {
  21757. name: "Normal",
  21758. height: math.unit(5, "feet"),
  21759. default: true
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21765. {
  21766. side: {
  21767. height: math.unit(3, "feet"),
  21768. weight: math.unit(225, "lb"),
  21769. name: "Side",
  21770. image: {
  21771. source: "./media/characters/saian/side.svg",
  21772. extra: 566 / 356,
  21773. bottom: 79.7 / 643
  21774. }
  21775. },
  21776. maw: {
  21777. height: math.unit(2.85, "feet"),
  21778. name: "Maw",
  21779. image: {
  21780. source: "./media/characters/saian/maw.svg"
  21781. }
  21782. },
  21783. },
  21784. [
  21785. {
  21786. name: "Normal",
  21787. height: math.unit(3, "feet"),
  21788. default: true
  21789. },
  21790. ]
  21791. ))
  21792. characterMakers.push(() => makeCharacter(
  21793. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21794. {
  21795. side: {
  21796. height: math.unit(8, "feet"),
  21797. weight: math.unit(300, "lb"),
  21798. name: "Side",
  21799. image: {
  21800. source: "./media/characters/equus-silvermane/side.svg",
  21801. extra: 2176 / 2050,
  21802. bottom: 65.7 / 2245
  21803. }
  21804. },
  21805. front: {
  21806. height: math.unit(8, "feet"),
  21807. weight: math.unit(300, "lb"),
  21808. name: "Front",
  21809. image: {
  21810. source: "./media/characters/equus-silvermane/front.svg",
  21811. extra: 4633 / 4400,
  21812. bottom: 71.3 / 4706.915
  21813. }
  21814. },
  21815. sideStepping: {
  21816. height: math.unit(8, "feet"),
  21817. weight: math.unit(300, "lb"),
  21818. name: "Side (Stepping)",
  21819. image: {
  21820. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21821. extra: 1968 / 1860,
  21822. bottom: 16.4 / 1989
  21823. }
  21824. },
  21825. },
  21826. [
  21827. {
  21828. name: "Normal",
  21829. height: math.unit(8, "feet")
  21830. },
  21831. {
  21832. name: "Minimacro",
  21833. height: math.unit(75, "feet"),
  21834. default: true
  21835. },
  21836. {
  21837. name: "Macro",
  21838. height: math.unit(150, "feet")
  21839. },
  21840. {
  21841. name: "Macro+",
  21842. height: math.unit(1000, "feet")
  21843. },
  21844. {
  21845. name: "Megamacro",
  21846. height: math.unit(1, "mile")
  21847. },
  21848. ]
  21849. ))
  21850. characterMakers.push(() => makeCharacter(
  21851. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21852. {
  21853. side: {
  21854. height: math.unit(20, "feet"),
  21855. weight: math.unit(30000, "kg"),
  21856. name: "Side",
  21857. image: {
  21858. source: "./media/characters/windar/side.svg",
  21859. extra: 1491 / 1248,
  21860. bottom: 82.56 / 1568
  21861. }
  21862. },
  21863. },
  21864. [
  21865. {
  21866. name: "Normal",
  21867. height: math.unit(20, "feet"),
  21868. default: true
  21869. },
  21870. ]
  21871. ))
  21872. characterMakers.push(() => makeCharacter(
  21873. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21874. {
  21875. side: {
  21876. height: math.unit(15.66, "feet"),
  21877. weight: math.unit(150, "lb"),
  21878. name: "Side",
  21879. image: {
  21880. source: "./media/characters/melody/side.svg",
  21881. extra: 1097 / 944,
  21882. bottom: 11.8 / 1109
  21883. }
  21884. },
  21885. sideOutfit: {
  21886. height: math.unit(15.66, "feet"),
  21887. weight: math.unit(150, "lb"),
  21888. name: "Side (Outfit)",
  21889. image: {
  21890. source: "./media/characters/melody/side-outfit.svg",
  21891. extra: 1097 / 944,
  21892. bottom: 11.8 / 1109
  21893. }
  21894. },
  21895. },
  21896. [
  21897. {
  21898. name: "Normal",
  21899. height: math.unit(15.66, "feet"),
  21900. default: true
  21901. },
  21902. ]
  21903. ))
  21904. characterMakers.push(() => makeCharacter(
  21905. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21906. {
  21907. front: {
  21908. height: math.unit(8, "feet"),
  21909. weight: math.unit(325, "lb"),
  21910. name: "Front",
  21911. image: {
  21912. source: "./media/characters/windera/front.svg",
  21913. extra: 3180 / 2845,
  21914. bottom: 178 / 3365
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Normal",
  21921. height: math.unit(8, "feet"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21928. {
  21929. front: {
  21930. height: math.unit(28.75, "feet"),
  21931. weight: math.unit(2000, "kg"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/sonear/front.svg",
  21935. extra: 1041.1 / 964.9,
  21936. bottom: 53.7 / 1096.6
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Normal",
  21943. height: math.unit(28.75, "feet"),
  21944. default: true
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21950. {
  21951. side: {
  21952. height: math.unit(25.5, "feet"),
  21953. weight: math.unit(23000, "kg"),
  21954. name: "Side",
  21955. image: {
  21956. source: "./media/characters/kanara/side.svg"
  21957. }
  21958. },
  21959. },
  21960. [
  21961. {
  21962. name: "Normal",
  21963. height: math.unit(25.5, "feet"),
  21964. default: true
  21965. },
  21966. ]
  21967. ))
  21968. characterMakers.push(() => makeCharacter(
  21969. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21970. {
  21971. side: {
  21972. height: math.unit(10, "feet"),
  21973. weight: math.unit(1000, "kg"),
  21974. name: "Side",
  21975. image: {
  21976. source: "./media/characters/ereus/side.svg",
  21977. extra: 1157 / 959,
  21978. bottom: 153 / 1312.5
  21979. }
  21980. },
  21981. },
  21982. [
  21983. {
  21984. name: "Normal",
  21985. height: math.unit(10, "feet"),
  21986. default: true
  21987. },
  21988. ]
  21989. ))
  21990. characterMakers.push(() => makeCharacter(
  21991. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21992. {
  21993. side: {
  21994. height: math.unit(4.5, "feet"),
  21995. weight: math.unit(500, "lb"),
  21996. name: "Side",
  21997. image: {
  21998. source: "./media/characters/e-ter/side.svg",
  21999. extra: 1550 / 1248,
  22000. bottom: 146 / 1694
  22001. }
  22002. },
  22003. },
  22004. [
  22005. {
  22006. name: "Normal",
  22007. height: math.unit(4.5, "feet"),
  22008. default: true
  22009. },
  22010. ]
  22011. ))
  22012. characterMakers.push(() => makeCharacter(
  22013. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22014. {
  22015. side: {
  22016. height: math.unit(9.7, "feet"),
  22017. weight: math.unit(4000, "kg"),
  22018. name: "Side",
  22019. image: {
  22020. source: "./media/characters/yamie/side.svg"
  22021. }
  22022. },
  22023. },
  22024. [
  22025. {
  22026. name: "Normal",
  22027. height: math.unit(9.7, "feet"),
  22028. default: true
  22029. },
  22030. ]
  22031. ))
  22032. characterMakers.push(() => makeCharacter(
  22033. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22034. {
  22035. front: {
  22036. height: math.unit(50, "feet"),
  22037. weight: math.unit(50000, "kg"),
  22038. name: "Front",
  22039. image: {
  22040. source: "./media/characters/anders/front.svg",
  22041. extra: 570 / 539,
  22042. bottom: 14.7 / 586.7
  22043. }
  22044. },
  22045. },
  22046. [
  22047. {
  22048. name: "Large",
  22049. height: math.unit(50, "feet")
  22050. },
  22051. {
  22052. name: "Macro",
  22053. height: math.unit(2000, "feet"),
  22054. default: true
  22055. },
  22056. {
  22057. name: "Megamacro",
  22058. height: math.unit(12, "miles")
  22059. },
  22060. ]
  22061. ))
  22062. characterMakers.push(() => makeCharacter(
  22063. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22064. {
  22065. front: {
  22066. height: math.unit(7 + 2 / 12, "feet"),
  22067. weight: math.unit(300, "lb"),
  22068. name: "Front",
  22069. image: {
  22070. source: "./media/characters/reban/front.svg",
  22071. extra: 516 / 487,
  22072. bottom: 42.82 / 558.356
  22073. }
  22074. },
  22075. dick: {
  22076. height: math.unit(7 / 5, "feet"),
  22077. name: "Dick",
  22078. image: {
  22079. source: "./media/characters/reban/dick.svg"
  22080. }
  22081. },
  22082. },
  22083. [
  22084. {
  22085. name: "Natural Height",
  22086. height: math.unit(7 + 2 / 12, "feet")
  22087. },
  22088. {
  22089. name: "Macro",
  22090. height: math.unit(500, "feet"),
  22091. default: true
  22092. },
  22093. {
  22094. name: "Canon Height",
  22095. height: math.unit(50, "AU")
  22096. },
  22097. ]
  22098. ))
  22099. characterMakers.push(() => makeCharacter(
  22100. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22101. {
  22102. front: {
  22103. height: math.unit(6, "feet"),
  22104. weight: math.unit(150, "lb"),
  22105. name: "Front",
  22106. image: {
  22107. source: "./media/characters/terrance-keayes/front.svg",
  22108. extra: 1.005,
  22109. bottom: 151 / 1615
  22110. }
  22111. },
  22112. side: {
  22113. height: math.unit(6, "feet"),
  22114. weight: math.unit(150, "lb"),
  22115. name: "Side",
  22116. image: {
  22117. source: "./media/characters/terrance-keayes/side.svg",
  22118. extra: 1.005,
  22119. bottom: 129.4 / 1544
  22120. }
  22121. },
  22122. back: {
  22123. height: math.unit(6, "feet"),
  22124. weight: math.unit(150, "lb"),
  22125. name: "Back",
  22126. image: {
  22127. source: "./media/characters/terrance-keayes/back.svg",
  22128. extra: 1.005,
  22129. bottom: 58.4 / 1557.3
  22130. }
  22131. },
  22132. dick: {
  22133. height: math.unit(6 * 0.208, "feet"),
  22134. name: "Dick",
  22135. image: {
  22136. source: "./media/characters/terrance-keayes/dick.svg"
  22137. }
  22138. },
  22139. },
  22140. [
  22141. {
  22142. name: "Canon Height",
  22143. height: math.unit(35, "miles"),
  22144. default: true
  22145. },
  22146. ]
  22147. ))
  22148. characterMakers.push(() => makeCharacter(
  22149. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22150. {
  22151. front: {
  22152. height: math.unit(6, "feet"),
  22153. weight: math.unit(150, "lb"),
  22154. name: "Front",
  22155. image: {
  22156. source: "./media/characters/ofelia/front.svg",
  22157. extra: 546 / 541,
  22158. bottom: 39 / 583
  22159. }
  22160. },
  22161. back: {
  22162. height: math.unit(6, "feet"),
  22163. weight: math.unit(150, "lb"),
  22164. name: "Back",
  22165. image: {
  22166. source: "./media/characters/ofelia/back.svg",
  22167. extra: 564 / 559.5,
  22168. bottom: 8.69 / 573.02
  22169. }
  22170. },
  22171. maw: {
  22172. height: math.unit(1, "feet"),
  22173. name: "Maw",
  22174. image: {
  22175. source: "./media/characters/ofelia/maw.svg"
  22176. }
  22177. },
  22178. foot: {
  22179. height: math.unit(1.949, "feet"),
  22180. name: "Foot",
  22181. image: {
  22182. source: "./media/characters/ofelia/foot.svg"
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Canon Height",
  22189. height: math.unit(2000, "miles"),
  22190. default: true
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22196. {
  22197. front: {
  22198. height: math.unit(6, "feet"),
  22199. weight: math.unit(150, "lb"),
  22200. name: "Front",
  22201. image: {
  22202. source: "./media/characters/samuel/front.svg",
  22203. extra: 265 / 258,
  22204. bottom: 2 / 266.1566
  22205. }
  22206. },
  22207. },
  22208. [
  22209. {
  22210. name: "Macro",
  22211. height: math.unit(100, "feet"),
  22212. default: true
  22213. },
  22214. {
  22215. name: "Full Size",
  22216. height: math.unit(1000, "miles")
  22217. },
  22218. ]
  22219. ))
  22220. characterMakers.push(() => makeCharacter(
  22221. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22222. {
  22223. front: {
  22224. height: math.unit(6, "feet"),
  22225. weight: math.unit(300, "lb"),
  22226. name: "Front",
  22227. image: {
  22228. source: "./media/characters/beishir-kiel/front.svg",
  22229. extra: 569 / 547,
  22230. bottom: 41.9 / 609
  22231. }
  22232. },
  22233. maw: {
  22234. height: math.unit(6 * 0.202, "feet"),
  22235. name: "Maw",
  22236. image: {
  22237. source: "./media/characters/beishir-kiel/maw.svg"
  22238. }
  22239. },
  22240. },
  22241. [
  22242. {
  22243. name: "Macro",
  22244. height: math.unit(300, "feet"),
  22245. default: true
  22246. },
  22247. ]
  22248. ))
  22249. characterMakers.push(() => makeCharacter(
  22250. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22251. {
  22252. front: {
  22253. height: math.unit(5 + 7/12, "feet"),
  22254. weight: math.unit(120, "lb"),
  22255. name: "Front",
  22256. image: {
  22257. source: "./media/characters/logan-grey/front.svg",
  22258. extra: 1836/1738,
  22259. bottom: 108/1944
  22260. }
  22261. },
  22262. back: {
  22263. height: math.unit(5 + 7/12, "feet"),
  22264. weight: math.unit(120, "lb"),
  22265. name: "Back",
  22266. image: {
  22267. source: "./media/characters/logan-grey/back.svg",
  22268. extra: 1880/1794,
  22269. bottom: 24/1904
  22270. }
  22271. },
  22272. frontSfw: {
  22273. height: math.unit(5 + 7/12, "feet"),
  22274. weight: math.unit(120, "lb"),
  22275. name: "Front (SFW)",
  22276. image: {
  22277. source: "./media/characters/logan-grey/front-sfw.svg",
  22278. extra: 1836/1738,
  22279. bottom: 108/1944
  22280. }
  22281. },
  22282. backSfw: {
  22283. height: math.unit(5 + 7/12, "feet"),
  22284. weight: math.unit(120, "lb"),
  22285. name: "Back (SFW)",
  22286. image: {
  22287. source: "./media/characters/logan-grey/back-sfw.svg",
  22288. extra: 1880/1794,
  22289. bottom: 24/1904
  22290. }
  22291. },
  22292. hands: {
  22293. height: math.unit(0.84, "feet"),
  22294. name: "Hands",
  22295. image: {
  22296. source: "./media/characters/logan-grey/hands.svg"
  22297. }
  22298. },
  22299. paws: {
  22300. height: math.unit(0.72, "feet"),
  22301. name: "Paws",
  22302. image: {
  22303. source: "./media/characters/logan-grey/paws.svg"
  22304. }
  22305. },
  22306. cock: {
  22307. height: math.unit(1.45, "feet"),
  22308. name: "Cock",
  22309. image: {
  22310. source: "./media/characters/logan-grey/cock.svg"
  22311. }
  22312. },
  22313. cockAlt: {
  22314. height: math.unit(1.437, "feet"),
  22315. name: "Cock (alt)",
  22316. image: {
  22317. source: "./media/characters/logan-grey/cock-alt.svg"
  22318. }
  22319. },
  22320. },
  22321. [
  22322. {
  22323. name: "Normal",
  22324. height: math.unit(5 + 8 / 12, "feet")
  22325. },
  22326. {
  22327. name: "The 500 Foot Femboy",
  22328. height: math.unit(500, "feet"),
  22329. default: true
  22330. },
  22331. {
  22332. name: "Megmacro",
  22333. height: math.unit(20, "miles")
  22334. },
  22335. ]
  22336. ))
  22337. characterMakers.push(() => makeCharacter(
  22338. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22339. {
  22340. front: {
  22341. height: math.unit(8 + 2 / 12, "feet"),
  22342. weight: math.unit(275, "lb"),
  22343. name: "Front",
  22344. image: {
  22345. source: "./media/characters/draganta/front.svg",
  22346. extra: 1177 / 1135,
  22347. bottom: 33.46 / 1212.1
  22348. }
  22349. },
  22350. },
  22351. [
  22352. {
  22353. name: "Normal",
  22354. height: math.unit(8 + 6 / 12, "feet"),
  22355. default: true
  22356. },
  22357. {
  22358. name: "Macro",
  22359. height: math.unit(150, "feet")
  22360. },
  22361. {
  22362. name: "Megamacro",
  22363. height: math.unit(1000, "miles")
  22364. },
  22365. ]
  22366. ))
  22367. characterMakers.push(() => makeCharacter(
  22368. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22369. {
  22370. front: {
  22371. height: math.unit(1.72, "m"),
  22372. weight: math.unit(80, "lb"),
  22373. name: "Front",
  22374. image: {
  22375. source: "./media/characters/voski/front.svg",
  22376. extra: 2076.22 / 2022.4,
  22377. bottom: 102.7 / 2177.3866
  22378. }
  22379. },
  22380. frontNsfw: {
  22381. height: math.unit(1.72, "m"),
  22382. weight: math.unit(80, "lb"),
  22383. name: "Front (NSFW)",
  22384. image: {
  22385. source: "./media/characters/voski/front-nsfw.svg",
  22386. extra: 2076.22 / 2022.4,
  22387. bottom: 102.7 / 2177.3866
  22388. }
  22389. },
  22390. back: {
  22391. height: math.unit(1.72, "m"),
  22392. weight: math.unit(80, "lb"),
  22393. name: "Back",
  22394. image: {
  22395. source: "./media/characters/voski/back.svg",
  22396. extra: 2104 / 2051,
  22397. bottom: 10.45 / 2113.63
  22398. }
  22399. },
  22400. },
  22401. [
  22402. {
  22403. name: "Normal",
  22404. height: math.unit(1.72, "m")
  22405. },
  22406. {
  22407. name: "Macro",
  22408. height: math.unit(55, "m"),
  22409. default: true
  22410. },
  22411. {
  22412. name: "Macro+",
  22413. height: math.unit(300, "m")
  22414. },
  22415. {
  22416. name: "Macro++",
  22417. height: math.unit(700, "m")
  22418. },
  22419. {
  22420. name: "Macro+++",
  22421. height: math.unit(4500, "m")
  22422. },
  22423. {
  22424. name: "Macro++++",
  22425. height: math.unit(45, "km")
  22426. },
  22427. {
  22428. name: "Macro+++++",
  22429. height: math.unit(1220, "km")
  22430. },
  22431. ]
  22432. ))
  22433. characterMakers.push(() => makeCharacter(
  22434. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22435. {
  22436. front: {
  22437. height: math.unit(2.3, "m"),
  22438. weight: math.unit(304, "kg"),
  22439. name: "Front",
  22440. image: {
  22441. source: "./media/characters/icowom-lee/front.svg",
  22442. extra: 985 / 955,
  22443. bottom: 25.4 / 1012
  22444. }
  22445. },
  22446. fronttentacles: {
  22447. height: math.unit(2.3, "m"),
  22448. weight: math.unit(304, "kg"),
  22449. name: "Front-tentacles",
  22450. image: {
  22451. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22452. extra: 985 / 955,
  22453. bottom: 25.4 / 1012
  22454. }
  22455. },
  22456. back: {
  22457. height: math.unit(2.3, "m"),
  22458. weight: math.unit(304, "kg"),
  22459. name: "Back",
  22460. image: {
  22461. source: "./media/characters/icowom-lee/back.svg",
  22462. extra: 975 / 954,
  22463. bottom: 9.5 / 985
  22464. }
  22465. },
  22466. backtentacles: {
  22467. height: math.unit(2.3, "m"),
  22468. weight: math.unit(304, "kg"),
  22469. name: "Back-tentacles",
  22470. image: {
  22471. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22472. extra: 975 / 954,
  22473. bottom: 9.5 / 985
  22474. }
  22475. },
  22476. frontDressed: {
  22477. height: math.unit(2.3, "m"),
  22478. weight: math.unit(304, "kg"),
  22479. name: "Front (Dressed)",
  22480. image: {
  22481. source: "./media/characters/icowom-lee/front-dressed.svg",
  22482. extra: 3076 / 2933,
  22483. bottom: 51.4 / 3125.1889
  22484. }
  22485. },
  22486. rump: {
  22487. height: math.unit(0.776, "meters"),
  22488. name: "Rump",
  22489. image: {
  22490. source: "./media/characters/icowom-lee/rump.svg"
  22491. }
  22492. },
  22493. genitals: {
  22494. height: math.unit(0.78, "meters"),
  22495. name: "Genitals",
  22496. image: {
  22497. source: "./media/characters/icowom-lee/genitals.svg"
  22498. }
  22499. },
  22500. },
  22501. [
  22502. {
  22503. name: "Normal",
  22504. height: math.unit(2.3, "meters"),
  22505. default: true
  22506. },
  22507. {
  22508. name: "Macro",
  22509. height: math.unit(94, "meters"),
  22510. default: true
  22511. },
  22512. ]
  22513. ))
  22514. characterMakers.push(() => makeCharacter(
  22515. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22516. {
  22517. front: {
  22518. height: math.unit(22, "meters"),
  22519. weight: math.unit(21000, "kg"),
  22520. name: "Front",
  22521. image: {
  22522. source: "./media/characters/shock-diamond/front.svg",
  22523. extra: 2204 / 2053,
  22524. bottom: 65 / 2239.47
  22525. }
  22526. },
  22527. frontNude: {
  22528. height: math.unit(22, "meters"),
  22529. weight: math.unit(21000, "kg"),
  22530. name: "Front (Nude)",
  22531. image: {
  22532. source: "./media/characters/shock-diamond/front-nude.svg",
  22533. extra: 2514 / 2285,
  22534. bottom: 13 / 2527.56
  22535. }
  22536. },
  22537. },
  22538. [
  22539. {
  22540. name: "Normal",
  22541. height: math.unit(3, "meters")
  22542. },
  22543. {
  22544. name: "Macro",
  22545. height: math.unit(22, "meters"),
  22546. default: true
  22547. },
  22548. ]
  22549. ))
  22550. characterMakers.push(() => makeCharacter(
  22551. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22552. {
  22553. front: {
  22554. height: math.unit(5 + 4 / 12, "feet"),
  22555. weight: math.unit(120, "lb"),
  22556. name: "Front",
  22557. image: {
  22558. source: "./media/characters/rory/front.svg",
  22559. extra: 1318/1241,
  22560. bottom: 42/1360
  22561. }
  22562. },
  22563. back: {
  22564. height: math.unit(5 + 4 / 12, "feet"),
  22565. weight: math.unit(120, "lb"),
  22566. name: "Back",
  22567. image: {
  22568. source: "./media/characters/rory/back.svg",
  22569. extra: 1318/1241,
  22570. bottom: 42/1360
  22571. }
  22572. },
  22573. butt: {
  22574. height: math.unit(1.74, "feet"),
  22575. name: "Butt",
  22576. image: {
  22577. source: "./media/characters/rory/butt.svg"
  22578. }
  22579. },
  22580. dick: {
  22581. height: math.unit(1.02, "feet"),
  22582. name: "Dick",
  22583. image: {
  22584. source: "./media/characters/rory/dick.svg"
  22585. }
  22586. },
  22587. paws: {
  22588. height: math.unit(1, "feet"),
  22589. name: "Paws",
  22590. image: {
  22591. source: "./media/characters/rory/paws.svg"
  22592. }
  22593. },
  22594. frontAlt: {
  22595. height: math.unit(5 + 4 / 12, "feet"),
  22596. weight: math.unit(120, "lb"),
  22597. name: "Front (Alt)",
  22598. image: {
  22599. source: "./media/characters/rory/front-alt.svg",
  22600. extra: 589 / 556,
  22601. bottom: 45.7 / 635.76
  22602. }
  22603. },
  22604. frontAltNude: {
  22605. height: math.unit(5 + 4 / 12, "feet"),
  22606. weight: math.unit(120, "lb"),
  22607. name: "Front (Alt, Nude)",
  22608. image: {
  22609. source: "./media/characters/rory/front-alt-nude.svg",
  22610. extra: 589 / 556,
  22611. bottom: 45.7 / 635.76
  22612. }
  22613. },
  22614. side: {
  22615. height: math.unit(5 + 4 / 12, "feet"),
  22616. weight: math.unit(120, "lb"),
  22617. name: "Side",
  22618. image: {
  22619. source: "./media/characters/rory/side.svg",
  22620. extra: 597 / 564,
  22621. bottom: 55 / 653
  22622. }
  22623. },
  22624. backAlt: {
  22625. height: math.unit(5 + 4 / 12, "feet"),
  22626. weight: math.unit(120, "lb"),
  22627. name: "Back (Alt)",
  22628. image: {
  22629. source: "./media/characters/rory/back-alt.svg",
  22630. extra: 620 / 585,
  22631. bottom: 8.86 / 630.43
  22632. }
  22633. },
  22634. dickAlt: {
  22635. height: math.unit(0.86, "feet"),
  22636. name: "Dick (Alt)",
  22637. image: {
  22638. source: "./media/characters/rory/dick-alt.svg"
  22639. }
  22640. },
  22641. },
  22642. [
  22643. {
  22644. name: "Normal",
  22645. height: math.unit(5 + 4 / 12, "feet"),
  22646. default: true
  22647. },
  22648. {
  22649. name: "Macro",
  22650. height: math.unit(100, "feet")
  22651. },
  22652. {
  22653. name: "Macro+",
  22654. height: math.unit(140, "feet")
  22655. },
  22656. {
  22657. name: "Macro++",
  22658. height: math.unit(300, "feet")
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22664. {
  22665. front: {
  22666. height: math.unit(5 + 9 / 12, "feet"),
  22667. weight: math.unit(190, "lb"),
  22668. name: "Front",
  22669. image: {
  22670. source: "./media/characters/sprisk/front.svg",
  22671. extra: 1225 / 1180,
  22672. bottom: 42.7 / 1266.4
  22673. }
  22674. },
  22675. frontNsfw: {
  22676. height: math.unit(5 + 9 / 12, "feet"),
  22677. weight: math.unit(190, "lb"),
  22678. name: "Front (NSFW)",
  22679. image: {
  22680. source: "./media/characters/sprisk/front-nsfw.svg",
  22681. extra: 1225 / 1180,
  22682. bottom: 42.7 / 1266.4
  22683. }
  22684. },
  22685. back: {
  22686. height: math.unit(5 + 9 / 12, "feet"),
  22687. weight: math.unit(190, "lb"),
  22688. name: "Back",
  22689. image: {
  22690. source: "./media/characters/sprisk/back.svg",
  22691. extra: 1247 / 1200,
  22692. bottom: 5.6 / 1253.04
  22693. }
  22694. },
  22695. },
  22696. [
  22697. {
  22698. name: "Tiny",
  22699. height: math.unit(2, "inches")
  22700. },
  22701. {
  22702. name: "Normal",
  22703. height: math.unit(5 + 9 / 12, "feet"),
  22704. default: true
  22705. },
  22706. {
  22707. name: "Mini Macro",
  22708. height: math.unit(18, "feet")
  22709. },
  22710. {
  22711. name: "Macro",
  22712. height: math.unit(100, "feet")
  22713. },
  22714. {
  22715. name: "MACRO",
  22716. height: math.unit(50, "miles")
  22717. },
  22718. {
  22719. name: "M A C R O",
  22720. height: math.unit(300, "miles")
  22721. },
  22722. ]
  22723. ))
  22724. characterMakers.push(() => makeCharacter(
  22725. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22726. {
  22727. side: {
  22728. height: math.unit(15.6, "meters"),
  22729. weight: math.unit(700000, "kg"),
  22730. name: "Side",
  22731. image: {
  22732. source: "./media/characters/bunsen/side.svg",
  22733. extra: 1644 / 358
  22734. }
  22735. },
  22736. foot: {
  22737. height: math.unit(1.611 * 1644 / 358, "meter"),
  22738. name: "Foot",
  22739. image: {
  22740. source: "./media/characters/bunsen/foot.svg"
  22741. }
  22742. },
  22743. },
  22744. [
  22745. {
  22746. name: "Small",
  22747. height: math.unit(10, "feet")
  22748. },
  22749. {
  22750. name: "Normal",
  22751. height: math.unit(15.6, "meters"),
  22752. default: true
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22758. {
  22759. front: {
  22760. height: math.unit(4 + 11 / 12, "feet"),
  22761. weight: math.unit(140, "lb"),
  22762. name: "Front",
  22763. image: {
  22764. source: "./media/characters/sesh/front.svg",
  22765. extra: 3420 / 3231,
  22766. bottom: 72 / 3949.5
  22767. }
  22768. },
  22769. },
  22770. [
  22771. {
  22772. name: "Normal",
  22773. height: math.unit(4 + 11 / 12, "feet")
  22774. },
  22775. {
  22776. name: "Grown",
  22777. height: math.unit(15, "feet"),
  22778. default: true
  22779. },
  22780. {
  22781. name: "Macro",
  22782. height: math.unit(1500, "feet")
  22783. },
  22784. {
  22785. name: "Megamacro",
  22786. height: math.unit(30, "miles")
  22787. },
  22788. {
  22789. name: "Continental",
  22790. height: math.unit(3000, "miles")
  22791. },
  22792. {
  22793. name: "Gravity Mass",
  22794. height: math.unit(300000, "miles")
  22795. },
  22796. {
  22797. name: "Planet Buster",
  22798. height: math.unit(30000000, "miles")
  22799. },
  22800. {
  22801. name: "Big",
  22802. height: math.unit(3000000000, "miles")
  22803. },
  22804. ]
  22805. ))
  22806. characterMakers.push(() => makeCharacter(
  22807. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22808. {
  22809. front: {
  22810. height: math.unit(9, "feet"),
  22811. weight: math.unit(350, "lb"),
  22812. name: "Front",
  22813. image: {
  22814. source: "./media/characters/pepper/front.svg",
  22815. extra: 1448 / 1312,
  22816. bottom: 9.4 / 1457.88
  22817. }
  22818. },
  22819. back: {
  22820. height: math.unit(9, "feet"),
  22821. weight: math.unit(350, "lb"),
  22822. name: "Back",
  22823. image: {
  22824. source: "./media/characters/pepper/back.svg",
  22825. extra: 1423 / 1300,
  22826. bottom: 4.6 / 1429
  22827. }
  22828. },
  22829. maw: {
  22830. height: math.unit(0.932, "feet"),
  22831. name: "Maw",
  22832. image: {
  22833. source: "./media/characters/pepper/maw.svg"
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Normal",
  22840. height: math.unit(9, "feet"),
  22841. default: true
  22842. },
  22843. ]
  22844. ))
  22845. characterMakers.push(() => makeCharacter(
  22846. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22847. {
  22848. front: {
  22849. height: math.unit(6, "feet"),
  22850. weight: math.unit(150, "lb"),
  22851. name: "Front",
  22852. image: {
  22853. source: "./media/characters/maelstrom/front.svg",
  22854. extra: 2100 / 1883,
  22855. bottom: 94 / 2196.7
  22856. }
  22857. },
  22858. },
  22859. [
  22860. {
  22861. name: "Less Kaiju",
  22862. height: math.unit(200, "feet")
  22863. },
  22864. {
  22865. name: "Kaiju",
  22866. height: math.unit(400, "feet"),
  22867. default: true
  22868. },
  22869. {
  22870. name: "Kaiju-er",
  22871. height: math.unit(600, "feet")
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22877. {
  22878. front: {
  22879. height: math.unit(6 + 5 / 12, "feet"),
  22880. weight: math.unit(180, "lb"),
  22881. name: "Front",
  22882. image: {
  22883. source: "./media/characters/lexir/front.svg",
  22884. extra: 180 / 172,
  22885. bottom: 12 / 192
  22886. }
  22887. },
  22888. back: {
  22889. height: math.unit(6 + 5 / 12, "feet"),
  22890. weight: math.unit(180, "lb"),
  22891. name: "Back",
  22892. image: {
  22893. source: "./media/characters/lexir/back.svg",
  22894. extra: 183.84 / 175.5,
  22895. bottom: 3.1 / 187
  22896. }
  22897. },
  22898. },
  22899. [
  22900. {
  22901. name: "Very Smal",
  22902. height: math.unit(1, "nm")
  22903. },
  22904. {
  22905. name: "Normal",
  22906. height: math.unit(6 + 5 / 12, "feet"),
  22907. default: true
  22908. },
  22909. {
  22910. name: "Macro",
  22911. height: math.unit(1, "mile")
  22912. },
  22913. {
  22914. name: "Megamacro",
  22915. height: math.unit(50, "miles")
  22916. },
  22917. ]
  22918. ))
  22919. characterMakers.push(() => makeCharacter(
  22920. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22921. {
  22922. front: {
  22923. height: math.unit(1.5, "meters"),
  22924. weight: math.unit(100, "lb"),
  22925. name: "Front",
  22926. image: {
  22927. source: "./media/characters/maksio/front.svg",
  22928. extra: 1549 / 1531,
  22929. bottom: 123.7 / 1674.5429
  22930. }
  22931. },
  22932. back: {
  22933. height: math.unit(1.5, "meters"),
  22934. weight: math.unit(100, "lb"),
  22935. name: "Back",
  22936. image: {
  22937. source: "./media/characters/maksio/back.svg",
  22938. extra: 1541 / 1509,
  22939. bottom: 97 / 1639
  22940. }
  22941. },
  22942. hand: {
  22943. height: math.unit(0.621, "feet"),
  22944. name: "Hand",
  22945. image: {
  22946. source: "./media/characters/maksio/hand.svg"
  22947. }
  22948. },
  22949. foot: {
  22950. height: math.unit(1.611, "feet"),
  22951. name: "Foot",
  22952. image: {
  22953. source: "./media/characters/maksio/foot.svg"
  22954. }
  22955. },
  22956. },
  22957. [
  22958. {
  22959. name: "Shrunken",
  22960. height: math.unit(10, "cm")
  22961. },
  22962. {
  22963. name: "Normal",
  22964. height: math.unit(150, "cm"),
  22965. default: true
  22966. },
  22967. ]
  22968. ))
  22969. characterMakers.push(() => makeCharacter(
  22970. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22971. {
  22972. front: {
  22973. height: math.unit(100, "feet"),
  22974. name: "Front",
  22975. image: {
  22976. source: "./media/characters/erza-bear/front.svg",
  22977. extra: 2449 / 2390,
  22978. bottom: 46 / 2494
  22979. }
  22980. },
  22981. back: {
  22982. height: math.unit(100, "feet"),
  22983. name: "Back",
  22984. image: {
  22985. source: "./media/characters/erza-bear/back.svg",
  22986. extra: 2489 / 2430,
  22987. bottom: 85.4 / 2480
  22988. }
  22989. },
  22990. tail: {
  22991. height: math.unit(42, "feet"),
  22992. name: "Tail",
  22993. image: {
  22994. source: "./media/characters/erza-bear/tail.svg"
  22995. }
  22996. },
  22997. tongue: {
  22998. height: math.unit(8, "feet"),
  22999. name: "Tongue",
  23000. image: {
  23001. source: "./media/characters/erza-bear/tongue.svg"
  23002. }
  23003. },
  23004. dick: {
  23005. height: math.unit(10.5, "feet"),
  23006. name: "Dick",
  23007. image: {
  23008. source: "./media/characters/erza-bear/dick.svg"
  23009. }
  23010. },
  23011. dickVertical: {
  23012. height: math.unit(16.9, "feet"),
  23013. name: "Dick (Vertical)",
  23014. image: {
  23015. source: "./media/characters/erza-bear/dick-vertical.svg"
  23016. }
  23017. },
  23018. },
  23019. [
  23020. {
  23021. name: "Macro",
  23022. height: math.unit(100, "feet"),
  23023. default: true
  23024. },
  23025. ]
  23026. ))
  23027. characterMakers.push(() => makeCharacter(
  23028. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23029. {
  23030. front: {
  23031. height: math.unit(172, "cm"),
  23032. weight: math.unit(73, "kg"),
  23033. name: "Front",
  23034. image: {
  23035. source: "./media/characters/violet-flor/front.svg",
  23036. extra: 1530 / 1442,
  23037. bottom: 61.9 / 1588.8
  23038. }
  23039. },
  23040. back: {
  23041. height: math.unit(180, "cm"),
  23042. weight: math.unit(73, "kg"),
  23043. name: "Back",
  23044. image: {
  23045. source: "./media/characters/violet-flor/back.svg",
  23046. extra: 1692 / 1630,
  23047. bottom: 20 / 1712
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Normal",
  23054. height: math.unit(172, "cm"),
  23055. default: true
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(6, "feet"),
  23064. weight: math.unit(220, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/lynn-rhea/front.svg",
  23068. extra: 310 / 273
  23069. }
  23070. },
  23071. back: {
  23072. height: math.unit(6, "feet"),
  23073. weight: math.unit(220, "lb"),
  23074. name: "Back",
  23075. image: {
  23076. source: "./media/characters/lynn-rhea/back.svg",
  23077. extra: 310 / 273
  23078. }
  23079. },
  23080. dicks: {
  23081. height: math.unit(0.9, "feet"),
  23082. name: "Dicks",
  23083. image: {
  23084. source: "./media/characters/lynn-rhea/dicks.svg"
  23085. }
  23086. },
  23087. slit: {
  23088. height: math.unit(0.4, "feet"),
  23089. name: "Slit",
  23090. image: {
  23091. source: "./media/characters/lynn-rhea/slit.svg"
  23092. }
  23093. },
  23094. },
  23095. [
  23096. {
  23097. name: "Micro",
  23098. height: math.unit(1, "inch")
  23099. },
  23100. {
  23101. name: "Macro",
  23102. height: math.unit(60, "feet"),
  23103. default: true
  23104. },
  23105. {
  23106. name: "Megamacro",
  23107. height: math.unit(2, "miles")
  23108. },
  23109. {
  23110. name: "Gigamacro",
  23111. height: math.unit(3, "earths")
  23112. },
  23113. {
  23114. name: "Galactic",
  23115. height: math.unit(0.8, "galaxies")
  23116. },
  23117. ]
  23118. ))
  23119. characterMakers.push(() => makeCharacter(
  23120. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23121. {
  23122. front: {
  23123. height: math.unit(1600, "feet"),
  23124. weight: math.unit(85758785169, "kg"),
  23125. name: "Front",
  23126. image: {
  23127. source: "./media/characters/valathos/front.svg",
  23128. extra: 1451 / 1339
  23129. }
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "Macro",
  23135. height: math.unit(1600, "feet"),
  23136. default: true
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(7 + 5 / 12, "feet"),
  23145. weight: math.unit(300, "lb"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/azula/front.svg",
  23149. extra: 3208 / 2880,
  23150. bottom: 80.2 / 3277
  23151. }
  23152. },
  23153. back: {
  23154. height: math.unit(7 + 5 / 12, "feet"),
  23155. weight: math.unit(300, "lb"),
  23156. name: "Back",
  23157. image: {
  23158. source: "./media/characters/azula/back.svg",
  23159. extra: 3169 / 2822,
  23160. bottom: 150.6 / 3321
  23161. }
  23162. },
  23163. },
  23164. [
  23165. {
  23166. name: "Normal",
  23167. height: math.unit(7 + 5 / 12, "feet"),
  23168. default: true
  23169. },
  23170. {
  23171. name: "Big",
  23172. height: math.unit(20, "feet")
  23173. },
  23174. ]
  23175. ))
  23176. characterMakers.push(() => makeCharacter(
  23177. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23178. {
  23179. front: {
  23180. height: math.unit(5 + 1 / 12, "feet"),
  23181. weight: math.unit(110, "lb"),
  23182. name: "Front",
  23183. image: {
  23184. source: "./media/characters/rupert/front.svg",
  23185. extra: 1549 / 1495,
  23186. bottom: 54.2 / 1604.4
  23187. }
  23188. },
  23189. },
  23190. [
  23191. {
  23192. name: "Normal",
  23193. height: math.unit(5 + 1 / 12, "feet"),
  23194. default: true
  23195. },
  23196. ]
  23197. ))
  23198. characterMakers.push(() => makeCharacter(
  23199. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23200. {
  23201. front: {
  23202. height: math.unit(8 + 4 / 12, "feet"),
  23203. weight: math.unit(350, "lb"),
  23204. name: "Front",
  23205. image: {
  23206. source: "./media/characters/sheera-castellar/front.svg",
  23207. extra: 1957 / 1894,
  23208. bottom: 26.97 / 1975.017
  23209. }
  23210. },
  23211. side: {
  23212. height: math.unit(8 + 4 / 12, "feet"),
  23213. weight: math.unit(350, "lb"),
  23214. name: "Side",
  23215. image: {
  23216. source: "./media/characters/sheera-castellar/side.svg",
  23217. extra: 1957 / 1894
  23218. }
  23219. },
  23220. back: {
  23221. height: math.unit(8 + 4 / 12, "feet"),
  23222. weight: math.unit(350, "lb"),
  23223. name: "Back",
  23224. image: {
  23225. source: "./media/characters/sheera-castellar/back.svg",
  23226. extra: 1957 / 1894
  23227. }
  23228. },
  23229. angled: {
  23230. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23231. weight: math.unit(350, "lb"),
  23232. name: "Angled",
  23233. image: {
  23234. source: "./media/characters/sheera-castellar/angled.svg",
  23235. extra: 1807 / 1707,
  23236. bottom: 68 / 1875
  23237. }
  23238. },
  23239. genitals: {
  23240. height: math.unit(2.2, "feet"),
  23241. name: "Genitals",
  23242. image: {
  23243. source: "./media/characters/sheera-castellar/genitals.svg"
  23244. }
  23245. },
  23246. taur: {
  23247. height: math.unit(10 + 6/12, "feet"),
  23248. name: "Taur",
  23249. image: {
  23250. source: "./media/characters/sheera-castellar/taur.svg",
  23251. extra: 2017/1909,
  23252. bottom: 185/2202
  23253. }
  23254. },
  23255. },
  23256. [
  23257. {
  23258. name: "Normal",
  23259. height: math.unit(8 + 4 / 12, "feet")
  23260. },
  23261. {
  23262. name: "Macro",
  23263. height: math.unit(150, "feet"),
  23264. default: true
  23265. },
  23266. {
  23267. name: "Macro+",
  23268. height: math.unit(800, "feet")
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23274. {
  23275. front: {
  23276. height: math.unit(6, "feet"),
  23277. weight: math.unit(150, "lb"),
  23278. name: "Front",
  23279. image: {
  23280. source: "./media/characters/jaipur/front.svg",
  23281. extra: 3860 / 3731,
  23282. bottom: 287 / 4140
  23283. }
  23284. },
  23285. back: {
  23286. height: math.unit(6, "feet"),
  23287. weight: math.unit(150, "lb"),
  23288. name: "Back",
  23289. image: {
  23290. source: "./media/characters/jaipur/back.svg",
  23291. extra: 4060 / 3930,
  23292. bottom: 151 / 4200
  23293. }
  23294. },
  23295. },
  23296. [
  23297. {
  23298. name: "Normal",
  23299. height: math.unit(1.85, "meters"),
  23300. default: true
  23301. },
  23302. {
  23303. name: "Macro",
  23304. height: math.unit(150, "meters")
  23305. },
  23306. {
  23307. name: "Macro+",
  23308. height: math.unit(0.5, "miles")
  23309. },
  23310. {
  23311. name: "Macro++",
  23312. height: math.unit(2.5, "miles")
  23313. },
  23314. {
  23315. name: "Macro+++",
  23316. height: math.unit(12, "miles")
  23317. },
  23318. {
  23319. name: "Macro++++",
  23320. height: math.unit(120, "miles")
  23321. },
  23322. {
  23323. name: "Macro+++++",
  23324. height: math.unit(1200, "miles")
  23325. },
  23326. ]
  23327. ))
  23328. characterMakers.push(() => makeCharacter(
  23329. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23330. {
  23331. front: {
  23332. height: math.unit(6, "feet"),
  23333. weight: math.unit(150, "lb"),
  23334. name: "Front",
  23335. image: {
  23336. source: "./media/characters/sheila-wolf/front.svg",
  23337. extra: 1931 / 1808,
  23338. bottom: 29.5 / 1960
  23339. }
  23340. },
  23341. dick: {
  23342. height: math.unit(1.464, "feet"),
  23343. name: "Dick",
  23344. image: {
  23345. source: "./media/characters/sheila-wolf/dick.svg"
  23346. }
  23347. },
  23348. muzzle: {
  23349. height: math.unit(0.513, "feet"),
  23350. name: "Muzzle",
  23351. image: {
  23352. source: "./media/characters/sheila-wolf/muzzle.svg"
  23353. }
  23354. },
  23355. },
  23356. [
  23357. {
  23358. name: "Macro",
  23359. height: math.unit(70, "feet"),
  23360. default: true
  23361. },
  23362. ]
  23363. ))
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23366. {
  23367. front: {
  23368. height: math.unit(32, "meters"),
  23369. weight: math.unit(300000, "kg"),
  23370. name: "Front",
  23371. image: {
  23372. source: "./media/characters/almor/front.svg",
  23373. extra: 1408 / 1322,
  23374. bottom: 94.6 / 1506.5
  23375. }
  23376. },
  23377. },
  23378. [
  23379. {
  23380. name: "Macro",
  23381. height: math.unit(32, "meters"),
  23382. default: true
  23383. },
  23384. ]
  23385. ))
  23386. characterMakers.push(() => makeCharacter(
  23387. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23388. {
  23389. front: {
  23390. height: math.unit(7, "feet"),
  23391. weight: math.unit(200, "lb"),
  23392. name: "Front",
  23393. image: {
  23394. source: "./media/characters/silver/front.svg",
  23395. extra: 472.1 / 450.5,
  23396. bottom: 26.5 / 499.424
  23397. }
  23398. },
  23399. },
  23400. [
  23401. {
  23402. name: "Normal",
  23403. height: math.unit(7, "feet"),
  23404. default: true
  23405. },
  23406. {
  23407. name: "Macro",
  23408. height: math.unit(800, "feet")
  23409. },
  23410. {
  23411. name: "Megamacro",
  23412. height: math.unit(250, "miles")
  23413. },
  23414. ]
  23415. ))
  23416. characterMakers.push(() => makeCharacter(
  23417. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23418. {
  23419. front: {
  23420. height: math.unit(6, "feet"),
  23421. weight: math.unit(150, "lb"),
  23422. name: "Front",
  23423. image: {
  23424. source: "./media/characters/pliskin/front.svg",
  23425. extra: 1469 / 1359,
  23426. bottom: 70 / 1540
  23427. }
  23428. },
  23429. },
  23430. [
  23431. {
  23432. name: "Micro",
  23433. height: math.unit(3, "inches")
  23434. },
  23435. {
  23436. name: "Normal",
  23437. height: math.unit(5 + 11 / 12, "feet"),
  23438. default: true
  23439. },
  23440. {
  23441. name: "Macro",
  23442. height: math.unit(120, "feet")
  23443. },
  23444. ]
  23445. ))
  23446. characterMakers.push(() => makeCharacter(
  23447. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23448. {
  23449. front: {
  23450. height: math.unit(6, "feet"),
  23451. weight: math.unit(150, "lb"),
  23452. name: "Front",
  23453. image: {
  23454. source: "./media/characters/sammy/front.svg",
  23455. extra: 1193 / 1089,
  23456. bottom: 30.5 / 1226
  23457. }
  23458. },
  23459. },
  23460. [
  23461. {
  23462. name: "Macro",
  23463. height: math.unit(1700, "feet"),
  23464. default: true
  23465. },
  23466. {
  23467. name: "Examacro",
  23468. height: math.unit(2.5e9, "lightyears")
  23469. },
  23470. ]
  23471. ))
  23472. characterMakers.push(() => makeCharacter(
  23473. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23474. {
  23475. front: {
  23476. height: math.unit(21, "meters"),
  23477. weight: math.unit(12, "tonnes"),
  23478. name: "Front",
  23479. image: {
  23480. source: "./media/characters/kuru/front.svg",
  23481. extra: 4301 / 3785,
  23482. bottom: 371.3 / 4691
  23483. }
  23484. },
  23485. },
  23486. [
  23487. {
  23488. name: "Macro",
  23489. height: math.unit(21, "meters"),
  23490. default: true
  23491. },
  23492. ]
  23493. ))
  23494. characterMakers.push(() => makeCharacter(
  23495. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23496. {
  23497. front: {
  23498. height: math.unit(23, "meters"),
  23499. weight: math.unit(12.2, "tonnes"),
  23500. name: "Front",
  23501. image: {
  23502. source: "./media/characters/rakka/front.svg",
  23503. extra: 4670 / 4169,
  23504. bottom: 301 / 4968.7
  23505. }
  23506. },
  23507. },
  23508. [
  23509. {
  23510. name: "Macro",
  23511. height: math.unit(23, "meters"),
  23512. default: true
  23513. },
  23514. ]
  23515. ))
  23516. characterMakers.push(() => makeCharacter(
  23517. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23518. {
  23519. front: {
  23520. height: math.unit(6, "feet"),
  23521. weight: math.unit(150, "lb"),
  23522. name: "Front",
  23523. image: {
  23524. source: "./media/characters/rhys-feline/front.svg",
  23525. extra: 2488 / 2308,
  23526. bottom: 35.67 / 2519.19
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Really Small",
  23533. height: math.unit(1, "nm")
  23534. },
  23535. {
  23536. name: "Micro",
  23537. height: math.unit(4, "inches")
  23538. },
  23539. {
  23540. name: "Normal",
  23541. height: math.unit(4 + 10 / 12, "feet"),
  23542. default: true
  23543. },
  23544. {
  23545. name: "Macro",
  23546. height: math.unit(100, "feet")
  23547. },
  23548. {
  23549. name: "Megamacto",
  23550. height: math.unit(50, "miles")
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23556. {
  23557. side: {
  23558. height: math.unit(30, "feet"),
  23559. weight: math.unit(35000, "kg"),
  23560. name: "Side",
  23561. image: {
  23562. source: "./media/characters/alydar/side.svg",
  23563. extra: 234 / 222,
  23564. bottom: 6.5 / 241
  23565. }
  23566. },
  23567. front: {
  23568. height: math.unit(30, "feet"),
  23569. weight: math.unit(35000, "kg"),
  23570. name: "Front",
  23571. image: {
  23572. source: "./media/characters/alydar/front.svg",
  23573. extra: 223.37 / 210.2,
  23574. bottom: 22.3 / 246.76
  23575. }
  23576. },
  23577. top: {
  23578. height: math.unit(64.54, "feet"),
  23579. weight: math.unit(35000, "kg"),
  23580. name: "Top",
  23581. image: {
  23582. source: "./media/characters/alydar/top.svg"
  23583. }
  23584. },
  23585. anthro: {
  23586. height: math.unit(30, "feet"),
  23587. weight: math.unit(9000, "kg"),
  23588. name: "Anthro",
  23589. image: {
  23590. source: "./media/characters/alydar/anthro.svg",
  23591. extra: 432 / 421,
  23592. bottom: 7.18 / 440
  23593. }
  23594. },
  23595. maw: {
  23596. height: math.unit(11.693, "feet"),
  23597. name: "Maw",
  23598. image: {
  23599. source: "./media/characters/alydar/maw.svg"
  23600. }
  23601. },
  23602. head: {
  23603. height: math.unit(11.693, "feet"),
  23604. name: "Head",
  23605. image: {
  23606. source: "./media/characters/alydar/head.svg"
  23607. }
  23608. },
  23609. headAlt: {
  23610. height: math.unit(12.861, "feet"),
  23611. name: "Head (Alt)",
  23612. image: {
  23613. source: "./media/characters/alydar/head-alt.svg"
  23614. }
  23615. },
  23616. wing: {
  23617. height: math.unit(20.712, "feet"),
  23618. name: "Wing",
  23619. image: {
  23620. source: "./media/characters/alydar/wing.svg"
  23621. }
  23622. },
  23623. wingFeather: {
  23624. height: math.unit(9.662, "feet"),
  23625. name: "Wing Feather",
  23626. image: {
  23627. source: "./media/characters/alydar/wing-feather.svg"
  23628. }
  23629. },
  23630. countourFeather: {
  23631. height: math.unit(4.154, "feet"),
  23632. name: "Contour Feather",
  23633. image: {
  23634. source: "./media/characters/alydar/contour-feather.svg"
  23635. }
  23636. },
  23637. },
  23638. [
  23639. {
  23640. name: "Diplomatic",
  23641. height: math.unit(13, "feet"),
  23642. default: true
  23643. },
  23644. {
  23645. name: "Small",
  23646. height: math.unit(30, "feet")
  23647. },
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(95, "feet"),
  23651. default: true
  23652. },
  23653. {
  23654. name: "Large",
  23655. height: math.unit(285, "feet")
  23656. },
  23657. {
  23658. name: "Incomprehensible",
  23659. height: math.unit(450, "megameters")
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23665. {
  23666. side: {
  23667. height: math.unit(11, "feet"),
  23668. weight: math.unit(1750, "kg"),
  23669. name: "Side",
  23670. image: {
  23671. source: "./media/characters/selicia/side.svg",
  23672. extra: 440 / 396,
  23673. bottom: 24.8 / 465.979
  23674. }
  23675. },
  23676. maw: {
  23677. height: math.unit(4.665, "feet"),
  23678. name: "Maw",
  23679. image: {
  23680. source: "./media/characters/selicia/maw.svg"
  23681. }
  23682. },
  23683. },
  23684. [
  23685. {
  23686. name: "Normal",
  23687. height: math.unit(11, "feet"),
  23688. default: true
  23689. },
  23690. ]
  23691. ))
  23692. characterMakers.push(() => makeCharacter(
  23693. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23694. {
  23695. side: {
  23696. height: math.unit(2 + 6 / 12, "feet"),
  23697. weight: math.unit(30, "lb"),
  23698. name: "Side",
  23699. image: {
  23700. source: "./media/characters/layla/side.svg",
  23701. extra: 244 / 188,
  23702. bottom: 18.2 / 262.1
  23703. }
  23704. },
  23705. back: {
  23706. height: math.unit(2 + 6 / 12, "feet"),
  23707. weight: math.unit(30, "lb"),
  23708. name: "Back",
  23709. image: {
  23710. source: "./media/characters/layla/back.svg",
  23711. extra: 308 / 241.5,
  23712. bottom: 8.9 / 316.8
  23713. }
  23714. },
  23715. cumming: {
  23716. height: math.unit(2 + 6 / 12, "feet"),
  23717. weight: math.unit(30, "lb"),
  23718. name: "Cumming",
  23719. image: {
  23720. source: "./media/characters/layla/cumming.svg",
  23721. extra: 342 / 279,
  23722. bottom: 595 / 938
  23723. }
  23724. },
  23725. dickFlaccid: {
  23726. height: math.unit(2.595, "feet"),
  23727. name: "Flaccid Genitals",
  23728. image: {
  23729. source: "./media/characters/layla/dick-flaccid.svg"
  23730. }
  23731. },
  23732. dickErect: {
  23733. height: math.unit(2.359, "feet"),
  23734. name: "Erect Genitals",
  23735. image: {
  23736. source: "./media/characters/layla/dick-erect.svg"
  23737. }
  23738. },
  23739. dragon: {
  23740. height: math.unit(40, "feet"),
  23741. name: "Dragon",
  23742. image: {
  23743. source: "./media/characters/layla/dragon.svg",
  23744. extra: 610/535,
  23745. bottom: 367/977
  23746. }
  23747. },
  23748. taur: {
  23749. height: math.unit(30, "feet"),
  23750. name: "Taur",
  23751. image: {
  23752. source: "./media/characters/layla/taur.svg",
  23753. extra: 1268/1199,
  23754. bottom: 112/1380
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Micro",
  23761. height: math.unit(1, "inch")
  23762. },
  23763. {
  23764. name: "Small",
  23765. height: math.unit(1, "foot")
  23766. },
  23767. {
  23768. name: "Normal",
  23769. height: math.unit(2 + 6 / 12, "feet"),
  23770. default: true
  23771. },
  23772. {
  23773. name: "Macro",
  23774. height: math.unit(200, "feet")
  23775. },
  23776. {
  23777. name: "Megamacro",
  23778. height: math.unit(1000, "miles")
  23779. },
  23780. {
  23781. name: "Planetary",
  23782. height: math.unit(8000, "miles")
  23783. },
  23784. {
  23785. name: "True Layla",
  23786. height: math.unit(200000 * 7, "multiverses")
  23787. },
  23788. ]
  23789. ))
  23790. characterMakers.push(() => makeCharacter(
  23791. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23792. {
  23793. back: {
  23794. height: math.unit(10.5, "feet"),
  23795. weight: math.unit(800, "lb"),
  23796. name: "Back",
  23797. image: {
  23798. source: "./media/characters/knox/back.svg",
  23799. extra: 1486 / 1089,
  23800. bottom: 107 / 1601.4
  23801. }
  23802. },
  23803. side: {
  23804. height: math.unit(10.5, "feet"),
  23805. weight: math.unit(800, "lb"),
  23806. name: "Side",
  23807. image: {
  23808. source: "./media/characters/knox/side.svg",
  23809. extra: 244 / 218,
  23810. bottom: 14 / 260
  23811. }
  23812. },
  23813. },
  23814. [
  23815. {
  23816. name: "Compact",
  23817. height: math.unit(10.5, "feet"),
  23818. default: true
  23819. },
  23820. {
  23821. name: "Dynamax",
  23822. height: math.unit(210, "feet")
  23823. },
  23824. {
  23825. name: "Full Macro",
  23826. height: math.unit(850, "feet")
  23827. },
  23828. ]
  23829. ))
  23830. characterMakers.push(() => makeCharacter(
  23831. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23832. {
  23833. front: {
  23834. height: math.unit(28, "feet"),
  23835. weight: math.unit(10500, "lb"),
  23836. name: "Front",
  23837. image: {
  23838. source: "./media/characters/kayda/front.svg",
  23839. extra: 1536 / 1428,
  23840. bottom: 68.7 / 1603
  23841. }
  23842. },
  23843. back: {
  23844. height: math.unit(28, "feet"),
  23845. weight: math.unit(10500, "lb"),
  23846. name: "Back",
  23847. image: {
  23848. source: "./media/characters/kayda/back.svg",
  23849. extra: 1557 / 1464,
  23850. bottom: 39.5 / 1597.49
  23851. }
  23852. },
  23853. dick: {
  23854. height: math.unit(3.858, "feet"),
  23855. name: "Dick",
  23856. image: {
  23857. source: "./media/characters/kayda/dick.svg"
  23858. }
  23859. },
  23860. },
  23861. [
  23862. {
  23863. name: "Macro",
  23864. height: math.unit(28, "feet"),
  23865. default: true
  23866. },
  23867. ]
  23868. ))
  23869. characterMakers.push(() => makeCharacter(
  23870. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23871. {
  23872. front: {
  23873. height: math.unit(10 + 11 / 12, "feet"),
  23874. weight: math.unit(1400, "lb"),
  23875. name: "Front",
  23876. image: {
  23877. source: "./media/characters/brian/front.svg",
  23878. extra: 737 / 692,
  23879. bottom: 55.4 / 785
  23880. }
  23881. },
  23882. },
  23883. [
  23884. {
  23885. name: "Normal",
  23886. height: math.unit(10 + 11 / 12, "feet"),
  23887. default: true
  23888. },
  23889. ]
  23890. ))
  23891. characterMakers.push(() => makeCharacter(
  23892. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23893. {
  23894. front: {
  23895. height: math.unit(5 + 8 / 12, "feet"),
  23896. weight: math.unit(140, "lb"),
  23897. name: "Front",
  23898. image: {
  23899. source: "./media/characters/khemri/front.svg",
  23900. extra: 4780 / 4059,
  23901. bottom: 80.1 / 4859.25
  23902. }
  23903. },
  23904. },
  23905. [
  23906. {
  23907. name: "Micro",
  23908. height: math.unit(6, "inches")
  23909. },
  23910. {
  23911. name: "Normal",
  23912. height: math.unit(5 + 8 / 12, "feet"),
  23913. default: true
  23914. },
  23915. ]
  23916. ))
  23917. characterMakers.push(() => makeCharacter(
  23918. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23919. {
  23920. front: {
  23921. height: math.unit(13, "feet"),
  23922. weight: math.unit(1700, "lb"),
  23923. name: "Front",
  23924. image: {
  23925. source: "./media/characters/felix-braveheart/front.svg",
  23926. extra: 1222 / 1157,
  23927. bottom: 53.2 / 1280
  23928. }
  23929. },
  23930. back: {
  23931. height: math.unit(13, "feet"),
  23932. weight: math.unit(1700, "lb"),
  23933. name: "Back",
  23934. image: {
  23935. source: "./media/characters/felix-braveheart/back.svg",
  23936. extra: 1277 / 1203,
  23937. bottom: 50.2 / 1327
  23938. }
  23939. },
  23940. feral: {
  23941. height: math.unit(6, "feet"),
  23942. weight: math.unit(400, "lb"),
  23943. name: "Feral",
  23944. image: {
  23945. source: "./media/characters/felix-braveheart/feral.svg",
  23946. extra: 682 / 625,
  23947. bottom: 6.9 / 688
  23948. }
  23949. },
  23950. },
  23951. [
  23952. {
  23953. name: "Normal",
  23954. height: math.unit(13, "feet"),
  23955. default: true
  23956. },
  23957. ]
  23958. ))
  23959. characterMakers.push(() => makeCharacter(
  23960. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23961. {
  23962. side: {
  23963. height: math.unit(5 + 11 / 12, "feet"),
  23964. weight: math.unit(1400, "lb"),
  23965. name: "Side",
  23966. image: {
  23967. source: "./media/characters/shadow-blade/side.svg",
  23968. extra: 1726 / 1267,
  23969. bottom: 58.4 / 1785
  23970. }
  23971. },
  23972. },
  23973. [
  23974. {
  23975. name: "Normal",
  23976. height: math.unit(5 + 11 / 12, "feet"),
  23977. default: true
  23978. },
  23979. ]
  23980. ))
  23981. characterMakers.push(() => makeCharacter(
  23982. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23983. {
  23984. front: {
  23985. height: math.unit(1 + 6 / 12, "feet"),
  23986. weight: math.unit(25, "lb"),
  23987. name: "Front",
  23988. image: {
  23989. source: "./media/characters/karla-halldor/front.svg",
  23990. extra: 1459 / 1383,
  23991. bottom: 12 / 1472
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Normal",
  23998. height: math.unit(1 + 6 / 12, "feet"),
  23999. default: true
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24005. {
  24006. front: {
  24007. height: math.unit(6 + 2 / 12, "feet"),
  24008. weight: math.unit(160, "lb"),
  24009. name: "Front",
  24010. image: {
  24011. source: "./media/characters/ariam/front.svg",
  24012. extra: 714 / 617,
  24013. bottom: 23.4 / 737,
  24014. }
  24015. },
  24016. squatting: {
  24017. height: math.unit(4.1, "feet"),
  24018. weight: math.unit(160, "lb"),
  24019. name: "Squatting",
  24020. image: {
  24021. source: "./media/characters/ariam/squatting.svg",
  24022. extra: 2617 / 2112,
  24023. bottom: 61.2 / 2681,
  24024. }
  24025. },
  24026. },
  24027. [
  24028. {
  24029. name: "Normal",
  24030. height: math.unit(6 + 2 / 12, "feet"),
  24031. default: true
  24032. },
  24033. {
  24034. name: "Normal+",
  24035. height: math.unit(4, "meters")
  24036. },
  24037. {
  24038. name: "Macro",
  24039. height: math.unit(50, "meters")
  24040. },
  24041. {
  24042. name: "Macro+",
  24043. height: math.unit(100, "meters")
  24044. },
  24045. {
  24046. name: "Megamacro",
  24047. height: math.unit(20, "km")
  24048. },
  24049. ]
  24050. ))
  24051. characterMakers.push(() => makeCharacter(
  24052. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24053. {
  24054. front: {
  24055. height: math.unit(1.67, "meters"),
  24056. weight: math.unit(140, "lb"),
  24057. name: "Front",
  24058. image: {
  24059. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24060. extra: 438 / 410,
  24061. bottom: 0.75 / 439
  24062. }
  24063. },
  24064. },
  24065. [
  24066. {
  24067. name: "Shrunken",
  24068. height: math.unit(7.6, "cm")
  24069. },
  24070. {
  24071. name: "Human Scale",
  24072. height: math.unit(1.67, "meters")
  24073. },
  24074. {
  24075. name: "Wolxi Scale",
  24076. height: math.unit(36.7, "meters"),
  24077. default: true
  24078. },
  24079. ]
  24080. ))
  24081. characterMakers.push(() => makeCharacter(
  24082. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24083. {
  24084. front: {
  24085. height: math.unit(1.73, "meters"),
  24086. weight: math.unit(240, "lb"),
  24087. name: "Front",
  24088. image: {
  24089. source: "./media/characters/izue-two-mothers/front.svg",
  24090. extra: 469 / 437,
  24091. bottom: 1.24 / 470.6
  24092. }
  24093. },
  24094. },
  24095. [
  24096. {
  24097. name: "Shrunken",
  24098. height: math.unit(7.86, "cm")
  24099. },
  24100. {
  24101. name: "Human Scale",
  24102. height: math.unit(1.73, "meters")
  24103. },
  24104. {
  24105. name: "Wolxi Scale",
  24106. height: math.unit(38, "meters"),
  24107. default: true
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24113. {
  24114. front: {
  24115. height: math.unit(1.55, "meters"),
  24116. weight: math.unit(120, "lb"),
  24117. name: "Front",
  24118. image: {
  24119. source: "./media/characters/teeku-love-shack/front.svg",
  24120. extra: 387 / 362,
  24121. bottom: 1.51 / 388
  24122. }
  24123. },
  24124. },
  24125. [
  24126. {
  24127. name: "Shrunken",
  24128. height: math.unit(7, "cm")
  24129. },
  24130. {
  24131. name: "Human Scale",
  24132. height: math.unit(1.55, "meters")
  24133. },
  24134. {
  24135. name: "Wolxi Scale",
  24136. height: math.unit(34.1, "meters"),
  24137. default: true
  24138. },
  24139. ]
  24140. ))
  24141. characterMakers.push(() => makeCharacter(
  24142. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24143. {
  24144. front: {
  24145. height: math.unit(1.83, "meters"),
  24146. weight: math.unit(135, "lb"),
  24147. name: "Front",
  24148. image: {
  24149. source: "./media/characters/dejma-the-red/front.svg",
  24150. extra: 480 / 458,
  24151. bottom: 1.8 / 482
  24152. }
  24153. },
  24154. },
  24155. [
  24156. {
  24157. name: "Shrunken",
  24158. height: math.unit(8.3, "cm")
  24159. },
  24160. {
  24161. name: "Human Scale",
  24162. height: math.unit(1.83, "meters")
  24163. },
  24164. {
  24165. name: "Wolxi Scale",
  24166. height: math.unit(40, "meters"),
  24167. default: true
  24168. },
  24169. ]
  24170. ))
  24171. characterMakers.push(() => makeCharacter(
  24172. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24173. {
  24174. front: {
  24175. height: math.unit(1.78, "meters"),
  24176. weight: math.unit(65, "kg"),
  24177. name: "Front",
  24178. image: {
  24179. source: "./media/characters/aki/front.svg",
  24180. extra: 452 / 415
  24181. }
  24182. },
  24183. frontNsfw: {
  24184. height: math.unit(1.78, "meters"),
  24185. weight: math.unit(65, "kg"),
  24186. name: "Front (NSFW)",
  24187. image: {
  24188. source: "./media/characters/aki/front-nsfw.svg",
  24189. extra: 452 / 415
  24190. }
  24191. },
  24192. back: {
  24193. height: math.unit(1.78, "meters"),
  24194. weight: math.unit(65, "kg"),
  24195. name: "Back",
  24196. image: {
  24197. source: "./media/characters/aki/back.svg",
  24198. extra: 452 / 415
  24199. }
  24200. },
  24201. rump: {
  24202. height: math.unit(2.05, "feet"),
  24203. name: "Rump",
  24204. image: {
  24205. source: "./media/characters/aki/rump.svg"
  24206. }
  24207. },
  24208. dick: {
  24209. height: math.unit(0.95, "feet"),
  24210. name: "Dick",
  24211. image: {
  24212. source: "./media/characters/aki/dick.svg"
  24213. }
  24214. },
  24215. },
  24216. [
  24217. {
  24218. name: "Micro",
  24219. height: math.unit(15, "cm")
  24220. },
  24221. {
  24222. name: "Normal",
  24223. height: math.unit(178, "cm"),
  24224. default: true
  24225. },
  24226. {
  24227. name: "Macro",
  24228. height: math.unit(214, "m")
  24229. },
  24230. {
  24231. name: "Macro+",
  24232. height: math.unit(534, "m")
  24233. },
  24234. ]
  24235. ))
  24236. characterMakers.push(() => makeCharacter(
  24237. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24238. {
  24239. front: {
  24240. height: math.unit(5 + 5 / 12, "feet"),
  24241. weight: math.unit(120, "lb"),
  24242. name: "Front",
  24243. image: {
  24244. source: "./media/characters/ari/front.svg",
  24245. extra: 714.5 / 682,
  24246. bottom: 8 / 722.5
  24247. }
  24248. },
  24249. },
  24250. [
  24251. {
  24252. name: "Normal",
  24253. height: math.unit(5 + 5 / 12, "feet")
  24254. },
  24255. {
  24256. name: "Macro",
  24257. height: math.unit(100, "feet"),
  24258. default: true
  24259. },
  24260. {
  24261. name: "Megamacro",
  24262. height: math.unit(100, "miles")
  24263. },
  24264. {
  24265. name: "Gigamacro",
  24266. height: math.unit(80000, "miles")
  24267. },
  24268. ]
  24269. ))
  24270. characterMakers.push(() => makeCharacter(
  24271. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24272. {
  24273. side: {
  24274. height: math.unit(9, "feet"),
  24275. weight: math.unit(400, "kg"),
  24276. name: "Side",
  24277. image: {
  24278. source: "./media/characters/bolt/side.svg",
  24279. extra: 1126 / 896,
  24280. bottom: 60 / 1187.3,
  24281. }
  24282. },
  24283. },
  24284. [
  24285. {
  24286. name: "Micro",
  24287. height: math.unit(5, "inches")
  24288. },
  24289. {
  24290. name: "Normal",
  24291. height: math.unit(9, "feet"),
  24292. default: true
  24293. },
  24294. {
  24295. name: "Macro",
  24296. height: math.unit(700, "feet")
  24297. },
  24298. {
  24299. name: "Max Size",
  24300. height: math.unit(1.52e22, "yottameters")
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24306. {
  24307. front: {
  24308. height: math.unit(4.53, "meters"),
  24309. weight: math.unit(3, "tons"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/draekon-sylviar/front.svg",
  24313. extra: 1228 / 1068,
  24314. bottom: 41 / 1270
  24315. }
  24316. },
  24317. tail: {
  24318. height: math.unit(1.772, "meter"),
  24319. name: "Tail",
  24320. image: {
  24321. source: "./media/characters/draekon-sylviar/tail.svg"
  24322. }
  24323. },
  24324. head: {
  24325. height: math.unit(1.331, "meter"),
  24326. name: "Head",
  24327. image: {
  24328. source: "./media/characters/draekon-sylviar/head.svg"
  24329. }
  24330. },
  24331. hand: {
  24332. height: math.unit(0.564, "meter"),
  24333. name: "Hand",
  24334. image: {
  24335. source: "./media/characters/draekon-sylviar/hand.svg"
  24336. }
  24337. },
  24338. foot: {
  24339. height: math.unit(0.621, "meter"),
  24340. name: "Foot",
  24341. image: {
  24342. source: "./media/characters/draekon-sylviar/foot.svg",
  24343. bottom: 32 / 324
  24344. }
  24345. },
  24346. dick: {
  24347. height: math.unit(61, "cm"),
  24348. name: "Dick",
  24349. image: {
  24350. source: "./media/characters/draekon-sylviar/dick.svg"
  24351. }
  24352. },
  24353. dickseparated: {
  24354. height: math.unit(61, "cm"),
  24355. name: "Dick-separated",
  24356. image: {
  24357. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24358. }
  24359. },
  24360. },
  24361. [
  24362. {
  24363. name: "Small",
  24364. height: math.unit(4.53 / 2, "meters"),
  24365. default: true
  24366. },
  24367. {
  24368. name: "Normal",
  24369. height: math.unit(4.53, "meters"),
  24370. default: true
  24371. },
  24372. {
  24373. name: "Large",
  24374. height: math.unit(4.53 * 2, "meters"),
  24375. },
  24376. ]
  24377. ))
  24378. characterMakers.push(() => makeCharacter(
  24379. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24380. {
  24381. front: {
  24382. height: math.unit(6 + 2 / 12, "feet"),
  24383. weight: math.unit(180, "lb"),
  24384. name: "Front",
  24385. image: {
  24386. source: "./media/characters/brawler/front.svg",
  24387. extra: 3301 / 3027,
  24388. bottom: 138 / 3439
  24389. }
  24390. },
  24391. },
  24392. [
  24393. {
  24394. name: "Normal",
  24395. height: math.unit(6 + 2 / 12, "feet"),
  24396. default: true
  24397. },
  24398. ]
  24399. ))
  24400. characterMakers.push(() => makeCharacter(
  24401. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24402. {
  24403. front: {
  24404. height: math.unit(11, "feet"),
  24405. weight: math.unit(1000, "lb"),
  24406. name: "Front",
  24407. image: {
  24408. source: "./media/characters/alex/front.svg",
  24409. bottom: 44.5 / 620
  24410. }
  24411. },
  24412. },
  24413. [
  24414. {
  24415. name: "Micro",
  24416. height: math.unit(5, "inches")
  24417. },
  24418. {
  24419. name: "Normal",
  24420. height: math.unit(11, "feet"),
  24421. default: true
  24422. },
  24423. {
  24424. name: "Macro",
  24425. height: math.unit(9.5e9, "feet")
  24426. },
  24427. {
  24428. name: "Max Size",
  24429. height: math.unit(1.4e283, "yottameters")
  24430. },
  24431. ]
  24432. ))
  24433. characterMakers.push(() => makeCharacter(
  24434. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24435. {
  24436. female: {
  24437. height: math.unit(29.9, "m"),
  24438. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24439. name: "Female",
  24440. image: {
  24441. source: "./media/characters/zenari/female.svg",
  24442. extra: 3281.6 / 3217,
  24443. bottom: 72.2 / 3353
  24444. }
  24445. },
  24446. male: {
  24447. height: math.unit(27.7, "m"),
  24448. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24449. name: "Male",
  24450. image: {
  24451. source: "./media/characters/zenari/male.svg",
  24452. extra: 3008 / 2991,
  24453. bottom: 54.6 / 3069
  24454. }
  24455. },
  24456. },
  24457. [
  24458. {
  24459. name: "Macro",
  24460. height: math.unit(29.7, "meters"),
  24461. default: true
  24462. },
  24463. ]
  24464. ))
  24465. characterMakers.push(() => makeCharacter(
  24466. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24467. {
  24468. female: {
  24469. height: math.unit(23.8, "m"),
  24470. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24471. name: "Female",
  24472. image: {
  24473. source: "./media/characters/mactarian/female.svg",
  24474. extra: 2662 / 2569,
  24475. bottom: 73 / 2736
  24476. }
  24477. },
  24478. male: {
  24479. height: math.unit(23.8, "m"),
  24480. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24481. name: "Male",
  24482. image: {
  24483. source: "./media/characters/mactarian/male.svg",
  24484. extra: 2673 / 2600,
  24485. bottom: 76 / 2750
  24486. }
  24487. },
  24488. },
  24489. [
  24490. {
  24491. name: "Macro",
  24492. height: math.unit(23.8, "meters"),
  24493. default: true
  24494. },
  24495. ]
  24496. ))
  24497. characterMakers.push(() => makeCharacter(
  24498. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24499. {
  24500. female: {
  24501. height: math.unit(19.3, "m"),
  24502. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24503. name: "Female",
  24504. image: {
  24505. source: "./media/characters/umok/female.svg",
  24506. extra: 2186 / 2078,
  24507. bottom: 87 / 2277
  24508. }
  24509. },
  24510. male: {
  24511. height: math.unit(19.5, "m"),
  24512. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24513. name: "Male",
  24514. image: {
  24515. source: "./media/characters/umok/male.svg",
  24516. extra: 2233 / 2140,
  24517. bottom: 24.4 / 2258
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Macro",
  24524. height: math.unit(19.3, "meters"),
  24525. default: true
  24526. },
  24527. ]
  24528. ))
  24529. characterMakers.push(() => makeCharacter(
  24530. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24531. {
  24532. female: {
  24533. height: math.unit(26.15, "m"),
  24534. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24535. name: "Female",
  24536. image: {
  24537. source: "./media/characters/joraxian/female.svg",
  24538. extra: 2912 / 2824,
  24539. bottom: 36 / 2956
  24540. }
  24541. },
  24542. male: {
  24543. height: math.unit(25.4, "m"),
  24544. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24545. name: "Male",
  24546. image: {
  24547. source: "./media/characters/joraxian/male.svg",
  24548. extra: 2877 / 2721,
  24549. bottom: 82 / 2967
  24550. }
  24551. },
  24552. },
  24553. [
  24554. {
  24555. name: "Macro",
  24556. height: math.unit(26.15, "meters"),
  24557. default: true
  24558. },
  24559. ]
  24560. ))
  24561. characterMakers.push(() => makeCharacter(
  24562. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24563. {
  24564. female: {
  24565. height: math.unit(21.6, "m"),
  24566. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24567. name: "Female",
  24568. image: {
  24569. source: "./media/characters/sthara/female.svg",
  24570. extra: 2516 / 2347,
  24571. bottom: 21.5 / 2537
  24572. }
  24573. },
  24574. male: {
  24575. height: math.unit(24, "m"),
  24576. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24577. name: "Male",
  24578. image: {
  24579. source: "./media/characters/sthara/male.svg",
  24580. extra: 2732 / 2607,
  24581. bottom: 23 / 2732
  24582. }
  24583. },
  24584. },
  24585. [
  24586. {
  24587. name: "Macro",
  24588. height: math.unit(21.6, "meters"),
  24589. default: true
  24590. },
  24591. ]
  24592. ))
  24593. characterMakers.push(() => makeCharacter(
  24594. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24595. {
  24596. front: {
  24597. height: math.unit(6 + 4 / 12, "feet"),
  24598. weight: math.unit(175, "lb"),
  24599. name: "Front",
  24600. image: {
  24601. source: "./media/characters/luka-bryzant/front.svg",
  24602. extra: 311 / 289,
  24603. bottom: 4 / 315
  24604. }
  24605. },
  24606. back: {
  24607. height: math.unit(6 + 4 / 12, "feet"),
  24608. weight: math.unit(175, "lb"),
  24609. name: "Back",
  24610. image: {
  24611. source: "./media/characters/luka-bryzant/back.svg",
  24612. extra: 311 / 289,
  24613. bottom: 3.8 / 313.7
  24614. }
  24615. },
  24616. },
  24617. [
  24618. {
  24619. name: "Micro",
  24620. height: math.unit(10, "inches")
  24621. },
  24622. {
  24623. name: "Normal",
  24624. height: math.unit(6 + 4 / 12, "feet"),
  24625. default: true
  24626. },
  24627. {
  24628. name: "Large",
  24629. height: math.unit(12, "feet")
  24630. },
  24631. ]
  24632. ))
  24633. characterMakers.push(() => makeCharacter(
  24634. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24635. {
  24636. front: {
  24637. height: math.unit(5 + 7 / 12, "feet"),
  24638. weight: math.unit(185, "lb"),
  24639. name: "Front",
  24640. image: {
  24641. source: "./media/characters/aman-aquila/front.svg",
  24642. extra: 1013 / 976,
  24643. bottom: 45.6 / 1057
  24644. }
  24645. },
  24646. side: {
  24647. height: math.unit(5 + 7 / 12, "feet"),
  24648. weight: math.unit(185, "lb"),
  24649. name: "Side",
  24650. image: {
  24651. source: "./media/characters/aman-aquila/side.svg",
  24652. extra: 1054 / 1011,
  24653. bottom: 15 / 1070
  24654. }
  24655. },
  24656. back: {
  24657. height: math.unit(5 + 7 / 12, "feet"),
  24658. weight: math.unit(185, "lb"),
  24659. name: "Back",
  24660. image: {
  24661. source: "./media/characters/aman-aquila/back.svg",
  24662. extra: 1026 / 970,
  24663. bottom: 12 / 1039
  24664. }
  24665. },
  24666. head: {
  24667. height: math.unit(1.211, "feet"),
  24668. name: "Head",
  24669. image: {
  24670. source: "./media/characters/aman-aquila/head.svg",
  24671. }
  24672. },
  24673. },
  24674. [
  24675. {
  24676. name: "Minimicro",
  24677. height: math.unit(0.057, "inches")
  24678. },
  24679. {
  24680. name: "Micro",
  24681. height: math.unit(7, "inches")
  24682. },
  24683. {
  24684. name: "Mini",
  24685. height: math.unit(3 + 7 / 12, "feet")
  24686. },
  24687. {
  24688. name: "Normal",
  24689. height: math.unit(5 + 7 / 12, "feet"),
  24690. default: true
  24691. },
  24692. {
  24693. name: "Macro",
  24694. height: math.unit(157 + 7 / 12, "feet")
  24695. },
  24696. {
  24697. name: "Megamacro",
  24698. height: math.unit(1557 + 7 / 12, "feet")
  24699. },
  24700. {
  24701. name: "Gigamacro",
  24702. height: math.unit(15557 + 7 / 12, "feet")
  24703. },
  24704. ]
  24705. ))
  24706. characterMakers.push(() => makeCharacter(
  24707. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24708. {
  24709. front: {
  24710. height: math.unit(3 + 2 / 12, "inches"),
  24711. weight: math.unit(0.3, "ounces"),
  24712. name: "Front",
  24713. image: {
  24714. source: "./media/characters/hiphae/front.svg",
  24715. extra: 1931 / 1683,
  24716. bottom: 24 / 1955
  24717. }
  24718. },
  24719. },
  24720. [
  24721. {
  24722. name: "Normal",
  24723. height: math.unit(3 + 1 / 2, "inches"),
  24724. default: true
  24725. },
  24726. ]
  24727. ))
  24728. characterMakers.push(() => makeCharacter(
  24729. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24730. {
  24731. front: {
  24732. height: math.unit(5 + 10 / 12, "feet"),
  24733. weight: math.unit(165, "lb"),
  24734. name: "Front",
  24735. image: {
  24736. source: "./media/characters/nicky/front.svg",
  24737. extra: 3144 / 2886,
  24738. bottom: 45.6 / 3192
  24739. }
  24740. },
  24741. back: {
  24742. height: math.unit(5 + 10 / 12, "feet"),
  24743. weight: math.unit(165, "lb"),
  24744. name: "Back",
  24745. image: {
  24746. source: "./media/characters/nicky/back.svg",
  24747. extra: 3055 / 2804,
  24748. bottom: 28.4 / 3087
  24749. }
  24750. },
  24751. frontclothed: {
  24752. height: math.unit(5 + 10 / 12, "feet"),
  24753. weight: math.unit(165, "lb"),
  24754. name: "Front-clothed",
  24755. image: {
  24756. source: "./media/characters/nicky/front-clothed.svg",
  24757. extra: 3184.9 / 2926.9,
  24758. bottom: 86.5 / 3239.9
  24759. }
  24760. },
  24761. foot: {
  24762. height: math.unit(1.16, "feet"),
  24763. name: "Foot",
  24764. image: {
  24765. source: "./media/characters/nicky/foot.svg"
  24766. }
  24767. },
  24768. feet: {
  24769. height: math.unit(1.34, "feet"),
  24770. name: "Feet",
  24771. image: {
  24772. source: "./media/characters/nicky/feet.svg"
  24773. }
  24774. },
  24775. maw: {
  24776. height: math.unit(0.9, "feet"),
  24777. name: "Maw",
  24778. image: {
  24779. source: "./media/characters/nicky/maw.svg"
  24780. }
  24781. },
  24782. },
  24783. [
  24784. {
  24785. name: "Normal",
  24786. height: math.unit(5 + 10 / 12, "feet"),
  24787. default: true
  24788. },
  24789. {
  24790. name: "Macro",
  24791. height: math.unit(60, "feet")
  24792. },
  24793. {
  24794. name: "Megamacro",
  24795. height: math.unit(1, "mile")
  24796. },
  24797. ]
  24798. ))
  24799. characterMakers.push(() => makeCharacter(
  24800. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24801. {
  24802. side: {
  24803. height: math.unit(10, "feet"),
  24804. weight: math.unit(600, "lb"),
  24805. name: "Side",
  24806. image: {
  24807. source: "./media/characters/blair/side.svg",
  24808. bottom: 16.6 / 475,
  24809. extra: 458 / 431
  24810. }
  24811. },
  24812. },
  24813. [
  24814. {
  24815. name: "Micro",
  24816. height: math.unit(8, "inches")
  24817. },
  24818. {
  24819. name: "Normal",
  24820. height: math.unit(10, "feet"),
  24821. default: true
  24822. },
  24823. {
  24824. name: "Macro",
  24825. height: math.unit(180, "feet")
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24831. {
  24832. front: {
  24833. height: math.unit(5 + 4 / 12, "feet"),
  24834. weight: math.unit(125, "lb"),
  24835. name: "Front",
  24836. image: {
  24837. source: "./media/characters/fisher/front.svg",
  24838. extra: 444 / 390,
  24839. bottom: 2 / 444.8
  24840. }
  24841. },
  24842. },
  24843. [
  24844. {
  24845. name: "Micro",
  24846. height: math.unit(4, "inches")
  24847. },
  24848. {
  24849. name: "Normal",
  24850. height: math.unit(5 + 4 / 12, "feet"),
  24851. default: true
  24852. },
  24853. {
  24854. name: "Macro",
  24855. height: math.unit(100, "feet")
  24856. },
  24857. ]
  24858. ))
  24859. characterMakers.push(() => makeCharacter(
  24860. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24861. {
  24862. front: {
  24863. height: math.unit(6.71, "feet"),
  24864. weight: math.unit(200, "lb"),
  24865. capacity: math.unit(1000000, "people"),
  24866. name: "Front",
  24867. image: {
  24868. source: "./media/characters/gliss/front.svg",
  24869. extra: 2347 / 2231,
  24870. bottom: 113 / 2462
  24871. }
  24872. },
  24873. hammerspaceSize: {
  24874. height: math.unit(6.71 * 717, "feet"),
  24875. weight: math.unit(200, "lb"),
  24876. capacity: math.unit(1000000, "people"),
  24877. name: "Hammerspace Size",
  24878. image: {
  24879. source: "./media/characters/gliss/front.svg",
  24880. extra: 2347 / 2231,
  24881. bottom: 113 / 2462
  24882. }
  24883. },
  24884. },
  24885. [
  24886. {
  24887. name: "Normal",
  24888. height: math.unit(6.71, "feet"),
  24889. default: true
  24890. },
  24891. ]
  24892. ))
  24893. characterMakers.push(() => makeCharacter(
  24894. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24895. {
  24896. side: {
  24897. height: math.unit(1.44, "m"),
  24898. weight: math.unit(80, "kg"),
  24899. name: "Side",
  24900. image: {
  24901. source: "./media/characters/dune-anderson/side.svg",
  24902. bottom: 49 / 1426
  24903. }
  24904. },
  24905. },
  24906. [
  24907. {
  24908. name: "Wolf-sized",
  24909. height: math.unit(1.44, "meters")
  24910. },
  24911. {
  24912. name: "Normal",
  24913. height: math.unit(5.05, "meters"),
  24914. default: true
  24915. },
  24916. {
  24917. name: "Big",
  24918. height: math.unit(14.4, "meters")
  24919. },
  24920. {
  24921. name: "Huge",
  24922. height: math.unit(144, "meters")
  24923. },
  24924. ]
  24925. ))
  24926. characterMakers.push(() => makeCharacter(
  24927. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24928. {
  24929. front: {
  24930. height: math.unit(7, "feet"),
  24931. weight: math.unit(425, "lb"),
  24932. name: "Front",
  24933. image: {
  24934. source: "./media/characters/hind/front.svg",
  24935. extra: 2091 / 1860,
  24936. bottom: 129 / 2220
  24937. }
  24938. },
  24939. back: {
  24940. height: math.unit(7, "feet"),
  24941. weight: math.unit(425, "lb"),
  24942. name: "Back",
  24943. image: {
  24944. source: "./media/characters/hind/back.svg",
  24945. extra: 2091 / 1860,
  24946. bottom: 24.6 / 2309
  24947. }
  24948. },
  24949. tail: {
  24950. height: math.unit(2.8, "feet"),
  24951. name: "Tail",
  24952. image: {
  24953. source: "./media/characters/hind/tail.svg"
  24954. }
  24955. },
  24956. head: {
  24957. height: math.unit(2.55, "feet"),
  24958. name: "Head",
  24959. image: {
  24960. source: "./media/characters/hind/head.svg"
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "XS",
  24967. height: math.unit(0.7, "feet")
  24968. },
  24969. {
  24970. name: "Normal",
  24971. height: math.unit(7, "feet"),
  24972. default: true
  24973. },
  24974. {
  24975. name: "XL",
  24976. height: math.unit(70, "feet")
  24977. },
  24978. ]
  24979. ))
  24980. characterMakers.push(() => makeCharacter(
  24981. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24982. {
  24983. front: {
  24984. height: math.unit(2.1, "meters"),
  24985. weight: math.unit(150, "lb"),
  24986. name: "Front",
  24987. image: {
  24988. source: "./media/characters/tharquench-sizestealer/front.svg",
  24989. extra: 1605/1470,
  24990. bottom: 36/1641
  24991. }
  24992. },
  24993. frontAlt: {
  24994. height: math.unit(2.1, "meters"),
  24995. weight: math.unit(150, "lb"),
  24996. name: "Front (Alt)",
  24997. image: {
  24998. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24999. extra: 2318 / 2063,
  25000. bottom: 93.4 / 2410
  25001. }
  25002. },
  25003. },
  25004. [
  25005. {
  25006. name: "Nano",
  25007. height: math.unit(1, "mm")
  25008. },
  25009. {
  25010. name: "Micro",
  25011. height: math.unit(1, "cm")
  25012. },
  25013. {
  25014. name: "Normal",
  25015. height: math.unit(2.1, "meters"),
  25016. default: true
  25017. },
  25018. ]
  25019. ))
  25020. characterMakers.push(() => makeCharacter(
  25021. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25022. {
  25023. front: {
  25024. height: math.unit(7 + 5 / 12, "feet"),
  25025. weight: math.unit(357, "lb"),
  25026. name: "Front",
  25027. image: {
  25028. source: "./media/characters/solex-draconov/front.svg",
  25029. extra: 1993 / 1865,
  25030. bottom: 117 / 2111
  25031. }
  25032. },
  25033. },
  25034. [
  25035. {
  25036. name: "Natural Height",
  25037. height: math.unit(7 + 5 / 12, "feet"),
  25038. default: true
  25039. },
  25040. {
  25041. name: "Macro",
  25042. height: math.unit(350, "feet")
  25043. },
  25044. {
  25045. name: "Macro+",
  25046. height: math.unit(1000, "feet")
  25047. },
  25048. {
  25049. name: "Megamacro",
  25050. height: math.unit(20, "km")
  25051. },
  25052. {
  25053. name: "Megamacro+",
  25054. height: math.unit(1000, "km")
  25055. },
  25056. {
  25057. name: "Gigamacro",
  25058. height: math.unit(2.5, "Gm")
  25059. },
  25060. {
  25061. name: "Teramacro",
  25062. height: math.unit(15, "Tm")
  25063. },
  25064. {
  25065. name: "Galactic",
  25066. height: math.unit(30, "Zm")
  25067. },
  25068. {
  25069. name: "Universal",
  25070. height: math.unit(21000, "Ym")
  25071. },
  25072. {
  25073. name: "Omniversal",
  25074. height: math.unit(9.861e50, "Ym")
  25075. },
  25076. {
  25077. name: "Existential",
  25078. height: math.unit(1e300, "meters")
  25079. },
  25080. ]
  25081. ))
  25082. characterMakers.push(() => makeCharacter(
  25083. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25084. {
  25085. side: {
  25086. height: math.unit(25, "feet"),
  25087. weight: math.unit(90000, "lb"),
  25088. name: "Side",
  25089. image: {
  25090. source: "./media/characters/mandarax/side.svg",
  25091. extra: 614 / 332,
  25092. bottom: 55 / 630
  25093. }
  25094. },
  25095. head: {
  25096. height: math.unit(11.4, "feet"),
  25097. name: "Head",
  25098. image: {
  25099. source: "./media/characters/mandarax/head.svg"
  25100. }
  25101. },
  25102. belly: {
  25103. height: math.unit(33, "feet"),
  25104. name: "Belly",
  25105. capacity: math.unit(500, "people"),
  25106. image: {
  25107. source: "./media/characters/mandarax/belly.svg"
  25108. }
  25109. },
  25110. dick: {
  25111. height: math.unit(8.46, "feet"),
  25112. name: "Dick",
  25113. image: {
  25114. source: "./media/characters/mandarax/dick.svg"
  25115. }
  25116. },
  25117. top: {
  25118. height: math.unit(28, "meters"),
  25119. name: "Top",
  25120. image: {
  25121. source: "./media/characters/mandarax/top.svg"
  25122. }
  25123. },
  25124. },
  25125. [
  25126. {
  25127. name: "Normal",
  25128. height: math.unit(25, "feet"),
  25129. default: true
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25135. {
  25136. front: {
  25137. height: math.unit(5, "feet"),
  25138. weight: math.unit(90, "lb"),
  25139. name: "Front",
  25140. image: {
  25141. source: "./media/characters/pixil/front.svg",
  25142. extra: 2000 / 1618,
  25143. bottom: 12.3 / 2011
  25144. }
  25145. },
  25146. },
  25147. [
  25148. {
  25149. name: "Normal",
  25150. height: math.unit(5, "feet"),
  25151. default: true
  25152. },
  25153. {
  25154. name: "Megamacro",
  25155. height: math.unit(10, "miles"),
  25156. },
  25157. ]
  25158. ))
  25159. characterMakers.push(() => makeCharacter(
  25160. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25161. {
  25162. front: {
  25163. height: math.unit(7 + 2 / 12, "feet"),
  25164. weight: math.unit(200, "lb"),
  25165. name: "Front",
  25166. image: {
  25167. source: "./media/characters/angel/front.svg",
  25168. extra: 1830 / 1737,
  25169. bottom: 22.6 / 1854,
  25170. }
  25171. },
  25172. },
  25173. [
  25174. {
  25175. name: "Normal",
  25176. height: math.unit(7 + 2 / 12, "feet"),
  25177. default: true
  25178. },
  25179. {
  25180. name: "Macro",
  25181. height: math.unit(1000, "feet")
  25182. },
  25183. {
  25184. name: "Megamacro",
  25185. height: math.unit(2, "miles")
  25186. },
  25187. {
  25188. name: "Gigamacro",
  25189. height: math.unit(20, "earths")
  25190. },
  25191. ]
  25192. ))
  25193. characterMakers.push(() => makeCharacter(
  25194. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25195. {
  25196. front: {
  25197. height: math.unit(5, "feet"),
  25198. weight: math.unit(180, "lb"),
  25199. name: "Front",
  25200. image: {
  25201. source: "./media/characters/mekana/front.svg",
  25202. extra: 1671 / 1605,
  25203. bottom: 3.5 / 1691
  25204. }
  25205. },
  25206. side: {
  25207. height: math.unit(5, "feet"),
  25208. weight: math.unit(180, "lb"),
  25209. name: "Side",
  25210. image: {
  25211. source: "./media/characters/mekana/side.svg",
  25212. extra: 1671 / 1605,
  25213. bottom: 3.5 / 1691
  25214. }
  25215. },
  25216. back: {
  25217. height: math.unit(5, "feet"),
  25218. weight: math.unit(180, "lb"),
  25219. name: "Back",
  25220. image: {
  25221. source: "./media/characters/mekana/back.svg",
  25222. extra: 1671 / 1605,
  25223. bottom: 3.5 / 1691
  25224. }
  25225. },
  25226. },
  25227. [
  25228. {
  25229. name: "Normal",
  25230. height: math.unit(5, "feet"),
  25231. default: true
  25232. },
  25233. ]
  25234. ))
  25235. characterMakers.push(() => makeCharacter(
  25236. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25237. {
  25238. front: {
  25239. height: math.unit(4 + 6 / 12, "feet"),
  25240. weight: math.unit(80, "lb"),
  25241. name: "Front",
  25242. image: {
  25243. source: "./media/characters/pixie/front.svg",
  25244. extra: 1924 / 1825,
  25245. bottom: 22.4 / 1946
  25246. }
  25247. },
  25248. },
  25249. [
  25250. {
  25251. name: "Normal",
  25252. height: math.unit(4 + 6 / 12, "feet"),
  25253. default: true
  25254. },
  25255. {
  25256. name: "Macro",
  25257. height: math.unit(40, "feet")
  25258. },
  25259. ]
  25260. ))
  25261. characterMakers.push(() => makeCharacter(
  25262. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25263. {
  25264. front: {
  25265. height: math.unit(2.1, "meters"),
  25266. weight: math.unit(200, "lb"),
  25267. name: "Front",
  25268. image: {
  25269. source: "./media/characters/the-lascivious/front.svg",
  25270. extra: 1 / 0.893,
  25271. bottom: 3.5 / 573.7
  25272. }
  25273. },
  25274. },
  25275. [
  25276. {
  25277. name: "Human Scale",
  25278. height: math.unit(2.1, "meters")
  25279. },
  25280. {
  25281. name: "Wolxi Scale",
  25282. height: math.unit(46.2, "m"),
  25283. default: true
  25284. },
  25285. {
  25286. name: "Boinker of Buildings",
  25287. height: math.unit(10, "km")
  25288. },
  25289. {
  25290. name: "Shagger of Skyscrapers",
  25291. height: math.unit(40, "km")
  25292. },
  25293. {
  25294. name: "Banger of Boroughs",
  25295. height: math.unit(4000, "km")
  25296. },
  25297. {
  25298. name: "Screwer of States",
  25299. height: math.unit(100000, "km")
  25300. },
  25301. {
  25302. name: "Pounder of Planets",
  25303. height: math.unit(2000000, "km")
  25304. },
  25305. ]
  25306. ))
  25307. characterMakers.push(() => makeCharacter(
  25308. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25309. {
  25310. front: {
  25311. height: math.unit(6, "feet"),
  25312. weight: math.unit(150, "lb"),
  25313. name: "Front",
  25314. image: {
  25315. source: "./media/characters/aj/front.svg",
  25316. extra: 2039 / 1562,
  25317. bottom: 40 / 2079
  25318. }
  25319. },
  25320. },
  25321. [
  25322. {
  25323. name: "Normal",
  25324. height: math.unit(11 + 6 / 12, "feet"),
  25325. default: true
  25326. },
  25327. {
  25328. name: "Megamacro",
  25329. height: math.unit(60, "megameters")
  25330. },
  25331. ]
  25332. ))
  25333. characterMakers.push(() => makeCharacter(
  25334. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25335. {
  25336. side: {
  25337. height: math.unit(31 + 8 / 12, "feet"),
  25338. weight: math.unit(75000, "kg"),
  25339. name: "Side",
  25340. image: {
  25341. source: "./media/characters/koros/side.svg",
  25342. extra: 1442 / 1297,
  25343. bottom: 122.7 / 1562
  25344. }
  25345. },
  25346. dicksKingsCrown: {
  25347. height: math.unit(6, "feet"),
  25348. name: "Dicks (King's Crown)",
  25349. image: {
  25350. source: "./media/characters/koros/dicks-kings-crown.svg"
  25351. }
  25352. },
  25353. dicksTailSet: {
  25354. height: math.unit(3, "feet"),
  25355. name: "Dicks (Tail Set)",
  25356. image: {
  25357. source: "./media/characters/koros/dicks-tail-set.svg"
  25358. }
  25359. },
  25360. dickCumming: {
  25361. height: math.unit(7.98, "feet"),
  25362. name: "Dick (Cumming)",
  25363. image: {
  25364. source: "./media/characters/koros/dick-cumming.svg"
  25365. }
  25366. },
  25367. dicksBack: {
  25368. height: math.unit(5.9, "feet"),
  25369. name: "Dicks (Back)",
  25370. image: {
  25371. source: "./media/characters/koros/dicks-back.svg"
  25372. }
  25373. },
  25374. dicksFront: {
  25375. height: math.unit(3.72, "feet"),
  25376. name: "Dicks (Front)",
  25377. image: {
  25378. source: "./media/characters/koros/dicks-front.svg"
  25379. }
  25380. },
  25381. dicksPeeking: {
  25382. height: math.unit(3.0, "feet"),
  25383. name: "Dicks (Peeking)",
  25384. image: {
  25385. source: "./media/characters/koros/dicks-peeking.svg"
  25386. }
  25387. },
  25388. eye: {
  25389. height: math.unit(1.7, "feet"),
  25390. name: "Eye",
  25391. image: {
  25392. source: "./media/characters/koros/eye.svg"
  25393. }
  25394. },
  25395. headFront: {
  25396. height: math.unit(11.69, "feet"),
  25397. name: "Head (Front)",
  25398. image: {
  25399. source: "./media/characters/koros/head-front.svg"
  25400. }
  25401. },
  25402. headSide: {
  25403. height: math.unit(14, "feet"),
  25404. name: "Head (Side)",
  25405. image: {
  25406. source: "./media/characters/koros/head-side.svg"
  25407. }
  25408. },
  25409. leg: {
  25410. height: math.unit(17, "feet"),
  25411. name: "Leg",
  25412. image: {
  25413. source: "./media/characters/koros/leg.svg"
  25414. }
  25415. },
  25416. mawSide: {
  25417. height: math.unit(12.8, "feet"),
  25418. name: "Maw (Side)",
  25419. image: {
  25420. source: "./media/characters/koros/maw-side.svg"
  25421. }
  25422. },
  25423. mawSpitting: {
  25424. height: math.unit(17, "feet"),
  25425. name: "Maw (Spitting)",
  25426. image: {
  25427. source: "./media/characters/koros/maw-spitting.svg"
  25428. }
  25429. },
  25430. slit: {
  25431. height: math.unit(2.8, "feet"),
  25432. name: "Slit",
  25433. image: {
  25434. source: "./media/characters/koros/slit.svg"
  25435. }
  25436. },
  25437. stomach: {
  25438. height: math.unit(6.8, "feet"),
  25439. capacity: math.unit(20, "people"),
  25440. name: "Stomach",
  25441. image: {
  25442. source: "./media/characters/koros/stomach.svg"
  25443. }
  25444. },
  25445. wingspanBottom: {
  25446. height: math.unit(114, "feet"),
  25447. name: "Wingspan (Bottom)",
  25448. image: {
  25449. source: "./media/characters/koros/wingspan-bottom.svg"
  25450. }
  25451. },
  25452. wingspanTop: {
  25453. height: math.unit(104, "feet"),
  25454. name: "Wingspan (Top)",
  25455. image: {
  25456. source: "./media/characters/koros/wingspan-top.svg"
  25457. }
  25458. },
  25459. },
  25460. [
  25461. {
  25462. name: "Normal",
  25463. height: math.unit(31 + 8 / 12, "feet"),
  25464. default: true
  25465. },
  25466. ]
  25467. ))
  25468. characterMakers.push(() => makeCharacter(
  25469. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25470. {
  25471. front: {
  25472. height: math.unit(18 + 5 / 12, "feet"),
  25473. weight: math.unit(3750, "kg"),
  25474. name: "Front",
  25475. image: {
  25476. source: "./media/characters/vexx/front.svg",
  25477. extra: 426 / 396,
  25478. bottom: 31.5 / 458
  25479. }
  25480. },
  25481. maw: {
  25482. height: math.unit(6, "feet"),
  25483. name: "Maw",
  25484. image: {
  25485. source: "./media/characters/vexx/maw.svg"
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Normal",
  25492. height: math.unit(18 + 5 / 12, "feet"),
  25493. default: true
  25494. },
  25495. ]
  25496. ))
  25497. characterMakers.push(() => makeCharacter(
  25498. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25499. {
  25500. front: {
  25501. height: math.unit(17 + 6 / 12, "feet"),
  25502. weight: math.unit(150, "lb"),
  25503. name: "Front",
  25504. image: {
  25505. source: "./media/characters/baadra/front.svg",
  25506. extra: 3137 / 2890,
  25507. bottom: 168.4 / 3305
  25508. }
  25509. },
  25510. back: {
  25511. height: math.unit(17 + 6 / 12, "feet"),
  25512. weight: math.unit(150, "lb"),
  25513. name: "Back",
  25514. image: {
  25515. source: "./media/characters/baadra/back.svg",
  25516. extra: 3142 / 2890,
  25517. bottom: 220 / 3371
  25518. }
  25519. },
  25520. head: {
  25521. height: math.unit(5.45, "feet"),
  25522. name: "Head",
  25523. image: {
  25524. source: "./media/characters/baadra/head.svg"
  25525. }
  25526. },
  25527. headAngry: {
  25528. height: math.unit(4.95, "feet"),
  25529. name: "Head (Angry)",
  25530. image: {
  25531. source: "./media/characters/baadra/head-angry.svg"
  25532. }
  25533. },
  25534. headOpen: {
  25535. height: math.unit(6, "feet"),
  25536. name: "Head (Open)",
  25537. image: {
  25538. source: "./media/characters/baadra/head-open.svg"
  25539. }
  25540. },
  25541. },
  25542. [
  25543. {
  25544. name: "Normal",
  25545. height: math.unit(17 + 6 / 12, "feet"),
  25546. default: true
  25547. },
  25548. ]
  25549. ))
  25550. characterMakers.push(() => makeCharacter(
  25551. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25552. {
  25553. front: {
  25554. height: math.unit(7 + 3 / 12, "feet"),
  25555. weight: math.unit(180, "lb"),
  25556. name: "Front",
  25557. image: {
  25558. source: "./media/characters/juri/front.svg",
  25559. extra: 1401 / 1237,
  25560. bottom: 18.5 / 1418
  25561. }
  25562. },
  25563. side: {
  25564. height: math.unit(7 + 3 / 12, "feet"),
  25565. weight: math.unit(180, "lb"),
  25566. name: "Side",
  25567. image: {
  25568. source: "./media/characters/juri/side.svg",
  25569. extra: 1424 / 1242,
  25570. bottom: 18.5 / 1447
  25571. }
  25572. },
  25573. sitting: {
  25574. height: math.unit(6, "feet"),
  25575. weight: math.unit(180, "lb"),
  25576. name: "Sitting",
  25577. image: {
  25578. source: "./media/characters/juri/sitting.svg",
  25579. extra: 1270 / 1143,
  25580. bottom: 100 / 1343
  25581. }
  25582. },
  25583. back: {
  25584. height: math.unit(7 + 3 / 12, "feet"),
  25585. weight: math.unit(180, "lb"),
  25586. name: "Back",
  25587. image: {
  25588. source: "./media/characters/juri/back.svg",
  25589. extra: 1377 / 1240,
  25590. bottom: 23.7 / 1405
  25591. }
  25592. },
  25593. maw: {
  25594. height: math.unit(2.8, "feet"),
  25595. name: "Maw",
  25596. image: {
  25597. source: "./media/characters/juri/maw.svg"
  25598. }
  25599. },
  25600. stomach: {
  25601. height: math.unit(0.89, "feet"),
  25602. capacity: math.unit(4, "liters"),
  25603. name: "Stomach",
  25604. image: {
  25605. source: "./media/characters/juri/stomach.svg"
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Normal",
  25612. height: math.unit(7 + 3 / 12, "feet"),
  25613. default: true
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25619. {
  25620. fox: {
  25621. height: math.unit(5 + 6 / 12, "feet"),
  25622. weight: math.unit(140, "lb"),
  25623. name: "Fox",
  25624. image: {
  25625. source: "./media/characters/maxene-sita/fox.svg",
  25626. extra: 146 / 138,
  25627. bottom: 2.1 / 148.19
  25628. }
  25629. },
  25630. foxLaying: {
  25631. height: math.unit(1.70, "feet"),
  25632. weight: math.unit(140, "lb"),
  25633. name: "Fox (Laying)",
  25634. image: {
  25635. source: "./media/characters/maxene-sita/fox-laying.svg",
  25636. extra: 910 / 572,
  25637. bottom: 71 / 981
  25638. }
  25639. },
  25640. kitsune: {
  25641. height: math.unit(10, "feet"),
  25642. weight: math.unit(800, "lb"),
  25643. name: "Kitsune",
  25644. image: {
  25645. source: "./media/characters/maxene-sita/kitsune.svg",
  25646. extra: 185 / 176,
  25647. bottom: 4.7 / 189.9
  25648. }
  25649. },
  25650. hellhound: {
  25651. height: math.unit(10, "feet"),
  25652. weight: math.unit(700, "lb"),
  25653. name: "Hellhound",
  25654. image: {
  25655. source: "./media/characters/maxene-sita/hellhound.svg",
  25656. extra: 1600 / 1545,
  25657. bottom: 81 / 1681
  25658. }
  25659. },
  25660. },
  25661. [
  25662. {
  25663. name: "Normal",
  25664. height: math.unit(5 + 6 / 12, "feet"),
  25665. default: true
  25666. },
  25667. ]
  25668. ))
  25669. characterMakers.push(() => makeCharacter(
  25670. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25671. {
  25672. front: {
  25673. height: math.unit(3 + 4 / 12, "feet"),
  25674. weight: math.unit(70, "lb"),
  25675. name: "Front",
  25676. image: {
  25677. source: "./media/characters/maia/front.svg",
  25678. extra: 227 / 219.5,
  25679. bottom: 40 / 267
  25680. }
  25681. },
  25682. back: {
  25683. height: math.unit(3 + 4 / 12, "feet"),
  25684. weight: math.unit(70, "lb"),
  25685. name: "Back",
  25686. image: {
  25687. source: "./media/characters/maia/back.svg",
  25688. extra: 237 / 225
  25689. }
  25690. },
  25691. },
  25692. [
  25693. {
  25694. name: "Normal",
  25695. height: math.unit(3 + 4 / 12, "feet"),
  25696. default: true
  25697. },
  25698. ]
  25699. ))
  25700. characterMakers.push(() => makeCharacter(
  25701. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25702. {
  25703. front: {
  25704. height: math.unit(5 + 10 / 12, "feet"),
  25705. weight: math.unit(197, "lb"),
  25706. name: "Front",
  25707. image: {
  25708. source: "./media/characters/jabaro/front.svg",
  25709. extra: 225 / 216,
  25710. bottom: 5.06 / 230
  25711. }
  25712. },
  25713. back: {
  25714. height: math.unit(5 + 10 / 12, "feet"),
  25715. weight: math.unit(197, "lb"),
  25716. name: "Back",
  25717. image: {
  25718. source: "./media/characters/jabaro/back.svg",
  25719. extra: 225 / 219,
  25720. bottom: 1.9 / 227
  25721. }
  25722. },
  25723. },
  25724. [
  25725. {
  25726. name: "Normal",
  25727. height: math.unit(5 + 10 / 12, "feet"),
  25728. default: true
  25729. },
  25730. ]
  25731. ))
  25732. characterMakers.push(() => makeCharacter(
  25733. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25734. {
  25735. front: {
  25736. height: math.unit(5 + 8 / 12, "feet"),
  25737. weight: math.unit(139, "lb"),
  25738. name: "Front",
  25739. image: {
  25740. source: "./media/characters/risa/front.svg",
  25741. extra: 270 / 260,
  25742. bottom: 11.2 / 282
  25743. }
  25744. },
  25745. back: {
  25746. height: math.unit(5 + 8 / 12, "feet"),
  25747. weight: math.unit(139, "lb"),
  25748. name: "Back",
  25749. image: {
  25750. source: "./media/characters/risa/back.svg",
  25751. extra: 264 / 255,
  25752. bottom: 4 / 268
  25753. }
  25754. },
  25755. },
  25756. [
  25757. {
  25758. name: "Normal",
  25759. height: math.unit(5 + 8 / 12, "feet"),
  25760. default: true
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25766. {
  25767. front: {
  25768. height: math.unit(2 + 11 / 12, "feet"),
  25769. weight: math.unit(30, "lb"),
  25770. name: "Front",
  25771. image: {
  25772. source: "./media/characters/weatley/front.svg",
  25773. bottom: 10.7 / 414,
  25774. extra: 403.5 / 362
  25775. }
  25776. },
  25777. back: {
  25778. height: math.unit(2 + 11 / 12, "feet"),
  25779. weight: math.unit(30, "lb"),
  25780. name: "Back",
  25781. image: {
  25782. source: "./media/characters/weatley/back.svg",
  25783. bottom: 10.7 / 414,
  25784. extra: 403.5 / 362
  25785. }
  25786. },
  25787. },
  25788. [
  25789. {
  25790. name: "Normal",
  25791. height: math.unit(2 + 11 / 12, "feet"),
  25792. default: true
  25793. },
  25794. ]
  25795. ))
  25796. characterMakers.push(() => makeCharacter(
  25797. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25798. {
  25799. front: {
  25800. height: math.unit(5 + 2 / 12, "feet"),
  25801. weight: math.unit(50, "kg"),
  25802. name: "Front",
  25803. image: {
  25804. source: "./media/characters/mercury-crescent/front.svg",
  25805. extra: 1088 / 1033,
  25806. bottom: 18.9 / 1109
  25807. }
  25808. },
  25809. },
  25810. [
  25811. {
  25812. name: "Normal",
  25813. height: math.unit(5 + 2 / 12, "feet"),
  25814. default: true
  25815. },
  25816. ]
  25817. ))
  25818. characterMakers.push(() => makeCharacter(
  25819. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25820. {
  25821. front: {
  25822. height: math.unit(2, "feet"),
  25823. weight: math.unit(15, "kg"),
  25824. name: "Front",
  25825. image: {
  25826. source: "./media/characters/diamond-jones/front.svg",
  25827. extra: 727/723,
  25828. bottom: 46/773
  25829. }
  25830. },
  25831. },
  25832. [
  25833. {
  25834. name: "Normal",
  25835. height: math.unit(2, "feet"),
  25836. default: true
  25837. },
  25838. ]
  25839. ))
  25840. characterMakers.push(() => makeCharacter(
  25841. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25842. {
  25843. front: {
  25844. height: math.unit(3, "feet"),
  25845. weight: math.unit(30, "kg"),
  25846. name: "Front",
  25847. image: {
  25848. source: "./media/characters/sweet-bit/front.svg",
  25849. extra: 675 / 567,
  25850. bottom: 27.7 / 703
  25851. }
  25852. },
  25853. },
  25854. [
  25855. {
  25856. name: "Normal",
  25857. height: math.unit(3, "feet"),
  25858. default: true
  25859. },
  25860. ]
  25861. ))
  25862. characterMakers.push(() => makeCharacter(
  25863. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25864. {
  25865. side: {
  25866. height: math.unit(9.178, "feet"),
  25867. weight: math.unit(500, "lb"),
  25868. name: "Side",
  25869. image: {
  25870. source: "./media/characters/umbrazen/side.svg",
  25871. extra: 1730 / 1473,
  25872. bottom: 34.6 / 1765
  25873. }
  25874. },
  25875. },
  25876. [
  25877. {
  25878. name: "Normal",
  25879. height: math.unit(9.178, "feet"),
  25880. default: true
  25881. },
  25882. ]
  25883. ))
  25884. characterMakers.push(() => makeCharacter(
  25885. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25886. {
  25887. front: {
  25888. height: math.unit(10, "feet"),
  25889. weight: math.unit(750, "lb"),
  25890. name: "Front",
  25891. image: {
  25892. source: "./media/characters/arlist/front.svg",
  25893. extra: 961 / 778,
  25894. bottom: 6.2 / 986
  25895. }
  25896. },
  25897. },
  25898. [
  25899. {
  25900. name: "Normal",
  25901. height: math.unit(10, "feet"),
  25902. default: true
  25903. },
  25904. ]
  25905. ))
  25906. characterMakers.push(() => makeCharacter(
  25907. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25908. {
  25909. front: {
  25910. height: math.unit(5 + 1 / 12, "feet"),
  25911. weight: math.unit(110, "lb"),
  25912. name: "Front",
  25913. image: {
  25914. source: "./media/characters/aradel/front.svg",
  25915. extra: 324 / 303,
  25916. bottom: 3.6 / 329.4
  25917. }
  25918. },
  25919. },
  25920. [
  25921. {
  25922. name: "Normal",
  25923. height: math.unit(5 + 1 / 12, "feet"),
  25924. default: true
  25925. },
  25926. ]
  25927. ))
  25928. characterMakers.push(() => makeCharacter(
  25929. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25930. {
  25931. front: {
  25932. height: math.unit(3 + 8 / 12, "feet"),
  25933. weight: math.unit(50, "lb"),
  25934. name: "Front",
  25935. image: {
  25936. source: "./media/characters/serryn/front.svg",
  25937. extra: 1792 / 1656,
  25938. bottom: 43.5 / 1840
  25939. }
  25940. },
  25941. },
  25942. [
  25943. {
  25944. name: "Normal",
  25945. height: math.unit(3 + 8 / 12, "feet"),
  25946. default: true
  25947. },
  25948. ]
  25949. ))
  25950. characterMakers.push(() => makeCharacter(
  25951. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25952. {
  25953. front: {
  25954. height: math.unit(7 + 10 / 12, "feet"),
  25955. weight: math.unit(255, "lb"),
  25956. name: "Front",
  25957. image: {
  25958. source: "./media/characters/xavier-thyme/front.svg",
  25959. extra: 3733 / 3642,
  25960. bottom: 131 / 3869
  25961. }
  25962. },
  25963. frontRaven: {
  25964. height: math.unit(7 + 10 / 12, "feet"),
  25965. weight: math.unit(255, "lb"),
  25966. name: "Front (Raven)",
  25967. image: {
  25968. source: "./media/characters/xavier-thyme/front-raven.svg",
  25969. extra: 4385 / 3642,
  25970. bottom: 131 / 4517
  25971. }
  25972. },
  25973. },
  25974. [
  25975. {
  25976. name: "Normal",
  25977. height: math.unit(7 + 10 / 12, "feet"),
  25978. default: true
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(1.6, "m"),
  25987. weight: math.unit(50, "kg"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/kiki/front.svg",
  25991. extra: 4682 / 3610,
  25992. bottom: 115 / 4777
  25993. }
  25994. },
  25995. },
  25996. [
  25997. {
  25998. name: "Normal",
  25999. height: math.unit(1.6, "meters"),
  26000. default: true
  26001. },
  26002. ]
  26003. ))
  26004. characterMakers.push(() => makeCharacter(
  26005. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26006. {
  26007. front: {
  26008. height: math.unit(50, "m"),
  26009. weight: math.unit(500, "tonnes"),
  26010. name: "Front",
  26011. image: {
  26012. source: "./media/characters/ryoko/front.svg",
  26013. extra: 4632 / 3926,
  26014. bottom: 193 / 4823
  26015. }
  26016. },
  26017. },
  26018. [
  26019. {
  26020. name: "Normal",
  26021. height: math.unit(50, "meters"),
  26022. default: true
  26023. },
  26024. ]
  26025. ))
  26026. characterMakers.push(() => makeCharacter(
  26027. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26028. {
  26029. front: {
  26030. height: math.unit(30, "m"),
  26031. weight: math.unit(22, "tonnes"),
  26032. name: "Front",
  26033. image: {
  26034. source: "./media/characters/elio/front.svg",
  26035. extra: 4582 / 3720,
  26036. bottom: 236 / 4828
  26037. }
  26038. },
  26039. },
  26040. [
  26041. {
  26042. name: "Normal",
  26043. height: math.unit(30, "meters"),
  26044. default: true
  26045. },
  26046. ]
  26047. ))
  26048. characterMakers.push(() => makeCharacter(
  26049. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26050. {
  26051. front: {
  26052. height: math.unit(6 + 3 / 12, "feet"),
  26053. weight: math.unit(120, "lb"),
  26054. name: "Front",
  26055. image: {
  26056. source: "./media/characters/azura/front.svg",
  26057. extra: 1149 / 1135,
  26058. bottom: 45 / 1194
  26059. }
  26060. },
  26061. frontClothed: {
  26062. height: math.unit(6 + 3 / 12, "feet"),
  26063. weight: math.unit(120, "lb"),
  26064. name: "Front (Clothed)",
  26065. image: {
  26066. source: "./media/characters/azura/front-clothed.svg",
  26067. extra: 1149 / 1135,
  26068. bottom: 45 / 1194
  26069. }
  26070. },
  26071. },
  26072. [
  26073. {
  26074. name: "Normal",
  26075. height: math.unit(6 + 3 / 12, "feet"),
  26076. default: true
  26077. },
  26078. {
  26079. name: "Macro",
  26080. height: math.unit(20 + 6 / 12, "feet")
  26081. },
  26082. {
  26083. name: "Megamacro",
  26084. height: math.unit(12, "miles")
  26085. },
  26086. {
  26087. name: "Gigamacro",
  26088. height: math.unit(10000, "miles")
  26089. },
  26090. {
  26091. name: "Teramacro",
  26092. height: math.unit(900000, "miles")
  26093. },
  26094. ]
  26095. ))
  26096. characterMakers.push(() => makeCharacter(
  26097. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26098. {
  26099. front: {
  26100. height: math.unit(12, "feet"),
  26101. weight: math.unit(1, "ton"),
  26102. capacity: math.unit(660000, "gallons"),
  26103. name: "Front",
  26104. image: {
  26105. source: "./media/characters/zeus/front.svg",
  26106. extra: 5005 / 4717,
  26107. bottom: 363 / 5388
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Normal",
  26114. height: math.unit(12, "feet")
  26115. },
  26116. {
  26117. name: "Preferred Size",
  26118. height: math.unit(0.5, "miles"),
  26119. default: true
  26120. },
  26121. {
  26122. name: "Giga Horse",
  26123. height: math.unit(300, "miles")
  26124. },
  26125. {
  26126. name: "Riding Planets",
  26127. height: math.unit(30, "megameters")
  26128. },
  26129. {
  26130. name: "Cosmic Giant",
  26131. height: math.unit(3, "zettameters")
  26132. },
  26133. {
  26134. name: "Breeding God",
  26135. height: math.unit(9.92e22, "yottameters")
  26136. },
  26137. ]
  26138. ))
  26139. characterMakers.push(() => makeCharacter(
  26140. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26141. {
  26142. side: {
  26143. height: math.unit(9, "feet"),
  26144. weight: math.unit(1500, "kg"),
  26145. name: "Side",
  26146. image: {
  26147. source: "./media/characters/fang/side.svg",
  26148. extra: 924 / 866,
  26149. bottom: 47.5 / 972.3
  26150. }
  26151. },
  26152. },
  26153. [
  26154. {
  26155. name: "Normal",
  26156. height: math.unit(9, "feet"),
  26157. default: true
  26158. },
  26159. {
  26160. name: "Macro",
  26161. height: math.unit(75 + 6 / 12, "feet")
  26162. },
  26163. {
  26164. name: "Teramacro",
  26165. height: math.unit(50000, "miles")
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26171. {
  26172. front: {
  26173. height: math.unit(10, "feet"),
  26174. weight: math.unit(2, "tons"),
  26175. name: "Front",
  26176. image: {
  26177. source: "./media/characters/rekhit/front.svg",
  26178. extra: 2796 / 2590,
  26179. bottom: 225 / 3022
  26180. }
  26181. },
  26182. },
  26183. [
  26184. {
  26185. name: "Normal",
  26186. height: math.unit(10, "feet"),
  26187. default: true
  26188. },
  26189. {
  26190. name: "Macro",
  26191. height: math.unit(500, "feet")
  26192. },
  26193. ]
  26194. ))
  26195. characterMakers.push(() => makeCharacter(
  26196. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26197. {
  26198. front: {
  26199. height: math.unit(7 + 6.451 / 12, "feet"),
  26200. weight: math.unit(310, "lb"),
  26201. name: "Front",
  26202. image: {
  26203. source: "./media/characters/dahlia-verrick/front.svg",
  26204. extra: 1488 / 1365,
  26205. bottom: 6.2 / 1495
  26206. }
  26207. },
  26208. back: {
  26209. height: math.unit(7 + 6.451 / 12, "feet"),
  26210. weight: math.unit(310, "lb"),
  26211. name: "Back",
  26212. image: {
  26213. source: "./media/characters/dahlia-verrick/back.svg",
  26214. extra: 1472 / 1351,
  26215. bottom: 5.28 / 1477
  26216. }
  26217. },
  26218. frontBusiness: {
  26219. height: math.unit(7 + 6.451 / 12, "feet"),
  26220. weight: math.unit(200, "lb"),
  26221. name: "Front (Business)",
  26222. image: {
  26223. source: "./media/characters/dahlia-verrick/front-business.svg",
  26224. extra: 1478 / 1381,
  26225. bottom: 5.5 / 1484
  26226. }
  26227. },
  26228. frontCasual: {
  26229. height: math.unit(7 + 6.451 / 12, "feet"),
  26230. weight: math.unit(200, "lb"),
  26231. name: "Front (Casual)",
  26232. image: {
  26233. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26234. extra: 1478 / 1381,
  26235. bottom: 5.5 / 1484
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Travel-Sized",
  26242. height: math.unit(7.45, "inches")
  26243. },
  26244. {
  26245. name: "Normal",
  26246. height: math.unit(7 + 6.451 / 12, "feet"),
  26247. default: true
  26248. },
  26249. {
  26250. name: "Hitting the Town",
  26251. height: math.unit(37 + 8 / 12, "feet")
  26252. },
  26253. {
  26254. name: "Stomp in the Suburbs",
  26255. height: math.unit(964 + 9.728 / 12, "feet")
  26256. },
  26257. {
  26258. name: "Sit on the City",
  26259. height: math.unit(61747 + 10.592 / 12, "feet")
  26260. },
  26261. {
  26262. name: "Glomp the Globe",
  26263. height: math.unit(252919327 + 4.832 / 12, "feet")
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26269. {
  26270. front: {
  26271. height: math.unit(6 + 4 / 12, "feet"),
  26272. weight: math.unit(320, "lb"),
  26273. name: "Front",
  26274. image: {
  26275. source: "./media/characters/balina-mahigan/front.svg",
  26276. extra: 447 / 428,
  26277. bottom: 18 / 466
  26278. }
  26279. },
  26280. back: {
  26281. height: math.unit(6 + 4 / 12, "feet"),
  26282. weight: math.unit(320, "lb"),
  26283. name: "Back",
  26284. image: {
  26285. source: "./media/characters/balina-mahigan/back.svg",
  26286. extra: 445 / 428,
  26287. bottom: 4.07 / 448
  26288. }
  26289. },
  26290. arm: {
  26291. height: math.unit(1.88, "feet"),
  26292. name: "Arm",
  26293. image: {
  26294. source: "./media/characters/balina-mahigan/arm.svg"
  26295. }
  26296. },
  26297. backPort: {
  26298. height: math.unit(0.685, "feet"),
  26299. name: "Back Port",
  26300. image: {
  26301. source: "./media/characters/balina-mahigan/back-port.svg"
  26302. }
  26303. },
  26304. hoofpaw: {
  26305. height: math.unit(1.41, "feet"),
  26306. name: "Hoofpaw",
  26307. image: {
  26308. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26309. }
  26310. },
  26311. leftHandBack: {
  26312. height: math.unit(0.938, "feet"),
  26313. name: "Left Hand (Back)",
  26314. image: {
  26315. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26316. }
  26317. },
  26318. leftHandFront: {
  26319. height: math.unit(0.938, "feet"),
  26320. name: "Left Hand (Front)",
  26321. image: {
  26322. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26323. }
  26324. },
  26325. rightHandBack: {
  26326. height: math.unit(0.95, "feet"),
  26327. name: "Right Hand (Back)",
  26328. image: {
  26329. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26330. }
  26331. },
  26332. rightHandFront: {
  26333. height: math.unit(0.95, "feet"),
  26334. name: "Right Hand (Front)",
  26335. image: {
  26336. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26337. }
  26338. },
  26339. },
  26340. [
  26341. {
  26342. name: "Normal",
  26343. height: math.unit(6 + 4 / 12, "feet"),
  26344. default: true
  26345. },
  26346. ]
  26347. ))
  26348. characterMakers.push(() => makeCharacter(
  26349. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26350. {
  26351. front: {
  26352. height: math.unit(6, "feet"),
  26353. weight: math.unit(320, "lb"),
  26354. name: "Front",
  26355. image: {
  26356. source: "./media/characters/balina-mejeri/front.svg",
  26357. extra: 517 / 488,
  26358. bottom: 44.2 / 561
  26359. }
  26360. },
  26361. },
  26362. [
  26363. {
  26364. name: "Normal",
  26365. height: math.unit(6 + 4 / 12, "feet")
  26366. },
  26367. {
  26368. name: "Business",
  26369. height: math.unit(155, "feet"),
  26370. default: true
  26371. },
  26372. ]
  26373. ))
  26374. characterMakers.push(() => makeCharacter(
  26375. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26376. {
  26377. kneeling: {
  26378. height: math.unit(6 + 4 / 12, "feet"),
  26379. weight: math.unit(300 * 20, "lb"),
  26380. name: "Kneeling",
  26381. image: {
  26382. source: "./media/characters/balbarian/kneeling.svg",
  26383. extra: 922 / 862,
  26384. bottom: 42.4 / 965
  26385. }
  26386. },
  26387. },
  26388. [
  26389. {
  26390. name: "Normal",
  26391. height: math.unit(6 + 4 / 12, "feet")
  26392. },
  26393. {
  26394. name: "Treasured",
  26395. height: math.unit(18 + 9 / 12, "feet"),
  26396. default: true
  26397. },
  26398. {
  26399. name: "Macro",
  26400. height: math.unit(900, "feet")
  26401. },
  26402. ]
  26403. ))
  26404. characterMakers.push(() => makeCharacter(
  26405. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26406. {
  26407. front: {
  26408. height: math.unit(6 + 4 / 12, "feet"),
  26409. weight: math.unit(325, "lb"),
  26410. name: "Front",
  26411. image: {
  26412. source: "./media/characters/balina-amarini/front.svg",
  26413. extra: 415 / 403,
  26414. bottom: 19 / 433.4
  26415. }
  26416. },
  26417. back: {
  26418. height: math.unit(6 + 4 / 12, "feet"),
  26419. weight: math.unit(325, "lb"),
  26420. name: "Back",
  26421. image: {
  26422. source: "./media/characters/balina-amarini/back.svg",
  26423. extra: 415 / 403,
  26424. bottom: 13.5 / 432
  26425. }
  26426. },
  26427. overdrive: {
  26428. height: math.unit(6 + 4 / 12, "feet"),
  26429. weight: math.unit(400, "lb"),
  26430. name: "Overdrive",
  26431. image: {
  26432. source: "./media/characters/balina-amarini/overdrive.svg",
  26433. extra: 269 / 259,
  26434. bottom: 12 / 282
  26435. }
  26436. },
  26437. },
  26438. [
  26439. {
  26440. name: "Boom",
  26441. height: math.unit(9 + 10 / 12, "feet"),
  26442. default: true
  26443. },
  26444. {
  26445. name: "Macro",
  26446. height: math.unit(280, "feet")
  26447. },
  26448. ]
  26449. ))
  26450. characterMakers.push(() => makeCharacter(
  26451. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26452. {
  26453. goddess: {
  26454. height: math.unit(600, "feet"),
  26455. weight: math.unit(2000000, "tons"),
  26456. name: "Goddess",
  26457. image: {
  26458. source: "./media/characters/lady-kubwa/goddess.svg",
  26459. extra: 1240.5 / 1223,
  26460. bottom: 22 / 1263
  26461. }
  26462. },
  26463. goddesser: {
  26464. height: math.unit(900, "feet"),
  26465. weight: math.unit(20000000, "lb"),
  26466. name: "Goddess-er",
  26467. image: {
  26468. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26469. extra: 899 / 888,
  26470. bottom: 12.6 / 912
  26471. }
  26472. },
  26473. },
  26474. [
  26475. {
  26476. name: "Macro",
  26477. height: math.unit(600, "feet"),
  26478. default: true
  26479. },
  26480. {
  26481. name: "Megamacro",
  26482. height: math.unit(250, "miles")
  26483. },
  26484. ]
  26485. ))
  26486. characterMakers.push(() => makeCharacter(
  26487. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26488. {
  26489. front: {
  26490. height: math.unit(7 + 7 / 12, "feet"),
  26491. weight: math.unit(250, "lb"),
  26492. name: "Front",
  26493. image: {
  26494. source: "./media/characters/tala-grovehorn/front.svg",
  26495. extra: 2636 / 2525,
  26496. bottom: 147 / 2781
  26497. }
  26498. },
  26499. back: {
  26500. height: math.unit(7 + 7 / 12, "feet"),
  26501. weight: math.unit(250, "lb"),
  26502. name: "Back",
  26503. image: {
  26504. source: "./media/characters/tala-grovehorn/back.svg",
  26505. extra: 2635 / 2539,
  26506. bottom: 100 / 2732.8
  26507. }
  26508. },
  26509. mouth: {
  26510. height: math.unit(1.15, "feet"),
  26511. name: "Mouth",
  26512. image: {
  26513. source: "./media/characters/tala-grovehorn/mouth.svg"
  26514. }
  26515. },
  26516. dick: {
  26517. height: math.unit(2.36, "feet"),
  26518. name: "Dick",
  26519. image: {
  26520. source: "./media/characters/tala-grovehorn/dick.svg"
  26521. }
  26522. },
  26523. slit: {
  26524. height: math.unit(0.61, "feet"),
  26525. name: "Slit",
  26526. image: {
  26527. source: "./media/characters/tala-grovehorn/slit.svg"
  26528. }
  26529. },
  26530. },
  26531. [
  26532. ]
  26533. ))
  26534. characterMakers.push(() => makeCharacter(
  26535. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26536. {
  26537. front: {
  26538. height: math.unit(7 + 7 / 12, "feet"),
  26539. weight: math.unit(225, "lb"),
  26540. name: "Front",
  26541. image: {
  26542. source: "./media/characters/epona/front.svg",
  26543. extra: 2445 / 2290,
  26544. bottom: 251 / 2696
  26545. }
  26546. },
  26547. back: {
  26548. height: math.unit(7 + 7 / 12, "feet"),
  26549. weight: math.unit(225, "lb"),
  26550. name: "Back",
  26551. image: {
  26552. source: "./media/characters/epona/back.svg",
  26553. extra: 2546 / 2408,
  26554. bottom: 44 / 2589
  26555. }
  26556. },
  26557. genitals: {
  26558. height: math.unit(1.5, "feet"),
  26559. name: "Genitals",
  26560. image: {
  26561. source: "./media/characters/epona/genitals.svg"
  26562. }
  26563. },
  26564. },
  26565. [
  26566. {
  26567. name: "Normal",
  26568. height: math.unit(7 + 7 / 12, "feet"),
  26569. default: true
  26570. },
  26571. ]
  26572. ))
  26573. characterMakers.push(() => makeCharacter(
  26574. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26575. {
  26576. front: {
  26577. height: math.unit(7, "feet"),
  26578. weight: math.unit(518, "lb"),
  26579. name: "Front",
  26580. image: {
  26581. source: "./media/characters/avia-bloodbourn/front.svg",
  26582. extra: 1466 / 1350,
  26583. bottom: 65 / 1527
  26584. }
  26585. },
  26586. },
  26587. [
  26588. ]
  26589. ))
  26590. characterMakers.push(() => makeCharacter(
  26591. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26592. {
  26593. front: {
  26594. height: math.unit(9.35, "feet"),
  26595. weight: math.unit(600, "lb"),
  26596. name: "Front",
  26597. image: {
  26598. source: "./media/characters/amera/front.svg",
  26599. extra: 891 / 818,
  26600. bottom: 30 / 922.7
  26601. }
  26602. },
  26603. back: {
  26604. height: math.unit(9.35, "feet"),
  26605. weight: math.unit(600, "lb"),
  26606. name: "Back",
  26607. image: {
  26608. source: "./media/characters/amera/back.svg",
  26609. extra: 876 / 824,
  26610. bottom: 6.8 / 884
  26611. }
  26612. },
  26613. dick: {
  26614. height: math.unit(2.14, "feet"),
  26615. name: "Dick",
  26616. image: {
  26617. source: "./media/characters/amera/dick.svg"
  26618. }
  26619. },
  26620. },
  26621. [
  26622. {
  26623. name: "Normal",
  26624. height: math.unit(9.35, "feet"),
  26625. default: true
  26626. },
  26627. ]
  26628. ))
  26629. characterMakers.push(() => makeCharacter(
  26630. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26631. {
  26632. kneeling: {
  26633. height: math.unit(3 + 4 / 12, "feet"),
  26634. weight: math.unit(90, "lb"),
  26635. name: "Kneeling",
  26636. image: {
  26637. source: "./media/characters/rosewen/kneeling.svg",
  26638. extra: 1835 / 1571,
  26639. bottom: 27.7 / 1862
  26640. }
  26641. },
  26642. },
  26643. [
  26644. {
  26645. name: "Normal",
  26646. height: math.unit(3 + 4 / 12, "feet"),
  26647. default: true
  26648. },
  26649. ]
  26650. ))
  26651. characterMakers.push(() => makeCharacter(
  26652. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26653. {
  26654. front: {
  26655. height: math.unit(5 + 10 / 12, "feet"),
  26656. weight: math.unit(200, "lb"),
  26657. name: "Front",
  26658. image: {
  26659. source: "./media/characters/sabah/front.svg",
  26660. extra: 849 / 763,
  26661. bottom: 33.9 / 881
  26662. }
  26663. },
  26664. },
  26665. [
  26666. {
  26667. name: "Normal",
  26668. height: math.unit(5 + 10 / 12, "feet"),
  26669. default: true
  26670. },
  26671. ]
  26672. ))
  26673. characterMakers.push(() => makeCharacter(
  26674. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26675. {
  26676. front: {
  26677. height: math.unit(3 + 5 / 12, "feet"),
  26678. weight: math.unit(40, "kg"),
  26679. name: "Front",
  26680. image: {
  26681. source: "./media/characters/purple-flame/front.svg",
  26682. extra: 1577 / 1412,
  26683. bottom: 97 / 1694
  26684. }
  26685. },
  26686. frontDressed: {
  26687. height: math.unit(3 + 5 / 12, "feet"),
  26688. weight: math.unit(40, "kg"),
  26689. name: "Front (Dressed)",
  26690. image: {
  26691. source: "./media/characters/purple-flame/front-dressed.svg",
  26692. extra: 1577 / 1412,
  26693. bottom: 97 / 1694
  26694. }
  26695. },
  26696. headphones: {
  26697. height: math.unit(0.85, "feet"),
  26698. name: "Headphones",
  26699. image: {
  26700. source: "./media/characters/purple-flame/headphones.svg"
  26701. }
  26702. },
  26703. },
  26704. [
  26705. {
  26706. name: "Really Small",
  26707. height: math.unit(5, "cm")
  26708. },
  26709. {
  26710. name: "Micro",
  26711. height: math.unit(1 + 5 / 12, "feet")
  26712. },
  26713. {
  26714. name: "Normal",
  26715. height: math.unit(3 + 5 / 12, "feet"),
  26716. default: true
  26717. },
  26718. {
  26719. name: "Minimacro",
  26720. height: math.unit(125, "feet")
  26721. },
  26722. {
  26723. name: "Macro",
  26724. height: math.unit(0.5, "miles")
  26725. },
  26726. {
  26727. name: "Megamacro",
  26728. height: math.unit(50, "miles")
  26729. },
  26730. {
  26731. name: "Gigantic",
  26732. height: math.unit(750, "miles")
  26733. },
  26734. {
  26735. name: "Planetary",
  26736. height: math.unit(15000, "miles")
  26737. },
  26738. ]
  26739. ))
  26740. characterMakers.push(() => makeCharacter(
  26741. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26742. {
  26743. front: {
  26744. height: math.unit(14, "feet"),
  26745. weight: math.unit(959, "lb"),
  26746. name: "Front",
  26747. image: {
  26748. source: "./media/characters/arsenal/front.svg",
  26749. extra: 2357 / 2157,
  26750. bottom: 93 / 2458
  26751. }
  26752. },
  26753. },
  26754. [
  26755. {
  26756. name: "Normal",
  26757. height: math.unit(14, "feet"),
  26758. default: true
  26759. },
  26760. ]
  26761. ))
  26762. characterMakers.push(() => makeCharacter(
  26763. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26764. {
  26765. front: {
  26766. height: math.unit(6, "feet"),
  26767. weight: math.unit(150, "lb"),
  26768. name: "Front",
  26769. image: {
  26770. source: "./media/characters/adira/front.svg",
  26771. extra: 1078 / 1029,
  26772. bottom: 87 / 1166
  26773. }
  26774. },
  26775. },
  26776. [
  26777. {
  26778. name: "Micro",
  26779. height: math.unit(4, "inches"),
  26780. default: true
  26781. },
  26782. {
  26783. name: "Macro",
  26784. height: math.unit(50, "feet")
  26785. },
  26786. ]
  26787. ))
  26788. characterMakers.push(() => makeCharacter(
  26789. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26790. {
  26791. front: {
  26792. height: math.unit(16, "feet"),
  26793. weight: math.unit(1000, "lb"),
  26794. name: "Front",
  26795. image: {
  26796. source: "./media/characters/grim/front.svg",
  26797. extra: 622 / 614,
  26798. bottom: 18.1 / 642
  26799. }
  26800. },
  26801. back: {
  26802. height: math.unit(16, "feet"),
  26803. weight: math.unit(1000, "lb"),
  26804. name: "Back",
  26805. image: {
  26806. source: "./media/characters/grim/back.svg",
  26807. extra: 610.6 / 602,
  26808. bottom: 40.8 / 652
  26809. }
  26810. },
  26811. hunched: {
  26812. height: math.unit(9.75, "feet"),
  26813. weight: math.unit(1000, "lb"),
  26814. name: "Hunched",
  26815. image: {
  26816. source: "./media/characters/grim/hunched.svg",
  26817. extra: 304 / 297,
  26818. bottom: 35.4 / 394
  26819. }
  26820. },
  26821. },
  26822. [
  26823. {
  26824. name: "Normal",
  26825. height: math.unit(16, "feet"),
  26826. default: true
  26827. },
  26828. ]
  26829. ))
  26830. characterMakers.push(() => makeCharacter(
  26831. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26832. {
  26833. front: {
  26834. height: math.unit(2.3, "meters"),
  26835. weight: math.unit(300, "lb"),
  26836. name: "Front",
  26837. image: {
  26838. source: "./media/characters/sinja/front-sfw.svg",
  26839. extra: 1393 / 1294,
  26840. bottom: 70 / 1463
  26841. }
  26842. },
  26843. frontNsfw: {
  26844. height: math.unit(2.3, "meters"),
  26845. weight: math.unit(300, "lb"),
  26846. name: "Front (NSFW)",
  26847. image: {
  26848. source: "./media/characters/sinja/front-nsfw.svg",
  26849. extra: 1393 / 1294,
  26850. bottom: 70 / 1463
  26851. }
  26852. },
  26853. back: {
  26854. height: math.unit(2.3, "meters"),
  26855. weight: math.unit(300, "lb"),
  26856. name: "Back",
  26857. image: {
  26858. source: "./media/characters/sinja/back.svg",
  26859. extra: 1393 / 1294,
  26860. bottom: 70 / 1463
  26861. }
  26862. },
  26863. head: {
  26864. height: math.unit(1.771, "feet"),
  26865. name: "Head",
  26866. image: {
  26867. source: "./media/characters/sinja/head.svg"
  26868. }
  26869. },
  26870. slit: {
  26871. height: math.unit(0.8, "feet"),
  26872. name: "Slit",
  26873. image: {
  26874. source: "./media/characters/sinja/slit.svg"
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Normal",
  26881. height: math.unit(2.3, "meters")
  26882. },
  26883. {
  26884. name: "Macro",
  26885. height: math.unit(91, "meters"),
  26886. default: true
  26887. },
  26888. {
  26889. name: "Megamacro",
  26890. height: math.unit(91440, "meters")
  26891. },
  26892. {
  26893. name: "Gigamacro",
  26894. height: math.unit(60960000, "meters")
  26895. },
  26896. {
  26897. name: "Teramacro",
  26898. height: math.unit(9144000000, "meters")
  26899. },
  26900. ]
  26901. ))
  26902. characterMakers.push(() => makeCharacter(
  26903. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26904. {
  26905. front: {
  26906. height: math.unit(1.7, "meters"),
  26907. weight: math.unit(130, "lb"),
  26908. name: "Front",
  26909. image: {
  26910. source: "./media/characters/kyu/front.svg",
  26911. extra: 415 / 395,
  26912. bottom: 5 / 420
  26913. }
  26914. },
  26915. head: {
  26916. height: math.unit(1.75, "feet"),
  26917. name: "Head",
  26918. image: {
  26919. source: "./media/characters/kyu/head.svg"
  26920. }
  26921. },
  26922. foot: {
  26923. height: math.unit(0.81, "feet"),
  26924. name: "Foot",
  26925. image: {
  26926. source: "./media/characters/kyu/foot.svg"
  26927. }
  26928. },
  26929. },
  26930. [
  26931. {
  26932. name: "Normal",
  26933. height: math.unit(1.7, "meters")
  26934. },
  26935. {
  26936. name: "Macro",
  26937. height: math.unit(131, "feet"),
  26938. default: true
  26939. },
  26940. {
  26941. name: "Megamacro",
  26942. height: math.unit(91440, "meters")
  26943. },
  26944. {
  26945. name: "Gigamacro",
  26946. height: math.unit(60960000, "meters")
  26947. },
  26948. {
  26949. name: "Teramacro",
  26950. height: math.unit(9144000000, "meters")
  26951. },
  26952. ]
  26953. ))
  26954. characterMakers.push(() => makeCharacter(
  26955. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26956. {
  26957. front: {
  26958. height: math.unit(7 + 1 / 12, "feet"),
  26959. weight: math.unit(250, "lb"),
  26960. name: "Front",
  26961. image: {
  26962. source: "./media/characters/joey/front.svg",
  26963. extra: 1791 / 1537,
  26964. bottom: 28 / 1816
  26965. }
  26966. },
  26967. },
  26968. [
  26969. {
  26970. name: "Micro",
  26971. height: math.unit(3, "inches")
  26972. },
  26973. {
  26974. name: "Normal",
  26975. height: math.unit(7 + 1 / 12, "feet"),
  26976. default: true
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26982. {
  26983. front: {
  26984. height: math.unit(165, "cm"),
  26985. weight: math.unit(140, "lb"),
  26986. name: "Front",
  26987. image: {
  26988. source: "./media/characters/sam-evans/front.svg",
  26989. extra: 3417 / 3230,
  26990. bottom: 41.3 / 3417
  26991. }
  26992. },
  26993. frontSixTails: {
  26994. height: math.unit(165, "cm"),
  26995. weight: math.unit(140, "lb"),
  26996. name: "Front-six-tails",
  26997. image: {
  26998. source: "./media/characters/sam-evans/front-six-tails.svg",
  26999. extra: 3417 / 3230,
  27000. bottom: 41.3 / 3417
  27001. }
  27002. },
  27003. back: {
  27004. height: math.unit(165, "cm"),
  27005. weight: math.unit(140, "lb"),
  27006. name: "Back",
  27007. image: {
  27008. source: "./media/characters/sam-evans/back.svg",
  27009. extra: 3227 / 3032,
  27010. bottom: 6.8 / 3234
  27011. }
  27012. },
  27013. face: {
  27014. height: math.unit(0.68, "feet"),
  27015. name: "Face",
  27016. image: {
  27017. source: "./media/characters/sam-evans/face.svg"
  27018. }
  27019. },
  27020. },
  27021. [
  27022. {
  27023. name: "Normal",
  27024. height: math.unit(165, "cm"),
  27025. default: true
  27026. },
  27027. {
  27028. name: "Macro",
  27029. height: math.unit(100, "meters")
  27030. },
  27031. {
  27032. name: "Macro+",
  27033. height: math.unit(800, "meters")
  27034. },
  27035. {
  27036. name: "Macro++",
  27037. height: math.unit(3, "km")
  27038. },
  27039. {
  27040. name: "Macro+++",
  27041. height: math.unit(30, "km")
  27042. },
  27043. ]
  27044. ))
  27045. characterMakers.push(() => makeCharacter(
  27046. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27047. {
  27048. front: {
  27049. height: math.unit(10, "feet"),
  27050. weight: math.unit(750, "lb"),
  27051. name: "Front",
  27052. image: {
  27053. source: "./media/characters/juliet-a/front.svg",
  27054. extra: 1766 / 1720,
  27055. bottom: 43 / 1809
  27056. }
  27057. },
  27058. back: {
  27059. height: math.unit(10, "feet"),
  27060. weight: math.unit(750, "lb"),
  27061. name: "Back",
  27062. image: {
  27063. source: "./media/characters/juliet-a/back.svg",
  27064. extra: 1781 / 1734,
  27065. bottom: 35 / 1810,
  27066. }
  27067. },
  27068. },
  27069. [
  27070. {
  27071. name: "Normal",
  27072. height: math.unit(10, "feet"),
  27073. default: true
  27074. },
  27075. {
  27076. name: "Dragon Form",
  27077. height: math.unit(250, "feet")
  27078. },
  27079. {
  27080. name: "Macro",
  27081. height: math.unit(1000, "feet")
  27082. },
  27083. {
  27084. name: "Megamacro",
  27085. height: math.unit(10000, "feet")
  27086. }
  27087. ]
  27088. ))
  27089. characterMakers.push(() => makeCharacter(
  27090. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27091. {
  27092. regular: {
  27093. height: math.unit(7 + 3 / 12, "feet"),
  27094. weight: math.unit(260, "lb"),
  27095. name: "Regular",
  27096. image: {
  27097. source: "./media/characters/wild/regular.svg",
  27098. extra: 97.45 / 92,
  27099. bottom: 6.8 / 104.3
  27100. }
  27101. },
  27102. biggums: {
  27103. height: math.unit(8 + 6 / 12, "feet"),
  27104. weight: math.unit(425, "lb"),
  27105. name: "Biggums",
  27106. image: {
  27107. source: "./media/characters/wild/biggums.svg",
  27108. extra: 97.45 / 92,
  27109. bottom: 7.5 / 132.34
  27110. }
  27111. },
  27112. mawRegular: {
  27113. height: math.unit(1.24, "feet"),
  27114. name: "Maw (Regular)",
  27115. image: {
  27116. source: "./media/characters/wild/maw.svg"
  27117. }
  27118. },
  27119. mawBiggums: {
  27120. height: math.unit(1.47, "feet"),
  27121. name: "Maw (Biggums)",
  27122. image: {
  27123. source: "./media/characters/wild/maw.svg"
  27124. }
  27125. },
  27126. },
  27127. [
  27128. {
  27129. name: "Normal",
  27130. height: math.unit(7 + 3 / 12, "feet"),
  27131. default: true
  27132. },
  27133. ]
  27134. ))
  27135. characterMakers.push(() => makeCharacter(
  27136. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27137. {
  27138. front: {
  27139. height: math.unit(2.5, "meters"),
  27140. weight: math.unit(200, "kg"),
  27141. name: "Front",
  27142. image: {
  27143. source: "./media/characters/vidar/front.svg",
  27144. extra: 2994 / 2795,
  27145. bottom: 56 / 3061
  27146. }
  27147. },
  27148. back: {
  27149. height: math.unit(2.5, "meters"),
  27150. weight: math.unit(200, "kg"),
  27151. name: "Back",
  27152. image: {
  27153. source: "./media/characters/vidar/back.svg",
  27154. extra: 3131 / 2928,
  27155. bottom: 13.5 / 3141.5
  27156. }
  27157. },
  27158. feral: {
  27159. height: math.unit(2.5, "meters"),
  27160. weight: math.unit(2000, "kg"),
  27161. name: "Feral",
  27162. image: {
  27163. source: "./media/characters/vidar/feral.svg",
  27164. extra: 2790 / 1765,
  27165. bottom: 6 / 2796
  27166. }
  27167. },
  27168. },
  27169. [
  27170. {
  27171. name: "Normal",
  27172. height: math.unit(2.5, "meters"),
  27173. default: true
  27174. },
  27175. {
  27176. name: "Macro",
  27177. height: math.unit(100, "meters")
  27178. },
  27179. ]
  27180. ))
  27181. characterMakers.push(() => makeCharacter(
  27182. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27183. {
  27184. front: {
  27185. height: math.unit(5 + 9 / 12, "feet"),
  27186. weight: math.unit(120, "lb"),
  27187. name: "Front",
  27188. image: {
  27189. source: "./media/characters/ash/front.svg",
  27190. extra: 2189 / 1961,
  27191. bottom: 5.2 / 2194
  27192. }
  27193. },
  27194. },
  27195. [
  27196. {
  27197. name: "Normal",
  27198. height: math.unit(5 + 9 / 12, "feet"),
  27199. default: true
  27200. },
  27201. ]
  27202. ))
  27203. characterMakers.push(() => makeCharacter(
  27204. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27205. {
  27206. front: {
  27207. height: math.unit(9, "feet"),
  27208. weight: math.unit(10000, "lb"),
  27209. name: "Front",
  27210. image: {
  27211. source: "./media/characters/gygabite/front.svg",
  27212. bottom: 31.7 / 537.8,
  27213. extra: 505 / 370
  27214. }
  27215. },
  27216. },
  27217. [
  27218. {
  27219. name: "Normal",
  27220. height: math.unit(9, "feet"),
  27221. default: true
  27222. },
  27223. ]
  27224. ))
  27225. characterMakers.push(() => makeCharacter(
  27226. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27227. {
  27228. front: {
  27229. height: math.unit(12, "feet"),
  27230. weight: math.unit(35000, "lb"),
  27231. name: "Front",
  27232. image: {
  27233. source: "./media/characters/p0tat0/front.svg",
  27234. extra: 1065 / 921,
  27235. bottom: 55.7 / 1121.25
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "Normal",
  27242. height: math.unit(12, "feet"),
  27243. default: true
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27249. {
  27250. side: {
  27251. height: math.unit(6.5, "feet"),
  27252. weight: math.unit(800, "lb"),
  27253. name: "Side",
  27254. image: {
  27255. source: "./media/characters/dusk/side.svg",
  27256. extra: 615 / 373,
  27257. bottom: 53 / 664
  27258. }
  27259. },
  27260. sitting: {
  27261. height: math.unit(7, "feet"),
  27262. weight: math.unit(800, "lb"),
  27263. name: "Sitting",
  27264. image: {
  27265. source: "./media/characters/dusk/sitting.svg",
  27266. extra: 753 / 425,
  27267. bottom: 33 / 774
  27268. }
  27269. },
  27270. head: {
  27271. height: math.unit(6.1, "feet"),
  27272. name: "Head",
  27273. image: {
  27274. source: "./media/characters/dusk/head.svg"
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(7, "feet"),
  27282. default: true
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(15, "feet"),
  27291. weight: math.unit(7000, "lb"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/jay-direwolf/front.svg",
  27295. extra: 1810 / 1732,
  27296. bottom: 66 / 1892
  27297. }
  27298. },
  27299. },
  27300. [
  27301. {
  27302. name: "Normal",
  27303. height: math.unit(15, "feet"),
  27304. default: true
  27305. },
  27306. ]
  27307. ))
  27308. characterMakers.push(() => makeCharacter(
  27309. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27310. {
  27311. front: {
  27312. height: math.unit(4 + 9 / 12, "feet"),
  27313. weight: math.unit(130, "lb"),
  27314. name: "Front",
  27315. image: {
  27316. source: "./media/characters/anchovie/front.svg",
  27317. extra: 382 / 350,
  27318. bottom: 25 / 409
  27319. }
  27320. },
  27321. back: {
  27322. height: math.unit(4 + 9 / 12, "feet"),
  27323. weight: math.unit(130, "lb"),
  27324. name: "Back",
  27325. image: {
  27326. source: "./media/characters/anchovie/back.svg",
  27327. extra: 385 / 352,
  27328. bottom: 16.6 / 402
  27329. }
  27330. },
  27331. frontDressed: {
  27332. height: math.unit(4 + 9 / 12, "feet"),
  27333. weight: math.unit(130, "lb"),
  27334. name: "Front (Dressed)",
  27335. image: {
  27336. source: "./media/characters/anchovie/front-dressed.svg",
  27337. extra: 382 / 350,
  27338. bottom: 25 / 409
  27339. }
  27340. },
  27341. backDressed: {
  27342. height: math.unit(4 + 9 / 12, "feet"),
  27343. weight: math.unit(130, "lb"),
  27344. name: "Back (Dressed)",
  27345. image: {
  27346. source: "./media/characters/anchovie/back-dressed.svg",
  27347. extra: 385 / 352,
  27348. bottom: 16.6 / 402
  27349. }
  27350. },
  27351. },
  27352. [
  27353. {
  27354. name: "Micro",
  27355. height: math.unit(6.4, "inches")
  27356. },
  27357. {
  27358. name: "Normal",
  27359. height: math.unit(4 + 9 / 12, "feet"),
  27360. default: true
  27361. },
  27362. ]
  27363. ))
  27364. characterMakers.push(() => makeCharacter(
  27365. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27366. {
  27367. front: {
  27368. height: math.unit(2, "meters"),
  27369. weight: math.unit(180, "lb"),
  27370. name: "Front",
  27371. image: {
  27372. source: "./media/characters/acidrenamon/front.svg",
  27373. extra: 987 / 890,
  27374. bottom: 22.8 / 1009
  27375. }
  27376. },
  27377. back: {
  27378. height: math.unit(2, "meters"),
  27379. weight: math.unit(180, "lb"),
  27380. name: "Back",
  27381. image: {
  27382. source: "./media/characters/acidrenamon/back.svg",
  27383. extra: 983 / 891,
  27384. bottom: 8.4 / 992
  27385. }
  27386. },
  27387. head: {
  27388. height: math.unit(1.92, "feet"),
  27389. name: "Head",
  27390. image: {
  27391. source: "./media/characters/acidrenamon/head.svg"
  27392. }
  27393. },
  27394. rump: {
  27395. height: math.unit(1.72, "feet"),
  27396. name: "Rump",
  27397. image: {
  27398. source: "./media/characters/acidrenamon/rump.svg"
  27399. }
  27400. },
  27401. tail: {
  27402. height: math.unit(4.2, "feet"),
  27403. name: "Tail",
  27404. image: {
  27405. source: "./media/characters/acidrenamon/tail.svg"
  27406. }
  27407. },
  27408. },
  27409. [
  27410. {
  27411. name: "Normal",
  27412. height: math.unit(2, "meters"),
  27413. default: true
  27414. },
  27415. {
  27416. name: "Minimacro",
  27417. height: math.unit(7, "meters")
  27418. },
  27419. {
  27420. name: "Macro",
  27421. height: math.unit(200, "meters")
  27422. },
  27423. {
  27424. name: "Gigamacro",
  27425. height: math.unit(0.2, "earths")
  27426. },
  27427. ]
  27428. ))
  27429. characterMakers.push(() => makeCharacter(
  27430. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27431. {
  27432. front: {
  27433. height: math.unit(6, "feet"),
  27434. weight: math.unit(150, "lb"),
  27435. name: "Front",
  27436. image: {
  27437. source: "./media/characters/kenzie-lee/front.svg",
  27438. extra: 1525 / 1465,
  27439. bottom: 45 / 1570
  27440. }
  27441. },
  27442. side: {
  27443. height: math.unit(6, "feet"),
  27444. weight: math.unit(150, "lb"),
  27445. name: "Side",
  27446. image: {
  27447. source: "./media/characters/kenzie-lee/side.svg",
  27448. extra: 5505 / 5383,
  27449. bottom: 60 / 5573
  27450. }
  27451. },
  27452. paw: {
  27453. height: math.unit(0.57, "feet"),
  27454. name: "Paw",
  27455. image: {
  27456. source: "./media/characters/kenzie-lee/paw.svg"
  27457. }
  27458. },
  27459. },
  27460. [
  27461. {
  27462. name: "Normal",
  27463. height: math.unit(152, "feet"),
  27464. default: true
  27465. },
  27466. {
  27467. name: "Megamacro",
  27468. height: math.unit(7, "miles")
  27469. },
  27470. {
  27471. name: "Gigamacro",
  27472. height: math.unit(8000, "miles")
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27478. {
  27479. side: {
  27480. height: math.unit(6, "feet"),
  27481. weight: math.unit(150, "lb"),
  27482. name: "Side",
  27483. image: {
  27484. source: "./media/characters/withers/side.svg",
  27485. extra: 1830 / 1728,
  27486. bottom: 96 / 1927
  27487. }
  27488. },
  27489. front: {
  27490. height: math.unit(6, "feet"),
  27491. weight: math.unit(150, "lb"),
  27492. name: "Front",
  27493. image: {
  27494. source: "./media/characters/withers/front.svg",
  27495. extra: 1514 / 1438,
  27496. bottom: 118 / 1632
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Macro",
  27503. height: math.unit(168, "feet"),
  27504. default: true
  27505. },
  27506. {
  27507. name: "Megamacro",
  27508. height: math.unit(15, "miles")
  27509. }
  27510. ]
  27511. ))
  27512. characterMakers.push(() => makeCharacter(
  27513. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27514. {
  27515. front: {
  27516. height: math.unit(6 + 7 / 12, "feet"),
  27517. weight: math.unit(250, "lb"),
  27518. name: "Front",
  27519. image: {
  27520. source: "./media/characters/nemoskii/front.svg",
  27521. extra: 2270 / 1734,
  27522. bottom: 86 / 2354
  27523. }
  27524. },
  27525. back: {
  27526. height: math.unit(6 + 7 / 12, "feet"),
  27527. weight: math.unit(250, "lb"),
  27528. name: "Back",
  27529. image: {
  27530. source: "./media/characters/nemoskii/back.svg",
  27531. extra: 1845 / 1788,
  27532. bottom: 10.5 / 1852
  27533. }
  27534. },
  27535. head: {
  27536. height: math.unit(1.31, "feet"),
  27537. name: "Head",
  27538. image: {
  27539. source: "./media/characters/nemoskii/head.svg"
  27540. }
  27541. },
  27542. },
  27543. [
  27544. {
  27545. name: "Micro",
  27546. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27547. },
  27548. {
  27549. name: "Normal",
  27550. height: math.unit(6 + 7 / 12, "feet"),
  27551. default: true
  27552. },
  27553. {
  27554. name: "Macro",
  27555. height: math.unit((6 + 7 / 12) * 150, "feet")
  27556. },
  27557. {
  27558. name: "Macro+",
  27559. height: math.unit((6 + 7 / 12) * 500, "feet")
  27560. },
  27561. {
  27562. name: "Megamacro",
  27563. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27564. },
  27565. ]
  27566. ))
  27567. characterMakers.push(() => makeCharacter(
  27568. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27569. {
  27570. front: {
  27571. height: math.unit(1, "mile"),
  27572. weight: math.unit(265261.9, "lb"),
  27573. name: "Front",
  27574. image: {
  27575. source: "./media/characters/shui/front.svg",
  27576. extra: 1633 / 1564,
  27577. bottom: 91.5 / 1726
  27578. }
  27579. },
  27580. },
  27581. [
  27582. {
  27583. name: "Macro",
  27584. height: math.unit(1, "mile"),
  27585. default: true
  27586. },
  27587. ]
  27588. ))
  27589. characterMakers.push(() => makeCharacter(
  27590. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27591. {
  27592. front: {
  27593. height: math.unit(12 + 6 / 12, "feet"),
  27594. weight: math.unit(1342, "lb"),
  27595. name: "Front",
  27596. image: {
  27597. source: "./media/characters/arokh-takakura/front.svg",
  27598. extra: 1089 / 1043,
  27599. bottom: 77.4 / 1176.7
  27600. }
  27601. },
  27602. back: {
  27603. height: math.unit(12 + 6 / 12, "feet"),
  27604. weight: math.unit(1342, "lb"),
  27605. name: "Back",
  27606. image: {
  27607. source: "./media/characters/arokh-takakura/back.svg",
  27608. extra: 1046 / 1019,
  27609. bottom: 102 / 1150
  27610. }
  27611. },
  27612. },
  27613. [
  27614. {
  27615. name: "Big",
  27616. height: math.unit(12 + 6 / 12, "feet"),
  27617. default: true
  27618. },
  27619. ]
  27620. ))
  27621. characterMakers.push(() => makeCharacter(
  27622. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27623. {
  27624. front: {
  27625. height: math.unit(5 + 6 / 12, "feet"),
  27626. weight: math.unit(150, "lb"),
  27627. name: "Front",
  27628. image: {
  27629. source: "./media/characters/theo/front.svg",
  27630. extra: 1184 / 1131,
  27631. bottom: 7.4 / 1191
  27632. }
  27633. },
  27634. },
  27635. [
  27636. {
  27637. name: "Micro",
  27638. height: math.unit(5, "inches")
  27639. },
  27640. {
  27641. name: "Normal",
  27642. height: math.unit(5 + 6 / 12, "feet"),
  27643. default: true
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27649. {
  27650. front: {
  27651. height: math.unit(5 + 9 / 12, "feet"),
  27652. weight: math.unit(130, "lb"),
  27653. name: "Front",
  27654. image: {
  27655. source: "./media/characters/cecelia-swift/front.svg",
  27656. extra: 502 / 484,
  27657. bottom: 23 / 523
  27658. }
  27659. },
  27660. back: {
  27661. height: math.unit(5 + 9 / 12, "feet"),
  27662. weight: math.unit(130, "lb"),
  27663. name: "Back",
  27664. image: {
  27665. source: "./media/characters/cecelia-swift/back.svg",
  27666. extra: 499 / 485,
  27667. bottom: 12 / 511
  27668. }
  27669. },
  27670. head: {
  27671. height: math.unit(0.90, "feet"),
  27672. name: "Head",
  27673. image: {
  27674. source: "./media/characters/cecelia-swift/head.svg"
  27675. }
  27676. },
  27677. rump: {
  27678. height: math.unit(1.75, "feet"),
  27679. name: "Rump",
  27680. image: {
  27681. source: "./media/characters/cecelia-swift/rump.svg"
  27682. }
  27683. },
  27684. },
  27685. [
  27686. {
  27687. name: "Normal",
  27688. height: math.unit(5 + 9 / 12, "feet"),
  27689. default: true
  27690. },
  27691. {
  27692. name: "Big",
  27693. height: math.unit(50, "feet")
  27694. },
  27695. {
  27696. name: "Macro",
  27697. height: math.unit(100, "feet")
  27698. },
  27699. {
  27700. name: "Macro+",
  27701. height: math.unit(500, "feet")
  27702. },
  27703. {
  27704. name: "Macro++",
  27705. height: math.unit(1000, "feet")
  27706. },
  27707. ]
  27708. ))
  27709. characterMakers.push(() => makeCharacter(
  27710. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27711. {
  27712. front: {
  27713. height: math.unit(6, "feet"),
  27714. weight: math.unit(150, "lb"),
  27715. name: "Front",
  27716. image: {
  27717. source: "./media/characters/kaunan/front.svg",
  27718. extra: 2890 / 2523,
  27719. bottom: 49 / 2939
  27720. }
  27721. },
  27722. },
  27723. [
  27724. {
  27725. name: "Macro",
  27726. height: math.unit(150, "feet"),
  27727. default: true
  27728. },
  27729. ]
  27730. ))
  27731. characterMakers.push(() => makeCharacter(
  27732. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27733. {
  27734. front: {
  27735. height: math.unit(175, "cm"),
  27736. weight: math.unit(60, "kg"),
  27737. name: "Front",
  27738. image: {
  27739. source: "./media/characters/fei/front.svg",
  27740. extra: 1873/1723,
  27741. bottom: 53/1926
  27742. }
  27743. },
  27744. },
  27745. [
  27746. {
  27747. name: "Mortal",
  27748. height: math.unit(175, "cm")
  27749. },
  27750. {
  27751. name: "Normal",
  27752. height: math.unit(3500, "m"),
  27753. default: true
  27754. },
  27755. {
  27756. name: "Stroll",
  27757. height: math.unit(17.5, "km")
  27758. },
  27759. {
  27760. name: "Showoff",
  27761. height: math.unit(175, "km")
  27762. },
  27763. ]
  27764. ))
  27765. characterMakers.push(() => makeCharacter(
  27766. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27767. {
  27768. front: {
  27769. height: math.unit(7, "feet"),
  27770. weight: math.unit(1000, "kg"),
  27771. name: "Front",
  27772. image: {
  27773. source: "./media/characters/edrax/front.svg",
  27774. extra: 2838 / 2550,
  27775. bottom: 130 / 2968
  27776. }
  27777. },
  27778. },
  27779. [
  27780. {
  27781. name: "Small",
  27782. height: math.unit(7, "feet")
  27783. },
  27784. {
  27785. name: "Normal",
  27786. height: math.unit(1500, "meters")
  27787. },
  27788. {
  27789. name: "Mega",
  27790. height: math.unit(12000000, "km"),
  27791. default: true
  27792. },
  27793. {
  27794. name: "Megamacro",
  27795. height: math.unit(10600000, "lightyears")
  27796. },
  27797. {
  27798. name: "Hypermacro",
  27799. height: math.unit(256, "yottameters")
  27800. },
  27801. ]
  27802. ))
  27803. characterMakers.push(() => makeCharacter(
  27804. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27805. {
  27806. front: {
  27807. height: math.unit(10, "feet"),
  27808. weight: math.unit(750, "lb"),
  27809. name: "Front",
  27810. image: {
  27811. source: "./media/characters/clove/front.svg",
  27812. extra: 2031 / 1860,
  27813. bottom: 47.8 / 2080
  27814. }
  27815. },
  27816. back: {
  27817. height: math.unit(10, "feet"),
  27818. weight: math.unit(750, "lb"),
  27819. name: "Back",
  27820. image: {
  27821. source: "./media/characters/clove/back.svg",
  27822. extra: 2025 / 1859,
  27823. bottom: 46 / 2071
  27824. }
  27825. },
  27826. },
  27827. [
  27828. {
  27829. name: "Normal",
  27830. height: math.unit(10, "feet"),
  27831. default: true
  27832. },
  27833. ]
  27834. ))
  27835. characterMakers.push(() => makeCharacter(
  27836. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27837. {
  27838. front: {
  27839. height: math.unit(4, "feet"),
  27840. weight: math.unit(50, "lb"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/alex-rabbit/front.svg",
  27844. extra: 507 / 458,
  27845. bottom: 18.5 / 527
  27846. }
  27847. },
  27848. back: {
  27849. height: math.unit(4, "feet"),
  27850. weight: math.unit(50, "lb"),
  27851. name: "Back",
  27852. image: {
  27853. source: "./media/characters/alex-rabbit/back.svg",
  27854. extra: 502 / 460,
  27855. bottom: 18.9 / 521
  27856. }
  27857. },
  27858. },
  27859. [
  27860. {
  27861. name: "Normal",
  27862. height: math.unit(4, "feet"),
  27863. default: true
  27864. },
  27865. ]
  27866. ))
  27867. characterMakers.push(() => makeCharacter(
  27868. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27869. {
  27870. front: {
  27871. height: math.unit(1 + 3 / 12, "feet"),
  27872. weight: math.unit(80, "lb"),
  27873. name: "Front",
  27874. image: {
  27875. source: "./media/characters/zander-rose/front.svg",
  27876. extra: 916 / 797,
  27877. bottom: 17 / 933
  27878. }
  27879. },
  27880. back: {
  27881. height: math.unit(1 + 3 / 12, "feet"),
  27882. weight: math.unit(80, "lb"),
  27883. name: "Back",
  27884. image: {
  27885. source: "./media/characters/zander-rose/back.svg",
  27886. extra: 903 / 779,
  27887. bottom: 31 / 934
  27888. }
  27889. },
  27890. },
  27891. [
  27892. {
  27893. name: "Normal",
  27894. height: math.unit(1 + 3 / 12, "feet"),
  27895. default: true
  27896. },
  27897. ]
  27898. ))
  27899. characterMakers.push(() => makeCharacter(
  27900. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27901. {
  27902. anthro: {
  27903. height: math.unit(6, "feet"),
  27904. weight: math.unit(150, "lb"),
  27905. name: "Anthro",
  27906. image: {
  27907. source: "./media/characters/razz/anthro.svg",
  27908. extra: 1437 / 1343,
  27909. bottom: 48 / 1485
  27910. }
  27911. },
  27912. feral: {
  27913. height: math.unit(6, "feet"),
  27914. weight: math.unit(150, "lb"),
  27915. name: "Feral",
  27916. image: {
  27917. source: "./media/characters/razz/feral.svg",
  27918. extra: 2569 / 1385,
  27919. bottom: 95 / 2664
  27920. }
  27921. },
  27922. },
  27923. [
  27924. {
  27925. name: "Normal",
  27926. height: math.unit(6, "feet"),
  27927. default: true
  27928. },
  27929. ]
  27930. ))
  27931. characterMakers.push(() => makeCharacter(
  27932. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27933. {
  27934. front: {
  27935. height: math.unit(9 + 4 / 12, "feet"),
  27936. weight: math.unit(500, "lb"),
  27937. name: "Front",
  27938. image: {
  27939. source: "./media/characters/morrigan/front.svg",
  27940. extra: 2707 / 2579,
  27941. bottom: 156 / 2863
  27942. }
  27943. },
  27944. },
  27945. [
  27946. {
  27947. name: "Normal",
  27948. height: math.unit(9 + 4 / 12, "feet"),
  27949. default: true
  27950. },
  27951. ]
  27952. ))
  27953. characterMakers.push(() => makeCharacter(
  27954. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27955. {
  27956. front: {
  27957. height: math.unit(5, "stories"),
  27958. weight: math.unit(4000, "lb"),
  27959. name: "Front",
  27960. image: {
  27961. source: "./media/characters/jenene/front.svg",
  27962. extra: 1780 / 1710,
  27963. bottom: 57 / 1837
  27964. }
  27965. },
  27966. },
  27967. [
  27968. {
  27969. name: "Normal",
  27970. height: math.unit(5, "stories"),
  27971. default: true
  27972. },
  27973. ]
  27974. ))
  27975. characterMakers.push(() => makeCharacter(
  27976. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27977. {
  27978. taurSfw: {
  27979. height: math.unit(10, "meters"),
  27980. weight: math.unit(17500, "kg"),
  27981. name: "Taur",
  27982. image: {
  27983. source: "./media/characters/faey/taur-sfw.svg",
  27984. extra: 1200 / 968,
  27985. bottom: 41 / 1241
  27986. }
  27987. },
  27988. chestmaw: {
  27989. height: math.unit(2.01, "meters"),
  27990. name: "Chestmaw",
  27991. image: {
  27992. source: "./media/characters/faey/chestmaw.svg"
  27993. }
  27994. },
  27995. foot: {
  27996. height: math.unit(2.43, "meters"),
  27997. name: "Foot",
  27998. image: {
  27999. source: "./media/characters/faey/foot.svg"
  28000. }
  28001. },
  28002. jaws: {
  28003. height: math.unit(1.66, "meters"),
  28004. name: "Jaws",
  28005. image: {
  28006. source: "./media/characters/faey/jaws.svg"
  28007. }
  28008. },
  28009. tongues: {
  28010. height: math.unit(2.01, "meters"),
  28011. name: "Tongues",
  28012. image: {
  28013. source: "./media/characters/faey/tongues.svg"
  28014. }
  28015. },
  28016. },
  28017. [
  28018. {
  28019. name: "Small",
  28020. height: math.unit(10, "meters"),
  28021. default: true
  28022. },
  28023. {
  28024. name: "Big",
  28025. height: math.unit(500000, "km")
  28026. },
  28027. ]
  28028. ))
  28029. characterMakers.push(() => makeCharacter(
  28030. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28031. {
  28032. front: {
  28033. height: math.unit(7, "feet"),
  28034. weight: math.unit(275, "lb"),
  28035. name: "Front",
  28036. image: {
  28037. source: "./media/characters/roku/front.svg",
  28038. extra: 903 / 878,
  28039. bottom: 37 / 940
  28040. }
  28041. },
  28042. },
  28043. [
  28044. {
  28045. name: "Normal",
  28046. height: math.unit(7, "feet"),
  28047. default: true
  28048. },
  28049. {
  28050. name: "Macro",
  28051. height: math.unit(500, "feet")
  28052. },
  28053. {
  28054. name: "Megamacro",
  28055. height: math.unit(200, "miles")
  28056. },
  28057. ]
  28058. ))
  28059. characterMakers.push(() => makeCharacter(
  28060. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28061. {
  28062. front: {
  28063. height: math.unit(6 + 2 / 12, "feet"),
  28064. weight: math.unit(150, "lb"),
  28065. name: "Front",
  28066. image: {
  28067. source: "./media/characters/lira/front.svg",
  28068. extra: 1727 / 1605,
  28069. bottom: 26 / 1753
  28070. }
  28071. },
  28072. back: {
  28073. height: math.unit(6 + 2 / 12, "feet"),
  28074. weight: math.unit(150, "lb"),
  28075. name: "Back",
  28076. image: {
  28077. source: "./media/characters/lira/back.svg",
  28078. extra: 1713/1621,
  28079. bottom: 20/1733
  28080. }
  28081. },
  28082. hand: {
  28083. height: math.unit(0.75, "feet"),
  28084. name: "Hand",
  28085. image: {
  28086. source: "./media/characters/lira/hand.svg"
  28087. }
  28088. },
  28089. maw: {
  28090. height: math.unit(0.65, "feet"),
  28091. name: "Maw",
  28092. image: {
  28093. source: "./media/characters/lira/maw.svg"
  28094. }
  28095. },
  28096. pawDigi: {
  28097. height: math.unit(1.6, "feet"),
  28098. name: "Paw Digi",
  28099. image: {
  28100. source: "./media/characters/lira/paw-digi.svg"
  28101. }
  28102. },
  28103. pawPlanti: {
  28104. height: math.unit(1.4, "feet"),
  28105. name: "Paw Planti",
  28106. image: {
  28107. source: "./media/characters/lira/paw-planti.svg"
  28108. }
  28109. },
  28110. },
  28111. [
  28112. {
  28113. name: "Normal",
  28114. height: math.unit(6 + 2 / 12, "feet"),
  28115. default: true
  28116. },
  28117. {
  28118. name: "Macro",
  28119. height: math.unit(100, "feet")
  28120. },
  28121. {
  28122. name: "Macro²",
  28123. height: math.unit(1600, "feet")
  28124. },
  28125. {
  28126. name: "Planetary",
  28127. height: math.unit(20, "earths")
  28128. },
  28129. ]
  28130. ))
  28131. characterMakers.push(() => makeCharacter(
  28132. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28133. {
  28134. front: {
  28135. height: math.unit(6, "feet"),
  28136. weight: math.unit(150, "lb"),
  28137. name: "Front",
  28138. image: {
  28139. source: "./media/characters/hadjet/front.svg",
  28140. extra: 1480 / 1346,
  28141. bottom: 26 / 1506
  28142. }
  28143. },
  28144. frontNsfw: {
  28145. height: math.unit(6, "feet"),
  28146. weight: math.unit(150, "lb"),
  28147. name: "Front (NSFW)",
  28148. image: {
  28149. source: "./media/characters/hadjet/front-nsfw.svg",
  28150. extra: 1440 / 1358,
  28151. bottom: 52 / 1492
  28152. }
  28153. },
  28154. },
  28155. [
  28156. {
  28157. name: "Macro",
  28158. height: math.unit(10, "stories"),
  28159. default: true
  28160. },
  28161. {
  28162. name: "Megamacro",
  28163. height: math.unit(1.5, "miles")
  28164. },
  28165. {
  28166. name: "Megamacro+",
  28167. height: math.unit(5, "miles")
  28168. },
  28169. ]
  28170. ))
  28171. characterMakers.push(() => makeCharacter(
  28172. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28173. {
  28174. side: {
  28175. height: math.unit(106, "feet"),
  28176. weight: math.unit(500, "tonnes"),
  28177. name: "Side",
  28178. image: {
  28179. source: "./media/characters/kodran/side.svg",
  28180. extra: 553 / 480,
  28181. bottom: 33 / 586
  28182. }
  28183. },
  28184. front: {
  28185. height: math.unit(132, "feet"),
  28186. weight: math.unit(500, "tonnes"),
  28187. name: "Front",
  28188. image: {
  28189. source: "./media/characters/kodran/front.svg",
  28190. extra: 667 / 643,
  28191. bottom: 42 / 709
  28192. }
  28193. },
  28194. flying: {
  28195. height: math.unit(350, "feet"),
  28196. weight: math.unit(500, "tonnes"),
  28197. name: "Flying",
  28198. image: {
  28199. source: "./media/characters/kodran/flying.svg"
  28200. }
  28201. },
  28202. foot: {
  28203. height: math.unit(33, "feet"),
  28204. name: "Foot",
  28205. image: {
  28206. source: "./media/characters/kodran/foot.svg"
  28207. }
  28208. },
  28209. footFront: {
  28210. height: math.unit(19, "feet"),
  28211. name: "Foot (Front)",
  28212. image: {
  28213. source: "./media/characters/kodran/foot-front.svg",
  28214. extra: 261 / 261,
  28215. bottom: 91 / 352
  28216. }
  28217. },
  28218. headFront: {
  28219. height: math.unit(53, "feet"),
  28220. name: "Head (Front)",
  28221. image: {
  28222. source: "./media/characters/kodran/head-front.svg"
  28223. }
  28224. },
  28225. headSide: {
  28226. height: math.unit(65, "feet"),
  28227. name: "Head (Side)",
  28228. image: {
  28229. source: "./media/characters/kodran/head-side.svg"
  28230. }
  28231. },
  28232. throat: {
  28233. height: math.unit(79, "feet"),
  28234. name: "Throat",
  28235. image: {
  28236. source: "./media/characters/kodran/throat.svg"
  28237. }
  28238. },
  28239. },
  28240. [
  28241. {
  28242. name: "Large",
  28243. height: math.unit(106, "feet"),
  28244. default: true
  28245. },
  28246. ]
  28247. ))
  28248. characterMakers.push(() => makeCharacter(
  28249. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28250. {
  28251. side: {
  28252. height: math.unit(11, "feet"),
  28253. weight: math.unit(150, "lb"),
  28254. name: "Side",
  28255. image: {
  28256. source: "./media/characters/pyxaron/side.svg",
  28257. extra: 305 / 195,
  28258. bottom: 17 / 322
  28259. }
  28260. },
  28261. },
  28262. [
  28263. {
  28264. name: "Normal",
  28265. height: math.unit(11, "feet"),
  28266. default: true
  28267. },
  28268. ]
  28269. ))
  28270. characterMakers.push(() => makeCharacter(
  28271. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28272. {
  28273. front: {
  28274. height: math.unit(6, "feet"),
  28275. weight: math.unit(150, "lb"),
  28276. name: "Front",
  28277. image: {
  28278. source: "./media/characters/meep/front.svg",
  28279. extra: 88 / 80,
  28280. bottom: 6 / 94
  28281. }
  28282. },
  28283. },
  28284. [
  28285. {
  28286. name: "Fun Sized",
  28287. height: math.unit(2, "inches"),
  28288. default: true
  28289. },
  28290. {
  28291. name: "Friend Sized",
  28292. height: math.unit(8, "inches")
  28293. },
  28294. ]
  28295. ))
  28296. characterMakers.push(() => makeCharacter(
  28297. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28298. {
  28299. front: {
  28300. height: math.unit(15, "feet"),
  28301. weight: math.unit(2500, "lb"),
  28302. name: "Front",
  28303. image: {
  28304. source: "./media/characters/holly-rabbit/front.svg",
  28305. extra: 1433 / 1233,
  28306. bottom: 125 / 1558
  28307. }
  28308. },
  28309. dick: {
  28310. height: math.unit(4.6, "feet"),
  28311. name: "Dick",
  28312. image: {
  28313. source: "./media/characters/holly-rabbit/dick.svg"
  28314. }
  28315. },
  28316. },
  28317. [
  28318. {
  28319. name: "Normal",
  28320. height: math.unit(15, "feet"),
  28321. default: true
  28322. },
  28323. {
  28324. name: "Macro",
  28325. height: math.unit(250, "feet")
  28326. },
  28327. {
  28328. name: "Macro+",
  28329. height: math.unit(2500, "feet")
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28335. {
  28336. front: {
  28337. height: math.unit(3.02, "meters"),
  28338. weight: math.unit(500, "kg"),
  28339. name: "Front",
  28340. image: {
  28341. source: "./media/characters/drena/front.svg",
  28342. extra: 282 / 243,
  28343. bottom: 8 / 290
  28344. }
  28345. },
  28346. side: {
  28347. height: math.unit(3.02, "meters"),
  28348. weight: math.unit(500, "kg"),
  28349. name: "Side",
  28350. image: {
  28351. source: "./media/characters/drena/side.svg",
  28352. extra: 280 / 245,
  28353. bottom: 10 / 290
  28354. }
  28355. },
  28356. back: {
  28357. height: math.unit(3.02, "meters"),
  28358. weight: math.unit(500, "kg"),
  28359. name: "Back",
  28360. image: {
  28361. source: "./media/characters/drena/back.svg",
  28362. extra: 278 / 243,
  28363. bottom: 2 / 280
  28364. }
  28365. },
  28366. foot: {
  28367. height: math.unit(0.75, "meters"),
  28368. name: "Foot",
  28369. image: {
  28370. source: "./media/characters/drena/foot.svg"
  28371. }
  28372. },
  28373. maw: {
  28374. height: math.unit(0.82, "meters"),
  28375. name: "Maw",
  28376. image: {
  28377. source: "./media/characters/drena/maw.svg"
  28378. }
  28379. },
  28380. rump: {
  28381. height: math.unit(0.93, "meters"),
  28382. name: "Rump",
  28383. image: {
  28384. source: "./media/characters/drena/rump.svg"
  28385. }
  28386. },
  28387. },
  28388. [
  28389. {
  28390. name: "Normal",
  28391. height: math.unit(3.02, "meters"),
  28392. default: true
  28393. },
  28394. ]
  28395. ))
  28396. characterMakers.push(() => makeCharacter(
  28397. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28398. {
  28399. front: {
  28400. height: math.unit(6 + 4 / 12, "feet"),
  28401. weight: math.unit(250, "lb"),
  28402. name: "Front",
  28403. image: {
  28404. source: "./media/characters/remmyzilla/front.svg",
  28405. extra: 4033 / 3588,
  28406. bottom: 123 / 4156
  28407. }
  28408. },
  28409. back: {
  28410. height: math.unit(6 + 4 / 12, "feet"),
  28411. weight: math.unit(250, "lb"),
  28412. name: "Back",
  28413. image: {
  28414. source: "./media/characters/remmyzilla/back.svg",
  28415. extra: 2687 / 2555,
  28416. bottom: 48 / 2735
  28417. }
  28418. },
  28419. paw: {
  28420. height: math.unit(1.73, "feet"),
  28421. name: "Paw",
  28422. image: {
  28423. source: "./media/characters/remmyzilla/paw.svg"
  28424. }
  28425. },
  28426. maw: {
  28427. height: math.unit(1.73, "feet"),
  28428. name: "Maw",
  28429. image: {
  28430. source: "./media/characters/remmyzilla/maw.svg"
  28431. }
  28432. },
  28433. },
  28434. [
  28435. {
  28436. name: "Normal",
  28437. height: math.unit(6 + 4 / 12, "feet")
  28438. },
  28439. {
  28440. name: "Minimacro",
  28441. height: math.unit(12 + 8 / 12, "feet")
  28442. },
  28443. {
  28444. name: "Normal",
  28445. height: math.unit(640, "feet"),
  28446. default: true
  28447. },
  28448. {
  28449. name: "Megamacro",
  28450. height: math.unit(6400, "feet")
  28451. },
  28452. {
  28453. name: "Gigamacro",
  28454. height: math.unit(64000, "miles")
  28455. },
  28456. ]
  28457. ))
  28458. characterMakers.push(() => makeCharacter(
  28459. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28460. {
  28461. front: {
  28462. height: math.unit(2.5, "meters"),
  28463. weight: math.unit(300, "lb"),
  28464. name: "Front",
  28465. image: {
  28466. source: "./media/characters/lawrence/front.svg",
  28467. extra: 357 / 335,
  28468. bottom: 30 / 387
  28469. }
  28470. },
  28471. back: {
  28472. height: math.unit(2.5, "meters"),
  28473. weight: math.unit(300, "lb"),
  28474. name: "Back",
  28475. image: {
  28476. source: "./media/characters/lawrence/back.svg",
  28477. extra: 357 / 338,
  28478. bottom: 16 / 373
  28479. }
  28480. },
  28481. head: {
  28482. height: math.unit(0.9, "meter"),
  28483. name: "Head",
  28484. image: {
  28485. source: "./media/characters/lawrence/head.svg"
  28486. }
  28487. },
  28488. maw: {
  28489. height: math.unit(0.7, "meter"),
  28490. name: "Maw",
  28491. image: {
  28492. source: "./media/characters/lawrence/maw.svg"
  28493. }
  28494. },
  28495. footBottom: {
  28496. height: math.unit(0.5, "meter"),
  28497. name: "Foot (Bottom)",
  28498. image: {
  28499. source: "./media/characters/lawrence/foot-bottom.svg"
  28500. }
  28501. },
  28502. footTop: {
  28503. height: math.unit(0.5, "meter"),
  28504. name: "Foot (Top)",
  28505. image: {
  28506. source: "./media/characters/lawrence/foot-top.svg"
  28507. }
  28508. },
  28509. },
  28510. [
  28511. {
  28512. name: "Normal",
  28513. height: math.unit(2.5, "meters"),
  28514. default: true
  28515. },
  28516. {
  28517. name: "Macro",
  28518. height: math.unit(95, "meters")
  28519. },
  28520. {
  28521. name: "Megamacro",
  28522. height: math.unit(150, "km")
  28523. },
  28524. ]
  28525. ))
  28526. characterMakers.push(() => makeCharacter(
  28527. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28528. {
  28529. front: {
  28530. height: math.unit(4.2, "meters"),
  28531. name: "Front",
  28532. image: {
  28533. source: "./media/characters/sydney/front.svg",
  28534. extra: 1323 / 1277,
  28535. bottom: 111 / 1434
  28536. }
  28537. },
  28538. },
  28539. [
  28540. {
  28541. name: "Normal",
  28542. height: math.unit(4.2, "meters"),
  28543. default: true
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28549. {
  28550. back: {
  28551. height: math.unit(201, "feet"),
  28552. name: "Back",
  28553. image: {
  28554. source: "./media/characters/jessica/back.svg",
  28555. extra: 273 / 259,
  28556. bottom: 7 / 280
  28557. }
  28558. },
  28559. },
  28560. [
  28561. {
  28562. name: "Normal",
  28563. height: math.unit(201, "feet"),
  28564. default: true
  28565. },
  28566. {
  28567. name: "Megamacro",
  28568. height: math.unit(8, "miles")
  28569. },
  28570. ]
  28571. ))
  28572. characterMakers.push(() => makeCharacter(
  28573. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28574. {
  28575. side: {
  28576. height: math.unit(320, "cm"),
  28577. name: "Side",
  28578. image: {
  28579. source: "./media/characters/victoria/side.svg",
  28580. extra: 778 / 346,
  28581. bottom: 56 / 834
  28582. }
  28583. },
  28584. maw: {
  28585. height: math.unit(5.9, "feet"),
  28586. name: "Maw",
  28587. image: {
  28588. source: "./media/characters/victoria/maw.svg"
  28589. }
  28590. },
  28591. },
  28592. [
  28593. {
  28594. name: "Normal",
  28595. height: math.unit(320, "cm"),
  28596. default: true
  28597. },
  28598. ]
  28599. ))
  28600. characterMakers.push(() => makeCharacter(
  28601. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28602. {
  28603. front: {
  28604. height: math.unit(5 + 6 / 12, "feet"),
  28605. name: "Front",
  28606. image: {
  28607. source: "./media/characters/cat/front.svg",
  28608. extra: 1449/1295,
  28609. bottom: 34/1483
  28610. }
  28611. },
  28612. back: {
  28613. height: math.unit(5 + 6 / 12, "feet"),
  28614. name: "Back",
  28615. image: {
  28616. source: "./media/characters/cat/back.svg",
  28617. extra: 1466/1301,
  28618. bottom: 19/1485
  28619. }
  28620. },
  28621. taur: {
  28622. height: math.unit(7, "feet"),
  28623. name: "Taur",
  28624. image: {
  28625. source: "./media/characters/cat/taur.svg",
  28626. extra: 1389/1233,
  28627. bottom: 83/1472
  28628. }
  28629. },
  28630. lucarioFront: {
  28631. height: math.unit(4, "feet"),
  28632. name: "Lucario (Front)",
  28633. image: {
  28634. source: "./media/characters/cat/lucario-front.svg",
  28635. extra: 1149/1019,
  28636. bottom: 84/1233
  28637. }
  28638. },
  28639. lucarioBack: {
  28640. height: math.unit(4, "feet"),
  28641. name: "Lucario (Back)",
  28642. image: {
  28643. source: "./media/characters/cat/lucario-back.svg",
  28644. extra: 1190/1059,
  28645. bottom: 33/1223
  28646. }
  28647. },
  28648. megaLucario: {
  28649. height: math.unit(4, "feet"),
  28650. name: "Mega Lucario",
  28651. image: {
  28652. source: "./media/characters/cat/mega-lucario.svg",
  28653. extra: 1515 / 1319,
  28654. bottom: 63 / 1578
  28655. }
  28656. },
  28657. nickit: {
  28658. height: math.unit(2, "feet"),
  28659. name: "Nickit",
  28660. image: {
  28661. source: "./media/characters/cat/nickit.svg",
  28662. extra: 1980 / 1585,
  28663. bottom: 102 / 2082
  28664. }
  28665. },
  28666. lopunnyFront: {
  28667. height: math.unit(5, "feet"),
  28668. name: "Lopunny (Front)",
  28669. image: {
  28670. source: "./media/characters/cat/lopunny-front.svg",
  28671. extra: 1782 / 1469,
  28672. bottom: 38 / 1820
  28673. }
  28674. },
  28675. lopunnyBack: {
  28676. height: math.unit(5, "feet"),
  28677. name: "Lopunny (Back)",
  28678. image: {
  28679. source: "./media/characters/cat/lopunny-back.svg",
  28680. extra: 1660 / 1490,
  28681. bottom: 25 / 1685
  28682. }
  28683. },
  28684. },
  28685. [
  28686. {
  28687. name: "Really small",
  28688. height: math.unit(1, "nm")
  28689. },
  28690. {
  28691. name: "Micro",
  28692. height: math.unit(5, "inches")
  28693. },
  28694. {
  28695. name: "Normal",
  28696. height: math.unit(5 + 6 / 12, "feet"),
  28697. default: true
  28698. },
  28699. {
  28700. name: "Macro",
  28701. height: math.unit(50, "feet")
  28702. },
  28703. {
  28704. name: "Macro+",
  28705. height: math.unit(150, "feet")
  28706. },
  28707. {
  28708. name: "Megamacro",
  28709. height: math.unit(100, "miles")
  28710. },
  28711. ]
  28712. ))
  28713. characterMakers.push(() => makeCharacter(
  28714. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28715. {
  28716. front: {
  28717. height: math.unit(63.4, "meters"),
  28718. weight: math.unit(3.28349e+6, "kilograms"),
  28719. name: "Front",
  28720. image: {
  28721. source: "./media/characters/kirina-violet/front.svg",
  28722. extra: 2812 / 2725,
  28723. bottom: 0 / 2812
  28724. }
  28725. },
  28726. back: {
  28727. height: math.unit(63.4, "meters"),
  28728. weight: math.unit(3.28349e+6, "kilograms"),
  28729. name: "Back",
  28730. image: {
  28731. source: "./media/characters/kirina-violet/back.svg",
  28732. extra: 2812 / 2725,
  28733. bottom: 0 / 2812
  28734. }
  28735. },
  28736. mouth: {
  28737. height: math.unit(4.35, "meters"),
  28738. name: "Mouth",
  28739. image: {
  28740. source: "./media/characters/kirina-violet/mouth.svg"
  28741. }
  28742. },
  28743. paw: {
  28744. height: math.unit(5.6, "meters"),
  28745. name: "Paw",
  28746. image: {
  28747. source: "./media/characters/kirina-violet/paw.svg"
  28748. }
  28749. },
  28750. tail: {
  28751. height: math.unit(18, "meters"),
  28752. name: "Tail",
  28753. image: {
  28754. source: "./media/characters/kirina-violet/tail.svg"
  28755. }
  28756. },
  28757. },
  28758. [
  28759. {
  28760. name: "Macro",
  28761. height: math.unit(63.4, "meters"),
  28762. default: true
  28763. },
  28764. ]
  28765. ))
  28766. characterMakers.push(() => makeCharacter(
  28767. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28768. {
  28769. front: {
  28770. height: math.unit(75, "feet"),
  28771. name: "Front",
  28772. image: {
  28773. source: "./media/characters/cat-gigachu/front.svg",
  28774. extra: 1239/1027,
  28775. bottom: 32/1271
  28776. }
  28777. },
  28778. back: {
  28779. height: math.unit(75, "feet"),
  28780. name: "Back",
  28781. image: {
  28782. source: "./media/characters/cat-gigachu/back.svg",
  28783. extra: 1229/1030,
  28784. bottom: 9/1238
  28785. }
  28786. },
  28787. },
  28788. [
  28789. {
  28790. name: "Dynamax",
  28791. height: math.unit(75, "feet"),
  28792. default: true
  28793. },
  28794. ]
  28795. ))
  28796. characterMakers.push(() => makeCharacter(
  28797. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28798. {
  28799. front: {
  28800. height: math.unit(6, "feet"),
  28801. weight: math.unit(150, "lb"),
  28802. name: "Front",
  28803. image: {
  28804. source: "./media/characters/sfaiyan/front.svg",
  28805. extra: 999 / 978,
  28806. bottom: 5 / 1004
  28807. }
  28808. },
  28809. },
  28810. [
  28811. {
  28812. name: "Normal",
  28813. height: math.unit(1.82, "meters")
  28814. },
  28815. {
  28816. name: "Giant",
  28817. height: math.unit(2.27, "km"),
  28818. default: true
  28819. },
  28820. ]
  28821. ))
  28822. characterMakers.push(() => makeCharacter(
  28823. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28824. {
  28825. front: {
  28826. height: math.unit(179, "cm"),
  28827. weight: math.unit(100, "kg"),
  28828. name: "Front",
  28829. image: {
  28830. source: "./media/characters/raunehkeli/front.svg",
  28831. extra: 1934 / 1926,
  28832. bottom: 0 / 1934
  28833. }
  28834. },
  28835. },
  28836. [
  28837. {
  28838. name: "Normal",
  28839. height: math.unit(179, "cm")
  28840. },
  28841. {
  28842. name: "Maximum",
  28843. height: math.unit(575, "meters"),
  28844. default: true
  28845. },
  28846. ]
  28847. ))
  28848. characterMakers.push(() => makeCharacter(
  28849. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28850. {
  28851. front: {
  28852. height: math.unit(6, "feet"),
  28853. weight: math.unit(150, "lb"),
  28854. name: "Front",
  28855. image: {
  28856. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28857. extra: 2625 / 2518,
  28858. bottom: 60 / 2685
  28859. }
  28860. },
  28861. },
  28862. [
  28863. {
  28864. name: "Normal",
  28865. height: math.unit(6 + 2 / 12, "feet")
  28866. },
  28867. {
  28868. name: "Macro",
  28869. height: math.unit(1180, "feet"),
  28870. default: true
  28871. },
  28872. ]
  28873. ))
  28874. characterMakers.push(() => makeCharacter(
  28875. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28876. {
  28877. front: {
  28878. height: math.unit(5 + 6 / 12, "feet"),
  28879. weight: math.unit(108, "lb"),
  28880. name: "Front",
  28881. image: {
  28882. source: "./media/characters/lilith-zott/front.svg",
  28883. extra: 2510 / 2238,
  28884. bottom: 100 / 2610
  28885. }
  28886. },
  28887. frontDressed: {
  28888. height: math.unit(5 + 6 / 12, "feet"),
  28889. weight: math.unit(108, "lb"),
  28890. name: "Front (Dressed)",
  28891. image: {
  28892. source: "./media/characters/lilith-zott/front-dressed.svg",
  28893. extra: 2510 / 2238,
  28894. bottom: 100 / 2610
  28895. }
  28896. },
  28897. },
  28898. [
  28899. {
  28900. name: "Normal",
  28901. height: math.unit(5 + 6 / 12, "feet")
  28902. },
  28903. {
  28904. name: "Macro",
  28905. height: math.unit(1030, "feet"),
  28906. default: true
  28907. },
  28908. ]
  28909. ))
  28910. characterMakers.push(() => makeCharacter(
  28911. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28912. {
  28913. front: {
  28914. height: math.unit(6, "feet"),
  28915. weight: math.unit(150, "lb"),
  28916. name: "Front",
  28917. image: {
  28918. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28919. extra: 2567 / 2435,
  28920. bottom: 39 / 2606
  28921. }
  28922. },
  28923. frontSuper: {
  28924. height: math.unit(6, "feet"),
  28925. name: "Front (Super)",
  28926. image: {
  28927. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28928. extra: 2567 / 2435,
  28929. bottom: 39 / 2606
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(5 + 10 / 12, "feet")
  28937. },
  28938. {
  28939. name: "Macro",
  28940. height: math.unit(1100, "feet"),
  28941. default: true
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28947. {
  28948. front: {
  28949. height: math.unit(100, "miles"),
  28950. name: "Front",
  28951. image: {
  28952. source: "./media/characters/sona/front.svg",
  28953. extra: 2433 / 2201,
  28954. bottom: 53 / 2486
  28955. }
  28956. },
  28957. foot: {
  28958. height: math.unit(16.1, "miles"),
  28959. name: "Foot",
  28960. image: {
  28961. source: "./media/characters/sona/foot.svg"
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Macro",
  28968. height: math.unit(100, "miles"),
  28969. default: true
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28975. {
  28976. front: {
  28977. height: math.unit(6, "feet"),
  28978. weight: math.unit(150, "lb"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/bailey/front.svg",
  28982. extra: 1778 / 1724,
  28983. bottom: 30 / 1808
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Micro",
  28990. height: math.unit(4, "inches")
  28991. },
  28992. {
  28993. name: "Normal",
  28994. height: math.unit(5 + 5 / 12, "feet"),
  28995. default: true
  28996. },
  28997. {
  28998. name: "Macro",
  28999. height: math.unit(250, "feet")
  29000. },
  29001. {
  29002. name: "Megamacro",
  29003. height: math.unit(100, "miles")
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29009. {
  29010. front: {
  29011. height: math.unit(5 + 2 / 12, "feet"),
  29012. weight: math.unit(120, "lb"),
  29013. name: "Front",
  29014. image: {
  29015. source: "./media/characters/snaps/front.svg",
  29016. extra: 2370 / 2177,
  29017. bottom: 48 / 2418
  29018. }
  29019. },
  29020. back: {
  29021. height: math.unit(5 + 2 / 12, "feet"),
  29022. weight: math.unit(120, "lb"),
  29023. name: "Back",
  29024. image: {
  29025. source: "./media/characters/snaps/back.svg",
  29026. extra: 2408 / 2258,
  29027. bottom: 15 / 2423
  29028. }
  29029. },
  29030. },
  29031. [
  29032. {
  29033. name: "Micro",
  29034. height: math.unit(9, "inches")
  29035. },
  29036. {
  29037. name: "Normal",
  29038. height: math.unit(5 + 2 / 12, "feet"),
  29039. default: true
  29040. },
  29041. {
  29042. name: "Mini Macro",
  29043. height: math.unit(10, "feet")
  29044. },
  29045. ]
  29046. ))
  29047. characterMakers.push(() => makeCharacter(
  29048. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29049. {
  29050. front: {
  29051. height: math.unit(1.8, "meters"),
  29052. weight: math.unit(85, "kg"),
  29053. name: "Front",
  29054. image: {
  29055. source: "./media/characters/azteck/front.svg",
  29056. extra: 2815 / 2625,
  29057. bottom: 89 / 2904
  29058. }
  29059. },
  29060. back: {
  29061. height: math.unit(1.8, "meters"),
  29062. weight: math.unit(85, "kg"),
  29063. name: "Back",
  29064. image: {
  29065. source: "./media/characters/azteck/back.svg",
  29066. extra: 2856 / 2648,
  29067. bottom: 85 / 2941
  29068. }
  29069. },
  29070. frontDressed: {
  29071. height: math.unit(1.8, "meters"),
  29072. weight: math.unit(85, "kg"),
  29073. name: "Front (Dressed)",
  29074. image: {
  29075. source: "./media/characters/azteck/front-dressed.svg",
  29076. extra: 2147 / 2003,
  29077. bottom: 68 / 2215
  29078. }
  29079. },
  29080. head: {
  29081. height: math.unit(0.47, "meters"),
  29082. weight: math.unit(85, "kg"),
  29083. name: "Head",
  29084. image: {
  29085. source: "./media/characters/azteck/head.svg"
  29086. }
  29087. },
  29088. },
  29089. [
  29090. {
  29091. name: "Bite sized",
  29092. height: math.unit(16, "cm")
  29093. },
  29094. {
  29095. name: "Normal",
  29096. height: math.unit(1.8, "meters"),
  29097. default: true
  29098. },
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29103. {
  29104. front: {
  29105. height: math.unit(6, "feet"),
  29106. weight: math.unit(150, "lb"),
  29107. name: "Front",
  29108. image: {
  29109. source: "./media/characters/pidge/front.svg",
  29110. extra: 620 / 588,
  29111. bottom: 9 / 629
  29112. }
  29113. },
  29114. back: {
  29115. height: math.unit(6, "feet"),
  29116. weight: math.unit(150, "lb"),
  29117. name: "Back",
  29118. image: {
  29119. source: "./media/characters/pidge/back.svg",
  29120. extra: 620 / 588,
  29121. bottom: 9 / 629
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Macro",
  29128. height: math.unit(1, "mile"),
  29129. default: true
  29130. },
  29131. ]
  29132. ))
  29133. characterMakers.push(() => makeCharacter(
  29134. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29135. {
  29136. front: {
  29137. height: math.unit(6, "feet"),
  29138. weight: math.unit(150, "lb"),
  29139. name: "Front",
  29140. image: {
  29141. source: "./media/characters/en/front.svg",
  29142. extra: 1697 / 1563,
  29143. bottom: 103 / 1800
  29144. }
  29145. },
  29146. back: {
  29147. height: math.unit(6, "feet"),
  29148. weight: math.unit(150, "lb"),
  29149. name: "Back",
  29150. image: {
  29151. source: "./media/characters/en/back.svg",
  29152. extra: 1700 / 1570,
  29153. bottom: 51 / 1751
  29154. }
  29155. },
  29156. frontDressed: {
  29157. height: math.unit(6, "feet"),
  29158. weight: math.unit(150, "lb"),
  29159. name: "Front (Dressed)",
  29160. image: {
  29161. source: "./media/characters/en/front-dressed.svg",
  29162. extra: 1697 / 1563,
  29163. bottom: 103 / 1800
  29164. }
  29165. },
  29166. backDressed: {
  29167. height: math.unit(6, "feet"),
  29168. weight: math.unit(150, "lb"),
  29169. name: "Back (Dressed)",
  29170. image: {
  29171. source: "./media/characters/en/back-dressed.svg",
  29172. extra: 1700 / 1570,
  29173. bottom: 51 / 1751
  29174. }
  29175. },
  29176. },
  29177. [
  29178. {
  29179. name: "Macro",
  29180. height: math.unit(210, "feet"),
  29181. default: true
  29182. },
  29183. ]
  29184. ))
  29185. characterMakers.push(() => makeCharacter(
  29186. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29187. {
  29188. front: {
  29189. height: math.unit(6, "feet"),
  29190. weight: math.unit(150, "lb"),
  29191. name: "Front",
  29192. image: {
  29193. source: "./media/characters/haze-orris/front.svg",
  29194. extra: 3975 / 3525,
  29195. bottom: 137 / 4112
  29196. }
  29197. },
  29198. },
  29199. [
  29200. {
  29201. name: "Micro",
  29202. height: math.unit(150, "mm"),
  29203. default: true
  29204. },
  29205. ]
  29206. ))
  29207. characterMakers.push(() => makeCharacter(
  29208. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29209. {
  29210. front: {
  29211. height: math.unit(6, "feet"),
  29212. weight: math.unit(150, "lb"),
  29213. name: "Front",
  29214. image: {
  29215. source: "./media/characters/casselene-yaro/front.svg",
  29216. extra: 4721 / 4541,
  29217. bottom: 82 / 4803
  29218. }
  29219. },
  29220. back: {
  29221. height: math.unit(6, "feet"),
  29222. weight: math.unit(150, "lb"),
  29223. name: "Back",
  29224. image: {
  29225. source: "./media/characters/casselene-yaro/back.svg",
  29226. extra: 4569 / 4377,
  29227. bottom: 69 / 4638
  29228. }
  29229. },
  29230. frontDressed: {
  29231. height: math.unit(6, "feet"),
  29232. weight: math.unit(150, "lb"),
  29233. name: "Front-dressed",
  29234. image: {
  29235. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29236. extra: 4721 / 4541,
  29237. bottom: 82 / 4803
  29238. }
  29239. },
  29240. },
  29241. [
  29242. {
  29243. name: "Macro",
  29244. height: math.unit(190, "feet"),
  29245. default: true
  29246. },
  29247. ]
  29248. ))
  29249. characterMakers.push(() => makeCharacter(
  29250. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29251. {
  29252. front: {
  29253. height: math.unit(6, "feet"),
  29254. weight: math.unit(150, "lb"),
  29255. name: "Front",
  29256. image: {
  29257. source: "./media/characters/myra-rue-delore/front.svg",
  29258. extra: 1340 / 1308,
  29259. bottom: 67 / 1407
  29260. }
  29261. },
  29262. back: {
  29263. height: math.unit(6, "feet"),
  29264. weight: math.unit(150, "lb"),
  29265. name: "Back",
  29266. image: {
  29267. source: "./media/characters/myra-rue-delore/back.svg",
  29268. extra: 1341 / 1310,
  29269. bottom: 40 / 1381
  29270. }
  29271. },
  29272. frontDressed: {
  29273. height: math.unit(6, "feet"),
  29274. weight: math.unit(150, "lb"),
  29275. name: "Front (Dressed)",
  29276. image: {
  29277. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29278. extra: 1340 / 1308,
  29279. bottom: 67 / 1407
  29280. }
  29281. },
  29282. },
  29283. [
  29284. {
  29285. name: "Macro",
  29286. height: math.unit(150, "feet"),
  29287. default: true
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29293. {
  29294. front: {
  29295. height: math.unit(10, "feet"),
  29296. weight: math.unit(15015, "lb"),
  29297. name: "Front",
  29298. image: {
  29299. source: "./media/characters/fem!plat/front.svg",
  29300. extra: 2799 / 2604,
  29301. bottom: 149 / 2948
  29302. }
  29303. },
  29304. },
  29305. [
  29306. {
  29307. name: "Normal",
  29308. height: math.unit(10, "feet"),
  29309. default: true
  29310. },
  29311. {
  29312. name: "Macro",
  29313. height: math.unit(100, "feet")
  29314. },
  29315. {
  29316. name: "Megamacro",
  29317. height: math.unit(1000, "feet")
  29318. },
  29319. ]
  29320. ))
  29321. characterMakers.push(() => makeCharacter(
  29322. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29323. {
  29324. front: {
  29325. height: math.unit(15 + 5 / 12, "feet"),
  29326. weight: math.unit(4600, "lb"),
  29327. name: "Front",
  29328. image: {
  29329. source: "./media/characters/neapolitan-ananassa/front.svg",
  29330. extra: 2903 / 2736,
  29331. bottom: 0 / 2903
  29332. }
  29333. },
  29334. side: {
  29335. height: math.unit(15 + 5 / 12, "feet"),
  29336. weight: math.unit(4600, "lb"),
  29337. name: "Side",
  29338. image: {
  29339. source: "./media/characters/neapolitan-ananassa/side.svg",
  29340. extra: 2925 / 2719,
  29341. bottom: 0 / 2925
  29342. }
  29343. },
  29344. back: {
  29345. height: math.unit(15 + 5 / 12, "feet"),
  29346. weight: math.unit(4600, "lb"),
  29347. name: "Back",
  29348. image: {
  29349. source: "./media/characters/neapolitan-ananassa/back.svg",
  29350. extra: 2903 / 2736,
  29351. bottom: 0 / 2903
  29352. }
  29353. },
  29354. },
  29355. [
  29356. {
  29357. name: "Normal",
  29358. height: math.unit(15 + 5 / 12, "feet"),
  29359. default: true
  29360. },
  29361. {
  29362. name: "Post-Millenium",
  29363. height: math.unit(35 + 5 / 12, "feet")
  29364. },
  29365. {
  29366. name: "Post-Era",
  29367. height: math.unit(450 + 5 / 12, "feet")
  29368. },
  29369. ]
  29370. ))
  29371. characterMakers.push(() => makeCharacter(
  29372. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29373. {
  29374. front: {
  29375. height: math.unit(300, "meters"),
  29376. weight: math.unit(125000, "tonnes"),
  29377. name: "Front",
  29378. image: {
  29379. source: "./media/characters/pazuzu/front.svg",
  29380. extra: 877 / 794,
  29381. bottom: 47 / 924
  29382. }
  29383. },
  29384. },
  29385. [
  29386. {
  29387. name: "Macro",
  29388. height: math.unit(300, "meters"),
  29389. default: true
  29390. },
  29391. ]
  29392. ))
  29393. characterMakers.push(() => makeCharacter(
  29394. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29395. {
  29396. side: {
  29397. height: math.unit(10 + 7 / 12, "feet"),
  29398. weight: math.unit(2.5, "tons"),
  29399. name: "Side",
  29400. image: {
  29401. source: "./media/characters/aasha/side.svg",
  29402. extra: 1345 / 1245,
  29403. bottom: 111 / 1456
  29404. }
  29405. },
  29406. back: {
  29407. height: math.unit(10 + 7 / 12, "feet"),
  29408. weight: math.unit(2.5, "tons"),
  29409. name: "Back",
  29410. image: {
  29411. source: "./media/characters/aasha/back.svg",
  29412. extra: 1133 / 1057,
  29413. bottom: 257 / 1390
  29414. }
  29415. },
  29416. },
  29417. [
  29418. {
  29419. name: "Normal",
  29420. height: math.unit(10 + 7 / 12, "feet"),
  29421. default: true
  29422. },
  29423. ]
  29424. ))
  29425. characterMakers.push(() => makeCharacter(
  29426. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29427. {
  29428. front: {
  29429. height: math.unit(6 + 3 / 12, "feet"),
  29430. name: "Front",
  29431. image: {
  29432. source: "./media/characters/nevan/front.svg",
  29433. extra: 704 / 704,
  29434. bottom: 28 / 732
  29435. }
  29436. },
  29437. back: {
  29438. height: math.unit(6 + 3 / 12, "feet"),
  29439. name: "Back",
  29440. image: {
  29441. source: "./media/characters/nevan/back.svg",
  29442. extra: 714 / 714,
  29443. bottom: 21 / 735
  29444. }
  29445. },
  29446. frontFlaccid: {
  29447. height: math.unit(6 + 3 / 12, "feet"),
  29448. name: "Front (Flaccid)",
  29449. image: {
  29450. source: "./media/characters/nevan/front-flaccid.svg",
  29451. extra: 704 / 704,
  29452. bottom: 28 / 732
  29453. }
  29454. },
  29455. frontErect: {
  29456. height: math.unit(6 + 3 / 12, "feet"),
  29457. name: "Front (Erect)",
  29458. image: {
  29459. source: "./media/characters/nevan/front-erect.svg",
  29460. extra: 704 / 704,
  29461. bottom: 28 / 732
  29462. }
  29463. },
  29464. backFlaccid: {
  29465. height: math.unit(6 + 3 / 12, "feet"),
  29466. name: "Back (Flaccid)",
  29467. image: {
  29468. source: "./media/characters/nevan/back-flaccid.svg",
  29469. extra: 714 / 714,
  29470. bottom: 21 / 735
  29471. }
  29472. },
  29473. },
  29474. [
  29475. {
  29476. name: "Normal",
  29477. height: math.unit(6 + 3 / 12, "feet"),
  29478. default: true
  29479. },
  29480. ]
  29481. ))
  29482. characterMakers.push(() => makeCharacter(
  29483. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29484. {
  29485. front: {
  29486. height: math.unit(4, "feet"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/arhan/front.svg",
  29490. extra: 3368 / 3133,
  29491. bottom: 0 / 3368
  29492. }
  29493. },
  29494. side: {
  29495. height: math.unit(4, "feet"),
  29496. name: "Side",
  29497. image: {
  29498. source: "./media/characters/arhan/side.svg",
  29499. extra: 3347 / 3105,
  29500. bottom: 0 / 3347
  29501. }
  29502. },
  29503. tongue: {
  29504. height: math.unit(1.42, "feet"),
  29505. name: "Tongue",
  29506. image: {
  29507. source: "./media/characters/arhan/tongue.svg"
  29508. }
  29509. },
  29510. head: {
  29511. height: math.unit(0.85, "feet"),
  29512. name: "Head",
  29513. image: {
  29514. source: "./media/characters/arhan/head.svg"
  29515. }
  29516. },
  29517. },
  29518. [
  29519. {
  29520. name: "Normal",
  29521. height: math.unit(4, "feet"),
  29522. default: true
  29523. },
  29524. ]
  29525. ))
  29526. characterMakers.push(() => makeCharacter(
  29527. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29528. {
  29529. front: {
  29530. height: math.unit(5 + 7.5 / 12, "feet"),
  29531. weight: math.unit(120, "lb"),
  29532. name: "Front",
  29533. image: {
  29534. source: "./media/characters/digi-duncan/front.svg",
  29535. extra: 330 / 326,
  29536. bottom: 16 / 346
  29537. }
  29538. },
  29539. side: {
  29540. height: math.unit(5 + 7.5 / 12, "feet"),
  29541. weight: math.unit(120, "lb"),
  29542. name: "Side",
  29543. image: {
  29544. source: "./media/characters/digi-duncan/side.svg",
  29545. extra: 341 / 337,
  29546. bottom: 1 / 342
  29547. }
  29548. },
  29549. back: {
  29550. height: math.unit(5 + 7.5 / 12, "feet"),
  29551. weight: math.unit(120, "lb"),
  29552. name: "Back",
  29553. image: {
  29554. source: "./media/characters/digi-duncan/back.svg",
  29555. extra: 330 / 326,
  29556. bottom: 12 / 342
  29557. }
  29558. },
  29559. },
  29560. [
  29561. {
  29562. name: "Speck",
  29563. height: math.unit(0.25, "mm")
  29564. },
  29565. {
  29566. name: "Micro",
  29567. height: math.unit(5, "mm")
  29568. },
  29569. {
  29570. name: "Tiny",
  29571. height: math.unit(0.5, "inches"),
  29572. default: true
  29573. },
  29574. {
  29575. name: "Human",
  29576. height: math.unit(5 + 7.5 / 12, "feet")
  29577. },
  29578. {
  29579. name: "Minigiant",
  29580. height: math.unit(8 + 5.25, "feet")
  29581. },
  29582. {
  29583. name: "Giant",
  29584. height: math.unit(2000, "feet")
  29585. },
  29586. {
  29587. name: "Mega",
  29588. height: math.unit(371.1, "miles")
  29589. },
  29590. ]
  29591. ))
  29592. characterMakers.push(() => makeCharacter(
  29593. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29594. {
  29595. front: {
  29596. height: math.unit(2, "meters"),
  29597. weight: math.unit(350, "kg"),
  29598. name: "Front",
  29599. image: {
  29600. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29601. extra: 898 / 838,
  29602. bottom: 9 / 907
  29603. }
  29604. },
  29605. },
  29606. [
  29607. {
  29608. name: "Micro",
  29609. height: math.unit(8, "meters")
  29610. },
  29611. {
  29612. name: "Normal",
  29613. height: math.unit(50, "meters"),
  29614. default: true
  29615. },
  29616. {
  29617. name: "Macro",
  29618. height: math.unit(500, "meters")
  29619. },
  29620. ]
  29621. ))
  29622. characterMakers.push(() => makeCharacter(
  29623. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29624. {
  29625. front: {
  29626. height: math.unit(6 + 6 / 12, "feet"),
  29627. name: "Front",
  29628. image: {
  29629. source: "./media/characters/khardesh/front.svg",
  29630. extra: 888 / 797,
  29631. bottom: 25 / 913
  29632. }
  29633. },
  29634. },
  29635. [
  29636. {
  29637. name: "Normal",
  29638. height: math.unit(6 + 6 / 12, "feet"),
  29639. default: true
  29640. },
  29641. {
  29642. name: "Normal+",
  29643. height: math.unit(4, "meters")
  29644. },
  29645. {
  29646. name: "Macro",
  29647. height: math.unit(50, "meters")
  29648. },
  29649. {
  29650. name: "Macro+",
  29651. height: math.unit(100, "meters")
  29652. },
  29653. {
  29654. name: "Megamacro",
  29655. height: math.unit(20, "km")
  29656. },
  29657. ]
  29658. ))
  29659. characterMakers.push(() => makeCharacter(
  29660. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29661. {
  29662. front: {
  29663. height: math.unit(6, "feet"),
  29664. weight: math.unit(150, "lb"),
  29665. name: "Front",
  29666. image: {
  29667. source: "./media/characters/kosho/front.svg",
  29668. extra: 1847 / 1847,
  29669. bottom: 86 / 1933
  29670. }
  29671. },
  29672. },
  29673. [
  29674. {
  29675. name: "Second-stage micro",
  29676. height: math.unit(0.5, "inches")
  29677. },
  29678. {
  29679. name: "First-stage micro",
  29680. height: math.unit(6, "inches")
  29681. },
  29682. {
  29683. name: "Normal",
  29684. height: math.unit(6, "feet"),
  29685. default: true
  29686. },
  29687. {
  29688. name: "First-stage macro",
  29689. height: math.unit(72, "feet")
  29690. },
  29691. {
  29692. name: "Second-stage macro",
  29693. height: math.unit(864, "feet")
  29694. },
  29695. ]
  29696. ))
  29697. characterMakers.push(() => makeCharacter(
  29698. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29699. {
  29700. normal: {
  29701. height: math.unit(4 + 6 / 12, "feet"),
  29702. name: "Normal",
  29703. image: {
  29704. source: "./media/characters/hydra/normal.svg",
  29705. extra: 2833 / 2634,
  29706. bottom: 68 / 2901
  29707. }
  29708. },
  29709. smol: {
  29710. height: math.unit(0.705, "inches"),
  29711. name: "Smol",
  29712. image: {
  29713. source: "./media/characters/hydra/smol.svg",
  29714. extra: 2715 / 2540,
  29715. bottom: 0 / 2715
  29716. }
  29717. },
  29718. },
  29719. [
  29720. {
  29721. name: "Normal",
  29722. height: math.unit(4 + 6 / 12, "feet"),
  29723. default: true
  29724. }
  29725. ]
  29726. ))
  29727. characterMakers.push(() => makeCharacter(
  29728. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29729. {
  29730. front: {
  29731. height: math.unit(0.6, "cm"),
  29732. name: "Front",
  29733. image: {
  29734. source: "./media/characters/daz/front.svg",
  29735. extra: 1682 / 1164,
  29736. bottom: 42 / 1724
  29737. }
  29738. },
  29739. },
  29740. [
  29741. {
  29742. name: "Normal",
  29743. height: math.unit(0.6, "cm"),
  29744. default: true
  29745. },
  29746. ]
  29747. ))
  29748. characterMakers.push(() => makeCharacter(
  29749. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29750. {
  29751. front: {
  29752. height: math.unit(6, "feet"),
  29753. weight: math.unit(235, "lb"),
  29754. name: "Front",
  29755. image: {
  29756. source: "./media/characters/theo-pangolin/front.svg",
  29757. extra: 1996 / 1969,
  29758. bottom: 115 / 2111
  29759. }
  29760. },
  29761. back: {
  29762. height: math.unit(6, "feet"),
  29763. weight: math.unit(235, "lb"),
  29764. name: "Back",
  29765. image: {
  29766. source: "./media/characters/theo-pangolin/back.svg",
  29767. extra: 1979 / 1979,
  29768. bottom: 40 / 2019
  29769. }
  29770. },
  29771. feral: {
  29772. height: math.unit(2, "feet"),
  29773. weight: math.unit(30, "lb"),
  29774. name: "Feral",
  29775. image: {
  29776. source: "./media/characters/theo-pangolin/feral.svg",
  29777. extra: 803 / 791,
  29778. bottom: 181 / 984
  29779. }
  29780. },
  29781. footFive: {
  29782. height: math.unit(1.43, "feet"),
  29783. name: "Foot (Five Toes)",
  29784. image: {
  29785. source: "./media/characters/theo-pangolin/foot-five.svg"
  29786. }
  29787. },
  29788. footFour: {
  29789. height: math.unit(1.43, "feet"),
  29790. name: "Foot (Four Toes)",
  29791. image: {
  29792. source: "./media/characters/theo-pangolin/foot-four.svg"
  29793. }
  29794. },
  29795. handFour: {
  29796. height: math.unit(0.81, "feet"),
  29797. name: "Hand (Four Fingers)",
  29798. image: {
  29799. source: "./media/characters/theo-pangolin/hand-four.svg"
  29800. }
  29801. },
  29802. handThree: {
  29803. height: math.unit(0.81, "feet"),
  29804. name: "Hand (Three Fingers)",
  29805. image: {
  29806. source: "./media/characters/theo-pangolin/hand-three.svg"
  29807. }
  29808. },
  29809. headFront: {
  29810. height: math.unit(1.37, "feet"),
  29811. name: "Head (Front)",
  29812. image: {
  29813. source: "./media/characters/theo-pangolin/head-front.svg"
  29814. }
  29815. },
  29816. headSide: {
  29817. height: math.unit(1.43, "feet"),
  29818. name: "Head (Side)",
  29819. image: {
  29820. source: "./media/characters/theo-pangolin/head-side.svg"
  29821. }
  29822. },
  29823. tongue: {
  29824. height: math.unit(2.29, "feet"),
  29825. name: "Tongue",
  29826. image: {
  29827. source: "./media/characters/theo-pangolin/tongue.svg"
  29828. }
  29829. },
  29830. },
  29831. [
  29832. {
  29833. name: "Normal",
  29834. height: math.unit(6, "feet")
  29835. },
  29836. {
  29837. name: "Macro",
  29838. height: math.unit(400, "feet"),
  29839. default: true
  29840. },
  29841. ]
  29842. ))
  29843. characterMakers.push(() => makeCharacter(
  29844. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29845. {
  29846. front: {
  29847. height: math.unit(6, "inches"),
  29848. weight: math.unit(0.036, "kg"),
  29849. name: "Front",
  29850. image: {
  29851. source: "./media/characters/renée/front.svg",
  29852. extra: 900 / 886,
  29853. bottom: 8 / 908
  29854. }
  29855. },
  29856. },
  29857. [
  29858. {
  29859. name: "Nano",
  29860. height: math.unit(1, "nm")
  29861. },
  29862. {
  29863. name: "Micro",
  29864. height: math.unit(1, "mm")
  29865. },
  29866. {
  29867. name: "Normal",
  29868. height: math.unit(6, "inches")
  29869. },
  29870. {
  29871. name: "Macro",
  29872. height: math.unit(2000, "feet"),
  29873. default: true
  29874. },
  29875. {
  29876. name: "Megamacro",
  29877. height: math.unit(2, "km")
  29878. },
  29879. {
  29880. name: "Gigamacro",
  29881. height: math.unit(2000, "km")
  29882. },
  29883. {
  29884. name: "Teramacro",
  29885. height: math.unit(250000, "km")
  29886. },
  29887. ]
  29888. ))
  29889. characterMakers.push(() => makeCharacter(
  29890. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29891. {
  29892. front: {
  29893. height: math.unit(4, "meters"),
  29894. weight: math.unit(150, "kg"),
  29895. name: "Front",
  29896. image: {
  29897. source: "./media/characters/caledvwlch/front.svg",
  29898. extra: 1760 / 1551,
  29899. bottom: 28 / 1788
  29900. }
  29901. },
  29902. side: {
  29903. height: math.unit(4, "meters"),
  29904. weight: math.unit(150, "kg"),
  29905. name: "Side",
  29906. image: {
  29907. source: "./media/characters/caledvwlch/side.svg",
  29908. extra: 1605 / 1536,
  29909. bottom: 31 / 1636
  29910. }
  29911. },
  29912. back: {
  29913. height: math.unit(4, "meters"),
  29914. weight: math.unit(150, "kg"),
  29915. name: "Back",
  29916. image: {
  29917. source: "./media/characters/caledvwlch/back.svg",
  29918. extra: 1635 / 1565,
  29919. bottom: 27 / 1662
  29920. }
  29921. },
  29922. },
  29923. [
  29924. {
  29925. name: "\"Incognito\"",
  29926. height: math.unit(4, "meters")
  29927. },
  29928. {
  29929. name: "Small rampage",
  29930. height: math.unit(600, "meters")
  29931. },
  29932. {
  29933. name: "Mega",
  29934. height: math.unit(30, "km")
  29935. },
  29936. {
  29937. name: "Home-size",
  29938. height: math.unit(50, "km"),
  29939. default: true
  29940. },
  29941. {
  29942. name: "Giga",
  29943. height: math.unit(300, "km")
  29944. },
  29945. {
  29946. name: "Lounging",
  29947. height: math.unit(11000, "km")
  29948. },
  29949. {
  29950. name: "Planet snacking",
  29951. height: math.unit(2000000, "km")
  29952. },
  29953. ]
  29954. ))
  29955. characterMakers.push(() => makeCharacter(
  29956. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29957. {
  29958. front: {
  29959. height: math.unit(6, "feet"),
  29960. weight: math.unit(215, "lb"),
  29961. name: "Front",
  29962. image: {
  29963. source: "./media/characters/sapphire-svell/front.svg",
  29964. extra: 495 / 455,
  29965. bottom: 20 / 515
  29966. }
  29967. },
  29968. back: {
  29969. height: math.unit(6, "feet"),
  29970. weight: math.unit(216, "lb"),
  29971. name: "Back",
  29972. image: {
  29973. source: "./media/characters/sapphire-svell/back.svg",
  29974. extra: 497 / 477,
  29975. bottom: 7 / 504
  29976. }
  29977. },
  29978. maw: {
  29979. height: math.unit(1.57, "feet"),
  29980. name: "Maw",
  29981. image: {
  29982. source: "./media/characters/sapphire-svell/maw.svg"
  29983. }
  29984. },
  29985. foot: {
  29986. height: math.unit(1.07, "feet"),
  29987. name: "Foot",
  29988. image: {
  29989. source: "./media/characters/sapphire-svell/foot.svg"
  29990. }
  29991. },
  29992. toering: {
  29993. height: math.unit(1.7, "inch"),
  29994. name: "Toering",
  29995. image: {
  29996. source: "./media/characters/sapphire-svell/toering.svg"
  29997. }
  29998. },
  29999. },
  30000. [
  30001. {
  30002. name: "Normal",
  30003. height: math.unit(300, "feet"),
  30004. default: true
  30005. },
  30006. {
  30007. name: "Augmented",
  30008. height: math.unit(1250, "feet")
  30009. },
  30010. {
  30011. name: "Unleashed",
  30012. height: math.unit(3000, "feet")
  30013. },
  30014. ]
  30015. ))
  30016. characterMakers.push(() => makeCharacter(
  30017. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30018. {
  30019. side: {
  30020. height: math.unit(2 + 3 / 12, "feet"),
  30021. weight: math.unit(110, "lb"),
  30022. name: "Side",
  30023. image: {
  30024. source: "./media/characters/glitch-flux/side.svg",
  30025. extra: 997 / 805,
  30026. bottom: 20 / 1017
  30027. }
  30028. },
  30029. },
  30030. [
  30031. {
  30032. name: "Normal",
  30033. height: math.unit(2 + 3 / 12, "feet"),
  30034. default: true
  30035. },
  30036. ]
  30037. ))
  30038. characterMakers.push(() => makeCharacter(
  30039. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30040. {
  30041. front: {
  30042. height: math.unit(4, "meters"),
  30043. name: "Front",
  30044. image: {
  30045. source: "./media/characters/mid/front.svg",
  30046. extra: 507 / 476,
  30047. bottom: 17 / 524
  30048. }
  30049. },
  30050. back: {
  30051. height: math.unit(4, "meters"),
  30052. name: "Back",
  30053. image: {
  30054. source: "./media/characters/mid/back.svg",
  30055. extra: 519 / 487,
  30056. bottom: 7 / 526
  30057. }
  30058. },
  30059. stuck: {
  30060. height: math.unit(2.2, "meters"),
  30061. name: "Stuck",
  30062. image: {
  30063. source: "./media/characters/mid/stuck.svg",
  30064. extra: 1951 / 1869,
  30065. bottom: 88 / 2039
  30066. }
  30067. }
  30068. },
  30069. [
  30070. {
  30071. name: "Normal",
  30072. height: math.unit(4, "meters"),
  30073. default: true
  30074. },
  30075. {
  30076. name: "Big",
  30077. height: math.unit(10, "meters")
  30078. },
  30079. {
  30080. name: "Macro",
  30081. height: math.unit(800, "meters")
  30082. },
  30083. {
  30084. name: "Megamacro",
  30085. height: math.unit(100, "km")
  30086. },
  30087. {
  30088. name: "Overgrown",
  30089. height: math.unit(1, "parsec")
  30090. },
  30091. ]
  30092. ))
  30093. characterMakers.push(() => makeCharacter(
  30094. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30095. {
  30096. front: {
  30097. height: math.unit(2.5, "meters"),
  30098. weight: math.unit(225, "kg"),
  30099. name: "Front",
  30100. image: {
  30101. source: "./media/characters/iris/front.svg",
  30102. extra: 3348 / 3251,
  30103. bottom: 205 / 3553
  30104. }
  30105. },
  30106. maw: {
  30107. height: math.unit(0.56, "meter"),
  30108. name: "Maw",
  30109. image: {
  30110. source: "./media/characters/iris/maw.svg"
  30111. }
  30112. },
  30113. },
  30114. [
  30115. {
  30116. name: "Mewter cat",
  30117. height: math.unit(1.2, "meters")
  30118. },
  30119. {
  30120. name: "Minimacro",
  30121. height: math.unit(2.5, "meters"),
  30122. default: true
  30123. },
  30124. {
  30125. name: "Macro",
  30126. height: math.unit(180, "meters")
  30127. },
  30128. {
  30129. name: "Megamacro",
  30130. height: math.unit(2746, "meters")
  30131. },
  30132. ]
  30133. ))
  30134. characterMakers.push(() => makeCharacter(
  30135. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30136. {
  30137. front: {
  30138. height: math.unit(6, "feet"),
  30139. weight: math.unit(135, "lb"),
  30140. name: "Front",
  30141. image: {
  30142. source: "./media/characters/axel/front.svg",
  30143. extra: 908 / 908,
  30144. bottom: 58 / 966
  30145. }
  30146. },
  30147. side: {
  30148. height: math.unit(6, "feet"),
  30149. weight: math.unit(135, "lb"),
  30150. name: "Side",
  30151. image: {
  30152. source: "./media/characters/axel/side.svg",
  30153. extra: 958 / 958,
  30154. bottom: 11 / 969
  30155. }
  30156. },
  30157. back: {
  30158. height: math.unit(6, "feet"),
  30159. weight: math.unit(135, "lb"),
  30160. name: "Back",
  30161. image: {
  30162. source: "./media/characters/axel/back.svg",
  30163. extra: 887 / 887,
  30164. bottom: 34 / 921
  30165. }
  30166. },
  30167. head: {
  30168. height: math.unit(1.07, "feet"),
  30169. name: "Head",
  30170. image: {
  30171. source: "./media/characters/axel/head.svg"
  30172. }
  30173. },
  30174. beak: {
  30175. height: math.unit(1.4, "feet"),
  30176. name: "Beak",
  30177. image: {
  30178. source: "./media/characters/axel/beak.svg"
  30179. }
  30180. },
  30181. beakSide: {
  30182. height: math.unit(1.4, "feet"),
  30183. name: "Beak Side",
  30184. image: {
  30185. source: "./media/characters/axel/beak-side.svg"
  30186. }
  30187. },
  30188. sheath: {
  30189. height: math.unit(0.5, "feet"),
  30190. name: "Sheath",
  30191. image: {
  30192. source: "./media/characters/axel/sheath.svg"
  30193. }
  30194. },
  30195. dick: {
  30196. height: math.unit(0.98, "feet"),
  30197. name: "Dick",
  30198. image: {
  30199. source: "./media/characters/axel/dick.svg"
  30200. }
  30201. },
  30202. },
  30203. [
  30204. {
  30205. name: "Macro",
  30206. height: math.unit(68, "meters"),
  30207. default: true
  30208. },
  30209. ]
  30210. ))
  30211. characterMakers.push(() => makeCharacter(
  30212. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30213. {
  30214. front: {
  30215. height: math.unit(3.5, "meters"),
  30216. weight: math.unit(1200, "kg"),
  30217. name: "Front",
  30218. image: {
  30219. source: "./media/characters/joanna/front.svg",
  30220. extra: 1596 / 1488,
  30221. bottom: 29 / 1625
  30222. }
  30223. },
  30224. back: {
  30225. height: math.unit(3.5, "meters"),
  30226. weight: math.unit(1200, "kg"),
  30227. name: "Back",
  30228. image: {
  30229. source: "./media/characters/joanna/back.svg",
  30230. extra: 1594 / 1495,
  30231. bottom: 26 / 1620
  30232. }
  30233. },
  30234. frontShorts: {
  30235. height: math.unit(3.5, "meters"),
  30236. weight: math.unit(1200, "kg"),
  30237. name: "Front (Shorts)",
  30238. image: {
  30239. source: "./media/characters/joanna/front-shorts.svg",
  30240. extra: 1596 / 1488,
  30241. bottom: 29 / 1625
  30242. }
  30243. },
  30244. frontBiker: {
  30245. height: math.unit(3.5, "meters"),
  30246. weight: math.unit(1200, "kg"),
  30247. name: "Front (Biker)",
  30248. image: {
  30249. source: "./media/characters/joanna/front-biker.svg",
  30250. extra: 1596 / 1488,
  30251. bottom: 29 / 1625
  30252. }
  30253. },
  30254. backBiker: {
  30255. height: math.unit(3.5, "meters"),
  30256. weight: math.unit(1200, "kg"),
  30257. name: "Back (Biker)",
  30258. image: {
  30259. source: "./media/characters/joanna/back-biker.svg",
  30260. extra: 1594 / 1495,
  30261. bottom: 88 / 1682
  30262. }
  30263. },
  30264. bikeLeft: {
  30265. height: math.unit(2.4, "meters"),
  30266. weight: math.unit(1600, "kg"),
  30267. name: "Bike (Left)",
  30268. image: {
  30269. source: "./media/characters/joanna/bike-left.svg",
  30270. extra: 720 / 720,
  30271. bottom: 8 / 728
  30272. }
  30273. },
  30274. bikeRight: {
  30275. height: math.unit(2.4, "meters"),
  30276. weight: math.unit(1600, "kg"),
  30277. name: "Bike (Right)",
  30278. image: {
  30279. source: "./media/characters/joanna/bike-right.svg",
  30280. extra: 720 / 720,
  30281. bottom: 8 / 728
  30282. }
  30283. },
  30284. },
  30285. [
  30286. {
  30287. name: "Incognito",
  30288. height: math.unit(3.5, "meters")
  30289. },
  30290. {
  30291. name: "Casual Big",
  30292. height: math.unit(200, "meters")
  30293. },
  30294. {
  30295. name: "Macro",
  30296. height: math.unit(600, "meters")
  30297. },
  30298. {
  30299. name: "Original",
  30300. height: math.unit(20, "km"),
  30301. default: true
  30302. },
  30303. {
  30304. name: "Giga",
  30305. height: math.unit(400, "km")
  30306. },
  30307. {
  30308. name: "Lounging",
  30309. height: math.unit(1500, "km")
  30310. },
  30311. {
  30312. name: "Planetary",
  30313. height: math.unit(200000, "km")
  30314. },
  30315. ]
  30316. ))
  30317. characterMakers.push(() => makeCharacter(
  30318. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30319. {
  30320. front: {
  30321. height: math.unit(6, "feet"),
  30322. weight: math.unit(150, "lb"),
  30323. name: "Front",
  30324. image: {
  30325. source: "./media/characters/hugo-sigil/front.svg",
  30326. extra: 522 / 500,
  30327. bottom: 2 / 524
  30328. }
  30329. },
  30330. back: {
  30331. height: math.unit(6, "feet"),
  30332. weight: math.unit(150, "lb"),
  30333. name: "Back",
  30334. image: {
  30335. source: "./media/characters/hugo-sigil/back.svg",
  30336. extra: 519 / 495,
  30337. bottom: 5 / 524
  30338. }
  30339. },
  30340. maw: {
  30341. height: math.unit(1.4, "feet"),
  30342. weight: math.unit(150, "lb"),
  30343. name: "Maw",
  30344. image: {
  30345. source: "./media/characters/hugo-sigil/maw.svg"
  30346. }
  30347. },
  30348. feet: {
  30349. height: math.unit(1.56, "feet"),
  30350. weight: math.unit(150, "lb"),
  30351. name: "Feet",
  30352. image: {
  30353. source: "./media/characters/hugo-sigil/feet.svg",
  30354. extra: 177 / 177,
  30355. bottom: 12 / 189
  30356. }
  30357. },
  30358. },
  30359. [
  30360. {
  30361. name: "Normal",
  30362. height: math.unit(6, "feet")
  30363. },
  30364. {
  30365. name: "Macro",
  30366. height: math.unit(200, "feet"),
  30367. default: true
  30368. },
  30369. ]
  30370. ))
  30371. characterMakers.push(() => makeCharacter(
  30372. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30373. {
  30374. front: {
  30375. height: math.unit(6, "feet"),
  30376. weight: math.unit(150, "lb"),
  30377. name: "Front",
  30378. image: {
  30379. source: "./media/characters/peri/front.svg",
  30380. extra: 2354 / 2233,
  30381. bottom: 49 / 2403
  30382. }
  30383. },
  30384. },
  30385. [
  30386. {
  30387. name: "Really Small",
  30388. height: math.unit(1, "nm")
  30389. },
  30390. {
  30391. name: "Micro",
  30392. height: math.unit(4, "inches")
  30393. },
  30394. {
  30395. name: "Normal",
  30396. height: math.unit(7, "inches"),
  30397. default: true
  30398. },
  30399. {
  30400. name: "Macro",
  30401. height: math.unit(400, "feet")
  30402. },
  30403. {
  30404. name: "Megamacro",
  30405. height: math.unit(100, "miles")
  30406. },
  30407. ]
  30408. ))
  30409. characterMakers.push(() => makeCharacter(
  30410. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30411. {
  30412. frontSlim: {
  30413. height: math.unit(7, "feet"),
  30414. name: "Front (Slim)",
  30415. image: {
  30416. source: "./media/characters/issilora/front-slim.svg",
  30417. extra: 529 / 449,
  30418. bottom: 53 / 582
  30419. }
  30420. },
  30421. sideSlim: {
  30422. height: math.unit(7, "feet"),
  30423. name: "Side (Slim)",
  30424. image: {
  30425. source: "./media/characters/issilora/side-slim.svg",
  30426. extra: 570 / 480,
  30427. bottom: 30 / 600
  30428. }
  30429. },
  30430. backSlim: {
  30431. height: math.unit(7, "feet"),
  30432. name: "Back (Slim)",
  30433. image: {
  30434. source: "./media/characters/issilora/back-slim.svg",
  30435. extra: 537 / 455,
  30436. bottom: 46 / 583
  30437. }
  30438. },
  30439. frontBuff: {
  30440. height: math.unit(7, "feet"),
  30441. name: "Front (Buff)",
  30442. image: {
  30443. source: "./media/characters/issilora/front-buff.svg",
  30444. extra: 2310 / 2035,
  30445. bottom: 335 / 2645
  30446. }
  30447. },
  30448. head: {
  30449. height: math.unit(1.94, "feet"),
  30450. name: "Head",
  30451. image: {
  30452. source: "./media/characters/issilora/head.svg"
  30453. }
  30454. },
  30455. },
  30456. [
  30457. {
  30458. name: "Minimum",
  30459. height: math.unit(7, "feet")
  30460. },
  30461. {
  30462. name: "Comfortable",
  30463. height: math.unit(17, "feet")
  30464. },
  30465. {
  30466. name: "Fun Size",
  30467. height: math.unit(47, "feet")
  30468. },
  30469. {
  30470. name: "Natural Macro",
  30471. height: math.unit(137, "feet"),
  30472. default: true
  30473. },
  30474. {
  30475. name: "Maximum Kaiju",
  30476. height: math.unit(397, "feet")
  30477. },
  30478. ]
  30479. ))
  30480. characterMakers.push(() => makeCharacter(
  30481. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30482. {
  30483. front: {
  30484. height: math.unit(50 + 9/12, "feet"),
  30485. weight: math.unit(32.8, "tons"),
  30486. name: "Front",
  30487. image: {
  30488. source: "./media/characters/irb'iiritaahn/front.svg",
  30489. extra: 1878/1826,
  30490. bottom: 326/2204
  30491. }
  30492. },
  30493. back: {
  30494. height: math.unit(50 + 9/12, "feet"),
  30495. weight: math.unit(32.8, "tons"),
  30496. name: "Back",
  30497. image: {
  30498. source: "./media/characters/irb'iiritaahn/back.svg",
  30499. extra: 2052/2018,
  30500. bottom: 152/2204
  30501. }
  30502. },
  30503. head: {
  30504. height: math.unit(12.86, "feet"),
  30505. name: "Head",
  30506. image: {
  30507. source: "./media/characters/irb'iiritaahn/head.svg"
  30508. }
  30509. },
  30510. maw: {
  30511. height: math.unit(9.66, "feet"),
  30512. name: "Maw",
  30513. image: {
  30514. source: "./media/characters/irb'iiritaahn/maw.svg"
  30515. }
  30516. },
  30517. frontDick: {
  30518. height: math.unit(8.78461, "feet"),
  30519. name: "Front Dick",
  30520. image: {
  30521. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30522. }
  30523. },
  30524. rearDick: {
  30525. height: math.unit(8.78461, "feet"),
  30526. name: "Rear Dick",
  30527. image: {
  30528. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30529. }
  30530. },
  30531. rearDickUnfolded: {
  30532. height: math.unit(8.78, "feet"),
  30533. name: "Rear Dick (Unfolded)",
  30534. image: {
  30535. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30536. }
  30537. },
  30538. wings: {
  30539. height: math.unit(43, "feet"),
  30540. name: "Wings",
  30541. image: {
  30542. source: "./media/characters/irb'iiritaahn/wings.svg"
  30543. }
  30544. },
  30545. },
  30546. [
  30547. {
  30548. name: "Macro",
  30549. height: math.unit(50 + 9/12, "feet"),
  30550. default: true
  30551. },
  30552. ]
  30553. ))
  30554. characterMakers.push(() => makeCharacter(
  30555. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30556. {
  30557. front: {
  30558. height: math.unit(205, "cm"),
  30559. weight: math.unit(102, "kg"),
  30560. name: "Front",
  30561. image: {
  30562. source: "./media/characters/irbisgreif/front.svg",
  30563. extra: 785/706,
  30564. bottom: 13/798
  30565. }
  30566. },
  30567. back: {
  30568. height: math.unit(205, "cm"),
  30569. weight: math.unit(102, "kg"),
  30570. name: "Back",
  30571. image: {
  30572. source: "./media/characters/irbisgreif/back.svg",
  30573. extra: 713/701,
  30574. bottom: 26/739
  30575. }
  30576. },
  30577. frontDressed: {
  30578. height: math.unit(216, "cm"),
  30579. weight: math.unit(102, "kg"),
  30580. name: "Front-dressed",
  30581. image: {
  30582. source: "./media/characters/irbisgreif/front-dressed.svg",
  30583. extra: 902/776,
  30584. bottom: 14/916
  30585. }
  30586. },
  30587. sideDressed: {
  30588. height: math.unit(195, "cm"),
  30589. weight: math.unit(102, "kg"),
  30590. name: "Side-dressed",
  30591. image: {
  30592. source: "./media/characters/irbisgreif/side-dressed.svg",
  30593. extra: 788/688,
  30594. bottom: 21/809
  30595. }
  30596. },
  30597. backDressed: {
  30598. height: math.unit(216, "cm"),
  30599. weight: math.unit(102, "kg"),
  30600. name: "Back-dressed",
  30601. image: {
  30602. source: "./media/characters/irbisgreif/back-dressed.svg",
  30603. extra: 901/783,
  30604. bottom: 10/911
  30605. }
  30606. },
  30607. dick: {
  30608. height: math.unit(0.49, "feet"),
  30609. name: "Dick",
  30610. image: {
  30611. source: "./media/characters/irbisgreif/dick.svg"
  30612. }
  30613. },
  30614. wingTop: {
  30615. height: math.unit(1.93 , "feet"),
  30616. name: "Wing-top",
  30617. image: {
  30618. source: "./media/characters/irbisgreif/wing-top.svg"
  30619. }
  30620. },
  30621. wingBottom: {
  30622. height: math.unit(1.93 , "feet"),
  30623. name: "Wing-bottom",
  30624. image: {
  30625. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30626. }
  30627. },
  30628. },
  30629. [
  30630. {
  30631. name: "Normal",
  30632. height: math.unit(216, "cm"),
  30633. default: true
  30634. },
  30635. ]
  30636. ))
  30637. characterMakers.push(() => makeCharacter(
  30638. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30639. {
  30640. front: {
  30641. height: math.unit(6, "feet"),
  30642. weight: math.unit(150, "lb"),
  30643. name: "Front",
  30644. image: {
  30645. source: "./media/characters/pride/front.svg",
  30646. extra: 1299/1230,
  30647. bottom: 18/1317
  30648. }
  30649. },
  30650. },
  30651. [
  30652. {
  30653. name: "Normal",
  30654. height: math.unit(7, "feet")
  30655. },
  30656. {
  30657. name: "Mini-macro",
  30658. height: math.unit(11, "feet")
  30659. },
  30660. {
  30661. name: "Macro",
  30662. height: math.unit(15, "meters"),
  30663. default: true
  30664. },
  30665. {
  30666. name: "Macro+",
  30667. height: math.unit(40, "meters")
  30668. },
  30669. ]
  30670. ))
  30671. characterMakers.push(() => makeCharacter(
  30672. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30673. {
  30674. front: {
  30675. height: math.unit(4 + 2 / 12, "feet"),
  30676. weight: math.unit(95, "lb"),
  30677. name: "Front",
  30678. image: {
  30679. source: "./media/characters/vaelophis-nyx/front.svg",
  30680. extra: 2532/2330,
  30681. bottom: 0/2532
  30682. }
  30683. },
  30684. back: {
  30685. height: math.unit(4 + 2 / 12, "feet"),
  30686. weight: math.unit(95, "lb"),
  30687. name: "Back",
  30688. image: {
  30689. source: "./media/characters/vaelophis-nyx/back.svg",
  30690. extra: 2484/2361,
  30691. bottom: 0/2484
  30692. }
  30693. },
  30694. feralSide: {
  30695. height: math.unit(2 + 1/12, "feet"),
  30696. weight: math.unit(20, "lb"),
  30697. name: "Feral (Side)",
  30698. image: {
  30699. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30700. extra: 1721/1581,
  30701. bottom: 70/1791
  30702. }
  30703. },
  30704. feralLazing: {
  30705. height: math.unit(1.08, "feet"),
  30706. weight: math.unit(20, "lb"),
  30707. name: "Feral (Lazing)",
  30708. image: {
  30709. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30710. extra: 822/822,
  30711. bottom: 248/1070
  30712. }
  30713. },
  30714. ear: {
  30715. height: math.unit(0.416, "feet"),
  30716. name: "Ear",
  30717. image: {
  30718. source: "./media/characters/vaelophis-nyx/ear.svg"
  30719. }
  30720. },
  30721. eye: {
  30722. height: math.unit(0.0748, "feet"),
  30723. name: "Eye",
  30724. image: {
  30725. source: "./media/characters/vaelophis-nyx/eye.svg"
  30726. }
  30727. },
  30728. mouth: {
  30729. height: math.unit(0.378, "feet"),
  30730. name: "Mouth",
  30731. image: {
  30732. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30733. }
  30734. },
  30735. spade: {
  30736. height: math.unit(0.55, "feet"),
  30737. name: "Spade",
  30738. image: {
  30739. source: "./media/characters/vaelophis-nyx/spade.svg"
  30740. }
  30741. },
  30742. },
  30743. [
  30744. {
  30745. name: "Normal",
  30746. height: math.unit(4 + 2/12, "feet"),
  30747. default: true
  30748. },
  30749. ]
  30750. ))
  30751. characterMakers.push(() => makeCharacter(
  30752. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30753. {
  30754. front: {
  30755. height: math.unit(7, "feet"),
  30756. weight: math.unit(231, "lb"),
  30757. name: "Front",
  30758. image: {
  30759. source: "./media/characters/flux/front.svg",
  30760. extra: 919/871,
  30761. bottom: 0/919
  30762. }
  30763. },
  30764. back: {
  30765. height: math.unit(7, "feet"),
  30766. weight: math.unit(231, "lb"),
  30767. name: "Back",
  30768. image: {
  30769. source: "./media/characters/flux/back.svg",
  30770. extra: 1040/992,
  30771. bottom: 0/1040
  30772. }
  30773. },
  30774. frontDressed: {
  30775. height: math.unit(7, "feet"),
  30776. weight: math.unit(231, "lb"),
  30777. name: "Front (Dressed)",
  30778. image: {
  30779. source: "./media/characters/flux/front-dressed.svg",
  30780. extra: 919/871,
  30781. bottom: 0/919
  30782. }
  30783. },
  30784. feralSide: {
  30785. height: math.unit(5, "feet"),
  30786. weight: math.unit(150, "lb"),
  30787. name: "Feral (Side)",
  30788. image: {
  30789. source: "./media/characters/flux/feral-side.svg",
  30790. extra: 598/528,
  30791. bottom: 28/626
  30792. }
  30793. },
  30794. head: {
  30795. height: math.unit(1.585, "feet"),
  30796. name: "Head",
  30797. image: {
  30798. source: "./media/characters/flux/head.svg"
  30799. }
  30800. },
  30801. headSide: {
  30802. height: math.unit(1.74, "feet"),
  30803. name: "Head (Side)",
  30804. image: {
  30805. source: "./media/characters/flux/head-side.svg"
  30806. }
  30807. },
  30808. headSideFire: {
  30809. height: math.unit(1.76, "feet"),
  30810. name: "Head (Side, Fire)",
  30811. image: {
  30812. source: "./media/characters/flux/head-side-fire.svg"
  30813. }
  30814. },
  30815. },
  30816. [
  30817. {
  30818. name: "Normal",
  30819. height: math.unit(7, "feet"),
  30820. default: true
  30821. },
  30822. ]
  30823. ))
  30824. characterMakers.push(() => makeCharacter(
  30825. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30826. {
  30827. front: {
  30828. height: math.unit(9, "feet"),
  30829. weight: math.unit(1012, "lb"),
  30830. name: "Front",
  30831. image: {
  30832. source: "./media/characters/ulfra-lupae/front.svg",
  30833. extra: 1083/1011,
  30834. bottom: 67/1150
  30835. }
  30836. },
  30837. },
  30838. [
  30839. {
  30840. name: "Micro",
  30841. height: math.unit(6, "inches")
  30842. },
  30843. {
  30844. name: "Socializing",
  30845. height: math.unit(6 + 5/12, "feet")
  30846. },
  30847. {
  30848. name: "Normal",
  30849. height: math.unit(9, "feet"),
  30850. default: true
  30851. },
  30852. {
  30853. name: "Macro",
  30854. height: math.unit(150, "feet")
  30855. },
  30856. ]
  30857. ))
  30858. characterMakers.push(() => makeCharacter(
  30859. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30860. {
  30861. front: {
  30862. height: math.unit(5 + 2/12, "feet"),
  30863. weight: math.unit(120, "lb"),
  30864. name: "Front",
  30865. image: {
  30866. source: "./media/characters/timber/front.svg",
  30867. extra: 2814/2705,
  30868. bottom: 181/2995
  30869. }
  30870. },
  30871. },
  30872. [
  30873. {
  30874. name: "Normal",
  30875. height: math.unit(5 + 2/12, "feet"),
  30876. default: true
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30882. {
  30883. front: {
  30884. height: math.unit(5 + 7/12, "feet"),
  30885. weight: math.unit(220, "lb"),
  30886. name: "Front",
  30887. image: {
  30888. source: "./media/characters/nicki/front.svg",
  30889. extra: 453/419,
  30890. bottom: 7/460
  30891. }
  30892. },
  30893. frontAlt: {
  30894. height: math.unit(5 + 7/12, "feet"),
  30895. weight: math.unit(220, "lb"),
  30896. name: "Front-alt",
  30897. image: {
  30898. source: "./media/characters/nicki/front-alt.svg",
  30899. extra: 435/411,
  30900. bottom: 12/447
  30901. }
  30902. },
  30903. back: {
  30904. height: math.unit(5 + 7/12, "feet"),
  30905. weight: math.unit(220, "lb"),
  30906. name: "Back",
  30907. image: {
  30908. source: "./media/characters/nicki/back.svg",
  30909. extra: 440/413,
  30910. bottom: 19/459
  30911. }
  30912. },
  30913. taur: {
  30914. height: math.unit(7 + 6/12, "feet"),
  30915. weight: math.unit(700, "lb"),
  30916. name: "Taur",
  30917. image: {
  30918. source: "./media/characters/nicki/taur.svg",
  30919. extra: 975/773,
  30920. bottom: 0/975
  30921. }
  30922. },
  30923. frontNsfw: {
  30924. height: math.unit(5 + 7/12, "feet"),
  30925. weight: math.unit(220, "lb"),
  30926. name: "Front (NSFW)",
  30927. image: {
  30928. source: "./media/characters/nicki/front-nsfw.svg",
  30929. extra: 453/419,
  30930. bottom: 7/460
  30931. }
  30932. },
  30933. frontNsfwAlt: {
  30934. height: math.unit(5 + 7/12, "feet"),
  30935. weight: math.unit(220, "lb"),
  30936. name: "Front (Alt, NSFW)",
  30937. image: {
  30938. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30939. extra: 435/411,
  30940. bottom: 12/447
  30941. }
  30942. },
  30943. backNsfw: {
  30944. height: math.unit(5 + 7/12, "feet"),
  30945. weight: math.unit(220, "lb"),
  30946. name: "Back (NSFW)",
  30947. image: {
  30948. source: "./media/characters/nicki/back-nsfw.svg",
  30949. extra: 440/413,
  30950. bottom: 19/459
  30951. }
  30952. },
  30953. head: {
  30954. height: math.unit(2.1, "feet"),
  30955. name: "Head",
  30956. image: {
  30957. source: "./media/characters/nicki/head.svg"
  30958. }
  30959. },
  30960. paw: {
  30961. height: math.unit(1.88, "feet"),
  30962. name: "Paw",
  30963. image: {
  30964. source: "./media/characters/nicki/paw.svg"
  30965. }
  30966. },
  30967. },
  30968. [
  30969. {
  30970. name: "Normal",
  30971. height: math.unit(5 + 7/12, "feet"),
  30972. default: true
  30973. },
  30974. ]
  30975. ))
  30976. characterMakers.push(() => makeCharacter(
  30977. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30978. {
  30979. front: {
  30980. height: math.unit(7 + 10/12, "feet"),
  30981. weight: math.unit(3.5, "tons"),
  30982. name: "Front",
  30983. image: {
  30984. source: "./media/characters/lee/front.svg",
  30985. extra: 1773/1615,
  30986. bottom: 86/1859
  30987. }
  30988. },
  30989. hand: {
  30990. height: math.unit(1.78, "feet"),
  30991. name: "Hand",
  30992. image: {
  30993. source: "./media/characters/lee/hand.svg"
  30994. }
  30995. },
  30996. maw: {
  30997. height: math.unit(1.18, "feet"),
  30998. name: "Maw",
  30999. image: {
  31000. source: "./media/characters/lee/maw.svg"
  31001. }
  31002. },
  31003. },
  31004. [
  31005. {
  31006. name: "Normal",
  31007. height: math.unit(7 + 10/12, "feet"),
  31008. default: true
  31009. },
  31010. ]
  31011. ))
  31012. characterMakers.push(() => makeCharacter(
  31013. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31014. {
  31015. front: {
  31016. height: math.unit(9, "feet"),
  31017. name: "Front",
  31018. image: {
  31019. source: "./media/characters/guti/front.svg",
  31020. extra: 4551/4355,
  31021. bottom: 123/4674
  31022. }
  31023. },
  31024. tongue: {
  31025. height: math.unit(1, "feet"),
  31026. name: "Tongue",
  31027. image: {
  31028. source: "./media/characters/guti/tongue.svg"
  31029. }
  31030. },
  31031. paw: {
  31032. height: math.unit(1.18, "feet"),
  31033. name: "Paw",
  31034. image: {
  31035. source: "./media/characters/guti/paw.svg"
  31036. }
  31037. },
  31038. },
  31039. [
  31040. {
  31041. name: "Normal",
  31042. height: math.unit(9, "feet"),
  31043. default: true
  31044. },
  31045. ]
  31046. ))
  31047. characterMakers.push(() => makeCharacter(
  31048. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31049. {
  31050. side: {
  31051. height: math.unit(5, "meters"),
  31052. name: "Side",
  31053. image: {
  31054. source: "./media/characters/vesper/side.svg",
  31055. extra: 1605/1518,
  31056. bottom: 0/1605
  31057. }
  31058. },
  31059. },
  31060. [
  31061. {
  31062. name: "Small",
  31063. height: math.unit(5, "meters")
  31064. },
  31065. {
  31066. name: "Sage",
  31067. height: math.unit(100, "meters"),
  31068. default: true
  31069. },
  31070. {
  31071. name: "Fun Size",
  31072. height: math.unit(600, "meters")
  31073. },
  31074. {
  31075. name: "Goddess",
  31076. height: math.unit(20000, "km")
  31077. },
  31078. {
  31079. name: "Maximum",
  31080. height: math.unit(5, "galaxies")
  31081. },
  31082. ]
  31083. ))
  31084. characterMakers.push(() => makeCharacter(
  31085. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31086. {
  31087. front: {
  31088. height: math.unit(6 + 3/12, "feet"),
  31089. weight: math.unit(190, "lb"),
  31090. name: "Front",
  31091. image: {
  31092. source: "./media/characters/gawain/front.svg",
  31093. extra: 2222/2139,
  31094. bottom: 90/2312
  31095. }
  31096. },
  31097. back: {
  31098. height: math.unit(6 + 3/12, "feet"),
  31099. weight: math.unit(190, "lb"),
  31100. name: "Back",
  31101. image: {
  31102. source: "./media/characters/gawain/back.svg",
  31103. extra: 2199/2111,
  31104. bottom: 73/2272
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Normal",
  31111. height: math.unit(6 + 3/12, "feet"),
  31112. default: true
  31113. },
  31114. ]
  31115. ))
  31116. characterMakers.push(() => makeCharacter(
  31117. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31118. {
  31119. side: {
  31120. height: math.unit(3.5, "meters"),
  31121. weight: math.unit(16000, "lb"),
  31122. name: "Side",
  31123. image: {
  31124. source: "./media/characters/dascalti/side.svg",
  31125. extra: 392/273,
  31126. bottom: 47/439
  31127. }
  31128. },
  31129. breath: {
  31130. height: math.unit(7.4, "feet"),
  31131. name: "Breath",
  31132. image: {
  31133. source: "./media/characters/dascalti/breath.svg"
  31134. }
  31135. },
  31136. fed: {
  31137. height: math.unit(3.6, "meters"),
  31138. weight: math.unit(16000, "lb"),
  31139. name: "Fed",
  31140. image: {
  31141. source: "./media/characters/dascalti/fed.svg",
  31142. extra: 1419/820,
  31143. bottom: 95/1514
  31144. }
  31145. },
  31146. },
  31147. [
  31148. {
  31149. name: "Normal",
  31150. height: math.unit(3.5, "meters"),
  31151. default: true
  31152. },
  31153. ]
  31154. ))
  31155. characterMakers.push(() => makeCharacter(
  31156. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31157. {
  31158. front: {
  31159. height: math.unit(3 + 5/12, "feet"),
  31160. name: "Front",
  31161. image: {
  31162. source: "./media/characters/mauve/front.svg",
  31163. extra: 1126/1033,
  31164. bottom: 65/1191
  31165. }
  31166. },
  31167. side: {
  31168. height: math.unit(3 + 5/12, "feet"),
  31169. name: "Side",
  31170. image: {
  31171. source: "./media/characters/mauve/side.svg",
  31172. extra: 1089/1001,
  31173. bottom: 29/1118
  31174. }
  31175. },
  31176. back: {
  31177. height: math.unit(3 + 5/12, "feet"),
  31178. name: "Back",
  31179. image: {
  31180. source: "./media/characters/mauve/back.svg",
  31181. extra: 1173/1053,
  31182. bottom: 109/1282
  31183. }
  31184. },
  31185. },
  31186. [
  31187. {
  31188. name: "Normal",
  31189. height: math.unit(3 + 5/12, "feet"),
  31190. default: true
  31191. },
  31192. ]
  31193. ))
  31194. characterMakers.push(() => makeCharacter(
  31195. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31196. {
  31197. front: {
  31198. height: math.unit(6 + 3/12, "feet"),
  31199. weight: math.unit(430, "lb"),
  31200. name: "Front",
  31201. image: {
  31202. source: "./media/characters/carlos/front.svg",
  31203. extra: 1964/1913,
  31204. bottom: 70/2034
  31205. }
  31206. },
  31207. },
  31208. [
  31209. {
  31210. name: "Normal",
  31211. height: math.unit(6 + 3/12, "feet"),
  31212. default: true
  31213. },
  31214. ]
  31215. ))
  31216. characterMakers.push(() => makeCharacter(
  31217. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31218. {
  31219. back: {
  31220. height: math.unit(5 + 10/12, "feet"),
  31221. weight: math.unit(200, "lb"),
  31222. name: "Back",
  31223. image: {
  31224. source: "./media/characters/jax/back.svg",
  31225. extra: 764/739,
  31226. bottom: 25/789
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Normal",
  31233. height: math.unit(5 + 10/12, "feet"),
  31234. default: true
  31235. },
  31236. ]
  31237. ))
  31238. characterMakers.push(() => makeCharacter(
  31239. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31240. {
  31241. front: {
  31242. height: math.unit(8, "feet"),
  31243. weight: math.unit(250, "lb"),
  31244. name: "Front",
  31245. image: {
  31246. source: "./media/characters/eikthynir/front.svg",
  31247. extra: 1332/1166,
  31248. bottom: 82/1414
  31249. }
  31250. },
  31251. back: {
  31252. height: math.unit(8, "feet"),
  31253. weight: math.unit(250, "lb"),
  31254. name: "Back",
  31255. image: {
  31256. source: "./media/characters/eikthynir/back.svg",
  31257. extra: 1342/1190,
  31258. bottom: 19/1361
  31259. }
  31260. },
  31261. dick: {
  31262. height: math.unit(2.35, "feet"),
  31263. name: "Dick",
  31264. image: {
  31265. source: "./media/characters/eikthynir/dick.svg"
  31266. }
  31267. },
  31268. },
  31269. [
  31270. {
  31271. name: "Normal",
  31272. height: math.unit(8, "feet"),
  31273. default: true
  31274. },
  31275. ]
  31276. ))
  31277. characterMakers.push(() => makeCharacter(
  31278. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31279. {
  31280. front: {
  31281. height: math.unit(99, "meters"),
  31282. weight: math.unit(13000, "tons"),
  31283. name: "Front",
  31284. image: {
  31285. source: "./media/characters/zlmos/front.svg",
  31286. extra: 2202/1992,
  31287. bottom: 315/2517
  31288. }
  31289. },
  31290. },
  31291. [
  31292. {
  31293. name: "Macro",
  31294. height: math.unit(99, "meters"),
  31295. default: true
  31296. },
  31297. ]
  31298. ))
  31299. characterMakers.push(() => makeCharacter(
  31300. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31301. {
  31302. front: {
  31303. height: math.unit(6 + 5/12, "feet"),
  31304. name: "Front",
  31305. image: {
  31306. source: "./media/characters/purri/front.svg",
  31307. extra: 1698/1610,
  31308. bottom: 32/1730
  31309. }
  31310. },
  31311. frontAlt: {
  31312. height: math.unit(6 + 5/12, "feet"),
  31313. name: "Front (Alt)",
  31314. image: {
  31315. source: "./media/characters/purri/front-alt.svg",
  31316. extra: 450/420,
  31317. bottom: 26/476
  31318. }
  31319. },
  31320. boots: {
  31321. height: math.unit(5.5, "feet"),
  31322. name: "Boots",
  31323. image: {
  31324. source: "./media/characters/purri/boots.svg",
  31325. extra: 905/853,
  31326. bottom: 18/923
  31327. }
  31328. },
  31329. lying: {
  31330. height: math.unit(2, "feet"),
  31331. name: "Lying",
  31332. image: {
  31333. source: "./media/characters/purri/lying.svg",
  31334. extra: 940/843,
  31335. bottom: 146/1086
  31336. }
  31337. },
  31338. devious: {
  31339. height: math.unit(1.77, "feet"),
  31340. name: "Devious",
  31341. image: {
  31342. source: "./media/characters/purri/devious.svg",
  31343. extra: 1440/1155,
  31344. bottom: 147/1587
  31345. }
  31346. },
  31347. bean: {
  31348. height: math.unit(1.94, "feet"),
  31349. name: "Bean",
  31350. image: {
  31351. source: "./media/characters/purri/bean.svg"
  31352. }
  31353. },
  31354. },
  31355. [
  31356. {
  31357. name: "Micro",
  31358. height: math.unit(1, "mm")
  31359. },
  31360. {
  31361. name: "Normal",
  31362. height: math.unit(6 + 5/12, "feet"),
  31363. default: true
  31364. },
  31365. {
  31366. name: "Macro :3c",
  31367. height: math.unit(2, "miles")
  31368. },
  31369. ]
  31370. ))
  31371. characterMakers.push(() => makeCharacter(
  31372. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31373. {
  31374. front: {
  31375. height: math.unit(6 + 2/12, "feet"),
  31376. weight: math.unit(250, "lb"),
  31377. name: "Front",
  31378. image: {
  31379. source: "./media/characters/moonlight/front.svg",
  31380. extra: 1044/908,
  31381. bottom: 56/1100
  31382. }
  31383. },
  31384. feral: {
  31385. height: math.unit(3 + 1/12, "feet"),
  31386. weight: math.unit(50, "kg"),
  31387. name: "Feral",
  31388. image: {
  31389. source: "./media/characters/moonlight/feral.svg",
  31390. extra: 3705/2791,
  31391. bottom: 145/3850
  31392. }
  31393. },
  31394. paw: {
  31395. height: math.unit(1, "feet"),
  31396. name: "Paw",
  31397. image: {
  31398. source: "./media/characters/moonlight/paw.svg"
  31399. }
  31400. },
  31401. paws: {
  31402. height: math.unit(0.98, "feet"),
  31403. name: "Paws",
  31404. image: {
  31405. source: "./media/characters/moonlight/paws.svg",
  31406. extra: 939/939,
  31407. bottom: 50/989
  31408. }
  31409. },
  31410. mouth: {
  31411. height: math.unit(0.48, "feet"),
  31412. name: "Mouth",
  31413. image: {
  31414. source: "./media/characters/moonlight/mouth.svg"
  31415. }
  31416. },
  31417. dick: {
  31418. height: math.unit(1.46, "feet"),
  31419. name: "Dick",
  31420. image: {
  31421. source: "./media/characters/moonlight/dick.svg"
  31422. }
  31423. },
  31424. },
  31425. [
  31426. {
  31427. name: "Normal",
  31428. height: math.unit(6 + 2/12, "feet"),
  31429. default: true
  31430. },
  31431. {
  31432. name: "Macro",
  31433. height: math.unit(300, "feet")
  31434. },
  31435. {
  31436. name: "Macro+",
  31437. height: math.unit(1, "mile")
  31438. },
  31439. {
  31440. name: "Mt. Moon",
  31441. height: math.unit(5, "miles")
  31442. },
  31443. {
  31444. name: "Megamacro",
  31445. height: math.unit(15, "miles")
  31446. },
  31447. ]
  31448. ))
  31449. characterMakers.push(() => makeCharacter(
  31450. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31451. {
  31452. back: {
  31453. height: math.unit(6, "feet"),
  31454. weight: math.unit(150, "lb"),
  31455. name: "Back",
  31456. image: {
  31457. source: "./media/characters/sylen/back.svg",
  31458. extra: 1335/1273,
  31459. bottom: 107/1442
  31460. }
  31461. },
  31462. },
  31463. [
  31464. {
  31465. name: "Normal",
  31466. height: math.unit(5 + 5/12, "feet")
  31467. },
  31468. {
  31469. name: "Megamacro",
  31470. height: math.unit(3, "miles"),
  31471. default: true
  31472. },
  31473. ]
  31474. ))
  31475. characterMakers.push(() => makeCharacter(
  31476. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31477. {
  31478. front: {
  31479. height: math.unit(6, "feet"),
  31480. weight: math.unit(190, "lb"),
  31481. name: "Front",
  31482. image: {
  31483. source: "./media/characters/huttser/front.svg",
  31484. extra: 1152/1058,
  31485. bottom: 23/1175
  31486. }
  31487. },
  31488. side: {
  31489. height: math.unit(6, "feet"),
  31490. weight: math.unit(190, "lb"),
  31491. name: "Side",
  31492. image: {
  31493. source: "./media/characters/huttser/side.svg",
  31494. extra: 1174/1065,
  31495. bottom: 18/1192
  31496. }
  31497. },
  31498. back: {
  31499. height: math.unit(6, "feet"),
  31500. weight: math.unit(190, "lb"),
  31501. name: "Back",
  31502. image: {
  31503. source: "./media/characters/huttser/back.svg",
  31504. extra: 1158/1056,
  31505. bottom: 12/1170
  31506. }
  31507. },
  31508. },
  31509. [
  31510. ]
  31511. ))
  31512. characterMakers.push(() => makeCharacter(
  31513. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31514. {
  31515. side: {
  31516. height: math.unit(12 + 9/12, "feet"),
  31517. weight: math.unit(15000, "lb"),
  31518. name: "Side",
  31519. image: {
  31520. source: "./media/characters/faan/side.svg",
  31521. extra: 2747/2697,
  31522. bottom: 0/2747
  31523. }
  31524. },
  31525. front: {
  31526. height: math.unit(12 + 9/12, "feet"),
  31527. weight: math.unit(15000, "lb"),
  31528. name: "Front",
  31529. image: {
  31530. source: "./media/characters/faan/front.svg",
  31531. extra: 607/571,
  31532. bottom: 24/631
  31533. }
  31534. },
  31535. head: {
  31536. height: math.unit(2.85, "feet"),
  31537. name: "Head",
  31538. image: {
  31539. source: "./media/characters/faan/head.svg"
  31540. }
  31541. },
  31542. headAlt: {
  31543. height: math.unit(3.13, "feet"),
  31544. name: "Head-alt",
  31545. image: {
  31546. source: "./media/characters/faan/head-alt.svg"
  31547. }
  31548. },
  31549. },
  31550. [
  31551. {
  31552. name: "Normal",
  31553. height: math.unit(12 + 9/12, "feet"),
  31554. default: true
  31555. },
  31556. ]
  31557. ))
  31558. characterMakers.push(() => makeCharacter(
  31559. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31560. {
  31561. front: {
  31562. height: math.unit(6, "feet"),
  31563. weight: math.unit(300, "lb"),
  31564. name: "Front",
  31565. image: {
  31566. source: "./media/characters/tanio/front.svg",
  31567. extra: 711/673,
  31568. bottom: 25/736
  31569. }
  31570. },
  31571. },
  31572. [
  31573. {
  31574. name: "Normal",
  31575. height: math.unit(6, "feet"),
  31576. default: true
  31577. },
  31578. ]
  31579. ))
  31580. characterMakers.push(() => makeCharacter(
  31581. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31582. {
  31583. front: {
  31584. height: math.unit(3, "inches"),
  31585. name: "Front",
  31586. image: {
  31587. source: "./media/characters/noboru/front.svg",
  31588. extra: 1039/932,
  31589. bottom: 18/1057
  31590. }
  31591. },
  31592. },
  31593. [
  31594. {
  31595. name: "Micro",
  31596. height: math.unit(3, "inches"),
  31597. default: true
  31598. },
  31599. ]
  31600. ))
  31601. characterMakers.push(() => makeCharacter(
  31602. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31603. {
  31604. front: {
  31605. height: math.unit(1.85, "meters"),
  31606. weight: math.unit(80, "kg"),
  31607. name: "Front",
  31608. image: {
  31609. source: "./media/characters/daniel-barrett/front.svg",
  31610. extra: 355/337,
  31611. bottom: 9/364
  31612. }
  31613. },
  31614. },
  31615. [
  31616. {
  31617. name: "Pico",
  31618. height: math.unit(0.0433, "mm")
  31619. },
  31620. {
  31621. name: "Nano",
  31622. height: math.unit(1.5, "mm")
  31623. },
  31624. {
  31625. name: "Micro",
  31626. height: math.unit(5.3, "cm"),
  31627. default: true
  31628. },
  31629. {
  31630. name: "Normal",
  31631. height: math.unit(1.85, "meters")
  31632. },
  31633. {
  31634. name: "Macro",
  31635. height: math.unit(64.7, "meters")
  31636. },
  31637. {
  31638. name: "Megamacro",
  31639. height: math.unit(2.26, "km")
  31640. },
  31641. {
  31642. name: "Gigamacro",
  31643. height: math.unit(79, "km")
  31644. },
  31645. {
  31646. name: "Teramacro",
  31647. height: math.unit(2765, "km")
  31648. },
  31649. {
  31650. name: "Petamacro",
  31651. height: math.unit(96678, "km")
  31652. },
  31653. ]
  31654. ))
  31655. characterMakers.push(() => makeCharacter(
  31656. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31657. {
  31658. front: {
  31659. height: math.unit(30, "meters"),
  31660. weight: math.unit(400, "tons"),
  31661. name: "Front",
  31662. image: {
  31663. source: "./media/characters/zeel/front.svg",
  31664. extra: 2599/2599,
  31665. bottom: 226/2825
  31666. }
  31667. },
  31668. },
  31669. [
  31670. {
  31671. name: "Macro",
  31672. height: math.unit(30, "meters"),
  31673. default: true
  31674. },
  31675. ]
  31676. ))
  31677. characterMakers.push(() => makeCharacter(
  31678. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31679. {
  31680. front: {
  31681. height: math.unit(6 + 7/12, "feet"),
  31682. weight: math.unit(210, "lb"),
  31683. name: "Front",
  31684. image: {
  31685. source: "./media/characters/tarn/front.svg",
  31686. extra: 3517/3220,
  31687. bottom: 91/3608
  31688. }
  31689. },
  31690. back: {
  31691. height: math.unit(6 + 7/12, "feet"),
  31692. weight: math.unit(210, "lb"),
  31693. name: "Back",
  31694. image: {
  31695. source: "./media/characters/tarn/back.svg",
  31696. extra: 3566/3241,
  31697. bottom: 34/3600
  31698. }
  31699. },
  31700. dick: {
  31701. height: math.unit(1.65, "feet"),
  31702. name: "Dick",
  31703. image: {
  31704. source: "./media/characters/tarn/dick.svg"
  31705. }
  31706. },
  31707. paw: {
  31708. height: math.unit(1.80, "feet"),
  31709. name: "Paw",
  31710. image: {
  31711. source: "./media/characters/tarn/paw.svg"
  31712. }
  31713. },
  31714. tongue: {
  31715. height: math.unit(0.97, "feet"),
  31716. name: "Tongue",
  31717. image: {
  31718. source: "./media/characters/tarn/tongue.svg"
  31719. }
  31720. },
  31721. },
  31722. [
  31723. {
  31724. name: "Micro",
  31725. height: math.unit(4, "inches")
  31726. },
  31727. {
  31728. name: "Normal",
  31729. height: math.unit(6 + 7/12, "feet"),
  31730. default: true
  31731. },
  31732. {
  31733. name: "Macro",
  31734. height: math.unit(300, "feet")
  31735. },
  31736. ]
  31737. ))
  31738. characterMakers.push(() => makeCharacter(
  31739. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31740. {
  31741. front: {
  31742. height: math.unit(5 + 7/12, "feet"),
  31743. weight: math.unit(80, "kg"),
  31744. name: "Front",
  31745. image: {
  31746. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31747. extra: 3023/2865,
  31748. bottom: 33/3056
  31749. }
  31750. },
  31751. back: {
  31752. height: math.unit(5 + 7/12, "feet"),
  31753. weight: math.unit(80, "kg"),
  31754. name: "Back",
  31755. image: {
  31756. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31757. extra: 3020/2886,
  31758. bottom: 30/3050
  31759. }
  31760. },
  31761. dick: {
  31762. height: math.unit(0.98, "feet"),
  31763. name: "Dick",
  31764. image: {
  31765. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31766. }
  31767. },
  31768. anatomy: {
  31769. height: math.unit(2.86, "feet"),
  31770. name: "Anatomy",
  31771. image: {
  31772. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31773. }
  31774. },
  31775. },
  31776. [
  31777. {
  31778. name: "Really Small",
  31779. height: math.unit(2, "inches")
  31780. },
  31781. {
  31782. name: "Micro",
  31783. height: math.unit(5.583, "inches")
  31784. },
  31785. {
  31786. name: "Normal",
  31787. height: math.unit(5 + 7/12, "feet"),
  31788. default: true
  31789. },
  31790. {
  31791. name: "Macro",
  31792. height: math.unit(67, "feet")
  31793. },
  31794. {
  31795. name: "Megamacro",
  31796. height: math.unit(134, "feet")
  31797. },
  31798. ]
  31799. ))
  31800. characterMakers.push(() => makeCharacter(
  31801. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31802. {
  31803. front: {
  31804. height: math.unit(9, "feet"),
  31805. weight: math.unit(120, "lb"),
  31806. name: "Front",
  31807. image: {
  31808. source: "./media/characters/sally/front.svg",
  31809. extra: 1506/1349,
  31810. bottom: 66/1572
  31811. }
  31812. },
  31813. },
  31814. [
  31815. {
  31816. name: "Normal",
  31817. height: math.unit(9, "feet"),
  31818. default: true
  31819. },
  31820. ]
  31821. ))
  31822. characterMakers.push(() => makeCharacter(
  31823. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31824. {
  31825. front: {
  31826. height: math.unit(8, "feet"),
  31827. weight: math.unit(900, "lb"),
  31828. name: "Front",
  31829. image: {
  31830. source: "./media/characters/owen/front.svg",
  31831. extra: 1761/1657,
  31832. bottom: 74/1835
  31833. }
  31834. },
  31835. side: {
  31836. height: math.unit(8, "feet"),
  31837. weight: math.unit(900, "lb"),
  31838. name: "Side",
  31839. image: {
  31840. source: "./media/characters/owen/side.svg",
  31841. extra: 1797/1734,
  31842. bottom: 30/1827
  31843. }
  31844. },
  31845. back: {
  31846. height: math.unit(8, "feet"),
  31847. weight: math.unit(900, "lb"),
  31848. name: "Back",
  31849. image: {
  31850. source: "./media/characters/owen/back.svg",
  31851. extra: 1796/1706,
  31852. bottom: 59/1855
  31853. }
  31854. },
  31855. maw: {
  31856. height: math.unit(1.76, "feet"),
  31857. name: "Maw",
  31858. image: {
  31859. source: "./media/characters/owen/maw.svg"
  31860. }
  31861. },
  31862. },
  31863. [
  31864. {
  31865. name: "Normal",
  31866. height: math.unit(8, "feet"),
  31867. default: true
  31868. },
  31869. ]
  31870. ))
  31871. characterMakers.push(() => makeCharacter(
  31872. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31873. {
  31874. front: {
  31875. height: math.unit(4, "feet"),
  31876. weight: math.unit(400, "lb"),
  31877. name: "Front",
  31878. image: {
  31879. source: "./media/characters/ryth/front.svg",
  31880. extra: 1920/1748,
  31881. bottom: 42/1962
  31882. }
  31883. },
  31884. back: {
  31885. height: math.unit(4, "feet"),
  31886. weight: math.unit(400, "lb"),
  31887. name: "Back",
  31888. image: {
  31889. source: "./media/characters/ryth/back.svg",
  31890. extra: 1897/1690,
  31891. bottom: 89/1986
  31892. }
  31893. },
  31894. mouth: {
  31895. height: math.unit(1.39, "feet"),
  31896. name: "Mouth",
  31897. image: {
  31898. source: "./media/characters/ryth/mouth.svg"
  31899. }
  31900. },
  31901. tailmaw: {
  31902. height: math.unit(1.23, "feet"),
  31903. name: "Tailmaw",
  31904. image: {
  31905. source: "./media/characters/ryth/tailmaw.svg"
  31906. }
  31907. },
  31908. goia: {
  31909. height: math.unit(12, "feet"),
  31910. weight: math.unit(10800, "lb"),
  31911. name: "Goia",
  31912. image: {
  31913. source: "./media/characters/ryth/goia.svg",
  31914. extra: 3450/3198,
  31915. bottom: 61/3511
  31916. }
  31917. },
  31918. },
  31919. [
  31920. {
  31921. name: "Normal",
  31922. height: math.unit(4, "feet"),
  31923. default: true
  31924. },
  31925. ]
  31926. ))
  31927. characterMakers.push(() => makeCharacter(
  31928. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31929. {
  31930. front: {
  31931. height: math.unit(7, "feet"),
  31932. weight: math.unit(180, "lb"),
  31933. name: "Front",
  31934. image: {
  31935. source: "./media/characters/necrolance/front.svg",
  31936. extra: 1062/947,
  31937. bottom: 41/1103
  31938. }
  31939. },
  31940. back: {
  31941. height: math.unit(7, "feet"),
  31942. weight: math.unit(180, "lb"),
  31943. name: "Back",
  31944. image: {
  31945. source: "./media/characters/necrolance/back.svg",
  31946. extra: 1045/984,
  31947. bottom: 14/1059
  31948. }
  31949. },
  31950. wing: {
  31951. height: math.unit(2.67, "feet"),
  31952. name: "Wing",
  31953. image: {
  31954. source: "./media/characters/necrolance/wing.svg"
  31955. }
  31956. },
  31957. },
  31958. [
  31959. {
  31960. name: "Normal",
  31961. height: math.unit(7, "feet"),
  31962. default: true
  31963. },
  31964. ]
  31965. ))
  31966. characterMakers.push(() => makeCharacter(
  31967. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31968. {
  31969. front: {
  31970. height: math.unit(76, "meters"),
  31971. weight: math.unit(30000, "tons"),
  31972. name: "Front",
  31973. image: {
  31974. source: "./media/characters/tyler/front.svg",
  31975. extra: 1640/1640,
  31976. bottom: 114/1754
  31977. }
  31978. },
  31979. },
  31980. [
  31981. {
  31982. name: "Macro",
  31983. height: math.unit(76, "meters"),
  31984. default: true
  31985. },
  31986. ]
  31987. ))
  31988. characterMakers.push(() => makeCharacter(
  31989. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31990. {
  31991. front: {
  31992. height: math.unit(4 + 11/12, "feet"),
  31993. weight: math.unit(132, "lb"),
  31994. name: "Front",
  31995. image: {
  31996. source: "./media/characters/icey/front.svg",
  31997. extra: 2750/2550,
  31998. bottom: 33/2783
  31999. }
  32000. },
  32001. back: {
  32002. height: math.unit(4 + 11/12, "feet"),
  32003. weight: math.unit(132, "lb"),
  32004. name: "Back",
  32005. image: {
  32006. source: "./media/characters/icey/back.svg",
  32007. extra: 2624/2481,
  32008. bottom: 35/2659
  32009. }
  32010. },
  32011. },
  32012. [
  32013. {
  32014. name: "Normal",
  32015. height: math.unit(4 + 11/12, "feet"),
  32016. default: true
  32017. },
  32018. ]
  32019. ))
  32020. characterMakers.push(() => makeCharacter(
  32021. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32022. {
  32023. front: {
  32024. height: math.unit(100, "feet"),
  32025. weight: math.unit(0, "lb"),
  32026. name: "Front",
  32027. image: {
  32028. source: "./media/characters/smile/front.svg",
  32029. extra: 2983/2912,
  32030. bottom: 162/3145
  32031. }
  32032. },
  32033. back: {
  32034. height: math.unit(100, "feet"),
  32035. weight: math.unit(0, "lb"),
  32036. name: "Back",
  32037. image: {
  32038. source: "./media/characters/smile/back.svg",
  32039. extra: 3143/3031,
  32040. bottom: 91/3234
  32041. }
  32042. },
  32043. head: {
  32044. height: math.unit(26.3, "feet"),
  32045. weight: math.unit(0, "lb"),
  32046. name: "Head",
  32047. image: {
  32048. source: "./media/characters/smile/head.svg"
  32049. }
  32050. },
  32051. collar: {
  32052. height: math.unit(5.3, "feet"),
  32053. weight: math.unit(0, "lb"),
  32054. name: "Collar",
  32055. image: {
  32056. source: "./media/characters/smile/collar.svg"
  32057. }
  32058. },
  32059. },
  32060. [
  32061. {
  32062. name: "Macro",
  32063. height: math.unit(100, "feet"),
  32064. default: true
  32065. },
  32066. ]
  32067. ))
  32068. characterMakers.push(() => makeCharacter(
  32069. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32070. {
  32071. dragon: {
  32072. height: math.unit(26, "feet"),
  32073. weight: math.unit(36, "tons"),
  32074. name: "Dragon",
  32075. image: {
  32076. source: "./media/characters/arimphae/dragon.svg",
  32077. extra: 1574/983,
  32078. bottom: 357/1931
  32079. }
  32080. },
  32081. drake: {
  32082. height: math.unit(9, "feet"),
  32083. weight: math.unit(1.5, "tons"),
  32084. name: "Drake",
  32085. image: {
  32086. source: "./media/characters/arimphae/drake.svg",
  32087. extra: 1120/925,
  32088. bottom: 435/1555
  32089. }
  32090. },
  32091. },
  32092. [
  32093. {
  32094. name: "Small",
  32095. height: math.unit(26*5/9, "feet")
  32096. },
  32097. {
  32098. name: "Normal",
  32099. height: math.unit(26, "feet"),
  32100. default: true
  32101. },
  32102. ]
  32103. ))
  32104. characterMakers.push(() => makeCharacter(
  32105. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32106. {
  32107. front: {
  32108. height: math.unit(8 + 9/12, "feet"),
  32109. name: "Front",
  32110. image: {
  32111. source: "./media/characters/xander/front.svg",
  32112. extra: 848/673,
  32113. bottom: 62/910
  32114. }
  32115. },
  32116. },
  32117. [
  32118. {
  32119. name: "Normal",
  32120. height: math.unit(8 + 9/12, "feet"),
  32121. default: true
  32122. },
  32123. {
  32124. name: "Gaze Grabber",
  32125. height: math.unit(13 + 8/12, "feet")
  32126. },
  32127. {
  32128. name: "Jaw Dropper",
  32129. height: math.unit(27, "feet")
  32130. },
  32131. {
  32132. name: "Show Stopper",
  32133. height: math.unit(136, "feet")
  32134. },
  32135. {
  32136. name: "Superstar",
  32137. height: math.unit(1.9e6, "miles")
  32138. },
  32139. ]
  32140. ))
  32141. characterMakers.push(() => makeCharacter(
  32142. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32143. {
  32144. side: {
  32145. height: math.unit(2100, "feet"),
  32146. name: "Side",
  32147. image: {
  32148. source: "./media/characters/osiris/side.svg",
  32149. extra: 1105/939,
  32150. bottom: 167/1272
  32151. }
  32152. },
  32153. },
  32154. [
  32155. {
  32156. name: "Macro",
  32157. height: math.unit(2100, "feet"),
  32158. default: true
  32159. },
  32160. ]
  32161. ))
  32162. characterMakers.push(() => makeCharacter(
  32163. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32164. {
  32165. front: {
  32166. height: math.unit(6 + 8/12, "feet"),
  32167. weight: math.unit(225, "lb"),
  32168. name: "Front",
  32169. image: {
  32170. source: "./media/characters/rhys-londe/front.svg",
  32171. extra: 2258/2141,
  32172. bottom: 188/2446
  32173. }
  32174. },
  32175. back: {
  32176. height: math.unit(6 + 8/12, "feet"),
  32177. weight: math.unit(225, "lb"),
  32178. name: "Back",
  32179. image: {
  32180. source: "./media/characters/rhys-londe/back.svg",
  32181. extra: 2237/2137,
  32182. bottom: 63/2300
  32183. }
  32184. },
  32185. frontNsfw: {
  32186. height: math.unit(6 + 8/12, "feet"),
  32187. weight: math.unit(225, "lb"),
  32188. name: "Front (NSFW)",
  32189. image: {
  32190. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32191. extra: 2258/2141,
  32192. bottom: 188/2446
  32193. }
  32194. },
  32195. backNsfw: {
  32196. height: math.unit(6 + 8/12, "feet"),
  32197. weight: math.unit(225, "lb"),
  32198. name: "Back (NSFW)",
  32199. image: {
  32200. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32201. extra: 2237/2137,
  32202. bottom: 63/2300
  32203. }
  32204. },
  32205. dick: {
  32206. height: math.unit(30, "inches"),
  32207. name: "Dick",
  32208. image: {
  32209. source: "./media/characters/rhys-londe/dick.svg"
  32210. }
  32211. },
  32212. maw: {
  32213. height: math.unit(1.6, "feet"),
  32214. name: "Maw",
  32215. image: {
  32216. source: "./media/characters/rhys-londe/maw.svg"
  32217. }
  32218. },
  32219. },
  32220. [
  32221. {
  32222. name: "Normal",
  32223. height: math.unit(6 + 8/12, "feet"),
  32224. default: true
  32225. },
  32226. ]
  32227. ))
  32228. characterMakers.push(() => makeCharacter(
  32229. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32230. {
  32231. front: {
  32232. height: math.unit(3 + 10/12, "feet"),
  32233. weight: math.unit(90, "lb"),
  32234. name: "Front",
  32235. image: {
  32236. source: "./media/characters/taivas-ensim/front.svg",
  32237. extra: 1327/1216,
  32238. bottom: 96/1423
  32239. }
  32240. },
  32241. back: {
  32242. height: math.unit(3 + 10/12, "feet"),
  32243. weight: math.unit(90, "lb"),
  32244. name: "Back",
  32245. image: {
  32246. source: "./media/characters/taivas-ensim/back.svg",
  32247. extra: 1355/1247,
  32248. bottom: 11/1366
  32249. }
  32250. },
  32251. frontNsfw: {
  32252. height: math.unit(3 + 10/12, "feet"),
  32253. weight: math.unit(90, "lb"),
  32254. name: "Front (NSFW)",
  32255. image: {
  32256. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32257. extra: 1327/1216,
  32258. bottom: 96/1423
  32259. }
  32260. },
  32261. backNsfw: {
  32262. height: math.unit(3 + 10/12, "feet"),
  32263. weight: math.unit(90, "lb"),
  32264. name: "Back (NSFW)",
  32265. image: {
  32266. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32267. extra: 1355/1247,
  32268. bottom: 11/1366
  32269. }
  32270. },
  32271. },
  32272. [
  32273. {
  32274. name: "Normal",
  32275. height: math.unit(3 + 10/12, "feet"),
  32276. default: true
  32277. },
  32278. ]
  32279. ))
  32280. characterMakers.push(() => makeCharacter(
  32281. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32282. {
  32283. front: {
  32284. height: math.unit(9 + 6/12, "feet"),
  32285. weight: math.unit(940, "lb"),
  32286. name: "Front",
  32287. image: {
  32288. source: "./media/characters/byliss/front.svg",
  32289. extra: 1327/1290,
  32290. bottom: 82/1409
  32291. }
  32292. },
  32293. back: {
  32294. height: math.unit(9 + 6/12, "feet"),
  32295. weight: math.unit(940, "lb"),
  32296. name: "Back",
  32297. image: {
  32298. source: "./media/characters/byliss/back.svg",
  32299. extra: 1376/1349,
  32300. bottom: 9/1385
  32301. }
  32302. },
  32303. frontNsfw: {
  32304. height: math.unit(9 + 6/12, "feet"),
  32305. weight: math.unit(940, "lb"),
  32306. name: "Front (NSFW)",
  32307. image: {
  32308. source: "./media/characters/byliss/front-nsfw.svg",
  32309. extra: 1327/1290,
  32310. bottom: 82/1409
  32311. }
  32312. },
  32313. backNsfw: {
  32314. height: math.unit(9 + 6/12, "feet"),
  32315. weight: math.unit(940, "lb"),
  32316. name: "Back (NSFW)",
  32317. image: {
  32318. source: "./media/characters/byliss/back-nsfw.svg",
  32319. extra: 1376/1349,
  32320. bottom: 9/1385
  32321. }
  32322. },
  32323. },
  32324. [
  32325. {
  32326. name: "Normal",
  32327. height: math.unit(9 + 6/12, "feet"),
  32328. default: true
  32329. },
  32330. ]
  32331. ))
  32332. characterMakers.push(() => makeCharacter(
  32333. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32334. {
  32335. front: {
  32336. height: math.unit(5 + 2/12, "feet"),
  32337. weight: math.unit(200, "lb"),
  32338. name: "Front",
  32339. image: {
  32340. source: "./media/characters/noraly/front.svg",
  32341. extra: 4985/4773,
  32342. bottom: 150/5135
  32343. }
  32344. },
  32345. full: {
  32346. height: math.unit(5 + 2/12, "feet"),
  32347. weight: math.unit(164, "lb"),
  32348. name: "Full",
  32349. image: {
  32350. source: "./media/characters/noraly/full.svg",
  32351. extra: 1114/1059,
  32352. bottom: 35/1149
  32353. }
  32354. },
  32355. fuller: {
  32356. height: math.unit(5 + 2/12, "feet"),
  32357. weight: math.unit(230, "lb"),
  32358. name: "Fuller",
  32359. image: {
  32360. source: "./media/characters/noraly/fuller.svg",
  32361. extra: 1114/1059,
  32362. bottom: 35/1149
  32363. }
  32364. },
  32365. fullest: {
  32366. height: math.unit(5 + 2/12, "feet"),
  32367. weight: math.unit(300, "lb"),
  32368. name: "Fullest",
  32369. image: {
  32370. source: "./media/characters/noraly/fullest.svg",
  32371. extra: 1114/1059,
  32372. bottom: 35/1149
  32373. }
  32374. },
  32375. },
  32376. [
  32377. {
  32378. name: "Normal",
  32379. height: math.unit(5 + 2/12, "feet"),
  32380. default: true
  32381. },
  32382. ]
  32383. ))
  32384. characterMakers.push(() => makeCharacter(
  32385. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32386. {
  32387. front: {
  32388. height: math.unit(5 + 2/12, "feet"),
  32389. weight: math.unit(210, "lb"),
  32390. name: "Front",
  32391. image: {
  32392. source: "./media/characters/pera/front.svg",
  32393. extra: 1560/1531,
  32394. bottom: 165/1725
  32395. }
  32396. },
  32397. back: {
  32398. height: math.unit(5 + 2/12, "feet"),
  32399. weight: math.unit(210, "lb"),
  32400. name: "Back",
  32401. image: {
  32402. source: "./media/characters/pera/back.svg",
  32403. extra: 1523/1493,
  32404. bottom: 152/1675
  32405. }
  32406. },
  32407. dick: {
  32408. height: math.unit(2.4, "feet"),
  32409. name: "Dick",
  32410. image: {
  32411. source: "./media/characters/pera/dick.svg"
  32412. }
  32413. },
  32414. },
  32415. [
  32416. {
  32417. name: "Normal",
  32418. height: math.unit(5 + 2/12, "feet"),
  32419. default: true
  32420. },
  32421. ]
  32422. ))
  32423. characterMakers.push(() => makeCharacter(
  32424. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32425. {
  32426. front: {
  32427. height: math.unit(12, "feet"),
  32428. weight: math.unit(3200, "lb"),
  32429. name: "Front",
  32430. image: {
  32431. source: "./media/characters/julian/front.svg",
  32432. extra: 2962/2701,
  32433. bottom: 184/3146
  32434. }
  32435. },
  32436. maw: {
  32437. height: math.unit(5.35, "feet"),
  32438. name: "Maw",
  32439. image: {
  32440. source: "./media/characters/julian/maw.svg"
  32441. }
  32442. },
  32443. paw: {
  32444. height: math.unit(3.07, "feet"),
  32445. name: "Paw",
  32446. image: {
  32447. source: "./media/characters/julian/paw.svg"
  32448. }
  32449. },
  32450. },
  32451. [
  32452. {
  32453. name: "Default",
  32454. height: math.unit(12, "feet"),
  32455. default: true
  32456. },
  32457. {
  32458. name: "Big",
  32459. height: math.unit(50, "feet")
  32460. },
  32461. {
  32462. name: "Really Big",
  32463. height: math.unit(1, "mile")
  32464. },
  32465. {
  32466. name: "Extremely Big",
  32467. height: math.unit(100, "miles")
  32468. },
  32469. {
  32470. name: "Planet Hugger",
  32471. height: math.unit(200, "megameters")
  32472. },
  32473. {
  32474. name: "Unreasonably Big",
  32475. height: math.unit(1e300, "meters")
  32476. },
  32477. ]
  32478. ))
  32479. characterMakers.push(() => makeCharacter(
  32480. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32481. {
  32482. solgooleo: {
  32483. height: math.unit(4, "meters"),
  32484. weight: math.unit(6000*1.5, "kg"),
  32485. volume: math.unit(6000, "liters"),
  32486. name: "Solgooleo",
  32487. image: {
  32488. source: "./media/characters/pi/solgooleo.svg",
  32489. extra: 388/331,
  32490. bottom: 29/417
  32491. }
  32492. },
  32493. },
  32494. [
  32495. {
  32496. name: "Normal",
  32497. height: math.unit(4, "meters"),
  32498. default: true
  32499. },
  32500. ]
  32501. ))
  32502. characterMakers.push(() => makeCharacter(
  32503. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32504. {
  32505. front: {
  32506. height: math.unit(8 + 2/12, "feet"),
  32507. weight: math.unit(4, "tons"),
  32508. name: "Front",
  32509. image: {
  32510. source: "./media/characters/shaun/front.svg",
  32511. extra: 1550/1505,
  32512. bottom: 353/1903
  32513. }
  32514. },
  32515. },
  32516. [
  32517. {
  32518. name: "Lorg",
  32519. height: math.unit(8 + 2/12, "feet"),
  32520. default: true
  32521. },
  32522. ]
  32523. ))
  32524. characterMakers.push(() => makeCharacter(
  32525. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32526. {
  32527. front: {
  32528. height: math.unit(7, "feet"),
  32529. name: "Front",
  32530. image: {
  32531. source: "./media/characters/sini/front.svg",
  32532. extra: 726/678,
  32533. bottom: 35/761
  32534. }
  32535. },
  32536. back: {
  32537. height: math.unit(7, "feet"),
  32538. name: "Back",
  32539. image: {
  32540. source: "./media/characters/sini/back.svg",
  32541. extra: 743/701,
  32542. bottom: 12/755
  32543. }
  32544. },
  32545. mawAnthro: {
  32546. height: math.unit(2.14, "feet"),
  32547. name: "Maw (Anthro)",
  32548. image: {
  32549. source: "./media/characters/sini/maw-anthro.svg"
  32550. }
  32551. },
  32552. dick: {
  32553. height: math.unit(1.45, "feet"),
  32554. name: "Dick (Anthro)",
  32555. image: {
  32556. source: "./media/characters/sini/dick-anthro.svg"
  32557. }
  32558. },
  32559. feral: {
  32560. height: math.unit(16, "feet"),
  32561. name: "Feral",
  32562. image: {
  32563. source: "./media/characters/sini/feral.svg",
  32564. extra: 814/605,
  32565. bottom: 11/825
  32566. }
  32567. },
  32568. mawFeral: {
  32569. height: math.unit(5.66, "feet"),
  32570. name: "Maw-feral",
  32571. image: {
  32572. source: "./media/characters/sini/maw-feral.svg"
  32573. }
  32574. },
  32575. footFeral: {
  32576. height: math.unit(5.17, "feet"),
  32577. name: "Foot-feral",
  32578. image: {
  32579. source: "./media/characters/sini/foot-feral.svg"
  32580. }
  32581. },
  32582. },
  32583. [
  32584. {
  32585. name: "Normal",
  32586. height: math.unit(7, "feet"),
  32587. default: true
  32588. },
  32589. ]
  32590. ))
  32591. characterMakers.push(() => makeCharacter(
  32592. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32593. {
  32594. side: {
  32595. height: math.unit(13, "meters"),
  32596. weight: math.unit(9072, "kg"),
  32597. name: "Side",
  32598. image: {
  32599. source: "./media/characters/raylldo/side.svg",
  32600. extra: 403/344,
  32601. bottom: 42/445
  32602. }
  32603. },
  32604. leaping: {
  32605. height: math.unit(12.3, "meters"),
  32606. weight: math.unit(9072, "kg"),
  32607. name: "Leaping",
  32608. image: {
  32609. source: "./media/characters/raylldo/leaping.svg",
  32610. extra: 470/249,
  32611. bottom: 13/483
  32612. }
  32613. },
  32614. flying: {
  32615. height: math.unit(18, "meters"),
  32616. weight: math.unit(9072, "kg"),
  32617. name: "Flying",
  32618. image: {
  32619. source: "./media/characters/raylldo/flying.svg"
  32620. }
  32621. },
  32622. head: {
  32623. height: math.unit(5.85, "meters"),
  32624. name: "Head",
  32625. image: {
  32626. source: "./media/characters/raylldo/head.svg"
  32627. }
  32628. },
  32629. maw: {
  32630. height: math.unit(5.32, "meters"),
  32631. name: "Maw",
  32632. image: {
  32633. source: "./media/characters/raylldo/maw.svg"
  32634. }
  32635. },
  32636. eye: {
  32637. height: math.unit(0.54, "meters"),
  32638. name: "Eye",
  32639. image: {
  32640. source: "./media/characters/raylldo/eye.svg"
  32641. }
  32642. },
  32643. },
  32644. [
  32645. {
  32646. name: "Normal",
  32647. height: math.unit(13, "meters"),
  32648. default: true
  32649. },
  32650. ]
  32651. ))
  32652. characterMakers.push(() => makeCharacter(
  32653. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32654. {
  32655. anthroFront: {
  32656. height: math.unit(9, "feet"),
  32657. weight: math.unit(600, "lb"),
  32658. name: "Anthro (Front)",
  32659. image: {
  32660. source: "./media/characters/glint/anthro-front.svg",
  32661. extra: 1097/1018,
  32662. bottom: 28/1125
  32663. }
  32664. },
  32665. anthroBack: {
  32666. height: math.unit(9, "feet"),
  32667. weight: math.unit(600, "lb"),
  32668. name: "Anthro (Back)",
  32669. image: {
  32670. source: "./media/characters/glint/anthro-back.svg",
  32671. extra: 1154/997,
  32672. bottom: 36/1190
  32673. }
  32674. },
  32675. feral: {
  32676. height: math.unit(11, "feet"),
  32677. weight: math.unit(50000, "lb"),
  32678. name: "Feral",
  32679. image: {
  32680. source: "./media/characters/glint/feral.svg",
  32681. extra: 3035/1585,
  32682. bottom: 1169/4204
  32683. }
  32684. },
  32685. dickAnthro: {
  32686. height: math.unit(0.7, "meters"),
  32687. name: "Dick (Anthro)",
  32688. image: {
  32689. source: "./media/characters/glint/dick-anthro.svg"
  32690. }
  32691. },
  32692. dickFeral: {
  32693. height: math.unit(2.65, "meters"),
  32694. name: "Dick (Feral)",
  32695. image: {
  32696. source: "./media/characters/glint/dick-feral.svg"
  32697. }
  32698. },
  32699. slitHidden: {
  32700. height: math.unit(5.85, "meters"),
  32701. name: "Slit (Hidden)",
  32702. image: {
  32703. source: "./media/characters/glint/slit-hidden.svg"
  32704. }
  32705. },
  32706. slitErect: {
  32707. height: math.unit(5.85, "meters"),
  32708. name: "Slit (Erect)",
  32709. image: {
  32710. source: "./media/characters/glint/slit-erect.svg"
  32711. }
  32712. },
  32713. mawAnthro: {
  32714. height: math.unit(0.63, "meters"),
  32715. name: "Maw (Anthro)",
  32716. image: {
  32717. source: "./media/characters/glint/maw.svg"
  32718. }
  32719. },
  32720. mawFeral: {
  32721. height: math.unit(2.89, "meters"),
  32722. name: "Maw (Feral)",
  32723. image: {
  32724. source: "./media/characters/glint/maw.svg"
  32725. }
  32726. },
  32727. },
  32728. [
  32729. {
  32730. name: "Normal",
  32731. height: math.unit(9, "feet"),
  32732. default: true
  32733. },
  32734. ]
  32735. ))
  32736. characterMakers.push(() => makeCharacter(
  32737. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32738. {
  32739. side: {
  32740. height: math.unit(15, "feet"),
  32741. weight: math.unit(5000, "kg"),
  32742. name: "Side",
  32743. image: {
  32744. source: "./media/characters/kairne/side.svg",
  32745. extra: 979/811,
  32746. bottom: 13/992
  32747. }
  32748. },
  32749. front: {
  32750. height: math.unit(15, "feet"),
  32751. weight: math.unit(5000, "kg"),
  32752. name: "Front",
  32753. image: {
  32754. source: "./media/characters/kairne/front.svg",
  32755. extra: 908/814,
  32756. bottom: 26/934
  32757. }
  32758. },
  32759. sideNsfw: {
  32760. height: math.unit(15, "feet"),
  32761. weight: math.unit(5000, "kg"),
  32762. name: "Side (NSFW)",
  32763. image: {
  32764. source: "./media/characters/kairne/side-nsfw.svg",
  32765. extra: 979/811,
  32766. bottom: 13/992
  32767. }
  32768. },
  32769. frontNsfw: {
  32770. height: math.unit(15, "feet"),
  32771. weight: math.unit(5000, "kg"),
  32772. name: "Front (NSFW)",
  32773. image: {
  32774. source: "./media/characters/kairne/front-nsfw.svg",
  32775. extra: 908/814,
  32776. bottom: 26/934
  32777. }
  32778. },
  32779. dickCaged: {
  32780. height: math.unit(0.65, "meters"),
  32781. name: "Dick-caged",
  32782. image: {
  32783. source: "./media/characters/kairne/dick-caged.svg"
  32784. }
  32785. },
  32786. dick: {
  32787. height: math.unit(0.79, "meters"),
  32788. name: "Dick",
  32789. image: {
  32790. source: "./media/characters/kairne/dick.svg"
  32791. }
  32792. },
  32793. genitals: {
  32794. height: math.unit(1.29, "meters"),
  32795. name: "Genitals",
  32796. image: {
  32797. source: "./media/characters/kairne/genitals.svg"
  32798. }
  32799. },
  32800. maw: {
  32801. height: math.unit(1.73, "meters"),
  32802. name: "Maw",
  32803. image: {
  32804. source: "./media/characters/kairne/maw.svg"
  32805. }
  32806. },
  32807. },
  32808. [
  32809. {
  32810. name: "Normal",
  32811. height: math.unit(15, "feet"),
  32812. default: true
  32813. },
  32814. ]
  32815. ))
  32816. characterMakers.push(() => makeCharacter(
  32817. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32818. {
  32819. front: {
  32820. height: math.unit(5 + 8/12, "feet"),
  32821. weight: math.unit(139, "lb"),
  32822. name: "Front",
  32823. image: {
  32824. source: "./media/characters/biscuit-jackal/front.svg",
  32825. extra: 2106/1961,
  32826. bottom: 58/2164
  32827. }
  32828. },
  32829. back: {
  32830. height: math.unit(5 + 8/12, "feet"),
  32831. weight: math.unit(139, "lb"),
  32832. name: "Back",
  32833. image: {
  32834. source: "./media/characters/biscuit-jackal/back.svg",
  32835. extra: 2132/1976,
  32836. bottom: 57/2189
  32837. }
  32838. },
  32839. werejackal: {
  32840. height: math.unit(6 + 3/12, "feet"),
  32841. weight: math.unit(188, "lb"),
  32842. name: "Werejackal",
  32843. image: {
  32844. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32845. extra: 2373/2178,
  32846. bottom: 53/2426
  32847. }
  32848. },
  32849. },
  32850. [
  32851. {
  32852. name: "Normal",
  32853. height: math.unit(5 + 8/12, "feet"),
  32854. default: true
  32855. },
  32856. ]
  32857. ))
  32858. characterMakers.push(() => makeCharacter(
  32859. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32860. {
  32861. front: {
  32862. height: math.unit(140, "cm"),
  32863. weight: math.unit(45, "kg"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/tayra-white/front.svg",
  32867. extra: 2229/2192,
  32868. bottom: 75/2304
  32869. }
  32870. },
  32871. },
  32872. [
  32873. {
  32874. name: "Normal",
  32875. height: math.unit(140, "cm"),
  32876. default: true
  32877. },
  32878. ]
  32879. ))
  32880. characterMakers.push(() => makeCharacter(
  32881. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32882. {
  32883. front: {
  32884. height: math.unit(4 + 5/12, "feet"),
  32885. name: "Front",
  32886. image: {
  32887. source: "./media/characters/scoop/front.svg",
  32888. extra: 1257/1136,
  32889. bottom: 69/1326
  32890. }
  32891. },
  32892. back: {
  32893. height: math.unit(4 + 5/12, "feet"),
  32894. name: "Back",
  32895. image: {
  32896. source: "./media/characters/scoop/back.svg",
  32897. extra: 1321/1152,
  32898. bottom: 32/1353
  32899. }
  32900. },
  32901. maw: {
  32902. height: math.unit(0.68, "feet"),
  32903. name: "Maw",
  32904. image: {
  32905. source: "./media/characters/scoop/maw.svg"
  32906. }
  32907. },
  32908. },
  32909. [
  32910. {
  32911. name: "Really Small",
  32912. height: math.unit(1, "mm")
  32913. },
  32914. {
  32915. name: "Micro",
  32916. height: math.unit(1, "inch")
  32917. },
  32918. {
  32919. name: "Normal",
  32920. height: math.unit(4 + 5/12, "feet"),
  32921. default: true
  32922. },
  32923. {
  32924. name: "Macro",
  32925. height: math.unit(200, "feet")
  32926. },
  32927. {
  32928. name: "Megamacro",
  32929. height: math.unit(3240, "feet")
  32930. },
  32931. {
  32932. name: "Teramacro",
  32933. height: math.unit(2500, "miles")
  32934. },
  32935. ]
  32936. ))
  32937. characterMakers.push(() => makeCharacter(
  32938. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32939. {
  32940. front: {
  32941. height: math.unit(15 + 7/12, "feet"),
  32942. name: "Front",
  32943. image: {
  32944. source: "./media/characters/saphinara/front.svg",
  32945. extra: 604/546,
  32946. bottom: 19/623
  32947. }
  32948. },
  32949. side: {
  32950. height: math.unit(15 + 7/12, "feet"),
  32951. name: "Side",
  32952. image: {
  32953. source: "./media/characters/saphinara/side.svg",
  32954. extra: 605/547,
  32955. bottom: 6/611
  32956. }
  32957. },
  32958. back: {
  32959. height: math.unit(15 + 7/12, "feet"),
  32960. name: "Back",
  32961. image: {
  32962. source: "./media/characters/saphinara/back.svg",
  32963. extra: 591/531,
  32964. bottom: 13/604
  32965. }
  32966. },
  32967. frontTail: {
  32968. height: math.unit(15 + 7/12, "feet"),
  32969. name: "Front (Full Tail)",
  32970. image: {
  32971. source: "./media/characters/saphinara/front-tail.svg",
  32972. extra: 748/547,
  32973. bottom: 66/814
  32974. }
  32975. },
  32976. },
  32977. [
  32978. {
  32979. name: "Normal",
  32980. height: math.unit(15 + 7/12, "feet"),
  32981. default: true
  32982. },
  32983. {
  32984. name: "Angry",
  32985. height: math.unit(30 + 6/12, "feet")
  32986. },
  32987. {
  32988. name: "Enraged",
  32989. height: math.unit(102 + 1/12, "feet")
  32990. },
  32991. ]
  32992. ))
  32993. characterMakers.push(() => makeCharacter(
  32994. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32995. {
  32996. front: {
  32997. height: math.unit(6 + 8/12, "feet"),
  32998. weight: math.unit(300, "lb"),
  32999. name: "Front",
  33000. image: {
  33001. source: "./media/characters/jrain/front.svg",
  33002. extra: 3039/2865,
  33003. bottom: 399/3438
  33004. }
  33005. },
  33006. back: {
  33007. height: math.unit(6 + 8/12, "feet"),
  33008. weight: math.unit(300, "lb"),
  33009. name: "Back",
  33010. image: {
  33011. source: "./media/characters/jrain/back.svg",
  33012. extra: 3089/2938,
  33013. bottom: 172/3261
  33014. }
  33015. },
  33016. head: {
  33017. height: math.unit(2.14, "feet"),
  33018. name: "Head",
  33019. image: {
  33020. source: "./media/characters/jrain/head.svg"
  33021. }
  33022. },
  33023. maw: {
  33024. height: math.unit(1.77, "feet"),
  33025. name: "Maw",
  33026. image: {
  33027. source: "./media/characters/jrain/maw.svg"
  33028. }
  33029. },
  33030. leftHand: {
  33031. height: math.unit(1.1, "feet"),
  33032. name: "Left Hand",
  33033. image: {
  33034. source: "./media/characters/jrain/left-hand.svg"
  33035. }
  33036. },
  33037. rightHand: {
  33038. height: math.unit(1.1, "feet"),
  33039. name: "Right Hand",
  33040. image: {
  33041. source: "./media/characters/jrain/right-hand.svg"
  33042. }
  33043. },
  33044. eye: {
  33045. height: math.unit(0.35, "feet"),
  33046. name: "Eye",
  33047. image: {
  33048. source: "./media/characters/jrain/eye.svg"
  33049. }
  33050. },
  33051. },
  33052. [
  33053. {
  33054. name: "Normal",
  33055. height: math.unit(6 + 8/12, "feet"),
  33056. default: true
  33057. },
  33058. {
  33059. name: "Casually Large",
  33060. height: math.unit(25, "feet")
  33061. },
  33062. {
  33063. name: "Giant",
  33064. height: math.unit(100, "feet")
  33065. },
  33066. {
  33067. name: "Kaiju",
  33068. height: math.unit(300, "feet")
  33069. },
  33070. ]
  33071. ))
  33072. characterMakers.push(() => makeCharacter(
  33073. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33074. {
  33075. dragon: {
  33076. height: math.unit(5, "meters"),
  33077. name: "Dragon",
  33078. image: {
  33079. source: "./media/characters/sabrina/dragon.svg",
  33080. extra: 3670 / 2365,
  33081. bottom: 333 / 4003
  33082. }
  33083. },
  33084. gryphon: {
  33085. height: math.unit(3, "meters"),
  33086. name: "Gryphon",
  33087. image: {
  33088. source: "./media/characters/sabrina/gryphon.svg",
  33089. extra: 1576 / 945,
  33090. bottom: 71 / 1647
  33091. }
  33092. },
  33093. snake: {
  33094. height: math.unit(12, "meters"),
  33095. name: "Snake",
  33096. image: {
  33097. source: "./media/characters/sabrina/snake.svg",
  33098. extra: 1758 / 1320,
  33099. bottom: 186 / 1944
  33100. }
  33101. },
  33102. collar: {
  33103. height: math.unit(1.86, "meters"),
  33104. name: "Collar",
  33105. image: {
  33106. source: "./media/characters/sabrina/collar.svg"
  33107. }
  33108. },
  33109. eye: {
  33110. height: math.unit(0.53, "meters"),
  33111. name: "Eye",
  33112. image: {
  33113. source: "./media/characters/sabrina/eye.svg"
  33114. }
  33115. },
  33116. foot: {
  33117. height: math.unit(1.86, "meters"),
  33118. name: "Foot",
  33119. image: {
  33120. source: "./media/characters/sabrina/foot.svg"
  33121. }
  33122. },
  33123. hand: {
  33124. height: math.unit(1.32, "meters"),
  33125. name: "Hand",
  33126. image: {
  33127. source: "./media/characters/sabrina/hand.svg"
  33128. }
  33129. },
  33130. head: {
  33131. height: math.unit(2.44, "meters"),
  33132. name: "Head",
  33133. image: {
  33134. source: "./media/characters/sabrina/head.svg"
  33135. }
  33136. },
  33137. headAngry: {
  33138. height: math.unit(2.44, "meters"),
  33139. name: "Head (Angry))",
  33140. image: {
  33141. source: "./media/characters/sabrina/head-angry.svg"
  33142. }
  33143. },
  33144. maw: {
  33145. height: math.unit(1.65, "meters"),
  33146. name: "Maw",
  33147. image: {
  33148. source: "./media/characters/sabrina/maw.svg"
  33149. }
  33150. },
  33151. spikes: {
  33152. height: math.unit(1.69, "meters"),
  33153. name: "Spikes",
  33154. image: {
  33155. source: "./media/characters/sabrina/spikes.svg"
  33156. }
  33157. },
  33158. stomach: {
  33159. height: math.unit(1.15, "meters"),
  33160. name: "Stomach",
  33161. image: {
  33162. source: "./media/characters/sabrina/stomach.svg"
  33163. }
  33164. },
  33165. tongue: {
  33166. height: math.unit(1.27, "meters"),
  33167. name: "Tongue",
  33168. image: {
  33169. source: "./media/characters/sabrina/tongue.svg"
  33170. }
  33171. },
  33172. wingDorsal: {
  33173. height: math.unit(4.85, "meters"),
  33174. name: "Wing (Dorsal)",
  33175. image: {
  33176. source: "./media/characters/sabrina/wing-dorsal.svg"
  33177. }
  33178. },
  33179. wingVentral: {
  33180. height: math.unit(4.85, "meters"),
  33181. name: "Wing (Ventral)",
  33182. image: {
  33183. source: "./media/characters/sabrina/wing-ventral.svg"
  33184. }
  33185. },
  33186. },
  33187. [
  33188. {
  33189. name: "Normal",
  33190. height: math.unit(5, "meters"),
  33191. default: true
  33192. },
  33193. ]
  33194. ))
  33195. characterMakers.push(() => makeCharacter(
  33196. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33197. {
  33198. frontMaid: {
  33199. height: math.unit(5 + 5/12, "feet"),
  33200. weight: math.unit(130, "lb"),
  33201. name: "Front (Maid)",
  33202. image: {
  33203. source: "./media/characters/midnight-tales/front-maid.svg",
  33204. extra: 489/454,
  33205. bottom: 61/550
  33206. }
  33207. },
  33208. frontFormal: {
  33209. height: math.unit(5 + 5/12, "feet"),
  33210. weight: math.unit(130, "lb"),
  33211. name: "Front (Formal)",
  33212. image: {
  33213. source: "./media/characters/midnight-tales/front-formal.svg",
  33214. extra: 489/454,
  33215. bottom: 61/550
  33216. }
  33217. },
  33218. back: {
  33219. height: math.unit(5 + 5/12, "feet"),
  33220. weight: math.unit(130, "lb"),
  33221. name: "Back",
  33222. image: {
  33223. source: "./media/characters/midnight-tales/back.svg",
  33224. extra: 498/456,
  33225. bottom: 33/531
  33226. }
  33227. },
  33228. frontBeast: {
  33229. height: math.unit(40, "feet"),
  33230. weight: math.unit(64000, "lb"),
  33231. name: "Front (Beast)",
  33232. image: {
  33233. source: "./media/characters/midnight-tales/front-beast.svg",
  33234. extra: 927/860,
  33235. bottom: 53/980
  33236. }
  33237. },
  33238. backBeast: {
  33239. height: math.unit(40, "feet"),
  33240. weight: math.unit(64000, "lb"),
  33241. name: "Back (Beast)",
  33242. image: {
  33243. source: "./media/characters/midnight-tales/back-beast.svg",
  33244. extra: 929/855,
  33245. bottom: 16/945
  33246. }
  33247. },
  33248. footBeast: {
  33249. height: math.unit(6.7, "feet"),
  33250. name: "Foot (Beast)",
  33251. image: {
  33252. source: "./media/characters/midnight-tales/foot-beast.svg"
  33253. }
  33254. },
  33255. headBeast: {
  33256. height: math.unit(8, "feet"),
  33257. name: "Head (Beast)",
  33258. image: {
  33259. source: "./media/characters/midnight-tales/head-beast.svg"
  33260. }
  33261. },
  33262. },
  33263. [
  33264. {
  33265. name: "Normal",
  33266. height: math.unit(5 + 5 / 12, "feet"),
  33267. default: true
  33268. },
  33269. {
  33270. name: "Macro",
  33271. height: math.unit(25, "feet")
  33272. },
  33273. ]
  33274. ))
  33275. characterMakers.push(() => makeCharacter(
  33276. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33277. {
  33278. front: {
  33279. height: math.unit(5 + 10/12, "feet"),
  33280. name: "Front",
  33281. image: {
  33282. source: "./media/characters/argon/front.svg",
  33283. extra: 2009/1935,
  33284. bottom: 118/2127
  33285. }
  33286. },
  33287. back: {
  33288. height: math.unit(5 + 10/12, "feet"),
  33289. name: "Back",
  33290. image: {
  33291. source: "./media/characters/argon/back.svg",
  33292. extra: 2047/1992,
  33293. bottom: 20/2067
  33294. }
  33295. },
  33296. frontDressed: {
  33297. height: math.unit(5 + 10/12, "feet"),
  33298. name: "Front (Dressed)",
  33299. image: {
  33300. source: "./media/characters/argon/front-dressed.svg",
  33301. extra: 2009/1935,
  33302. bottom: 118/2127
  33303. }
  33304. },
  33305. },
  33306. [
  33307. {
  33308. name: "Normal",
  33309. height: math.unit(5 + 10/12, "feet"),
  33310. default: true
  33311. },
  33312. ]
  33313. ))
  33314. characterMakers.push(() => makeCharacter(
  33315. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33316. {
  33317. front: {
  33318. height: math.unit(8 + 6/12, "feet"),
  33319. weight: math.unit(1150, "lb"),
  33320. name: "Front",
  33321. image: {
  33322. source: "./media/characters/kichi/front.svg",
  33323. extra: 1267/1164,
  33324. bottom: 61/1328
  33325. }
  33326. },
  33327. back: {
  33328. height: math.unit(8 + 6/12, "feet"),
  33329. weight: math.unit(1150, "lb"),
  33330. name: "Back",
  33331. image: {
  33332. source: "./media/characters/kichi/back.svg",
  33333. extra: 1273/1166,
  33334. bottom: 33/1306
  33335. }
  33336. },
  33337. },
  33338. [
  33339. {
  33340. name: "Normal",
  33341. height: math.unit(8 + 6/12, "feet"),
  33342. default: true
  33343. },
  33344. ]
  33345. ))
  33346. characterMakers.push(() => makeCharacter(
  33347. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33348. {
  33349. front: {
  33350. height: math.unit(6, "feet"),
  33351. weight: math.unit(210, "lb"),
  33352. name: "Front",
  33353. image: {
  33354. source: "./media/characters/manetel-greyscale/front.svg",
  33355. extra: 350/312,
  33356. bottom: 8/358
  33357. }
  33358. },
  33359. },
  33360. [
  33361. {
  33362. name: "Micro",
  33363. height: math.unit(2, "inches")
  33364. },
  33365. {
  33366. name: "Normal",
  33367. height: math.unit(6, "feet"),
  33368. default: true
  33369. },
  33370. {
  33371. name: "Minimacro",
  33372. height: math.unit(17, "feet")
  33373. },
  33374. {
  33375. name: "Macro",
  33376. height: math.unit(117, "feet")
  33377. },
  33378. ]
  33379. ))
  33380. characterMakers.push(() => makeCharacter(
  33381. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33382. {
  33383. side: {
  33384. height: math.unit(5 + 1/12, "feet"),
  33385. weight: math.unit(418, "lb"),
  33386. name: "Side",
  33387. image: {
  33388. source: "./media/characters/softpurr/side.svg",
  33389. extra: 1993/1945,
  33390. bottom: 134/2127
  33391. }
  33392. },
  33393. front: {
  33394. height: math.unit(5 + 1/12, "feet"),
  33395. weight: math.unit(418, "lb"),
  33396. name: "Front",
  33397. image: {
  33398. source: "./media/characters/softpurr/front.svg",
  33399. extra: 1950/1856,
  33400. bottom: 174/2124
  33401. }
  33402. },
  33403. paw: {
  33404. height: math.unit(1, "feet"),
  33405. name: "Paw",
  33406. image: {
  33407. source: "./media/characters/softpurr/paw.svg"
  33408. }
  33409. },
  33410. },
  33411. [
  33412. {
  33413. name: "Normal",
  33414. height: math.unit(5 + 1/12, "feet"),
  33415. default: true
  33416. },
  33417. ]
  33418. ))
  33419. characterMakers.push(() => makeCharacter(
  33420. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33421. {
  33422. front: {
  33423. height: math.unit(260, "meters"),
  33424. name: "Front",
  33425. image: {
  33426. source: "./media/characters/anahita/front.svg",
  33427. extra: 665/635,
  33428. bottom: 89/754
  33429. }
  33430. },
  33431. },
  33432. [
  33433. {
  33434. name: "Macro",
  33435. height: math.unit(260, "meters"),
  33436. default: true
  33437. },
  33438. ]
  33439. ))
  33440. characterMakers.push(() => makeCharacter(
  33441. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33442. {
  33443. front: {
  33444. height: math.unit(4 + 10/12, "feet"),
  33445. weight: math.unit(160, "lb"),
  33446. name: "Front",
  33447. image: {
  33448. source: "./media/characters/chip-mouse/front.svg",
  33449. extra: 3528/3408,
  33450. bottom: 0/3528
  33451. }
  33452. },
  33453. frontNsfw: {
  33454. height: math.unit(4 + 10/12, "feet"),
  33455. weight: math.unit(160, "lb"),
  33456. name: "Front (NSFW)",
  33457. image: {
  33458. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33459. extra: 3528/3408,
  33460. bottom: 0/3528
  33461. }
  33462. },
  33463. },
  33464. [
  33465. {
  33466. name: "Normal",
  33467. height: math.unit(4 + 10/12, "feet"),
  33468. default: true
  33469. },
  33470. ]
  33471. ))
  33472. characterMakers.push(() => makeCharacter(
  33473. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33474. {
  33475. side: {
  33476. height: math.unit(10, "feet"),
  33477. weight: math.unit(14000, "lb"),
  33478. name: "Side",
  33479. image: {
  33480. source: "./media/characters/kremm/side.svg",
  33481. extra: 1390/1053,
  33482. bottom: 90/1480
  33483. }
  33484. },
  33485. gut: {
  33486. height: math.unit(5.8, "feet"),
  33487. name: "Gut",
  33488. image: {
  33489. source: "./media/characters/kremm/gut.svg"
  33490. }
  33491. },
  33492. ass: {
  33493. height: math.unit(6.1, "feet"),
  33494. name: "Ass",
  33495. image: {
  33496. source: "./media/characters/kremm/ass.svg"
  33497. }
  33498. },
  33499. jaws: {
  33500. height: math.unit(2.2, "feet"),
  33501. name: "Jaws",
  33502. image: {
  33503. source: "./media/characters/kremm/jaws.svg"
  33504. }
  33505. },
  33506. dick: {
  33507. height: math.unit(4.26, "feet"),
  33508. name: "Dick",
  33509. image: {
  33510. source: "./media/characters/kremm/dick.svg"
  33511. }
  33512. },
  33513. },
  33514. [
  33515. {
  33516. name: "Normal",
  33517. height: math.unit(10, "feet"),
  33518. default: true
  33519. },
  33520. ]
  33521. ))
  33522. characterMakers.push(() => makeCharacter(
  33523. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33524. {
  33525. front: {
  33526. height: math.unit(30, "stories"),
  33527. name: "Front",
  33528. image: {
  33529. source: "./media/characters/kai/front.svg",
  33530. extra: 1892/1718,
  33531. bottom: 162/2054
  33532. }
  33533. },
  33534. },
  33535. [
  33536. {
  33537. name: "Macro",
  33538. height: math.unit(30, "stories"),
  33539. default: true
  33540. },
  33541. ]
  33542. ))
  33543. characterMakers.push(() => makeCharacter(
  33544. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33545. {
  33546. front: {
  33547. height: math.unit(6 + 4/12, "feet"),
  33548. weight: math.unit(145, "lb"),
  33549. name: "Front",
  33550. image: {
  33551. source: "./media/characters/sykes/front.svg",
  33552. extra: 1321 / 1187,
  33553. bottom: 66 / 1387
  33554. }
  33555. },
  33556. back: {
  33557. height: math.unit(6 + 4/12, "feet"),
  33558. weight: math.unit(145, "lb"),
  33559. name: "Back",
  33560. image: {
  33561. source: "./media/characters/sykes/back.svg",
  33562. extra: 1326/1181,
  33563. bottom: 31/1357
  33564. }
  33565. },
  33566. handBack: {
  33567. height: math.unit(0.9, "feet"),
  33568. name: "Hand (Back)",
  33569. image: {
  33570. source: "./media/characters/sykes/hand-back.svg"
  33571. }
  33572. },
  33573. handFront: {
  33574. height: math.unit(0.839, "feet"),
  33575. name: "Hand (Front)",
  33576. image: {
  33577. source: "./media/characters/sykes/hand-front.svg"
  33578. }
  33579. },
  33580. leftFoot: {
  33581. height: math.unit(1.2, "feet"),
  33582. name: "Foot (Left)",
  33583. image: {
  33584. source: "./media/characters/sykes/foot-left.svg"
  33585. }
  33586. },
  33587. rightFoot: {
  33588. height: math.unit(1.2, "feet"),
  33589. name: "Foot (Right)",
  33590. image: {
  33591. source: "./media/characters/sykes/foot-right.svg"
  33592. }
  33593. },
  33594. maw: {
  33595. height: math.unit(1.93, "feet"),
  33596. name: "Maw",
  33597. image: {
  33598. source: "./media/characters/sykes/maw.svg"
  33599. }
  33600. },
  33601. teeth: {
  33602. height: math.unit(0.51, "feet"),
  33603. name: "Teeth",
  33604. image: {
  33605. source: "./media/characters/sykes/teeth.svg"
  33606. }
  33607. },
  33608. tongue: {
  33609. height: math.unit(2.13, "feet"),
  33610. name: "Tongue",
  33611. image: {
  33612. source: "./media/characters/sykes/tongue.svg"
  33613. }
  33614. },
  33615. uvula: {
  33616. height: math.unit(0.16, "feet"),
  33617. name: "Uvula",
  33618. image: {
  33619. source: "./media/characters/sykes/uvula.svg"
  33620. }
  33621. },
  33622. collar: {
  33623. height: math.unit(0.287, "feet"),
  33624. name: "Collar",
  33625. image: {
  33626. source: "./media/characters/sykes/collar.svg"
  33627. }
  33628. },
  33629. },
  33630. [
  33631. {
  33632. name: "Shrunken",
  33633. height: math.unit(5, "inches")
  33634. },
  33635. {
  33636. name: "Normal",
  33637. height: math.unit(6 + 4 / 12, "feet"),
  33638. default: true
  33639. },
  33640. {
  33641. name: "Big",
  33642. height: math.unit(15, "feet")
  33643. },
  33644. ]
  33645. ))
  33646. characterMakers.push(() => makeCharacter(
  33647. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33648. {
  33649. front: {
  33650. height: math.unit(5 + 8/12, "feet"),
  33651. weight: math.unit(190, "lb"),
  33652. name: "Front",
  33653. image: {
  33654. source: "./media/characters/oven-otter/front.svg",
  33655. extra: 1809/1740,
  33656. bottom: 181/1990
  33657. }
  33658. },
  33659. back: {
  33660. height: math.unit(5 + 8/12, "feet"),
  33661. weight: math.unit(190, "lb"),
  33662. name: "Back",
  33663. image: {
  33664. source: "./media/characters/oven-otter/back.svg",
  33665. extra: 1709/1635,
  33666. bottom: 118/1827
  33667. }
  33668. },
  33669. hand: {
  33670. height: math.unit(1.07, "feet"),
  33671. name: "Hand",
  33672. image: {
  33673. source: "./media/characters/oven-otter/hand.svg"
  33674. }
  33675. },
  33676. beans: {
  33677. height: math.unit(1.74, "feet"),
  33678. name: "Beans",
  33679. image: {
  33680. source: "./media/characters/oven-otter/beans.svg"
  33681. }
  33682. },
  33683. },
  33684. [
  33685. {
  33686. name: "Micro",
  33687. height: math.unit(0.5, "inches")
  33688. },
  33689. {
  33690. name: "Normal",
  33691. height: math.unit(5 + 8/12, "feet"),
  33692. default: true
  33693. },
  33694. {
  33695. name: "Macro",
  33696. height: math.unit(250, "feet")
  33697. },
  33698. {
  33699. name: "Really High",
  33700. height: math.unit(420, "feet")
  33701. },
  33702. ]
  33703. ))
  33704. characterMakers.push(() => makeCharacter(
  33705. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33706. {
  33707. front: {
  33708. height: math.unit(5, "meters"),
  33709. weight: math.unit(292000000000000, "kg"),
  33710. name: "Front",
  33711. image: {
  33712. source: "./media/characters/devourer/front.svg",
  33713. extra: 1800/1733,
  33714. bottom: 211/2011
  33715. }
  33716. },
  33717. maw: {
  33718. height: math.unit(1.1, "meter"),
  33719. name: "Maw",
  33720. image: {
  33721. source: "./media/characters/devourer/maw.svg"
  33722. }
  33723. },
  33724. },
  33725. [
  33726. {
  33727. name: "Small",
  33728. height: math.unit(3, "meters")
  33729. },
  33730. {
  33731. name: "Large",
  33732. height: math.unit(5, "meters"),
  33733. default: true
  33734. },
  33735. ]
  33736. ))
  33737. characterMakers.push(() => makeCharacter(
  33738. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33739. {
  33740. front: {
  33741. height: math.unit(6, "feet"),
  33742. weight: math.unit(400, "lb"),
  33743. name: "Front",
  33744. image: {
  33745. source: "./media/characters/ellarby/front.svg",
  33746. extra: 1909/1763,
  33747. bottom: 80/1989
  33748. }
  33749. },
  33750. back: {
  33751. height: math.unit(6, "feet"),
  33752. weight: math.unit(400, "lb"),
  33753. name: "Back",
  33754. image: {
  33755. source: "./media/characters/ellarby/back.svg",
  33756. extra: 1914/1784,
  33757. bottom: 172/2086
  33758. }
  33759. },
  33760. },
  33761. [
  33762. {
  33763. name: "Mischief",
  33764. height: math.unit(18, "inches")
  33765. },
  33766. {
  33767. name: "Trouble",
  33768. height: math.unit(12, "feet")
  33769. },
  33770. {
  33771. name: "Havoc",
  33772. height: math.unit(200, "feet"),
  33773. default: true
  33774. },
  33775. {
  33776. name: "Pandemonium",
  33777. height: math.unit(1, "mile")
  33778. },
  33779. {
  33780. name: "Catastrophe",
  33781. height: math.unit(100, "miles")
  33782. },
  33783. ]
  33784. ))
  33785. characterMakers.push(() => makeCharacter(
  33786. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33787. {
  33788. front: {
  33789. height: math.unit(4.7, "meters"),
  33790. weight: math.unit(6500, "kg"),
  33791. name: "Front",
  33792. image: {
  33793. source: "./media/characters/vex/front.svg",
  33794. extra: 1288/1140,
  33795. bottom: 100/1388
  33796. }
  33797. },
  33798. },
  33799. [
  33800. {
  33801. name: "Normal",
  33802. height: math.unit(4.7, "meters"),
  33803. default: true
  33804. },
  33805. ]
  33806. ))
  33807. characterMakers.push(() => makeCharacter(
  33808. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33809. {
  33810. normal: {
  33811. height: math.unit(6, "feet"),
  33812. weight: math.unit(350, "lb"),
  33813. name: "Normal",
  33814. image: {
  33815. source: "./media/characters/teshy/normal.svg",
  33816. extra: 1795/1735,
  33817. bottom: 16/1811
  33818. }
  33819. },
  33820. monsterFront: {
  33821. height: math.unit(12, "feet"),
  33822. weight: math.unit(4700, "lb"),
  33823. name: "Monster (Front)",
  33824. image: {
  33825. source: "./media/characters/teshy/monster-front.svg",
  33826. extra: 2042/2034,
  33827. bottom: 128/2170
  33828. }
  33829. },
  33830. monsterSide: {
  33831. height: math.unit(12, "feet"),
  33832. weight: math.unit(4700, "lb"),
  33833. name: "Monster (Side)",
  33834. image: {
  33835. source: "./media/characters/teshy/monster-side.svg",
  33836. extra: 2067/2056,
  33837. bottom: 70/2137
  33838. }
  33839. },
  33840. monsterBack: {
  33841. height: math.unit(12, "feet"),
  33842. weight: math.unit(4700, "lb"),
  33843. name: "Monster (Back)",
  33844. image: {
  33845. source: "./media/characters/teshy/monster-back.svg",
  33846. extra: 1921/1914,
  33847. bottom: 171/2092
  33848. }
  33849. },
  33850. },
  33851. [
  33852. {
  33853. name: "Normal",
  33854. height: math.unit(6, "feet"),
  33855. default: true
  33856. },
  33857. ]
  33858. ))
  33859. characterMakers.push(() => makeCharacter(
  33860. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33861. {
  33862. front: {
  33863. height: math.unit(6, "feet"),
  33864. name: "Front",
  33865. image: {
  33866. source: "./media/characters/ramey/front.svg",
  33867. extra: 790/787,
  33868. bottom: 27/817
  33869. }
  33870. },
  33871. },
  33872. [
  33873. {
  33874. name: "Normal",
  33875. height: math.unit(6, "feet"),
  33876. default: true
  33877. },
  33878. ]
  33879. ))
  33880. characterMakers.push(() => makeCharacter(
  33881. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33882. {
  33883. front: {
  33884. height: math.unit(5 + 5/12, "feet"),
  33885. weight: math.unit(120, "lb"),
  33886. name: "Front",
  33887. image: {
  33888. source: "./media/characters/phirae/front.svg",
  33889. extra: 2491/2436,
  33890. bottom: 38/2529
  33891. }
  33892. },
  33893. },
  33894. [
  33895. {
  33896. name: "Normal",
  33897. height: math.unit(5 + 5/12, "feet"),
  33898. default: true
  33899. },
  33900. ]
  33901. ))
  33902. characterMakers.push(() => makeCharacter(
  33903. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33904. {
  33905. front: {
  33906. height: math.unit(5 + 3/12, "feet"),
  33907. name: "Front",
  33908. image: {
  33909. source: "./media/characters/stagglas/front.svg",
  33910. extra: 962/882,
  33911. bottom: 53/1015
  33912. }
  33913. },
  33914. feral: {
  33915. height: math.unit(335, "cm"),
  33916. name: "Feral",
  33917. image: {
  33918. source: "./media/characters/stagglas/feral.svg",
  33919. extra: 1732/1090,
  33920. bottom: 48/1780
  33921. }
  33922. },
  33923. },
  33924. [
  33925. {
  33926. name: "Normal",
  33927. height: math.unit(5 + 3/12, "feet"),
  33928. default: true
  33929. },
  33930. ]
  33931. ))
  33932. characterMakers.push(() => makeCharacter(
  33933. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33934. {
  33935. front: {
  33936. height: math.unit(5 + 4/12, "feet"),
  33937. weight: math.unit(145, "lb"),
  33938. name: "Front",
  33939. image: {
  33940. source: "./media/characters/starra/front.svg",
  33941. extra: 1790/1691,
  33942. bottom: 91/1881
  33943. }
  33944. },
  33945. },
  33946. [
  33947. {
  33948. name: "Normal",
  33949. height: math.unit(5 + 4/12, "feet"),
  33950. default: true
  33951. },
  33952. ]
  33953. ))
  33954. characterMakers.push(() => makeCharacter(
  33955. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33956. {
  33957. front: {
  33958. height: math.unit(2.2, "meters"),
  33959. name: "Front",
  33960. image: {
  33961. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33962. extra: 1194/1005,
  33963. bottom: 25/1219
  33964. }
  33965. },
  33966. },
  33967. [
  33968. {
  33969. name: "Normal",
  33970. height: math.unit(2.2, "meters"),
  33971. default: true
  33972. },
  33973. ]
  33974. ))
  33975. characterMakers.push(() => makeCharacter(
  33976. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33977. {
  33978. side: {
  33979. height: math.unit(8 + 2/12, "feet"),
  33980. weight: math.unit(1240, "lb"),
  33981. name: "Side",
  33982. image: {
  33983. source: "./media/characters/mika-valentine/side.svg",
  33984. extra: 2670/2501,
  33985. bottom: 250/2920
  33986. }
  33987. },
  33988. },
  33989. [
  33990. {
  33991. name: "Normal",
  33992. height: math.unit(8 + 2/12, "feet"),
  33993. default: true
  33994. },
  33995. ]
  33996. ))
  33997. characterMakers.push(() => makeCharacter(
  33998. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33999. {
  34000. front: {
  34001. height: math.unit(7 + 2/12, "feet"),
  34002. name: "Front",
  34003. image: {
  34004. source: "./media/characters/xoltol/front.svg",
  34005. extra: 2212/2124,
  34006. bottom: 84/2296
  34007. }
  34008. },
  34009. side: {
  34010. height: math.unit(7 + 2/12, "feet"),
  34011. name: "Side",
  34012. image: {
  34013. source: "./media/characters/xoltol/side.svg",
  34014. extra: 2273/2197,
  34015. bottom: 26/2299
  34016. }
  34017. },
  34018. hand: {
  34019. height: math.unit(2.5, "feet"),
  34020. name: "Hand",
  34021. image: {
  34022. source: "./media/characters/xoltol/hand.svg"
  34023. }
  34024. },
  34025. },
  34026. [
  34027. {
  34028. name: "Small-ish",
  34029. height: math.unit(5 + 11/12, "feet")
  34030. },
  34031. {
  34032. name: "Normal",
  34033. height: math.unit(7 + 2/12, "feet")
  34034. },
  34035. {
  34036. name: "\"Macro\"",
  34037. height: math.unit(14 + 9/12, "feet"),
  34038. default: true
  34039. },
  34040. {
  34041. name: "Alternate Height",
  34042. height: math.unit(20, "feet")
  34043. },
  34044. {
  34045. name: "Actually Macro",
  34046. height: math.unit(100, "feet")
  34047. },
  34048. ]
  34049. ))
  34050. characterMakers.push(() => makeCharacter(
  34051. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34052. {
  34053. front: {
  34054. height: math.unit(5 + 2/12, "feet"),
  34055. name: "Front",
  34056. image: {
  34057. source: "./media/characters/kotetsu-redwood/front.svg",
  34058. extra: 1053/942,
  34059. bottom: 60/1113
  34060. }
  34061. },
  34062. },
  34063. [
  34064. {
  34065. name: "Normal",
  34066. height: math.unit(5 + 2/12, "feet"),
  34067. default: true
  34068. },
  34069. ]
  34070. ))
  34071. characterMakers.push(() => makeCharacter(
  34072. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34073. {
  34074. front: {
  34075. height: math.unit(2.4, "meters"),
  34076. weight: math.unit(125, "kg"),
  34077. name: "Front",
  34078. image: {
  34079. source: "./media/characters/lilith/front.svg",
  34080. extra: 1590/1513,
  34081. bottom: 203/1793
  34082. }
  34083. },
  34084. },
  34085. [
  34086. {
  34087. name: "Humanoid",
  34088. height: math.unit(2.4, "meters")
  34089. },
  34090. {
  34091. name: "Normal",
  34092. height: math.unit(6, "meters"),
  34093. default: true
  34094. },
  34095. {
  34096. name: "Largest",
  34097. height: math.unit(55, "meters")
  34098. },
  34099. ]
  34100. ))
  34101. characterMakers.push(() => makeCharacter(
  34102. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34103. {
  34104. front: {
  34105. height: math.unit(8 + 4/12, "feet"),
  34106. weight: math.unit(535, "lb"),
  34107. name: "Front",
  34108. image: {
  34109. source: "./media/characters/beh'kah-bolger/front.svg",
  34110. extra: 1660/1603,
  34111. bottom: 37/1697
  34112. }
  34113. },
  34114. },
  34115. [
  34116. {
  34117. name: "Normal",
  34118. height: math.unit(8 + 4/12, "feet"),
  34119. default: true
  34120. },
  34121. {
  34122. name: "Kaiju",
  34123. height: math.unit(250, "feet")
  34124. },
  34125. {
  34126. name: "Still Growing",
  34127. height: math.unit(10, "miles")
  34128. },
  34129. {
  34130. name: "Continental",
  34131. height: math.unit(5000, "miles")
  34132. },
  34133. {
  34134. name: "Final Form",
  34135. height: math.unit(2500000, "miles")
  34136. },
  34137. ]
  34138. ))
  34139. characterMakers.push(() => makeCharacter(
  34140. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34141. {
  34142. front: {
  34143. height: math.unit(7 + 2/12, "feet"),
  34144. weight: math.unit(230, "kg"),
  34145. name: "Front",
  34146. image: {
  34147. source: "./media/characters/tatyana-milewska/front.svg",
  34148. extra: 1199/1150,
  34149. bottom: 86/1285
  34150. }
  34151. },
  34152. },
  34153. [
  34154. {
  34155. name: "Normal",
  34156. height: math.unit(7 + 2/12, "feet"),
  34157. default: true
  34158. },
  34159. {
  34160. name: "Big",
  34161. height: math.unit(12, "feet")
  34162. },
  34163. {
  34164. name: "Minimacro",
  34165. height: math.unit(20, "feet")
  34166. },
  34167. {
  34168. name: "Macro",
  34169. height: math.unit(120, "feet")
  34170. },
  34171. ]
  34172. ))
  34173. characterMakers.push(() => makeCharacter(
  34174. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34175. {
  34176. front: {
  34177. height: math.unit(7 + 8/12, "feet"),
  34178. weight: math.unit(152, "kg"),
  34179. name: "Front",
  34180. image: {
  34181. source: "./media/characters/helen-arri/front.svg",
  34182. extra: 440/423,
  34183. bottom: 14/454
  34184. }
  34185. },
  34186. back: {
  34187. height: math.unit(7 + 8/12, "feet"),
  34188. weight: math.unit(152, "kg"),
  34189. name: "Back",
  34190. image: {
  34191. source: "./media/characters/helen-arri/back.svg",
  34192. extra: 443/426,
  34193. bottom: 8/451
  34194. }
  34195. },
  34196. },
  34197. [
  34198. {
  34199. name: "Normal",
  34200. height: math.unit(7 + 8/12, "feet"),
  34201. default: true
  34202. },
  34203. {
  34204. name: "Big",
  34205. height: math.unit(14, "feet")
  34206. },
  34207. {
  34208. name: "Minimacro",
  34209. height: math.unit(24, "feet")
  34210. },
  34211. {
  34212. name: "Macro",
  34213. height: math.unit(140, "feet")
  34214. },
  34215. ]
  34216. ))
  34217. characterMakers.push(() => makeCharacter(
  34218. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34219. {
  34220. front: {
  34221. height: math.unit(6, "meters"),
  34222. name: "Front",
  34223. image: {
  34224. source: "./media/characters/ehanu-rehu/front.svg",
  34225. extra: 1800/1800,
  34226. bottom: 59/1859
  34227. }
  34228. },
  34229. },
  34230. [
  34231. {
  34232. name: "Normal",
  34233. height: math.unit(6, "meters"),
  34234. default: true
  34235. },
  34236. ]
  34237. ))
  34238. characterMakers.push(() => makeCharacter(
  34239. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34240. {
  34241. front: {
  34242. height: math.unit(7 + 3/12, "feet"),
  34243. name: "Front",
  34244. image: {
  34245. source: "./media/characters/renholder/front.svg",
  34246. extra: 3096/2960,
  34247. bottom: 250/3346
  34248. }
  34249. },
  34250. },
  34251. [
  34252. {
  34253. name: "Normal Bat",
  34254. height: math.unit(7 + 3/12, "feet"),
  34255. default: true
  34256. },
  34257. {
  34258. name: "Slightly Tall Bat",
  34259. height: math.unit(100, "feet")
  34260. },
  34261. {
  34262. name: "Big Bat",
  34263. height: math.unit(1000, "feet")
  34264. },
  34265. {
  34266. name: "City-Sized Bat",
  34267. height: math.unit(200000, "feet")
  34268. },
  34269. {
  34270. name: "Bigger Bat",
  34271. height: math.unit(10000, "miles")
  34272. },
  34273. {
  34274. name: "Solar Sized Bat",
  34275. height: math.unit(100, "AU")
  34276. },
  34277. {
  34278. name: "Galactic Bat",
  34279. height: math.unit(200000, "lightyears")
  34280. },
  34281. {
  34282. name: "Universally Known Bat",
  34283. height: math.unit(1, "universe")
  34284. },
  34285. ]
  34286. ))
  34287. characterMakers.push(() => makeCharacter(
  34288. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34289. {
  34290. front: {
  34291. height: math.unit(6 + 11/12, "feet"),
  34292. weight: math.unit(250, "lb"),
  34293. name: "Front",
  34294. image: {
  34295. source: "./media/characters/cookiecat/front.svg",
  34296. extra: 893/827,
  34297. bottom: 14/907
  34298. }
  34299. },
  34300. },
  34301. [
  34302. {
  34303. name: "Micro",
  34304. height: math.unit(3, "inches")
  34305. },
  34306. {
  34307. name: "Normal",
  34308. height: math.unit(6 + 11/12, "feet"),
  34309. default: true
  34310. },
  34311. {
  34312. name: "Macro",
  34313. height: math.unit(100, "feet")
  34314. },
  34315. {
  34316. name: "Macro+",
  34317. height: math.unit(404, "feet")
  34318. },
  34319. {
  34320. name: "Megamacro",
  34321. height: math.unit(165, "miles")
  34322. },
  34323. {
  34324. name: "Planetary",
  34325. height: math.unit(4600, "miles")
  34326. },
  34327. ]
  34328. ))
  34329. characterMakers.push(() => makeCharacter(
  34330. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34331. {
  34332. front: {
  34333. height: math.unit(10 + 3/12, "feet"),
  34334. weight: math.unit(1500, "lb"),
  34335. name: "Front",
  34336. image: {
  34337. source: "./media/characters/tux-kusanagi/front.svg",
  34338. extra: 944/840,
  34339. bottom: 39/983
  34340. }
  34341. },
  34342. back: {
  34343. height: math.unit(10 + 3/12, "feet"),
  34344. weight: math.unit(1500, "lb"),
  34345. name: "Back",
  34346. image: {
  34347. source: "./media/characters/tux-kusanagi/back.svg",
  34348. extra: 941/842,
  34349. bottom: 28/969
  34350. }
  34351. },
  34352. rump: {
  34353. height: math.unit(5.25, "feet"),
  34354. name: "Rump",
  34355. image: {
  34356. source: "./media/characters/tux-kusanagi/rump.svg"
  34357. }
  34358. },
  34359. beak: {
  34360. height: math.unit(1.54, "feet"),
  34361. name: "Beak",
  34362. image: {
  34363. source: "./media/characters/tux-kusanagi/beak.svg"
  34364. }
  34365. },
  34366. },
  34367. [
  34368. {
  34369. name: "Normal",
  34370. height: math.unit(10 + 3/12, "feet"),
  34371. default: true
  34372. },
  34373. ]
  34374. ))
  34375. characterMakers.push(() => makeCharacter(
  34376. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34377. {
  34378. front: {
  34379. height: math.unit(58, "feet"),
  34380. weight: math.unit(200, "tons"),
  34381. name: "Front",
  34382. image: {
  34383. source: "./media/characters/uzarmazari/front.svg",
  34384. extra: 1575/1455,
  34385. bottom: 152/1727
  34386. }
  34387. },
  34388. back: {
  34389. height: math.unit(58, "feet"),
  34390. weight: math.unit(200, "tons"),
  34391. name: "Back",
  34392. image: {
  34393. source: "./media/characters/uzarmazari/back.svg",
  34394. extra: 1585/1510,
  34395. bottom: 157/1742
  34396. }
  34397. },
  34398. head: {
  34399. height: math.unit(26, "feet"),
  34400. name: "Head",
  34401. image: {
  34402. source: "./media/characters/uzarmazari/head.svg"
  34403. }
  34404. },
  34405. },
  34406. [
  34407. {
  34408. name: "Normal",
  34409. height: math.unit(58, "feet"),
  34410. default: true
  34411. },
  34412. ]
  34413. ))
  34414. characterMakers.push(() => makeCharacter(
  34415. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34416. {
  34417. side: {
  34418. height: math.unit(15, "feet"),
  34419. name: "Side",
  34420. image: {
  34421. source: "./media/characters/akitu/side.svg",
  34422. extra: 1421/1321,
  34423. bottom: 157/1578
  34424. }
  34425. },
  34426. front: {
  34427. height: math.unit(15, "feet"),
  34428. name: "Front",
  34429. image: {
  34430. source: "./media/characters/akitu/front.svg",
  34431. extra: 1435/1326,
  34432. bottom: 232/1667
  34433. }
  34434. },
  34435. },
  34436. [
  34437. {
  34438. name: "Normal",
  34439. height: math.unit(15, "feet"),
  34440. default: true
  34441. },
  34442. ]
  34443. ))
  34444. characterMakers.push(() => makeCharacter(
  34445. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34446. {
  34447. front: {
  34448. height: math.unit(10 + 8/12, "feet"),
  34449. name: "Front",
  34450. image: {
  34451. source: "./media/characters/azalie-croixland/front.svg",
  34452. extra: 1972/1856,
  34453. bottom: 31/2003
  34454. }
  34455. },
  34456. },
  34457. [
  34458. {
  34459. name: "Original Height",
  34460. height: math.unit(5 + 4/12, "feet")
  34461. },
  34462. {
  34463. name: "Normal Height",
  34464. height: math.unit(10 + 8/12, "feet"),
  34465. default: true
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34471. {
  34472. side: {
  34473. height: math.unit(7 + 1/12, "feet"),
  34474. weight: math.unit(245, "lb"),
  34475. name: "Side",
  34476. image: {
  34477. source: "./media/characters/kavus-kazian/side.svg",
  34478. extra: 349/342,
  34479. bottom: 15/364
  34480. }
  34481. },
  34482. },
  34483. [
  34484. {
  34485. name: "Normal",
  34486. height: math.unit(7 + 1/12, "feet"),
  34487. default: true
  34488. },
  34489. ]
  34490. ))
  34491. characterMakers.push(() => makeCharacter(
  34492. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34493. {
  34494. normal: {
  34495. height: math.unit(5 + 11/12, "feet"),
  34496. name: "Normal",
  34497. image: {
  34498. source: "./media/characters/moonlight-rose/normal.svg",
  34499. extra: 1979/1835,
  34500. bottom: 14/1993
  34501. }
  34502. },
  34503. demon: {
  34504. height: math.unit(5, "km"),
  34505. name: "Demon",
  34506. image: {
  34507. source: "./media/characters/moonlight-rose/demon.svg",
  34508. extra: 986/916,
  34509. bottom: 28/1014
  34510. }
  34511. },
  34512. },
  34513. [
  34514. {
  34515. name: "\"Natural\" height",
  34516. height: math.unit(5 + 11/12, "feet")
  34517. },
  34518. {
  34519. name: "Comfortable Size",
  34520. height: math.unit(40, "meters")
  34521. },
  34522. {
  34523. name: "Common Size",
  34524. height: math.unit(50, "km"),
  34525. default: true
  34526. },
  34527. {
  34528. name: "Demonic",
  34529. height: math.unit(1.24415e+21, "meters")
  34530. },
  34531. ]
  34532. ))
  34533. characterMakers.push(() => makeCharacter(
  34534. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34535. {
  34536. front: {
  34537. height: math.unit(16, "feet"),
  34538. weight: math.unit(610, "kg"),
  34539. name: "Front",
  34540. image: {
  34541. source: "./media/characters/huckle/front.svg",
  34542. extra: 1731/1625,
  34543. bottom: 33/1764
  34544. }
  34545. },
  34546. back: {
  34547. height: math.unit(16, "feet"),
  34548. weight: math.unit(610, "kg"),
  34549. name: "Back",
  34550. image: {
  34551. source: "./media/characters/huckle/back.svg",
  34552. extra: 1738/1651,
  34553. bottom: 37/1775
  34554. }
  34555. },
  34556. laughing: {
  34557. height: math.unit(3.75, "feet"),
  34558. name: "Laughing",
  34559. image: {
  34560. source: "./media/characters/huckle/laughing.svg"
  34561. }
  34562. },
  34563. angry: {
  34564. height: math.unit(4.15, "feet"),
  34565. name: "Angry",
  34566. image: {
  34567. source: "./media/characters/huckle/angry.svg"
  34568. }
  34569. },
  34570. },
  34571. [
  34572. {
  34573. name: "Normal",
  34574. height: math.unit(16, "feet"),
  34575. default: true
  34576. },
  34577. {
  34578. name: "Mini Macro",
  34579. height: math.unit(463, "feet")
  34580. },
  34581. {
  34582. name: "Macro",
  34583. height: math.unit(1680, "meters")
  34584. },
  34585. {
  34586. name: "Mega Macro",
  34587. height: math.unit(175, "km")
  34588. },
  34589. {
  34590. name: "Terra Macro",
  34591. height: math.unit(32, "gigameters")
  34592. },
  34593. {
  34594. name: "Multiverse+",
  34595. height: math.unit(2.56e23, "yottameters")
  34596. },
  34597. ]
  34598. ))
  34599. characterMakers.push(() => makeCharacter(
  34600. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34601. {
  34602. front: {
  34603. height: math.unit(6 + 9/12, "feet"),
  34604. weight: math.unit(280, "lb"),
  34605. name: "Front",
  34606. image: {
  34607. source: "./media/characters/candy/front.svg",
  34608. extra: 234/217,
  34609. bottom: 11/245
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Really Small",
  34616. height: math.unit(0.1, "nm")
  34617. },
  34618. {
  34619. name: "Micro",
  34620. height: math.unit(2, "inches")
  34621. },
  34622. {
  34623. name: "Normal",
  34624. height: math.unit(6 + 9/12, "feet"),
  34625. default: true
  34626. },
  34627. {
  34628. name: "Small Macro",
  34629. height: math.unit(69, "feet")
  34630. },
  34631. {
  34632. name: "Macro",
  34633. height: math.unit(160, "feet")
  34634. },
  34635. {
  34636. name: "Megamacro",
  34637. height: math.unit(22000, "miles")
  34638. },
  34639. {
  34640. name: "Gigamacro",
  34641. height: math.unit(50000, "miles")
  34642. },
  34643. ]
  34644. ))
  34645. characterMakers.push(() => makeCharacter(
  34646. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34647. {
  34648. front: {
  34649. height: math.unit(4, "feet"),
  34650. weight: math.unit(90, "lb"),
  34651. name: "Front",
  34652. image: {
  34653. source: "./media/characters/joey-mcdonald/front.svg",
  34654. extra: 1059/852,
  34655. bottom: 33/1092
  34656. }
  34657. },
  34658. back: {
  34659. height: math.unit(4, "feet"),
  34660. weight: math.unit(90, "lb"),
  34661. name: "Back",
  34662. image: {
  34663. source: "./media/characters/joey-mcdonald/back.svg",
  34664. extra: 1077/879,
  34665. bottom: 5/1082
  34666. }
  34667. },
  34668. frontKobold: {
  34669. height: math.unit(4, "feet"),
  34670. weight: math.unit(100, "lb"),
  34671. name: "Front-kobold",
  34672. image: {
  34673. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34674. extra: 1480/1367,
  34675. bottom: 0/1480
  34676. }
  34677. },
  34678. backKobold: {
  34679. height: math.unit(4, "feet"),
  34680. weight: math.unit(100, "lb"),
  34681. name: "Back-kobold",
  34682. image: {
  34683. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34684. extra: 1449/1361,
  34685. bottom: 0/1449
  34686. }
  34687. },
  34688. },
  34689. [
  34690. {
  34691. name: "Normal",
  34692. height: math.unit(4, "feet"),
  34693. default: true
  34694. },
  34695. ]
  34696. ))
  34697. characterMakers.push(() => makeCharacter(
  34698. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34699. {
  34700. front: {
  34701. height: math.unit(12 + 6/12, "feet"),
  34702. name: "Front",
  34703. image: {
  34704. source: "./media/characters/kass-lockheed/front.svg",
  34705. extra: 354/343,
  34706. bottom: 9/363
  34707. }
  34708. },
  34709. back: {
  34710. height: math.unit(12 + 6/12, "feet"),
  34711. name: "Back",
  34712. image: {
  34713. source: "./media/characters/kass-lockheed/back.svg",
  34714. extra: 364/352,
  34715. bottom: 3/367
  34716. }
  34717. },
  34718. dick: {
  34719. height: math.unit(3.12, "feet"),
  34720. name: "Dick",
  34721. image: {
  34722. source: "./media/characters/kass-lockheed/dick.svg"
  34723. }
  34724. },
  34725. head: {
  34726. height: math.unit(2.6, "feet"),
  34727. name: "Head",
  34728. image: {
  34729. source: "./media/characters/kass-lockheed/head.svg"
  34730. }
  34731. },
  34732. bleh: {
  34733. height: math.unit(2.85, "feet"),
  34734. name: "Bleh",
  34735. image: {
  34736. source: "./media/characters/kass-lockheed/bleh.svg"
  34737. }
  34738. },
  34739. smug: {
  34740. height: math.unit(2.85, "feet"),
  34741. name: "Smug",
  34742. image: {
  34743. source: "./media/characters/kass-lockheed/smug.svg"
  34744. }
  34745. },
  34746. },
  34747. [
  34748. {
  34749. name: "Normal",
  34750. height: math.unit(12 + 6/12, "feet"),
  34751. default: true
  34752. },
  34753. ]
  34754. ))
  34755. characterMakers.push(() => makeCharacter(
  34756. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34757. {
  34758. front: {
  34759. height: math.unit(6 + 2/12, "feet"),
  34760. name: "Front",
  34761. image: {
  34762. source: "./media/characters/taylor/front.svg",
  34763. extra: 639/495,
  34764. bottom: 12/651
  34765. }
  34766. },
  34767. },
  34768. [
  34769. {
  34770. name: "Normal",
  34771. height: math.unit(6 + 2/12, "feet"),
  34772. default: true
  34773. },
  34774. {
  34775. name: "Big",
  34776. height: math.unit(15, "feet")
  34777. },
  34778. {
  34779. name: "Lorg",
  34780. height: math.unit(80, "feet")
  34781. },
  34782. {
  34783. name: "Too Lorg",
  34784. height: math.unit(120, "feet")
  34785. },
  34786. ]
  34787. ))
  34788. characterMakers.push(() => makeCharacter(
  34789. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34790. {
  34791. front: {
  34792. height: math.unit(15, "feet"),
  34793. name: "Front",
  34794. image: {
  34795. source: "./media/characters/kaizer/front.svg",
  34796. extra: 1612/1436,
  34797. bottom: 43/1655
  34798. }
  34799. },
  34800. },
  34801. [
  34802. {
  34803. name: "Normal",
  34804. height: math.unit(15, "feet"),
  34805. default: true
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34811. {
  34812. front: {
  34813. height: math.unit(2, "feet"),
  34814. weight: math.unit(30, "lb"),
  34815. name: "Front",
  34816. image: {
  34817. source: "./media/characters/sandy/front.svg",
  34818. extra: 1439/1307,
  34819. bottom: 194/1633
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Normal",
  34826. height: math.unit(2, "feet"),
  34827. default: true
  34828. },
  34829. ]
  34830. ))
  34831. characterMakers.push(() => makeCharacter(
  34832. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34833. {
  34834. front: {
  34835. height: math.unit(3, "feet"),
  34836. name: "Front",
  34837. image: {
  34838. source: "./media/characters/mellvi/front.svg",
  34839. extra: 1831/1630,
  34840. bottom: 58/1889
  34841. }
  34842. },
  34843. },
  34844. [
  34845. {
  34846. name: "Normal",
  34847. height: math.unit(3, "feet"),
  34848. default: true
  34849. },
  34850. ]
  34851. ))
  34852. characterMakers.push(() => makeCharacter(
  34853. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34854. {
  34855. front: {
  34856. height: math.unit(5 + 11/12, "feet"),
  34857. weight: math.unit(200, "lb"),
  34858. name: "Front",
  34859. image: {
  34860. source: "./media/characters/shirou/front.svg",
  34861. extra: 2491/2383,
  34862. bottom: 189/2680
  34863. }
  34864. },
  34865. back: {
  34866. height: math.unit(5 + 11/12, "feet"),
  34867. weight: math.unit(200, "lb"),
  34868. name: "Back",
  34869. image: {
  34870. source: "./media/characters/shirou/back.svg",
  34871. extra: 2554/2450,
  34872. bottom: 76/2630
  34873. }
  34874. },
  34875. },
  34876. [
  34877. {
  34878. name: "Normal",
  34879. height: math.unit(5 + 11/12, "feet"),
  34880. default: true
  34881. },
  34882. ]
  34883. ))
  34884. characterMakers.push(() => makeCharacter(
  34885. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34886. {
  34887. front: {
  34888. height: math.unit(6 + 3/12, "feet"),
  34889. weight: math.unit(177, "lb"),
  34890. name: "Front",
  34891. image: {
  34892. source: "./media/characters/noryu/front.svg",
  34893. extra: 973/885,
  34894. bottom: 10/983
  34895. }
  34896. },
  34897. },
  34898. [
  34899. {
  34900. name: "Normal",
  34901. height: math.unit(6 + 3/12, "feet"),
  34902. default: true
  34903. },
  34904. ]
  34905. ))
  34906. characterMakers.push(() => makeCharacter(
  34907. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34908. {
  34909. front: {
  34910. height: math.unit(5 + 6/12, "feet"),
  34911. weight: math.unit(170, "lb"),
  34912. name: "Front",
  34913. image: {
  34914. source: "./media/characters/mevolas-rubenido/front.svg",
  34915. extra: 2109/1901,
  34916. bottom: 96/2205
  34917. }
  34918. },
  34919. },
  34920. [
  34921. {
  34922. name: "Normal",
  34923. height: math.unit(5 + 6/12, "feet"),
  34924. default: true
  34925. },
  34926. ]
  34927. ))
  34928. characterMakers.push(() => makeCharacter(
  34929. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34930. {
  34931. front: {
  34932. height: math.unit(100, "feet"),
  34933. name: "Front",
  34934. image: {
  34935. source: "./media/characters/dee/front.svg",
  34936. extra: 2153/2036,
  34937. bottom: 59/2212
  34938. }
  34939. },
  34940. back: {
  34941. height: math.unit(100, "feet"),
  34942. name: "Back",
  34943. image: {
  34944. source: "./media/characters/dee/back.svg",
  34945. extra: 2183/2058,
  34946. bottom: 75/2258
  34947. }
  34948. },
  34949. foot: {
  34950. height: math.unit(19.43, "feet"),
  34951. name: "Foot",
  34952. image: {
  34953. source: "./media/characters/dee/foot.svg"
  34954. }
  34955. },
  34956. hoof: {
  34957. height: math.unit(20.6, "feet"),
  34958. name: "Hoof",
  34959. image: {
  34960. source: "./media/characters/dee/hoof.svg"
  34961. }
  34962. },
  34963. },
  34964. [
  34965. {
  34966. name: "Macro",
  34967. height: math.unit(100, "feet"),
  34968. default: true
  34969. },
  34970. ]
  34971. ))
  34972. characterMakers.push(() => makeCharacter(
  34973. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34974. {
  34975. front: {
  34976. height: math.unit(5 + 6/12, "feet"),
  34977. name: "Front",
  34978. image: {
  34979. source: "./media/characters/teh/front.svg",
  34980. extra: 1002/847,
  34981. bottom: 62/1064
  34982. }
  34983. },
  34984. },
  34985. [
  34986. {
  34987. name: "Normal",
  34988. height: math.unit(5 + 6/12, "feet"),
  34989. default: true
  34990. },
  34991. ]
  34992. ))
  34993. characterMakers.push(() => makeCharacter(
  34994. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34995. {
  34996. side: {
  34997. height: math.unit(6 + 1/12, "feet"),
  34998. weight: math.unit(204, "lb"),
  34999. name: "Side",
  35000. image: {
  35001. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35002. extra: 974/775,
  35003. bottom: 169/1143
  35004. }
  35005. },
  35006. sitting: {
  35007. height: math.unit(6 + 2/12, "feet"),
  35008. weight: math.unit(204, "lb"),
  35009. name: "Sitting",
  35010. image: {
  35011. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35012. extra: 1175/964,
  35013. bottom: 378/1553
  35014. }
  35015. },
  35016. },
  35017. [
  35018. {
  35019. name: "Normal",
  35020. height: math.unit(6 + 1/12, "feet"),
  35021. default: true
  35022. },
  35023. ]
  35024. ))
  35025. characterMakers.push(() => makeCharacter(
  35026. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35027. {
  35028. front: {
  35029. height: math.unit(6, "inches"),
  35030. name: "Front",
  35031. image: {
  35032. source: "./media/characters/tululi/front.svg",
  35033. extra: 1997/1876,
  35034. bottom: 20/2017
  35035. }
  35036. },
  35037. },
  35038. [
  35039. {
  35040. name: "Normal",
  35041. height: math.unit(6, "inches"),
  35042. default: true
  35043. },
  35044. ]
  35045. ))
  35046. characterMakers.push(() => makeCharacter(
  35047. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35048. {
  35049. front: {
  35050. height: math.unit(4 + 1/12, "feet"),
  35051. name: "Front",
  35052. image: {
  35053. source: "./media/characters/star/front.svg",
  35054. extra: 1493/1189,
  35055. bottom: 48/1541
  35056. }
  35057. },
  35058. },
  35059. [
  35060. {
  35061. name: "Normal",
  35062. height: math.unit(4 + 1/12, "feet"),
  35063. default: true
  35064. },
  35065. ]
  35066. ))
  35067. characterMakers.push(() => makeCharacter(
  35068. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35069. {
  35070. front: {
  35071. height: math.unit(6 + 3/12, "feet"),
  35072. name: "Front",
  35073. image: {
  35074. source: "./media/characters/comet/front.svg",
  35075. extra: 1681/1462,
  35076. bottom: 26/1707
  35077. }
  35078. },
  35079. },
  35080. [
  35081. {
  35082. name: "Normal",
  35083. height: math.unit(6 + 3/12, "feet"),
  35084. default: true
  35085. },
  35086. ]
  35087. ))
  35088. characterMakers.push(() => makeCharacter(
  35089. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35090. {
  35091. front: {
  35092. height: math.unit(950, "feet"),
  35093. name: "Front",
  35094. image: {
  35095. source: "./media/characters/vortex/front.svg",
  35096. extra: 1497/1434,
  35097. bottom: 56/1553
  35098. }
  35099. },
  35100. maw: {
  35101. height: math.unit(285, "feet"),
  35102. name: "Maw",
  35103. image: {
  35104. source: "./media/characters/vortex/maw.svg"
  35105. }
  35106. },
  35107. },
  35108. [
  35109. {
  35110. name: "Macro",
  35111. height: math.unit(950, "feet"),
  35112. default: true
  35113. },
  35114. ]
  35115. ))
  35116. characterMakers.push(() => makeCharacter(
  35117. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35118. {
  35119. front: {
  35120. height: math.unit(600, "feet"),
  35121. weight: math.unit(0.02, "grams"),
  35122. name: "Front",
  35123. image: {
  35124. source: "./media/characters/doodle/front.svg",
  35125. extra: 1578/1413,
  35126. bottom: 37/1615
  35127. }
  35128. },
  35129. },
  35130. [
  35131. {
  35132. name: "Macro",
  35133. height: math.unit(600, "feet"),
  35134. default: true
  35135. },
  35136. ]
  35137. ))
  35138. characterMakers.push(() => makeCharacter(
  35139. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35140. {
  35141. front: {
  35142. height: math.unit(6 + 6/12, "feet"),
  35143. name: "Front",
  35144. image: {
  35145. source: "./media/characters/jai/front.svg",
  35146. extra: 1645/1534,
  35147. bottom: 115/1760
  35148. }
  35149. },
  35150. },
  35151. [
  35152. {
  35153. name: "Normal",
  35154. height: math.unit(6 + 6/12, "feet"),
  35155. default: true
  35156. },
  35157. ]
  35158. ))
  35159. characterMakers.push(() => makeCharacter(
  35160. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35161. {
  35162. front: {
  35163. height: math.unit(6 + 8/12, "feet"),
  35164. name: "Front",
  35165. image: {
  35166. source: "./media/characters/pixel/front.svg",
  35167. extra: 1900/1735,
  35168. bottom: 63/1963
  35169. }
  35170. },
  35171. },
  35172. [
  35173. {
  35174. name: "Normal",
  35175. height: math.unit(6 + 8/12, "feet"),
  35176. default: true
  35177. },
  35178. ]
  35179. ))
  35180. characterMakers.push(() => makeCharacter(
  35181. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35182. {
  35183. front: {
  35184. height: math.unit(4 + 11/12, "feet"),
  35185. weight: math.unit(111, "lb"),
  35186. name: "Front",
  35187. image: {
  35188. source: "./media/characters/rhett/front.svg",
  35189. extra: 1682/1586,
  35190. bottom: 92/1774
  35191. }
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "Mini",
  35197. height: math.unit(1 + 1/12, "feet")
  35198. },
  35199. {
  35200. name: "Normal",
  35201. height: math.unit(4 + 11/12, "feet"),
  35202. default: true
  35203. },
  35204. ]
  35205. ))
  35206. characterMakers.push(() => makeCharacter(
  35207. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35208. {
  35209. front: {
  35210. height: math.unit(3 + 3/12, "feet"),
  35211. name: "Front",
  35212. image: {
  35213. source: "./media/characters/penny/front.svg",
  35214. extra: 1406/1311,
  35215. bottom: 26/1432
  35216. }
  35217. },
  35218. },
  35219. [
  35220. {
  35221. name: "Normal",
  35222. height: math.unit(3 + 3/12, "feet"),
  35223. default: true
  35224. },
  35225. ]
  35226. ))
  35227. characterMakers.push(() => makeCharacter(
  35228. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35229. {
  35230. front: {
  35231. height: math.unit(4 + 11/12, "feet"),
  35232. name: "Front",
  35233. image: {
  35234. source: "./media/characters/monty/front.svg",
  35235. extra: 1479/1209,
  35236. bottom: 0/1479
  35237. }
  35238. },
  35239. },
  35240. [
  35241. {
  35242. name: "Normal",
  35243. height: math.unit(4 + 11/12, "feet"),
  35244. default: true
  35245. },
  35246. ]
  35247. ))
  35248. characterMakers.push(() => makeCharacter(
  35249. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35250. {
  35251. front: {
  35252. height: math.unit(8 + 4/12, "feet"),
  35253. name: "Front",
  35254. image: {
  35255. source: "./media/characters/sterling/front.svg",
  35256. extra: 1420/1236,
  35257. bottom: 27/1447
  35258. }
  35259. },
  35260. },
  35261. [
  35262. {
  35263. name: "Normal",
  35264. height: math.unit(8 + 4/12, "feet"),
  35265. default: true
  35266. },
  35267. ]
  35268. ))
  35269. characterMakers.push(() => makeCharacter(
  35270. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35271. {
  35272. front: {
  35273. height: math.unit(15, "feet"),
  35274. name: "Front",
  35275. image: {
  35276. source: "./media/characters/marble/front.svg",
  35277. extra: 973/937,
  35278. bottom: 32/1005
  35279. }
  35280. },
  35281. },
  35282. [
  35283. {
  35284. name: "Normal",
  35285. height: math.unit(15, "feet"),
  35286. default: true
  35287. },
  35288. ]
  35289. ))
  35290. characterMakers.push(() => makeCharacter(
  35291. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35292. {
  35293. front: {
  35294. height: math.unit(3, "inches"),
  35295. name: "Front",
  35296. image: {
  35297. source: "./media/characters/powder/front.svg",
  35298. extra: 1504/1334,
  35299. bottom: 518/2022
  35300. }
  35301. },
  35302. },
  35303. [
  35304. {
  35305. name: "Normal",
  35306. height: math.unit(3, "inches"),
  35307. default: true
  35308. },
  35309. ]
  35310. ))
  35311. characterMakers.push(() => makeCharacter(
  35312. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35313. {
  35314. front: {
  35315. height: math.unit(4 + 5/12, "feet"),
  35316. name: "Front",
  35317. image: {
  35318. source: "./media/characters/joey-raccoon/front.svg",
  35319. extra: 1273/1197,
  35320. bottom: 0/1273
  35321. }
  35322. },
  35323. },
  35324. [
  35325. {
  35326. name: "Normal",
  35327. height: math.unit(4 + 5/12, "feet"),
  35328. default: true
  35329. },
  35330. ]
  35331. ))
  35332. characterMakers.push(() => makeCharacter(
  35333. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35334. {
  35335. front: {
  35336. height: math.unit(8 + 4/12, "feet"),
  35337. name: "Front",
  35338. image: {
  35339. source: "./media/characters/vick/front.svg",
  35340. extra: 2187/2118,
  35341. bottom: 47/2234
  35342. }
  35343. },
  35344. },
  35345. [
  35346. {
  35347. name: "Normal",
  35348. height: math.unit(8 + 4/12, "feet"),
  35349. default: true
  35350. },
  35351. ]
  35352. ))
  35353. characterMakers.push(() => makeCharacter(
  35354. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35355. {
  35356. front: {
  35357. height: math.unit(5 + 5/12, "feet"),
  35358. name: "Front",
  35359. image: {
  35360. source: "./media/characters/mitsy/front.svg",
  35361. extra: 1842/1695,
  35362. bottom: 0/1842
  35363. }
  35364. },
  35365. },
  35366. [
  35367. {
  35368. name: "Normal",
  35369. height: math.unit(5 + 5/12, "feet"),
  35370. default: true
  35371. },
  35372. ]
  35373. ))
  35374. characterMakers.push(() => makeCharacter(
  35375. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35376. {
  35377. front: {
  35378. height: math.unit(6 + 3/12, "feet"),
  35379. name: "Front",
  35380. image: {
  35381. source: "./media/characters/silvy/front.svg",
  35382. extra: 1995/1836,
  35383. bottom: 225/2220
  35384. }
  35385. },
  35386. },
  35387. [
  35388. {
  35389. name: "Normal",
  35390. height: math.unit(6 + 3/12, "feet"),
  35391. default: true
  35392. },
  35393. ]
  35394. ))
  35395. characterMakers.push(() => makeCharacter(
  35396. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35397. {
  35398. front: {
  35399. height: math.unit(3 + 8/12, "feet"),
  35400. name: "Front",
  35401. image: {
  35402. source: "./media/characters/rodney/front.svg",
  35403. extra: 1956/1747,
  35404. bottom: 31/1987
  35405. }
  35406. },
  35407. frontDressed: {
  35408. height: math.unit(2.9, "feet"),
  35409. name: "Front (Dressed)",
  35410. image: {
  35411. source: "./media/characters/rodney/front-dressed.svg",
  35412. extra: 1382/1241,
  35413. bottom: 385/1767
  35414. }
  35415. },
  35416. },
  35417. [
  35418. {
  35419. name: "Normal",
  35420. height: math.unit(3 + 8/12, "feet"),
  35421. default: true
  35422. },
  35423. ]
  35424. ))
  35425. characterMakers.push(() => makeCharacter(
  35426. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35427. {
  35428. front: {
  35429. height: math.unit(5 + 9/12, "feet"),
  35430. weight: math.unit(194, "lbs"),
  35431. name: "Front",
  35432. image: {
  35433. source: "./media/characters/zakail-sudekai/front.svg",
  35434. extra: 2696/2533,
  35435. bottom: 248/2944
  35436. }
  35437. },
  35438. maw: {
  35439. height: math.unit(1.35, "feet"),
  35440. name: "Maw",
  35441. image: {
  35442. source: "./media/characters/zakail-sudekai/maw.svg"
  35443. }
  35444. },
  35445. },
  35446. [
  35447. {
  35448. name: "Normal",
  35449. height: math.unit(5 + 9/12, "feet"),
  35450. default: true
  35451. },
  35452. ]
  35453. ))
  35454. characterMakers.push(() => makeCharacter(
  35455. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35456. {
  35457. front: {
  35458. height: math.unit(8 + 4/12, "feet"),
  35459. weight: math.unit(1200, "lb"),
  35460. name: "Front",
  35461. image: {
  35462. source: "./media/characters/eleanor/front.svg",
  35463. extra: 1226/1192,
  35464. bottom: 52/1278
  35465. }
  35466. },
  35467. back: {
  35468. height: math.unit(8 + 4/12, "feet"),
  35469. weight: math.unit(1200, "lb"),
  35470. name: "Back",
  35471. image: {
  35472. source: "./media/characters/eleanor/back.svg",
  35473. extra: 1242/1184,
  35474. bottom: 60/1302
  35475. }
  35476. },
  35477. head: {
  35478. height: math.unit(2.62, "feet"),
  35479. name: "Head",
  35480. image: {
  35481. source: "./media/characters/eleanor/head.svg"
  35482. }
  35483. },
  35484. },
  35485. [
  35486. {
  35487. name: "Normal",
  35488. height: math.unit(8 + 4/12, "feet"),
  35489. default: true
  35490. },
  35491. ]
  35492. ))
  35493. characterMakers.push(() => makeCharacter(
  35494. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35495. {
  35496. front: {
  35497. height: math.unit(8 + 4/12, "feet"),
  35498. weight: math.unit(750, "lb"),
  35499. name: "Front",
  35500. image: {
  35501. source: "./media/characters/tanya/front.svg",
  35502. extra: 1749/1615,
  35503. bottom: 33/1782
  35504. }
  35505. },
  35506. },
  35507. [
  35508. {
  35509. name: "Normal",
  35510. height: math.unit(8 + 4/12, "feet"),
  35511. default: true
  35512. },
  35513. ]
  35514. ))
  35515. characterMakers.push(() => makeCharacter(
  35516. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35517. {
  35518. front: {
  35519. height: math.unit(5, "feet"),
  35520. weight: math.unit(225, "lb"),
  35521. name: "Front",
  35522. image: {
  35523. source: "./media/characters/cindy/front.svg",
  35524. extra: 1320/1250,
  35525. bottom: 42/1362
  35526. }
  35527. },
  35528. frontDressed: {
  35529. height: math.unit(5, "feet"),
  35530. weight: math.unit(225, "lb"),
  35531. name: "Front (Dressed)",
  35532. image: {
  35533. source: "./media/characters/cindy/front-dressed.svg",
  35534. extra: 1320/1250,
  35535. bottom: 42/1362
  35536. }
  35537. },
  35538. back: {
  35539. height: math.unit(5, "feet"),
  35540. weight: math.unit(225, "lb"),
  35541. name: "Back",
  35542. image: {
  35543. source: "./media/characters/cindy/back.svg",
  35544. extra: 1384/1346,
  35545. bottom: 14/1398
  35546. }
  35547. },
  35548. },
  35549. [
  35550. {
  35551. name: "Normal",
  35552. height: math.unit(5, "feet"),
  35553. default: true
  35554. },
  35555. ]
  35556. ))
  35557. characterMakers.push(() => makeCharacter(
  35558. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35559. {
  35560. front: {
  35561. height: math.unit(6 + 9/12, "feet"),
  35562. weight: math.unit(440, "lb"),
  35563. name: "Front",
  35564. image: {
  35565. source: "./media/characters/wilbur-owen/front.svg",
  35566. extra: 1575/1448,
  35567. bottom: 72/1647
  35568. }
  35569. },
  35570. back: {
  35571. height: math.unit(6 + 9/12, "feet"),
  35572. weight: math.unit(440, "lb"),
  35573. name: "Back",
  35574. image: {
  35575. source: "./media/characters/wilbur-owen/back.svg",
  35576. extra: 1578/1445,
  35577. bottom: 36/1614
  35578. }
  35579. },
  35580. },
  35581. [
  35582. {
  35583. name: "Normal",
  35584. height: math.unit(6 + 9/12, "feet"),
  35585. default: true
  35586. },
  35587. ]
  35588. ))
  35589. characterMakers.push(() => makeCharacter(
  35590. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35591. {
  35592. front: {
  35593. height: math.unit(6 + 5/12, "feet"),
  35594. weight: math.unit(650, "lb"),
  35595. name: "Front",
  35596. image: {
  35597. source: "./media/characters/keegan/front.svg",
  35598. extra: 2387/2198,
  35599. bottom: 33/2420
  35600. }
  35601. },
  35602. side: {
  35603. height: math.unit(6 + 5/12, "feet"),
  35604. weight: math.unit(650, "lb"),
  35605. name: "Side",
  35606. image: {
  35607. source: "./media/characters/keegan/side.svg",
  35608. extra: 2390/2202,
  35609. bottom: 47/2437
  35610. }
  35611. },
  35612. back: {
  35613. height: math.unit(6 + 5/12, "feet"),
  35614. weight: math.unit(650, "lb"),
  35615. name: "Back",
  35616. image: {
  35617. source: "./media/characters/keegan/back.svg",
  35618. extra: 2418/2268,
  35619. bottom: 15/2433
  35620. }
  35621. },
  35622. frontSfw: {
  35623. height: math.unit(6 + 5/12, "feet"),
  35624. weight: math.unit(650, "lb"),
  35625. name: "Front (SFW)",
  35626. image: {
  35627. source: "./media/characters/keegan/front-sfw.svg",
  35628. extra: 2387/2198,
  35629. bottom: 33/2420
  35630. }
  35631. },
  35632. beans: {
  35633. height: math.unit(1.85, "feet"),
  35634. name: "Beans",
  35635. image: {
  35636. source: "./media/characters/keegan/beans.svg"
  35637. }
  35638. },
  35639. },
  35640. [
  35641. {
  35642. name: "Normal",
  35643. height: math.unit(6 + 5/12, "feet"),
  35644. default: true
  35645. },
  35646. ]
  35647. ))
  35648. characterMakers.push(() => makeCharacter(
  35649. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35650. {
  35651. front: {
  35652. height: math.unit(9, "feet"),
  35653. name: "Front",
  35654. image: {
  35655. source: "./media/characters/colton/front.svg",
  35656. extra: 1589/1326,
  35657. bottom: 139/1728
  35658. }
  35659. },
  35660. },
  35661. [
  35662. {
  35663. name: "Normal",
  35664. height: math.unit(9, "feet"),
  35665. default: true
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35671. {
  35672. front: {
  35673. height: math.unit(2 + 9/12, "feet"),
  35674. name: "Front",
  35675. image: {
  35676. source: "./media/characters/bora/front.svg",
  35677. extra: 1265/1250,
  35678. bottom: 24/1289
  35679. }
  35680. },
  35681. },
  35682. [
  35683. {
  35684. name: "Normal",
  35685. height: math.unit(2 + 9/12, "feet"),
  35686. default: true
  35687. },
  35688. ]
  35689. ))
  35690. characterMakers.push(() => makeCharacter(
  35691. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35692. {
  35693. front: {
  35694. height: math.unit(8, "feet"),
  35695. name: "Front",
  35696. image: {
  35697. source: "./media/characters/myu-myu/front.svg",
  35698. extra: 1949/1857,
  35699. bottom: 90/2039
  35700. }
  35701. },
  35702. },
  35703. [
  35704. {
  35705. name: "Normal",
  35706. height: math.unit(8, "feet"),
  35707. default: true
  35708. },
  35709. {
  35710. name: "Big",
  35711. height: math.unit(15, "feet")
  35712. },
  35713. {
  35714. name: "BIG",
  35715. height: math.unit(25, "feet")
  35716. },
  35717. ]
  35718. ))
  35719. characterMakers.push(() => makeCharacter(
  35720. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35721. {
  35722. side: {
  35723. height: math.unit(7 + 5/12, "feet"),
  35724. weight: math.unit(2800, "lb"),
  35725. name: "Side",
  35726. image: {
  35727. source: "./media/characters/haloren/side.svg",
  35728. extra: 1793/409,
  35729. bottom: 59/1852
  35730. }
  35731. },
  35732. frontPaw: {
  35733. height: math.unit(2.36, "feet"),
  35734. name: "Front paw",
  35735. image: {
  35736. source: "./media/characters/haloren/front-paw.svg"
  35737. }
  35738. },
  35739. hindPaw: {
  35740. height: math.unit(3.18, "feet"),
  35741. name: "Hind paw",
  35742. image: {
  35743. source: "./media/characters/haloren/hind-paw.svg"
  35744. }
  35745. },
  35746. maw: {
  35747. height: math.unit(5.05, "feet"),
  35748. name: "Maw",
  35749. image: {
  35750. source: "./media/characters/haloren/maw.svg"
  35751. }
  35752. },
  35753. dick: {
  35754. height: math.unit(2.90, "feet"),
  35755. name: "Dick",
  35756. image: {
  35757. source: "./media/characters/haloren/dick.svg"
  35758. }
  35759. },
  35760. },
  35761. [
  35762. {
  35763. name: "Normal",
  35764. height: math.unit(7 + 5/12, "feet"),
  35765. default: true
  35766. },
  35767. {
  35768. name: "Enhanced",
  35769. height: math.unit(14 + 3/12, "feet")
  35770. },
  35771. ]
  35772. ))
  35773. characterMakers.push(() => makeCharacter(
  35774. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35775. {
  35776. front: {
  35777. height: math.unit(171, "cm"),
  35778. name: "Front",
  35779. image: {
  35780. source: "./media/characters/kimmy/front.svg",
  35781. extra: 1491/1435,
  35782. bottom: 53/1544
  35783. }
  35784. },
  35785. },
  35786. [
  35787. {
  35788. name: "Small",
  35789. height: math.unit(9, "cm")
  35790. },
  35791. {
  35792. name: "Normal",
  35793. height: math.unit(171, "cm"),
  35794. default: true
  35795. },
  35796. ]
  35797. ))
  35798. characterMakers.push(() => makeCharacter(
  35799. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35800. {
  35801. front: {
  35802. height: math.unit(8, "feet"),
  35803. weight: math.unit(300, "lb"),
  35804. name: "Front",
  35805. image: {
  35806. source: "./media/characters/galeboomer/front.svg",
  35807. extra: 4651/4415,
  35808. bottom: 162/4813
  35809. }
  35810. },
  35811. back: {
  35812. height: math.unit(8, "feet"),
  35813. weight: math.unit(300, "lb"),
  35814. name: "Back",
  35815. image: {
  35816. source: "./media/characters/galeboomer/back.svg",
  35817. extra: 4544/4314,
  35818. bottom: 16/4560
  35819. }
  35820. },
  35821. frontAlt: {
  35822. height: math.unit(8, "feet"),
  35823. weight: math.unit(300, "lb"),
  35824. name: "Front (Alt)",
  35825. image: {
  35826. source: "./media/characters/galeboomer/front-alt.svg",
  35827. extra: 4458/4228,
  35828. bottom: 68/4526
  35829. }
  35830. },
  35831. maw: {
  35832. height: math.unit(1.2, "feet"),
  35833. name: "Maw",
  35834. image: {
  35835. source: "./media/characters/galeboomer/maw.svg"
  35836. }
  35837. },
  35838. },
  35839. [
  35840. {
  35841. name: "Normal",
  35842. height: math.unit(8, "feet"),
  35843. default: true
  35844. },
  35845. ]
  35846. ))
  35847. characterMakers.push(() => makeCharacter(
  35848. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35849. {
  35850. front: {
  35851. height: math.unit(5 + 9/12, "feet"),
  35852. weight: math.unit(120, "lb"),
  35853. name: "Front",
  35854. image: {
  35855. source: "./media/characters/chyr/front.svg",
  35856. extra: 1323/1254,
  35857. bottom: 63/1386
  35858. }
  35859. },
  35860. back: {
  35861. height: math.unit(5 + 9/12, "feet"),
  35862. weight: math.unit(120, "lb"),
  35863. name: "Back",
  35864. image: {
  35865. source: "./media/characters/chyr/back.svg",
  35866. extra: 1323/1252,
  35867. bottom: 48/1371
  35868. }
  35869. },
  35870. },
  35871. [
  35872. {
  35873. name: "Normal",
  35874. height: math.unit(5 + 9/12, "feet"),
  35875. default: true
  35876. },
  35877. ]
  35878. ))
  35879. characterMakers.push(() => makeCharacter(
  35880. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35881. {
  35882. front: {
  35883. height: math.unit(7, "feet"),
  35884. weight: math.unit(310, "lb"),
  35885. name: "Front",
  35886. image: {
  35887. source: "./media/characters/solarus/front.svg",
  35888. extra: 2415/2021,
  35889. bottom: 103/2518
  35890. }
  35891. },
  35892. back: {
  35893. height: math.unit(7, "feet"),
  35894. weight: math.unit(310, "lb"),
  35895. name: "Back",
  35896. image: {
  35897. source: "./media/characters/solarus/back.svg",
  35898. extra: 2463/2089,
  35899. bottom: 79/2542
  35900. }
  35901. },
  35902. },
  35903. [
  35904. {
  35905. name: "Normal",
  35906. height: math.unit(7, "feet"),
  35907. default: true
  35908. },
  35909. ]
  35910. ))
  35911. characterMakers.push(() => makeCharacter(
  35912. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35913. {
  35914. front: {
  35915. height: math.unit(16, "feet"),
  35916. name: "Front",
  35917. image: {
  35918. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35919. extra: 1844/1780,
  35920. bottom: 58/1902
  35921. }
  35922. },
  35923. winterCoat: {
  35924. height: math.unit(16, "feet"),
  35925. name: "Winter Coat",
  35926. image: {
  35927. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35928. extra: 1807/1775,
  35929. bottom: 69/1876
  35930. }
  35931. },
  35932. },
  35933. [
  35934. {
  35935. name: "Normal",
  35936. height: math.unit(16, "feet"),
  35937. default: true
  35938. },
  35939. {
  35940. name: "Chicago Size",
  35941. height: math.unit(560, "feet")
  35942. },
  35943. ]
  35944. ))
  35945. characterMakers.push(() => makeCharacter(
  35946. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35947. {
  35948. front: {
  35949. height: math.unit(11 + 6/12, "feet"),
  35950. weight: math.unit(1366, "lb"),
  35951. name: "Front",
  35952. image: {
  35953. source: "./media/characters/lexor/front.svg",
  35954. extra: 1560/1481,
  35955. bottom: 211/1771
  35956. }
  35957. },
  35958. back: {
  35959. height: math.unit(11 + 6/12, "feet"),
  35960. weight: math.unit(1366, "lb"),
  35961. name: "Back",
  35962. image: {
  35963. source: "./media/characters/lexor/back.svg",
  35964. extra: 1614/1533,
  35965. bottom: 76/1690
  35966. }
  35967. },
  35968. maw: {
  35969. height: math.unit(3, "feet"),
  35970. name: "Maw",
  35971. image: {
  35972. source: "./media/characters/lexor/maw.svg"
  35973. }
  35974. },
  35975. dick: {
  35976. height: math.unit(2.59, "feet"),
  35977. name: "Dick",
  35978. image: {
  35979. source: "./media/characters/lexor/dick.svg"
  35980. }
  35981. },
  35982. },
  35983. [
  35984. {
  35985. name: "Normal",
  35986. height: math.unit(11 + 6/12, "feet"),
  35987. default: true
  35988. },
  35989. ]
  35990. ))
  35991. characterMakers.push(() => makeCharacter(
  35992. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35993. {
  35994. front: {
  35995. height: math.unit(5 + 8/12, "feet"),
  35996. name: "Front",
  35997. image: {
  35998. source: "./media/characters/magnum/front.svg",
  35999. extra: 942/855,
  36000. bottom: 26/968
  36001. }
  36002. },
  36003. },
  36004. [
  36005. {
  36006. name: "Normal",
  36007. height: math.unit(5 + 8/12, "feet"),
  36008. default: true
  36009. },
  36010. ]
  36011. ))
  36012. characterMakers.push(() => makeCharacter(
  36013. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36014. {
  36015. front: {
  36016. height: math.unit(18 + 4/12, "feet"),
  36017. weight: math.unit(1500, "kg"),
  36018. name: "Front",
  36019. image: {
  36020. source: "./media/characters/solas-sharpsman/front.svg",
  36021. extra: 1698/1589,
  36022. bottom: 0/1698
  36023. }
  36024. },
  36025. },
  36026. [
  36027. {
  36028. name: "Normal",
  36029. height: math.unit(18 + 4/12, "feet"),
  36030. default: true
  36031. },
  36032. ]
  36033. ))
  36034. characterMakers.push(() => makeCharacter(
  36035. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36036. {
  36037. front: {
  36038. height: math.unit(5 + 5/12, "feet"),
  36039. weight: math.unit(180, "lb"),
  36040. name: "Front",
  36041. image: {
  36042. source: "./media/characters/october/front.svg",
  36043. extra: 1800/1650,
  36044. bottom: 0/1800
  36045. }
  36046. },
  36047. frontNsfw: {
  36048. height: math.unit(5 + 5/12, "feet"),
  36049. weight: math.unit(180, "lb"),
  36050. name: "Front (NSFW)",
  36051. image: {
  36052. source: "./media/characters/october/front-nsfw.svg",
  36053. extra: 1392/1307,
  36054. bottom: 42/1434
  36055. }
  36056. },
  36057. },
  36058. [
  36059. {
  36060. name: "Normal",
  36061. height: math.unit(5 + 5/12, "feet"),
  36062. default: true
  36063. },
  36064. ]
  36065. ))
  36066. characterMakers.push(() => makeCharacter(
  36067. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36068. {
  36069. front: {
  36070. height: math.unit(8 + 6/12, "feet"),
  36071. name: "Front",
  36072. image: {
  36073. source: "./media/characters/essynkardi/front.svg",
  36074. extra: 1914/1846,
  36075. bottom: 22/1936
  36076. }
  36077. },
  36078. },
  36079. [
  36080. {
  36081. name: "Normal",
  36082. height: math.unit(8 + 6/12, "feet"),
  36083. default: true
  36084. },
  36085. ]
  36086. ))
  36087. characterMakers.push(() => makeCharacter(
  36088. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36089. {
  36090. front: {
  36091. height: math.unit(6 + 6/12, "feet"),
  36092. weight: math.unit(7, "lb"),
  36093. name: "Front",
  36094. image: {
  36095. source: "./media/characters/icky/front.svg",
  36096. extra: 813/782,
  36097. bottom: 66/879
  36098. }
  36099. },
  36100. back: {
  36101. height: math.unit(6 + 6/12, "feet"),
  36102. weight: math.unit(7, "lb"),
  36103. name: "Back",
  36104. image: {
  36105. source: "./media/characters/icky/back.svg",
  36106. extra: 754/735,
  36107. bottom: 56/810
  36108. }
  36109. },
  36110. },
  36111. [
  36112. {
  36113. name: "Normal",
  36114. height: math.unit(6 + 6/12, "feet"),
  36115. default: true
  36116. },
  36117. ]
  36118. ))
  36119. characterMakers.push(() => makeCharacter(
  36120. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36121. {
  36122. front: {
  36123. height: math.unit(15, "feet"),
  36124. name: "Front",
  36125. image: {
  36126. source: "./media/characters/rojas/front.svg",
  36127. extra: 1462/1408,
  36128. bottom: 95/1557
  36129. }
  36130. },
  36131. back: {
  36132. height: math.unit(15, "feet"),
  36133. name: "Back",
  36134. image: {
  36135. source: "./media/characters/rojas/back.svg",
  36136. extra: 1023/954,
  36137. bottom: 28/1051
  36138. }
  36139. },
  36140. },
  36141. [
  36142. {
  36143. name: "Normal",
  36144. height: math.unit(15, "feet"),
  36145. default: true
  36146. },
  36147. ]
  36148. ))
  36149. characterMakers.push(() => makeCharacter(
  36150. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36151. {
  36152. frontHuman: {
  36153. height: math.unit(5 + 7/12, "feet"),
  36154. name: "Front (Human)",
  36155. image: {
  36156. source: "./media/characters/alek-dryagan/front-human.svg",
  36157. extra: 1687/1667,
  36158. bottom: 69/1756
  36159. }
  36160. },
  36161. backHuman: {
  36162. height: math.unit(5 + 7/12, "feet"),
  36163. name: "Back (Human)",
  36164. image: {
  36165. source: "./media/characters/alek-dryagan/back-human.svg",
  36166. extra: 1670/1649,
  36167. bottom: 65/1735
  36168. }
  36169. },
  36170. frontDemi: {
  36171. height: math.unit(65, "feet"),
  36172. name: "Front (Demi)",
  36173. image: {
  36174. source: "./media/characters/alek-dryagan/front-demi.svg",
  36175. extra: 1669/1642,
  36176. bottom: 49/1718
  36177. }
  36178. },
  36179. backDemi: {
  36180. height: math.unit(65, "feet"),
  36181. name: "Back (Demi)",
  36182. image: {
  36183. source: "./media/characters/alek-dryagan/back-demi.svg",
  36184. extra: 1658/1637,
  36185. bottom: 40/1698
  36186. }
  36187. },
  36188. mawHuman: {
  36189. height: math.unit(0.3, "feet"),
  36190. name: "Maw (Human)",
  36191. image: {
  36192. source: "./media/characters/alek-dryagan/maw-human.svg"
  36193. }
  36194. },
  36195. mawDemi: {
  36196. height: math.unit(3.8, "feet"),
  36197. name: "Maw (Demi)",
  36198. image: {
  36199. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36200. }
  36201. },
  36202. },
  36203. [
  36204. {
  36205. name: "Normal",
  36206. height: math.unit(5 + 7/12, "feet"),
  36207. default: true
  36208. },
  36209. ]
  36210. ))
  36211. characterMakers.push(() => makeCharacter(
  36212. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36213. {
  36214. frontHuman: {
  36215. height: math.unit(5 + 2/12, "feet"),
  36216. name: "Front (Human)",
  36217. image: {
  36218. source: "./media/characters/gen/front-human.svg",
  36219. extra: 1627/1538,
  36220. bottom: 71/1698
  36221. }
  36222. },
  36223. backHuman: {
  36224. height: math.unit(5 + 2/12, "feet"),
  36225. name: "Back (Human)",
  36226. image: {
  36227. source: "./media/characters/gen/back-human.svg",
  36228. extra: 1638/1548,
  36229. bottom: 69/1707
  36230. }
  36231. },
  36232. frontDemi: {
  36233. height: math.unit(5 + 2/12, "feet"),
  36234. name: "Front (Demi)",
  36235. image: {
  36236. source: "./media/characters/gen/front-demi.svg",
  36237. extra: 1627/1538,
  36238. bottom: 71/1698
  36239. }
  36240. },
  36241. backDemi: {
  36242. height: math.unit(5 + 2/12, "feet"),
  36243. name: "Back (Demi)",
  36244. image: {
  36245. source: "./media/characters/gen/back-demi.svg",
  36246. extra: 1638/1548,
  36247. bottom: 69/1707
  36248. }
  36249. },
  36250. },
  36251. [
  36252. {
  36253. name: "Normal",
  36254. height: math.unit(5 + 2/12, "feet"),
  36255. default: true
  36256. },
  36257. ]
  36258. ))
  36259. characterMakers.push(() => makeCharacter(
  36260. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36261. {
  36262. frontImp: {
  36263. height: math.unit(1 + 11/12, "feet"),
  36264. name: "Front (Imp)",
  36265. image: {
  36266. source: "./media/characters/max-kobold/front-imp.svg",
  36267. extra: 1238/1134,
  36268. bottom: 81/1319
  36269. }
  36270. },
  36271. backImp: {
  36272. height: math.unit(1 + 11/12, "feet"),
  36273. name: "Back (Imp)",
  36274. image: {
  36275. source: "./media/characters/max-kobold/back-imp.svg",
  36276. extra: 1334/1175,
  36277. bottom: 34/1368
  36278. }
  36279. },
  36280. frontDemi: {
  36281. height: math.unit(5 + 9/12, "feet"),
  36282. name: "Front (Demi)",
  36283. image: {
  36284. source: "./media/characters/max-kobold/front-demi.svg",
  36285. extra: 1715/1685,
  36286. bottom: 54/1769
  36287. }
  36288. },
  36289. backDemi: {
  36290. height: math.unit(5 + 9/12, "feet"),
  36291. name: "Back (Demi)",
  36292. image: {
  36293. source: "./media/characters/max-kobold/back-demi.svg",
  36294. extra: 1752/1729,
  36295. bottom: 41/1793
  36296. }
  36297. },
  36298. handImp: {
  36299. height: math.unit(0.45, "feet"),
  36300. name: "Hand (Imp)",
  36301. image: {
  36302. source: "./media/characters/max-kobold/hand.svg"
  36303. }
  36304. },
  36305. pawImp: {
  36306. height: math.unit(0.46, "feet"),
  36307. name: "Paw (Imp)",
  36308. image: {
  36309. source: "./media/characters/max-kobold/paw.svg"
  36310. }
  36311. },
  36312. handDemi: {
  36313. height: math.unit(0.80, "feet"),
  36314. name: "Hand (Demi)",
  36315. image: {
  36316. source: "./media/characters/max-kobold/hand.svg"
  36317. }
  36318. },
  36319. pawDemi: {
  36320. height: math.unit(1.1, "feet"),
  36321. name: "Paw (Demi)",
  36322. image: {
  36323. source: "./media/characters/max-kobold/paw.svg"
  36324. }
  36325. },
  36326. headImp: {
  36327. height: math.unit(1.33, "feet"),
  36328. name: "Head (Imp)",
  36329. image: {
  36330. source: "./media/characters/max-kobold/head-imp.svg"
  36331. }
  36332. },
  36333. mawImp: {
  36334. height: math.unit(0.75, "feet"),
  36335. name: "Maw (Imp)",
  36336. image: {
  36337. source: "./media/characters/max-kobold/maw-imp.svg"
  36338. }
  36339. },
  36340. mawDemi: {
  36341. height: math.unit(0.42, "feet"),
  36342. name: "Maw (Demi)",
  36343. image: {
  36344. source: "./media/characters/max-kobold/maw-demi.svg"
  36345. }
  36346. },
  36347. },
  36348. [
  36349. {
  36350. name: "Normal",
  36351. height: math.unit(1 + 11/12, "feet"),
  36352. default: true
  36353. },
  36354. ]
  36355. ))
  36356. characterMakers.push(() => makeCharacter(
  36357. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36358. {
  36359. front: {
  36360. height: math.unit(7 + 5/12, "feet"),
  36361. name: "Front",
  36362. image: {
  36363. source: "./media/characters/carbon/front.svg",
  36364. extra: 1754/1689,
  36365. bottom: 65/1819
  36366. }
  36367. },
  36368. back: {
  36369. height: math.unit(7 + 5/12, "feet"),
  36370. name: "Back",
  36371. image: {
  36372. source: "./media/characters/carbon/back.svg",
  36373. extra: 1762/1695,
  36374. bottom: 24/1786
  36375. }
  36376. },
  36377. frontGigantamax: {
  36378. height: math.unit(150, "feet"),
  36379. name: "Front (Gigantamax)",
  36380. image: {
  36381. source: "./media/characters/carbon/front-gigantamax.svg",
  36382. extra: 1826/1669,
  36383. bottom: 59/1885
  36384. }
  36385. },
  36386. backGigantamax: {
  36387. height: math.unit(150, "feet"),
  36388. name: "Back (Gigantamax)",
  36389. image: {
  36390. source: "./media/characters/carbon/back-gigantamax.svg",
  36391. extra: 1796/1653,
  36392. bottom: 53/1849
  36393. }
  36394. },
  36395. maw: {
  36396. height: math.unit(0.48, "feet"),
  36397. name: "Maw",
  36398. image: {
  36399. source: "./media/characters/carbon/maw.svg"
  36400. }
  36401. },
  36402. mawGigantamax: {
  36403. height: math.unit(7.5, "feet"),
  36404. name: "Maw (Gigantamax)",
  36405. image: {
  36406. source: "./media/characters/carbon/maw-gigantamax.svg"
  36407. }
  36408. },
  36409. },
  36410. [
  36411. {
  36412. name: "Normal",
  36413. height: math.unit(7 + 5/12, "feet"),
  36414. default: true
  36415. },
  36416. ]
  36417. ))
  36418. characterMakers.push(() => makeCharacter(
  36419. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36420. {
  36421. front: {
  36422. height: math.unit(6, "feet"),
  36423. name: "Front",
  36424. image: {
  36425. source: "./media/characters/maverick/front.svg",
  36426. extra: 1672/1661,
  36427. bottom: 85/1757
  36428. }
  36429. },
  36430. back: {
  36431. height: math.unit(6, "feet"),
  36432. name: "Back",
  36433. image: {
  36434. source: "./media/characters/maverick/back.svg",
  36435. extra: 1642/1631,
  36436. bottom: 38/1680
  36437. }
  36438. },
  36439. },
  36440. [
  36441. {
  36442. name: "Normal",
  36443. height: math.unit(6, "feet"),
  36444. default: true
  36445. },
  36446. ]
  36447. ))
  36448. characterMakers.push(() => makeCharacter(
  36449. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36450. {
  36451. front: {
  36452. height: math.unit(15, "feet"),
  36453. weight: math.unit(615, "lb"),
  36454. name: "Front",
  36455. image: {
  36456. source: "./media/characters/grockle/front.svg",
  36457. extra: 1535/1427,
  36458. bottom: 56/1591
  36459. }
  36460. },
  36461. },
  36462. [
  36463. {
  36464. name: "Normal",
  36465. height: math.unit(15, "feet"),
  36466. default: true
  36467. },
  36468. {
  36469. name: "Large",
  36470. height: math.unit(150, "feet")
  36471. },
  36472. {
  36473. name: "Macro",
  36474. height: math.unit(1876, "feet")
  36475. },
  36476. {
  36477. name: "Mega Macro",
  36478. height: math.unit(121940, "feet")
  36479. },
  36480. {
  36481. name: "Giga Macro",
  36482. height: math.unit(750, "km")
  36483. },
  36484. {
  36485. name: "Tera Macro",
  36486. height: math.unit(750000, "km")
  36487. },
  36488. {
  36489. name: "Galactic",
  36490. height: math.unit(1.4e5, "km")
  36491. },
  36492. {
  36493. name: "Godlike",
  36494. height: math.unit(9.8e280, "galaxies")
  36495. },
  36496. ]
  36497. ))
  36498. characterMakers.push(() => makeCharacter(
  36499. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36500. {
  36501. front: {
  36502. height: math.unit(11, "meters"),
  36503. weight: math.unit(20, "tonnes"),
  36504. name: "Front",
  36505. image: {
  36506. source: "./media/characters/alistair/front.svg",
  36507. extra: 1265/1009,
  36508. bottom: 93/1358
  36509. }
  36510. },
  36511. },
  36512. [
  36513. {
  36514. name: "Normal",
  36515. height: math.unit(11, "meters"),
  36516. default: true
  36517. },
  36518. ]
  36519. ))
  36520. characterMakers.push(() => makeCharacter(
  36521. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36522. {
  36523. front: {
  36524. height: math.unit(5 + 8/12, "feet"),
  36525. name: "Front",
  36526. image: {
  36527. source: "./media/characters/haruka/front.svg",
  36528. extra: 2012/1952,
  36529. bottom: 0/2012
  36530. }
  36531. },
  36532. },
  36533. [
  36534. {
  36535. name: "Normal",
  36536. height: math.unit(5 + 8/12, "feet"),
  36537. default: true
  36538. },
  36539. ]
  36540. ))
  36541. characterMakers.push(() => makeCharacter(
  36542. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36543. {
  36544. back: {
  36545. height: math.unit(9, "feet"),
  36546. name: "Back",
  36547. image: {
  36548. source: "./media/characters/vivian-sylveon/back.svg",
  36549. extra: 1853/1714,
  36550. bottom: 0/1853
  36551. }
  36552. },
  36553. },
  36554. [
  36555. {
  36556. name: "Normal",
  36557. height: math.unit(9, "feet"),
  36558. default: true
  36559. },
  36560. {
  36561. name: "Macro",
  36562. height: math.unit(500, "feet")
  36563. },
  36564. {
  36565. name: "Megamacro",
  36566. height: math.unit(600, "miles")
  36567. },
  36568. {
  36569. name: "Gigamacro",
  36570. height: math.unit(30000, "miles")
  36571. },
  36572. ]
  36573. ))
  36574. characterMakers.push(() => makeCharacter(
  36575. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36576. {
  36577. anthro: {
  36578. height: math.unit(5 + 10/12, "feet"),
  36579. weight: math.unit(100, "lb"),
  36580. name: "Anthro",
  36581. image: {
  36582. source: "./media/characters/daiki/anthro.svg",
  36583. extra: 1115/1027,
  36584. bottom: 69/1184
  36585. }
  36586. },
  36587. feral: {
  36588. height: math.unit(200, "feet"),
  36589. name: "Feral",
  36590. image: {
  36591. source: "./media/characters/daiki/feral.svg",
  36592. extra: 1256/313,
  36593. bottom: 39/1295
  36594. }
  36595. },
  36596. feralHead: {
  36597. height: math.unit(171, "feet"),
  36598. name: "Feral Head",
  36599. image: {
  36600. source: "./media/characters/daiki/feral-head.svg"
  36601. }
  36602. },
  36603. manaDragon: {
  36604. height: math.unit(170, "meters"),
  36605. name: "Mana-dragon",
  36606. image: {
  36607. source: "./media/characters/daiki/mana-dragon.svg",
  36608. extra: 763/420,
  36609. bottom: 97/860
  36610. }
  36611. },
  36612. },
  36613. [
  36614. {
  36615. name: "Normal",
  36616. height: math.unit(5 + 10/12, "feet"),
  36617. default: true
  36618. },
  36619. ]
  36620. ))
  36621. characterMakers.push(() => makeCharacter(
  36622. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36623. {
  36624. fullyEquippedFront: {
  36625. height: math.unit(3 + 1/12, "feet"),
  36626. weight: math.unit(24, "lb"),
  36627. name: "Fully Equipped (Front)",
  36628. image: {
  36629. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36630. extra: 687/605,
  36631. bottom: 18/705
  36632. }
  36633. },
  36634. fullyEquippedBack: {
  36635. height: math.unit(3 + 1/12, "feet"),
  36636. weight: math.unit(24, "lb"),
  36637. name: "Fully Equipped (Back)",
  36638. image: {
  36639. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36640. extra: 689/590,
  36641. bottom: 18/707
  36642. }
  36643. },
  36644. dailyWear: {
  36645. height: math.unit(3 + 1/12, "feet"),
  36646. weight: math.unit(24, "lb"),
  36647. name: "Daily Wear",
  36648. image: {
  36649. source: "./media/characters/tea-spot/daily-wear.svg",
  36650. extra: 701/620,
  36651. bottom: 21/722
  36652. }
  36653. },
  36654. maidWork: {
  36655. height: math.unit(3 + 1/12, "feet"),
  36656. weight: math.unit(24, "lb"),
  36657. name: "Maid Work",
  36658. image: {
  36659. source: "./media/characters/tea-spot/maid-work.svg",
  36660. extra: 693/609,
  36661. bottom: 15/708
  36662. }
  36663. },
  36664. },
  36665. [
  36666. {
  36667. name: "Normal",
  36668. height: math.unit(3 + 1/12, "feet"),
  36669. default: true
  36670. },
  36671. ]
  36672. ))
  36673. characterMakers.push(() => makeCharacter(
  36674. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36675. {
  36676. front: {
  36677. height: math.unit(175, "cm"),
  36678. weight: math.unit(75, "kg"),
  36679. name: "Front",
  36680. image: {
  36681. source: "./media/characters/chee/front.svg",
  36682. extra: 1796/1740,
  36683. bottom: 40/1836
  36684. }
  36685. },
  36686. },
  36687. [
  36688. {
  36689. name: "Micro-Micro",
  36690. height: math.unit(1, "nm")
  36691. },
  36692. {
  36693. name: "Micro-erst",
  36694. height: math.unit(1, "micrometer")
  36695. },
  36696. {
  36697. name: "Micro-er",
  36698. height: math.unit(1, "cm")
  36699. },
  36700. {
  36701. name: "Normal",
  36702. height: math.unit(175, "cm"),
  36703. default: true
  36704. },
  36705. {
  36706. name: "Macro",
  36707. height: math.unit(100, "m")
  36708. },
  36709. {
  36710. name: "Macro-er",
  36711. height: math.unit(1, "km")
  36712. },
  36713. {
  36714. name: "Macro-erst",
  36715. height: math.unit(10, "km")
  36716. },
  36717. {
  36718. name: "Macro-Macro",
  36719. height: math.unit(100, "km")
  36720. },
  36721. ]
  36722. ))
  36723. characterMakers.push(() => makeCharacter(
  36724. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36725. {
  36726. front: {
  36727. height: math.unit(11 + 9/12, "feet"),
  36728. weight: math.unit(935, "lb"),
  36729. name: "Front",
  36730. image: {
  36731. source: "./media/characters/kingsley/front.svg",
  36732. extra: 1803/1674,
  36733. bottom: 127/1930
  36734. }
  36735. },
  36736. frontNude: {
  36737. height: math.unit(11 + 9/12, "feet"),
  36738. weight: math.unit(935, "lb"),
  36739. name: "Front (Nude)",
  36740. image: {
  36741. source: "./media/characters/kingsley/front-nude.svg",
  36742. extra: 1803/1674,
  36743. bottom: 127/1930
  36744. }
  36745. },
  36746. },
  36747. [
  36748. {
  36749. name: "Normal",
  36750. height: math.unit(11 + 9/12, "feet"),
  36751. default: true
  36752. },
  36753. ]
  36754. ))
  36755. characterMakers.push(() => makeCharacter(
  36756. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36757. {
  36758. side: {
  36759. height: math.unit(9, "feet"),
  36760. name: "Side",
  36761. image: {
  36762. source: "./media/characters/rymel/side.svg",
  36763. extra: 792/469,
  36764. bottom: 121/913
  36765. }
  36766. },
  36767. maw: {
  36768. height: math.unit(2.4, "meters"),
  36769. name: "Maw",
  36770. image: {
  36771. source: "./media/characters/rymel/maw.svg"
  36772. }
  36773. },
  36774. },
  36775. [
  36776. {
  36777. name: "House Drake",
  36778. height: math.unit(2, "feet")
  36779. },
  36780. {
  36781. name: "Reduced",
  36782. height: math.unit(4.5, "feet")
  36783. },
  36784. {
  36785. name: "Normal",
  36786. height: math.unit(9, "feet"),
  36787. default: true
  36788. },
  36789. ]
  36790. ))
  36791. characterMakers.push(() => makeCharacter(
  36792. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36793. {
  36794. front: {
  36795. height: math.unit(1.74, "meters"),
  36796. weight: math.unit(55, "kg"),
  36797. name: "Front",
  36798. image: {
  36799. source: "./media/characters/rubus/front.svg",
  36800. extra: 1894/1742,
  36801. bottom: 44/1938
  36802. }
  36803. },
  36804. },
  36805. [
  36806. {
  36807. name: "Normal",
  36808. height: math.unit(1.74, "meters"),
  36809. default: true
  36810. },
  36811. ]
  36812. ))
  36813. characterMakers.push(() => makeCharacter(
  36814. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36815. {
  36816. front: {
  36817. height: math.unit(5 + 2/12, "feet"),
  36818. weight: math.unit(112, "lb"),
  36819. name: "Front",
  36820. image: {
  36821. source: "./media/characters/cassie-kingston/front.svg",
  36822. extra: 1438/1390,
  36823. bottom: 47/1485
  36824. }
  36825. },
  36826. },
  36827. [
  36828. {
  36829. name: "Normal",
  36830. height: math.unit(5 + 2/12, "feet"),
  36831. default: true
  36832. },
  36833. {
  36834. name: "Macro",
  36835. height: math.unit(128, "feet")
  36836. },
  36837. {
  36838. name: "Megamacro",
  36839. height: math.unit(2.56, "miles")
  36840. },
  36841. ]
  36842. ))
  36843. characterMakers.push(() => makeCharacter(
  36844. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36845. {
  36846. front: {
  36847. height: math.unit(7, "feet"),
  36848. name: "Front",
  36849. image: {
  36850. source: "./media/characters/fox/front.svg",
  36851. extra: 1798/1703,
  36852. bottom: 55/1853
  36853. }
  36854. },
  36855. back: {
  36856. height: math.unit(7, "feet"),
  36857. name: "Back",
  36858. image: {
  36859. source: "./media/characters/fox/back.svg",
  36860. extra: 1748/1649,
  36861. bottom: 32/1780
  36862. }
  36863. },
  36864. head: {
  36865. height: math.unit(1.95, "feet"),
  36866. name: "Head",
  36867. image: {
  36868. source: "./media/characters/fox/head.svg"
  36869. }
  36870. },
  36871. dick: {
  36872. height: math.unit(1.33, "feet"),
  36873. name: "Dick",
  36874. image: {
  36875. source: "./media/characters/fox/dick.svg"
  36876. }
  36877. },
  36878. foot: {
  36879. height: math.unit(1, "feet"),
  36880. name: "Foot",
  36881. image: {
  36882. source: "./media/characters/fox/foot.svg"
  36883. }
  36884. },
  36885. paw: {
  36886. height: math.unit(0.92, "feet"),
  36887. name: "Paw",
  36888. image: {
  36889. source: "./media/characters/fox/paw.svg"
  36890. }
  36891. },
  36892. },
  36893. [
  36894. {
  36895. name: "Small",
  36896. height: math.unit(3, "inches")
  36897. },
  36898. {
  36899. name: "\"Realistic\"",
  36900. height: math.unit(7, "feet")
  36901. },
  36902. {
  36903. name: "Normal",
  36904. height: math.unit(150, "feet"),
  36905. default: true
  36906. },
  36907. {
  36908. name: "BIG",
  36909. height: math.unit(1200, "feet")
  36910. },
  36911. {
  36912. name: "👀",
  36913. height: math.unit(5, "miles")
  36914. },
  36915. {
  36916. name: "👀👀👀",
  36917. height: math.unit(64, "miles")
  36918. },
  36919. ]
  36920. ))
  36921. characterMakers.push(() => makeCharacter(
  36922. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36923. {
  36924. front: {
  36925. height: math.unit(625, "feet"),
  36926. name: "Front",
  36927. image: {
  36928. source: "./media/characters/asonja-rossa/front.svg",
  36929. extra: 1833/1686,
  36930. bottom: 24/1857
  36931. }
  36932. },
  36933. back: {
  36934. height: math.unit(625, "feet"),
  36935. name: "Back",
  36936. image: {
  36937. source: "./media/characters/asonja-rossa/back.svg",
  36938. extra: 1852/1753,
  36939. bottom: 26/1878
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Macro",
  36946. height: math.unit(625, "feet"),
  36947. default: true
  36948. },
  36949. ]
  36950. ))
  36951. characterMakers.push(() => makeCharacter(
  36952. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36953. {
  36954. side: {
  36955. height: math.unit(8, "feet"),
  36956. name: "Side",
  36957. image: {
  36958. source: "./media/characters/rezukii/side.svg",
  36959. extra: 979/542,
  36960. bottom: 87/1066
  36961. }
  36962. },
  36963. sitting: {
  36964. height: math.unit(14.6, "feet"),
  36965. name: "Sitting",
  36966. image: {
  36967. source: "./media/characters/rezukii/sitting.svg",
  36968. extra: 1023/813,
  36969. bottom: 45/1068
  36970. }
  36971. },
  36972. },
  36973. [
  36974. {
  36975. name: "Tiny",
  36976. height: math.unit(2, "feet")
  36977. },
  36978. {
  36979. name: "Smol",
  36980. height: math.unit(4, "feet")
  36981. },
  36982. {
  36983. name: "Normal",
  36984. height: math.unit(8, "feet"),
  36985. default: true
  36986. },
  36987. {
  36988. name: "Big",
  36989. height: math.unit(12, "feet")
  36990. },
  36991. {
  36992. name: "Macro",
  36993. height: math.unit(30, "feet")
  36994. },
  36995. ]
  36996. ))
  36997. characterMakers.push(() => makeCharacter(
  36998. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36999. {
  37000. front: {
  37001. height: math.unit(14, "feet"),
  37002. weight: math.unit(9.5, "tonnes"),
  37003. name: "Front",
  37004. image: {
  37005. source: "./media/characters/dawnheart/front.svg",
  37006. extra: 2792/2675,
  37007. bottom: 64/2856
  37008. }
  37009. },
  37010. },
  37011. [
  37012. {
  37013. name: "Normal",
  37014. height: math.unit(14, "feet"),
  37015. default: true
  37016. },
  37017. ]
  37018. ))
  37019. characterMakers.push(() => makeCharacter(
  37020. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37021. {
  37022. front: {
  37023. height: math.unit(1.7, "m"),
  37024. name: "Front",
  37025. image: {
  37026. source: "./media/characters/gladi/front.svg",
  37027. extra: 1460/1362,
  37028. bottom: 19/1479
  37029. }
  37030. },
  37031. back: {
  37032. height: math.unit(1.7, "m"),
  37033. name: "Back",
  37034. image: {
  37035. source: "./media/characters/gladi/back.svg",
  37036. extra: 1459/1357,
  37037. bottom: 12/1471
  37038. }
  37039. },
  37040. feral: {
  37041. height: math.unit(2.05, "m"),
  37042. name: "Feral",
  37043. image: {
  37044. source: "./media/characters/gladi/feral.svg",
  37045. extra: 821/557,
  37046. bottom: 91/912
  37047. }
  37048. },
  37049. },
  37050. [
  37051. {
  37052. name: "Shortest",
  37053. height: math.unit(70, "cm")
  37054. },
  37055. {
  37056. name: "Normal",
  37057. height: math.unit(1.7, "m")
  37058. },
  37059. {
  37060. name: "Macro",
  37061. height: math.unit(10, "m"),
  37062. default: true
  37063. },
  37064. {
  37065. name: "Tallest",
  37066. height: math.unit(200, "m")
  37067. },
  37068. ]
  37069. ))
  37070. characterMakers.push(() => makeCharacter(
  37071. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37072. {
  37073. front: {
  37074. height: math.unit(5 + 7/12, "feet"),
  37075. weight: math.unit(2, "tons"),
  37076. name: "Front",
  37077. image: {
  37078. source: "./media/characters/erdno/front.svg",
  37079. extra: 1234/1129,
  37080. bottom: 35/1269
  37081. }
  37082. },
  37083. angled: {
  37084. height: math.unit(5 + 7/12, "feet"),
  37085. weight: math.unit(2, "tons"),
  37086. name: "Angled",
  37087. image: {
  37088. source: "./media/characters/erdno/angled.svg",
  37089. extra: 1185/1139,
  37090. bottom: 36/1221
  37091. }
  37092. },
  37093. side: {
  37094. height: math.unit(5 + 7/12, "feet"),
  37095. weight: math.unit(2, "tons"),
  37096. name: "Side",
  37097. image: {
  37098. source: "./media/characters/erdno/side.svg",
  37099. extra: 1191/1144,
  37100. bottom: 40/1231
  37101. }
  37102. },
  37103. back: {
  37104. height: math.unit(5 + 7/12, "feet"),
  37105. weight: math.unit(2, "tons"),
  37106. name: "Back",
  37107. image: {
  37108. source: "./media/characters/erdno/back.svg",
  37109. extra: 1202/1146,
  37110. bottom: 17/1219
  37111. }
  37112. },
  37113. frontNsfw: {
  37114. height: math.unit(5 + 7/12, "feet"),
  37115. weight: math.unit(2, "tons"),
  37116. name: "Front (NSFW)",
  37117. image: {
  37118. source: "./media/characters/erdno/front-nsfw.svg",
  37119. extra: 1234/1129,
  37120. bottom: 35/1269
  37121. }
  37122. },
  37123. angledNsfw: {
  37124. height: math.unit(5 + 7/12, "feet"),
  37125. weight: math.unit(2, "tons"),
  37126. name: "Angled (NSFW)",
  37127. image: {
  37128. source: "./media/characters/erdno/angled-nsfw.svg",
  37129. extra: 1185/1139,
  37130. bottom: 36/1221
  37131. }
  37132. },
  37133. sideNsfw: {
  37134. height: math.unit(5 + 7/12, "feet"),
  37135. weight: math.unit(2, "tons"),
  37136. name: "Side (NSFW)",
  37137. image: {
  37138. source: "./media/characters/erdno/side-nsfw.svg",
  37139. extra: 1191/1144,
  37140. bottom: 40/1231
  37141. }
  37142. },
  37143. backNsfw: {
  37144. height: math.unit(5 + 7/12, "feet"),
  37145. weight: math.unit(2, "tons"),
  37146. name: "Back (NSFW)",
  37147. image: {
  37148. source: "./media/characters/erdno/back-nsfw.svg",
  37149. extra: 1202/1146,
  37150. bottom: 17/1219
  37151. }
  37152. },
  37153. frontHyper: {
  37154. height: math.unit(5 + 7/12, "feet"),
  37155. weight: math.unit(2, "tons"),
  37156. name: "Front (Hyper)",
  37157. image: {
  37158. source: "./media/characters/erdno/front-hyper.svg",
  37159. extra: 1298/1136,
  37160. bottom: 35/1333
  37161. }
  37162. },
  37163. },
  37164. [
  37165. {
  37166. name: "Normal",
  37167. height: math.unit(5 + 7/12, "feet"),
  37168. default: true
  37169. },
  37170. {
  37171. name: "Big",
  37172. height: math.unit(5.7, "meters")
  37173. },
  37174. {
  37175. name: "Macro",
  37176. height: math.unit(5.7, "kilometers")
  37177. },
  37178. {
  37179. name: "Megamacro",
  37180. height: math.unit(5.7, "earths")
  37181. },
  37182. ]
  37183. ))
  37184. characterMakers.push(() => makeCharacter(
  37185. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37186. {
  37187. front: {
  37188. height: math.unit(5 + 10/12, "feet"),
  37189. weight: math.unit(150, "lb"),
  37190. name: "Front",
  37191. image: {
  37192. source: "./media/characters/jamie/front.svg",
  37193. extra: 1908/1768,
  37194. bottom: 19/1927
  37195. }
  37196. },
  37197. },
  37198. [
  37199. {
  37200. name: "Minimum",
  37201. height: math.unit(2, "cm")
  37202. },
  37203. {
  37204. name: "Micro",
  37205. height: math.unit(3, "inches")
  37206. },
  37207. {
  37208. name: "Normal",
  37209. height: math.unit(5 + 10/12, "feet"),
  37210. default: true
  37211. },
  37212. {
  37213. name: "Macro",
  37214. height: math.unit(150, "feet")
  37215. },
  37216. {
  37217. name: "Megamacro",
  37218. height: math.unit(10000, "m")
  37219. },
  37220. ]
  37221. ))
  37222. characterMakers.push(() => makeCharacter(
  37223. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37224. {
  37225. front: {
  37226. height: math.unit(2, "meters"),
  37227. weight: math.unit(100, "kg"),
  37228. name: "Front",
  37229. image: {
  37230. source: "./media/characters/shiron/front.svg",
  37231. extra: 2103/1985,
  37232. bottom: 98/2201
  37233. }
  37234. },
  37235. back: {
  37236. height: math.unit(2, "meters"),
  37237. weight: math.unit(100, "kg"),
  37238. name: "Back",
  37239. image: {
  37240. source: "./media/characters/shiron/back.svg",
  37241. extra: 2110/2015,
  37242. bottom: 89/2199
  37243. }
  37244. },
  37245. hand: {
  37246. height: math.unit(0.96, "feet"),
  37247. name: "Hand",
  37248. image: {
  37249. source: "./media/characters/shiron/hand.svg"
  37250. }
  37251. },
  37252. foot: {
  37253. height: math.unit(1.464, "feet"),
  37254. name: "Foot",
  37255. image: {
  37256. source: "./media/characters/shiron/foot.svg"
  37257. }
  37258. },
  37259. },
  37260. [
  37261. {
  37262. name: "Normal",
  37263. height: math.unit(2, "meters")
  37264. },
  37265. {
  37266. name: "Macro",
  37267. height: math.unit(500, "meters"),
  37268. default: true
  37269. },
  37270. {
  37271. name: "Megamacro",
  37272. height: math.unit(20, "km")
  37273. },
  37274. ]
  37275. ))
  37276. characterMakers.push(() => makeCharacter(
  37277. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37278. {
  37279. front: {
  37280. height: math.unit(6, "feet"),
  37281. name: "Front",
  37282. image: {
  37283. source: "./media/characters/sam/front.svg",
  37284. extra: 849/826,
  37285. bottom: 19/868
  37286. }
  37287. },
  37288. },
  37289. [
  37290. {
  37291. name: "Normal",
  37292. height: math.unit(6, "feet"),
  37293. default: true
  37294. },
  37295. ]
  37296. ))
  37297. characterMakers.push(() => makeCharacter(
  37298. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37299. {
  37300. front: {
  37301. height: math.unit(8 + 4/12, "feet"),
  37302. weight: math.unit(122, "kg"),
  37303. name: "Front",
  37304. image: {
  37305. source: "./media/characters/namori-kurogawa/front.svg",
  37306. extra: 1894/1576,
  37307. bottom: 34/1928
  37308. }
  37309. },
  37310. },
  37311. [
  37312. {
  37313. name: "Normal",
  37314. height: math.unit(8 + 4/12, "feet"),
  37315. default: true
  37316. },
  37317. ]
  37318. ))
  37319. characterMakers.push(() => makeCharacter(
  37320. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37321. {
  37322. front: {
  37323. height: math.unit(9, "feet"),
  37324. weight: math.unit(621, "lb"),
  37325. name: "Front",
  37326. image: {
  37327. source: "./media/characters/unmru/front.svg",
  37328. extra: 1853/1747,
  37329. bottom: 73/1926
  37330. }
  37331. },
  37332. side: {
  37333. height: math.unit(9, "feet"),
  37334. weight: math.unit(621, "lb"),
  37335. name: "Side",
  37336. image: {
  37337. source: "./media/characters/unmru/side.svg",
  37338. extra: 1781/1671,
  37339. bottom: 127/1908
  37340. }
  37341. },
  37342. back: {
  37343. height: math.unit(9, "feet"),
  37344. weight: math.unit(621, "lb"),
  37345. name: "Back",
  37346. image: {
  37347. source: "./media/characters/unmru/back.svg",
  37348. extra: 1894/1765,
  37349. bottom: 75/1969
  37350. }
  37351. },
  37352. dick: {
  37353. height: math.unit(3, "feet"),
  37354. weight: math.unit(35, "lb"),
  37355. name: "Dick",
  37356. image: {
  37357. source: "./media/characters/unmru/dick.svg"
  37358. }
  37359. },
  37360. },
  37361. [
  37362. {
  37363. name: "Normal",
  37364. height: math.unit(9, "feet")
  37365. },
  37366. {
  37367. name: "Natural",
  37368. height: math.unit(27, "feet"),
  37369. default: true
  37370. },
  37371. {
  37372. name: "Giant",
  37373. height: math.unit(90, "feet")
  37374. },
  37375. {
  37376. name: "Kaiju",
  37377. height: math.unit(270, "feet")
  37378. },
  37379. {
  37380. name: "Macro",
  37381. height: math.unit(900, "feet")
  37382. },
  37383. {
  37384. name: "Macro+",
  37385. height: math.unit(2700, "feet")
  37386. },
  37387. {
  37388. name: "Megamacro",
  37389. height: math.unit(9000, "feet")
  37390. },
  37391. {
  37392. name: "City-Crushing",
  37393. height: math.unit(27000, "feet")
  37394. },
  37395. {
  37396. name: "Mountain-Mashing",
  37397. height: math.unit(90000, "feet")
  37398. },
  37399. {
  37400. name: "Earth-Eclipsing",
  37401. height: math.unit(2.7e8, "feet")
  37402. },
  37403. {
  37404. name: "Sol-Swallowing",
  37405. height: math.unit(9e10, "feet")
  37406. },
  37407. {
  37408. name: "Majoris-Munching",
  37409. height: math.unit(2.7e13, "feet")
  37410. },
  37411. ]
  37412. ))
  37413. characterMakers.push(() => makeCharacter(
  37414. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37415. {
  37416. front: {
  37417. height: math.unit(1, "inch"),
  37418. name: "Front",
  37419. image: {
  37420. source: "./media/characters/squeaks-mouse/front.svg",
  37421. extra: 352/308,
  37422. bottom: 25/377
  37423. }
  37424. },
  37425. },
  37426. [
  37427. {
  37428. name: "Micro",
  37429. height: math.unit(1, "inch"),
  37430. default: true
  37431. },
  37432. ]
  37433. ))
  37434. characterMakers.push(() => makeCharacter(
  37435. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37436. {
  37437. side: {
  37438. height: math.unit(35, "feet"),
  37439. name: "Side",
  37440. image: {
  37441. source: "./media/characters/sayko/side.svg",
  37442. extra: 1697/1021,
  37443. bottom: 82/1779
  37444. }
  37445. },
  37446. head: {
  37447. height: math.unit(16, "feet"),
  37448. name: "Head",
  37449. image: {
  37450. source: "./media/characters/sayko/head.svg"
  37451. }
  37452. },
  37453. forepaw: {
  37454. height: math.unit(7.85, "feet"),
  37455. name: "Forepaw",
  37456. image: {
  37457. source: "./media/characters/sayko/forepaw.svg"
  37458. }
  37459. },
  37460. hindpaw: {
  37461. height: math.unit(8.8, "feet"),
  37462. name: "Hindpaw",
  37463. image: {
  37464. source: "./media/characters/sayko/hindpaw.svg"
  37465. }
  37466. },
  37467. },
  37468. [
  37469. {
  37470. name: "Normal",
  37471. height: math.unit(35, "feet"),
  37472. default: true
  37473. },
  37474. {
  37475. name: "Colossus",
  37476. height: math.unit(100, "meters")
  37477. },
  37478. {
  37479. name: "\"Small\" Deity",
  37480. height: math.unit(1, "km")
  37481. },
  37482. {
  37483. name: "\"Large\" Deity",
  37484. height: math.unit(15, "km")
  37485. },
  37486. ]
  37487. ))
  37488. characterMakers.push(() => makeCharacter(
  37489. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37490. {
  37491. front: {
  37492. height: math.unit(6, "feet"),
  37493. weight: math.unit(250, "lb"),
  37494. name: "Front",
  37495. image: {
  37496. source: "./media/characters/mukiro/front.svg",
  37497. extra: 1368/1310,
  37498. bottom: 34/1402
  37499. }
  37500. },
  37501. },
  37502. [
  37503. {
  37504. name: "Normal",
  37505. height: math.unit(6, "feet"),
  37506. default: true
  37507. },
  37508. ]
  37509. ))
  37510. characterMakers.push(() => makeCharacter(
  37511. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37512. {
  37513. front: {
  37514. height: math.unit(12 + 4/12, "feet"),
  37515. name: "Front",
  37516. image: {
  37517. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37518. extra: 1346/1311,
  37519. bottom: 65/1411
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Base",
  37526. height: math.unit(12 + 4/12, "feet"),
  37527. default: true
  37528. },
  37529. {
  37530. name: "Macro",
  37531. height: math.unit(150, "feet")
  37532. },
  37533. {
  37534. name: "Mega",
  37535. height: math.unit(2, "miles")
  37536. },
  37537. {
  37538. name: "Demi God",
  37539. height: math.unit(4, "AU")
  37540. },
  37541. {
  37542. name: "God Size",
  37543. height: math.unit(1, "universe")
  37544. },
  37545. ]
  37546. ))
  37547. characterMakers.push(() => makeCharacter(
  37548. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37549. {
  37550. front: {
  37551. height: math.unit(3 + 3/12, "feet"),
  37552. weight: math.unit(88, "lb"),
  37553. name: "Front",
  37554. image: {
  37555. source: "./media/characters/trey/front.svg",
  37556. extra: 1815/1509,
  37557. bottom: 60/1875
  37558. }
  37559. },
  37560. },
  37561. [
  37562. {
  37563. name: "Normal",
  37564. height: math.unit(3 + 3/12, "feet"),
  37565. default: true
  37566. },
  37567. ]
  37568. ))
  37569. characterMakers.push(() => makeCharacter(
  37570. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37571. {
  37572. front: {
  37573. height: math.unit(4, "meters"),
  37574. name: "Front",
  37575. image: {
  37576. source: "./media/characters/adelonda/front.svg",
  37577. extra: 1077/982,
  37578. bottom: 39/1116
  37579. }
  37580. },
  37581. back: {
  37582. height: math.unit(4, "meters"),
  37583. name: "Back",
  37584. image: {
  37585. source: "./media/characters/adelonda/back.svg",
  37586. extra: 1105/1003,
  37587. bottom: 25/1130
  37588. }
  37589. },
  37590. },
  37591. [
  37592. {
  37593. name: "Normal",
  37594. height: math.unit(4, "meters"),
  37595. default: true
  37596. },
  37597. ]
  37598. ))
  37599. characterMakers.push(() => makeCharacter(
  37600. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37601. {
  37602. front: {
  37603. height: math.unit(8 + 4/12, "feet"),
  37604. weight: math.unit(670, "lb"),
  37605. name: "Front",
  37606. image: {
  37607. source: "./media/characters/acadiel/front.svg",
  37608. extra: 1901/1595,
  37609. bottom: 142/2043
  37610. }
  37611. },
  37612. },
  37613. [
  37614. {
  37615. name: "Normal",
  37616. height: math.unit(8 + 4/12, "feet"),
  37617. default: true
  37618. },
  37619. {
  37620. name: "Macro",
  37621. height: math.unit(200, "feet")
  37622. },
  37623. ]
  37624. ))
  37625. characterMakers.push(() => makeCharacter(
  37626. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37627. {
  37628. front: {
  37629. height: math.unit(6 + 2/12, "feet"),
  37630. weight: math.unit(185, "lb"),
  37631. name: "Front",
  37632. image: {
  37633. source: "./media/characters/kayne-ein/front.svg",
  37634. extra: 1780/1560,
  37635. bottom: 81/1861
  37636. }
  37637. },
  37638. },
  37639. [
  37640. {
  37641. name: "Normal",
  37642. height: math.unit(6 + 2/12, "feet"),
  37643. default: true
  37644. },
  37645. {
  37646. name: "Transformation Stage",
  37647. height: math.unit(15, "feet")
  37648. },
  37649. {
  37650. name: "Macro",
  37651. height: math.unit(150, "feet")
  37652. },
  37653. {
  37654. name: "Earth's Shadow",
  37655. height: math.unit(6200, "miles")
  37656. },
  37657. {
  37658. name: "Universal Demon",
  37659. height: math.unit(28e9, "parsecs")
  37660. },
  37661. {
  37662. name: "Multiverse God",
  37663. height: math.unit(3, "multiverses")
  37664. },
  37665. ]
  37666. ))
  37667. characterMakers.push(() => makeCharacter(
  37668. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37669. {
  37670. front: {
  37671. height: math.unit(5 + 5/12, "feet"),
  37672. name: "Front",
  37673. image: {
  37674. source: "./media/characters/fawn/front.svg",
  37675. extra: 1873/1731,
  37676. bottom: 95/1968
  37677. }
  37678. },
  37679. back: {
  37680. height: math.unit(5 + 5/12, "feet"),
  37681. name: "Back",
  37682. image: {
  37683. source: "./media/characters/fawn/back.svg",
  37684. extra: 1813/1700,
  37685. bottom: 14/1827
  37686. }
  37687. },
  37688. hoof: {
  37689. height: math.unit(1.45, "feet"),
  37690. name: "Hoof",
  37691. image: {
  37692. source: "./media/characters/fawn/hoof.svg"
  37693. }
  37694. },
  37695. },
  37696. [
  37697. {
  37698. name: "Normal",
  37699. height: math.unit(5 + 5/12, "feet"),
  37700. default: true
  37701. },
  37702. ]
  37703. ))
  37704. characterMakers.push(() => makeCharacter(
  37705. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37706. {
  37707. front: {
  37708. height: math.unit(2 + 5/12, "feet"),
  37709. name: "Front",
  37710. image: {
  37711. source: "./media/characters/orion/front.svg",
  37712. extra: 1366/1304,
  37713. bottom: 43/1409
  37714. }
  37715. },
  37716. paw: {
  37717. height: math.unit(0.52, "feet"),
  37718. name: "Paw",
  37719. image: {
  37720. source: "./media/characters/orion/paw.svg"
  37721. }
  37722. },
  37723. },
  37724. [
  37725. {
  37726. name: "Normal",
  37727. height: math.unit(2 + 5/12, "feet"),
  37728. default: true
  37729. },
  37730. ]
  37731. ))
  37732. characterMakers.push(() => makeCharacter(
  37733. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37734. {
  37735. front: {
  37736. height: math.unit(5 + 10/12, "feet"),
  37737. name: "Front",
  37738. image: {
  37739. source: "./media/characters/vera/front.svg",
  37740. extra: 1680/1575,
  37741. bottom: 49/1729
  37742. }
  37743. },
  37744. back: {
  37745. height: math.unit(5 + 10/12, "feet"),
  37746. name: "Back",
  37747. image: {
  37748. source: "./media/characters/vera/back.svg",
  37749. extra: 1700/1588,
  37750. bottom: 18/1718
  37751. }
  37752. },
  37753. arcanine: {
  37754. height: math.unit(6 + 8/12, "feet"),
  37755. name: "Arcanine",
  37756. image: {
  37757. source: "./media/characters/vera/arcanine.svg",
  37758. extra: 1590/1511,
  37759. bottom: 71/1661
  37760. }
  37761. },
  37762. maw: {
  37763. height: math.unit(0.82, "feet"),
  37764. name: "Maw",
  37765. image: {
  37766. source: "./media/characters/vera/maw.svg"
  37767. }
  37768. },
  37769. mawArcanine: {
  37770. height: math.unit(0.97, "feet"),
  37771. name: "Maw (Arcanine)",
  37772. image: {
  37773. source: "./media/characters/vera/maw-arcanine.svg"
  37774. }
  37775. },
  37776. paw: {
  37777. height: math.unit(0.75, "feet"),
  37778. name: "Paw",
  37779. image: {
  37780. source: "./media/characters/vera/paw.svg"
  37781. }
  37782. },
  37783. pawprint: {
  37784. height: math.unit(0.52, "feet"),
  37785. name: "Pawprint",
  37786. image: {
  37787. source: "./media/characters/vera/pawprint.svg"
  37788. }
  37789. },
  37790. },
  37791. [
  37792. {
  37793. name: "Normal",
  37794. height: math.unit(5 + 10/12, "feet"),
  37795. default: true
  37796. },
  37797. {
  37798. name: "Macro",
  37799. height: math.unit(75, "feet")
  37800. },
  37801. ]
  37802. ))
  37803. characterMakers.push(() => makeCharacter(
  37804. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37805. {
  37806. front: {
  37807. height: math.unit(4, "feet"),
  37808. weight: math.unit(40, "lb"),
  37809. name: "Front",
  37810. image: {
  37811. source: "./media/characters/orvan-rabbit/front.svg",
  37812. extra: 1896/1642,
  37813. bottom: 29/1925
  37814. }
  37815. },
  37816. },
  37817. [
  37818. {
  37819. name: "Normal",
  37820. height: math.unit(4, "feet"),
  37821. default: true
  37822. },
  37823. ]
  37824. ))
  37825. characterMakers.push(() => makeCharacter(
  37826. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37827. {
  37828. front: {
  37829. height: math.unit(6, "feet"),
  37830. weight: math.unit(168, "lb"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/lisa/front.svg",
  37834. extra: 2065/1867,
  37835. bottom: 46/2111
  37836. }
  37837. },
  37838. back: {
  37839. height: math.unit(6, "feet"),
  37840. weight: math.unit(168, "lb"),
  37841. name: "Back",
  37842. image: {
  37843. source: "./media/characters/lisa/back.svg",
  37844. extra: 1982/1838,
  37845. bottom: 29/2011
  37846. }
  37847. },
  37848. maw: {
  37849. height: math.unit(0.81, "feet"),
  37850. name: "Maw",
  37851. image: {
  37852. source: "./media/characters/lisa/maw.svg"
  37853. }
  37854. },
  37855. paw: {
  37856. height: math.unit(0.9, "feet"),
  37857. name: "Paw",
  37858. image: {
  37859. source: "./media/characters/lisa/paw.svg"
  37860. }
  37861. },
  37862. caribousune: {
  37863. height: math.unit(7 + 2/12, "feet"),
  37864. weight: math.unit(268, "lb"),
  37865. name: "Caribousune",
  37866. image: {
  37867. source: "./media/characters/lisa/caribousune.svg",
  37868. extra: 1843/1633,
  37869. bottom: 29/1872
  37870. }
  37871. },
  37872. frontCaribousune: {
  37873. height: math.unit(7 + 2/12, "feet"),
  37874. weight: math.unit(268, "lb"),
  37875. name: "Front (Caribousune)",
  37876. image: {
  37877. source: "./media/characters/lisa/front-caribousune.svg",
  37878. extra: 1818/1638,
  37879. bottom: 52/1870
  37880. }
  37881. },
  37882. sideCaribousune: {
  37883. height: math.unit(7 + 2/12, "feet"),
  37884. weight: math.unit(268, "lb"),
  37885. name: "Side (Caribousune)",
  37886. image: {
  37887. source: "./media/characters/lisa/side-caribousune.svg",
  37888. extra: 1851/1635,
  37889. bottom: 16/1867
  37890. }
  37891. },
  37892. backCaribousune: {
  37893. height: math.unit(7 + 2/12, "feet"),
  37894. weight: math.unit(268, "lb"),
  37895. name: "Back (Caribousune)",
  37896. image: {
  37897. source: "./media/characters/lisa/back-caribousune.svg",
  37898. extra: 1801/1604,
  37899. bottom: 44/1845
  37900. }
  37901. },
  37902. caribou: {
  37903. height: math.unit(7 + 2/12, "feet"),
  37904. weight: math.unit(268, "lb"),
  37905. name: "Caribou",
  37906. image: {
  37907. source: "./media/characters/lisa/caribou.svg",
  37908. extra: 1843/1633,
  37909. bottom: 29/1872
  37910. }
  37911. },
  37912. frontCaribou: {
  37913. height: math.unit(7 + 2/12, "feet"),
  37914. weight: math.unit(268, "lb"),
  37915. name: "Front (Caribou)",
  37916. image: {
  37917. source: "./media/characters/lisa/front-caribou.svg",
  37918. extra: 1818/1638,
  37919. bottom: 52/1870
  37920. }
  37921. },
  37922. sideCaribou: {
  37923. height: math.unit(7 + 2/12, "feet"),
  37924. weight: math.unit(268, "lb"),
  37925. name: "Side (Caribou)",
  37926. image: {
  37927. source: "./media/characters/lisa/side-caribou.svg",
  37928. extra: 1851/1635,
  37929. bottom: 16/1867
  37930. }
  37931. },
  37932. backCaribou: {
  37933. height: math.unit(7 + 2/12, "feet"),
  37934. weight: math.unit(268, "lb"),
  37935. name: "Back (Caribou)",
  37936. image: {
  37937. source: "./media/characters/lisa/back-caribou.svg",
  37938. extra: 1801/1604,
  37939. bottom: 44/1845
  37940. }
  37941. },
  37942. mawCaribou: {
  37943. height: math.unit(1.45, "feet"),
  37944. name: "Maw (Caribou)",
  37945. image: {
  37946. source: "./media/characters/lisa/maw-caribou.svg"
  37947. }
  37948. },
  37949. mawCaribousune: {
  37950. height: math.unit(1.45, "feet"),
  37951. name: "Maw (Caribousune)",
  37952. image: {
  37953. source: "./media/characters/lisa/maw-caribousune.svg"
  37954. }
  37955. },
  37956. pawCaribousune: {
  37957. height: math.unit(1.61, "feet"),
  37958. name: "Paw (Caribou)",
  37959. image: {
  37960. source: "./media/characters/lisa/paw-caribousune.svg"
  37961. }
  37962. },
  37963. },
  37964. [
  37965. {
  37966. name: "Normal",
  37967. height: math.unit(6, "feet")
  37968. },
  37969. {
  37970. name: "God Size",
  37971. height: math.unit(72, "feet"),
  37972. default: true
  37973. },
  37974. {
  37975. name: "Towering",
  37976. height: math.unit(288, "feet")
  37977. },
  37978. {
  37979. name: "City Size",
  37980. height: math.unit(48384, "feet")
  37981. },
  37982. {
  37983. name: "Continental",
  37984. height: math.unit(4200, "miles")
  37985. },
  37986. {
  37987. name: "Planet Eater",
  37988. height: math.unit(42, "earths")
  37989. },
  37990. {
  37991. name: "Star Swallower",
  37992. height: math.unit(42, "solarradii")
  37993. },
  37994. {
  37995. name: "System Swallower",
  37996. height: math.unit(84000, "AU")
  37997. },
  37998. {
  37999. name: "Galaxy Gobbler",
  38000. height: math.unit(42, "galaxies")
  38001. },
  38002. {
  38003. name: "Universe Devourer",
  38004. height: math.unit(42, "universes")
  38005. },
  38006. {
  38007. name: "Multiverse Muncher",
  38008. height: math.unit(42, "multiverses")
  38009. },
  38010. ]
  38011. ))
  38012. characterMakers.push(() => makeCharacter(
  38013. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38014. {
  38015. front: {
  38016. height: math.unit(36, "feet"),
  38017. name: "Front",
  38018. image: {
  38019. source: "./media/characters/shadow-rat/front.svg",
  38020. extra: 1845/1758,
  38021. bottom: 83/1928
  38022. }
  38023. },
  38024. },
  38025. [
  38026. {
  38027. name: "Macro",
  38028. height: math.unit(36, "feet"),
  38029. default: true
  38030. },
  38031. ]
  38032. ))
  38033. characterMakers.push(() => makeCharacter(
  38034. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38035. {
  38036. side: {
  38037. height: math.unit(8, "feet"),
  38038. weight: math.unit(2630, "lb"),
  38039. name: "Side",
  38040. image: {
  38041. source: "./media/characters/torallia/side.svg",
  38042. extra: 2164/2021,
  38043. bottom: 371/2535
  38044. }
  38045. },
  38046. },
  38047. [
  38048. {
  38049. name: "Mortal Interaction",
  38050. height: math.unit(8, "feet")
  38051. },
  38052. {
  38053. name: "Natural",
  38054. height: math.unit(24, "feet"),
  38055. default: true
  38056. },
  38057. {
  38058. name: "Giant",
  38059. height: math.unit(80, "feet")
  38060. },
  38061. {
  38062. name: "Kaiju",
  38063. height: math.unit(240, "feet")
  38064. },
  38065. {
  38066. name: "Macro",
  38067. height: math.unit(800, "feet")
  38068. },
  38069. {
  38070. name: "Macro+",
  38071. height: math.unit(2400, "feet")
  38072. },
  38073. {
  38074. name: "Macro++",
  38075. height: math.unit(8000, "feet")
  38076. },
  38077. {
  38078. name: "City-Crushing",
  38079. height: math.unit(24000, "feet")
  38080. },
  38081. {
  38082. name: "Mountain-Mashing",
  38083. height: math.unit(80000, "feet")
  38084. },
  38085. {
  38086. name: "District Demolisher",
  38087. height: math.unit(240000, "feet")
  38088. },
  38089. {
  38090. name: "Tri-County Terror",
  38091. height: math.unit(800000, "feet")
  38092. },
  38093. {
  38094. name: "State Smasher",
  38095. height: math.unit(2.4e6, "feet")
  38096. },
  38097. {
  38098. name: "Nation Nemesis",
  38099. height: math.unit(8e6, "feet")
  38100. },
  38101. {
  38102. name: "Continent Cracker",
  38103. height: math.unit(2.4e7, "feet")
  38104. },
  38105. {
  38106. name: "Planet-Pillaging",
  38107. height: math.unit(8e7, "feet")
  38108. },
  38109. {
  38110. name: "Earth-Eclipsing",
  38111. height: math.unit(2.4e8, "feet")
  38112. },
  38113. {
  38114. name: "Jovian-Jostling",
  38115. height: math.unit(8e8, "feet")
  38116. },
  38117. {
  38118. name: "Gas Giant Gulper",
  38119. height: math.unit(2.4e9, "feet")
  38120. },
  38121. {
  38122. name: "Astral Annihilator",
  38123. height: math.unit(8e9, "feet")
  38124. },
  38125. {
  38126. name: "Celestial Conqueror",
  38127. height: math.unit(2.4e10, "feet")
  38128. },
  38129. {
  38130. name: "Sol-Swallowing",
  38131. height: math.unit(8e10, "feet")
  38132. },
  38133. {
  38134. name: "Hunter of the Heavens",
  38135. height: math.unit(2.4e13, "feet")
  38136. },
  38137. ]
  38138. ))
  38139. characterMakers.push(() => makeCharacter(
  38140. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38141. {
  38142. front: {
  38143. height: math.unit(6 + 8/12, "feet"),
  38144. name: "Front",
  38145. image: {
  38146. source: "./media/characters/rebecca-pawlson/front.svg",
  38147. extra: 1737/1596,
  38148. bottom: 107/1844
  38149. }
  38150. },
  38151. back: {
  38152. height: math.unit(6 + 8/12, "feet"),
  38153. name: "Back",
  38154. image: {
  38155. source: "./media/characters/rebecca-pawlson/back.svg",
  38156. extra: 1702/1523,
  38157. bottom: 86/1788
  38158. }
  38159. },
  38160. },
  38161. [
  38162. {
  38163. name: "Normal",
  38164. height: math.unit(6 + 8/12, "feet")
  38165. },
  38166. {
  38167. name: "Mini Macro",
  38168. height: math.unit(10, "feet"),
  38169. default: true
  38170. },
  38171. {
  38172. name: "Macro",
  38173. height: math.unit(100, "feet")
  38174. },
  38175. {
  38176. name: "Mega Macro",
  38177. height: math.unit(2500, "feet")
  38178. },
  38179. {
  38180. name: "Giga Macro",
  38181. height: math.unit(50, "miles")
  38182. },
  38183. ]
  38184. ))
  38185. characterMakers.push(() => makeCharacter(
  38186. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38187. {
  38188. front: {
  38189. height: math.unit(7 + 6/12, "feet"),
  38190. weight: math.unit(600, "lb"),
  38191. name: "Front",
  38192. image: {
  38193. source: "./media/characters/moxie-nova/front.svg",
  38194. extra: 1734/1652,
  38195. bottom: 41/1775
  38196. }
  38197. },
  38198. },
  38199. [
  38200. {
  38201. name: "Normal",
  38202. height: math.unit(7 + 6/12, "feet"),
  38203. default: true
  38204. },
  38205. ]
  38206. ))
  38207. characterMakers.push(() => makeCharacter(
  38208. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38209. {
  38210. goat: {
  38211. height: math.unit(4, "feet"),
  38212. weight: math.unit(180, "lb"),
  38213. name: "Goat",
  38214. image: {
  38215. source: "./media/characters/tiffany/goat.svg",
  38216. extra: 1845/1595,
  38217. bottom: 106/1951
  38218. }
  38219. },
  38220. front: {
  38221. height: math.unit(5, "feet"),
  38222. weight: math.unit(150, "lb"),
  38223. name: "Foxcoon",
  38224. image: {
  38225. source: "./media/characters/tiffany/foxcoon.svg",
  38226. extra: 1941/1845,
  38227. bottom: 58/1999
  38228. }
  38229. },
  38230. },
  38231. [
  38232. {
  38233. name: "Normal",
  38234. height: math.unit(5, "feet"),
  38235. default: true
  38236. },
  38237. ]
  38238. ))
  38239. characterMakers.push(() => makeCharacter(
  38240. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38241. {
  38242. front: {
  38243. height: math.unit(8, "feet"),
  38244. weight: math.unit(300, "lb"),
  38245. name: "Front",
  38246. image: {
  38247. source: "./media/characters/raxinath/front.svg",
  38248. extra: 1407/1309,
  38249. bottom: 39/1446
  38250. }
  38251. },
  38252. back: {
  38253. height: math.unit(8, "feet"),
  38254. weight: math.unit(300, "lb"),
  38255. name: "Back",
  38256. image: {
  38257. source: "./media/characters/raxinath/back.svg",
  38258. extra: 1405/1315,
  38259. bottom: 9/1414
  38260. }
  38261. },
  38262. },
  38263. [
  38264. {
  38265. name: "Speck",
  38266. height: math.unit(0.5, "nm")
  38267. },
  38268. {
  38269. name: "Micro",
  38270. height: math.unit(3, "inches")
  38271. },
  38272. {
  38273. name: "Kobold",
  38274. height: math.unit(3, "feet")
  38275. },
  38276. {
  38277. name: "Normal",
  38278. height: math.unit(8, "feet"),
  38279. default: true
  38280. },
  38281. {
  38282. name: "Giant",
  38283. height: math.unit(50, "feet")
  38284. },
  38285. {
  38286. name: "Macro",
  38287. height: math.unit(1000, "feet")
  38288. },
  38289. {
  38290. name: "Megamacro",
  38291. height: math.unit(1, "mile")
  38292. },
  38293. ]
  38294. ))
  38295. characterMakers.push(() => makeCharacter(
  38296. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38297. {
  38298. front: {
  38299. height: math.unit(10, "feet"),
  38300. weight: math.unit(1442, "lb"),
  38301. name: "Front",
  38302. image: {
  38303. source: "./media/characters/mal-dragon/front.svg",
  38304. extra: 1515/1444,
  38305. bottom: 113/1628
  38306. }
  38307. },
  38308. back: {
  38309. height: math.unit(10, "feet"),
  38310. weight: math.unit(1442, "lb"),
  38311. name: "Back",
  38312. image: {
  38313. source: "./media/characters/mal-dragon/back.svg",
  38314. extra: 1527/1434,
  38315. bottom: 25/1552
  38316. }
  38317. },
  38318. },
  38319. [
  38320. {
  38321. name: "Mortal Interaction",
  38322. height: math.unit(10, "feet"),
  38323. default: true
  38324. },
  38325. {
  38326. name: "Large",
  38327. height: math.unit(30, "feet")
  38328. },
  38329. {
  38330. name: "Kaiju",
  38331. height: math.unit(300, "feet")
  38332. },
  38333. {
  38334. name: "Megamacro",
  38335. height: math.unit(10000, "feet")
  38336. },
  38337. {
  38338. name: "Continent Cracker",
  38339. height: math.unit(30000000, "feet")
  38340. },
  38341. {
  38342. name: "Sol-Swallowing",
  38343. height: math.unit(1e11, "feet")
  38344. },
  38345. {
  38346. name: "Light Universal",
  38347. height: math.unit(5, "universes")
  38348. },
  38349. {
  38350. name: "Universe Atoms",
  38351. height: math.unit(1.829e9, "universes")
  38352. },
  38353. {
  38354. name: "Light Multiversal",
  38355. height: math.unit(5, "multiverses")
  38356. },
  38357. {
  38358. name: "Multiverse Atoms",
  38359. height: math.unit(1.829e9, "multiverses")
  38360. },
  38361. {
  38362. name: "Fabric of Time",
  38363. height: math.unit(1e262, "multiverses")
  38364. },
  38365. ]
  38366. ))
  38367. characterMakers.push(() => makeCharacter(
  38368. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38369. {
  38370. front: {
  38371. height: math.unit(9, "feet"),
  38372. weight: math.unit(1050, "lb"),
  38373. name: "Front",
  38374. image: {
  38375. source: "./media/characters/tabitha/front.svg",
  38376. extra: 2083/1994,
  38377. bottom: 68/2151
  38378. }
  38379. },
  38380. },
  38381. [
  38382. {
  38383. name: "Baseline",
  38384. height: math.unit(9, "feet"),
  38385. default: true
  38386. },
  38387. {
  38388. name: "Giant",
  38389. height: math.unit(90, "feet")
  38390. },
  38391. {
  38392. name: "Macro",
  38393. height: math.unit(900, "feet")
  38394. },
  38395. {
  38396. name: "Megamacro",
  38397. height: math.unit(9000, "feet")
  38398. },
  38399. {
  38400. name: "City-Crushing",
  38401. height: math.unit(27000, "feet")
  38402. },
  38403. {
  38404. name: "Mountain-Mashing",
  38405. height: math.unit(90000, "feet")
  38406. },
  38407. {
  38408. name: "Nation Nemesis",
  38409. height: math.unit(9e6, "feet")
  38410. },
  38411. {
  38412. name: "Continent Cracker",
  38413. height: math.unit(27e6, "feet")
  38414. },
  38415. {
  38416. name: "Earth-Eclipsing",
  38417. height: math.unit(2.7e8, "feet")
  38418. },
  38419. {
  38420. name: "Gas Giant Gulper",
  38421. height: math.unit(2.7e9, "feet")
  38422. },
  38423. {
  38424. name: "Sol-Swallowing",
  38425. height: math.unit(9e10, "feet")
  38426. },
  38427. {
  38428. name: "Galaxy Gulper",
  38429. height: math.unit(9, "galaxies")
  38430. },
  38431. {
  38432. name: "Cosmos Churner",
  38433. height: math.unit(9, "universes")
  38434. },
  38435. ]
  38436. ))
  38437. characterMakers.push(() => makeCharacter(
  38438. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38439. {
  38440. front: {
  38441. height: math.unit(160, "cm"),
  38442. weight: math.unit(55, "kg"),
  38443. name: "Front",
  38444. image: {
  38445. source: "./media/characters/tow/front.svg",
  38446. extra: 1751/1722,
  38447. bottom: 74/1825
  38448. }
  38449. },
  38450. },
  38451. [
  38452. {
  38453. name: "Norm",
  38454. height: math.unit(160, "cm")
  38455. },
  38456. {
  38457. name: "Casual",
  38458. height: math.unit(3200, "m"),
  38459. default: true
  38460. },
  38461. {
  38462. name: "Show-Off",
  38463. height: math.unit(160, "km")
  38464. },
  38465. ]
  38466. ))
  38467. characterMakers.push(() => makeCharacter(
  38468. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38469. {
  38470. front: {
  38471. height: math.unit(7 + 11/12, "feet"),
  38472. weight: math.unit(342.8, "lb"),
  38473. name: "Front",
  38474. image: {
  38475. source: "./media/characters/vivian-orca-dragon/front.svg",
  38476. extra: 1890/1865,
  38477. bottom: 28/1918
  38478. }
  38479. },
  38480. },
  38481. [
  38482. {
  38483. name: "Micro",
  38484. height: math.unit(5, "inches")
  38485. },
  38486. {
  38487. name: "Normal",
  38488. height: math.unit(7 + 11/12, "feet"),
  38489. default: true
  38490. },
  38491. {
  38492. name: "Macro",
  38493. height: math.unit(395 + 7/12, "feet")
  38494. },
  38495. ]
  38496. ))
  38497. characterMakers.push(() => makeCharacter(
  38498. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38499. {
  38500. side: {
  38501. height: math.unit(10, "feet"),
  38502. weight: math.unit(1442, "lb"),
  38503. name: "Side",
  38504. image: {
  38505. source: "./media/characters/lotherakon/side.svg",
  38506. extra: 1604/1497,
  38507. bottom: 89/1693
  38508. }
  38509. },
  38510. },
  38511. [
  38512. {
  38513. name: "Mortal Interaction",
  38514. height: math.unit(10, "feet")
  38515. },
  38516. {
  38517. name: "Large",
  38518. height: math.unit(30, "feet"),
  38519. default: true
  38520. },
  38521. {
  38522. name: "Giant",
  38523. height: math.unit(100, "feet")
  38524. },
  38525. {
  38526. name: "Kaiju",
  38527. height: math.unit(300, "feet")
  38528. },
  38529. {
  38530. name: "Macro",
  38531. height: math.unit(1000, "feet")
  38532. },
  38533. {
  38534. name: "Macro+",
  38535. height: math.unit(3000, "feet")
  38536. },
  38537. {
  38538. name: "Megamacro",
  38539. height: math.unit(10000, "feet")
  38540. },
  38541. {
  38542. name: "City-Crushing",
  38543. height: math.unit(30000, "feet")
  38544. },
  38545. {
  38546. name: "Continent Cracker",
  38547. height: math.unit(30e6, "feet")
  38548. },
  38549. {
  38550. name: "Earth Eclipsing",
  38551. height: math.unit(3e8, "feet")
  38552. },
  38553. {
  38554. name: "Gas Giant Gulper",
  38555. height: math.unit(3e9, "feet")
  38556. },
  38557. {
  38558. name: "Sol-Swallowing",
  38559. height: math.unit(1e11, "feet")
  38560. },
  38561. {
  38562. name: "System Swallower",
  38563. height: math.unit(3e14, "feet")
  38564. },
  38565. {
  38566. name: "Galaxy Gulper",
  38567. height: math.unit(10, "galaxies")
  38568. },
  38569. {
  38570. name: "Light Universal",
  38571. height: math.unit(5, "universes")
  38572. },
  38573. {
  38574. name: "Universe Palm",
  38575. height: math.unit(20, "universes")
  38576. },
  38577. {
  38578. name: "Light Multiversal",
  38579. height: math.unit(5, "multiverses")
  38580. },
  38581. {
  38582. name: "Multiverse Palm",
  38583. height: math.unit(20, "multiverses")
  38584. },
  38585. {
  38586. name: "Inferno Incarnate",
  38587. height: math.unit(1e7, "multiverses")
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38593. {
  38594. front: {
  38595. height: math.unit(8, "feet"),
  38596. weight: math.unit(1200, "lb"),
  38597. name: "Front",
  38598. image: {
  38599. source: "./media/characters/malithee/front.svg",
  38600. extra: 1675/1640,
  38601. bottom: 162/1837
  38602. }
  38603. },
  38604. },
  38605. [
  38606. {
  38607. name: "Mortal Interaction",
  38608. height: math.unit(8, "feet"),
  38609. default: true
  38610. },
  38611. {
  38612. name: "Large",
  38613. height: math.unit(24, "feet")
  38614. },
  38615. {
  38616. name: "Kaiju",
  38617. height: math.unit(240, "feet")
  38618. },
  38619. {
  38620. name: "Megamacro",
  38621. height: math.unit(8000, "feet")
  38622. },
  38623. {
  38624. name: "Continent Cracker",
  38625. height: math.unit(24e6, "feet")
  38626. },
  38627. {
  38628. name: "Earth-Eclipsing",
  38629. height: math.unit(2.4e8, "feet")
  38630. },
  38631. {
  38632. name: "Sol-Swallowing",
  38633. height: math.unit(8e10, "feet")
  38634. },
  38635. {
  38636. name: "Galaxy Gulper",
  38637. height: math.unit(8, "galaxies")
  38638. },
  38639. {
  38640. name: "Light Universal",
  38641. height: math.unit(4, "universes")
  38642. },
  38643. {
  38644. name: "Universe Atoms",
  38645. height: math.unit(1.829e9, "universes")
  38646. },
  38647. {
  38648. name: "Light Multiversal",
  38649. height: math.unit(4, "multiverses")
  38650. },
  38651. {
  38652. name: "Multiverse Atoms",
  38653. height: math.unit(1.829e9, "multiverses")
  38654. },
  38655. {
  38656. name: "Nigh-Omnipresence",
  38657. height: math.unit(8e261, "multiverses")
  38658. },
  38659. ]
  38660. ))
  38661. characterMakers.push(() => makeCharacter(
  38662. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38663. {
  38664. front: {
  38665. height: math.unit(10, "feet"),
  38666. weight: math.unit(1500, "lb"),
  38667. name: "Front",
  38668. image: {
  38669. source: "./media/characters/miles-thestia/front.svg",
  38670. extra: 1812/1727,
  38671. bottom: 86/1898
  38672. }
  38673. },
  38674. back: {
  38675. height: math.unit(10, "feet"),
  38676. weight: math.unit(1500, "lb"),
  38677. name: "Back",
  38678. image: {
  38679. source: "./media/characters/miles-thestia/back.svg",
  38680. extra: 1799/1690,
  38681. bottom: 47/1846
  38682. }
  38683. },
  38684. frontNsfw: {
  38685. height: math.unit(10, "feet"),
  38686. weight: math.unit(1500, "lb"),
  38687. name: "Front (NSFW)",
  38688. image: {
  38689. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38690. extra: 1812/1727,
  38691. bottom: 86/1898
  38692. }
  38693. },
  38694. },
  38695. [
  38696. {
  38697. name: "Mini-Macro",
  38698. height: math.unit(10, "feet"),
  38699. default: true
  38700. },
  38701. ]
  38702. ))
  38703. characterMakers.push(() => makeCharacter(
  38704. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38705. {
  38706. front: {
  38707. height: math.unit(25, "feet"),
  38708. name: "Front",
  38709. image: {
  38710. source: "./media/characters/titan-s-wulf/front.svg",
  38711. extra: 1560/1484,
  38712. bottom: 76/1636
  38713. }
  38714. },
  38715. },
  38716. [
  38717. {
  38718. name: "Smallest",
  38719. height: math.unit(25, "feet"),
  38720. default: true
  38721. },
  38722. {
  38723. name: "Normal",
  38724. height: math.unit(200, "feet")
  38725. },
  38726. {
  38727. name: "Macro",
  38728. height: math.unit(200000, "feet")
  38729. },
  38730. {
  38731. name: "Multiversal Original",
  38732. height: math.unit(10000, "multiverses")
  38733. },
  38734. ]
  38735. ))
  38736. characterMakers.push(() => makeCharacter(
  38737. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38738. {
  38739. front: {
  38740. height: math.unit(8, "feet"),
  38741. weight: math.unit(553, "lb"),
  38742. name: "Front",
  38743. image: {
  38744. source: "./media/characters/tawendeh/front.svg",
  38745. extra: 2365/2268,
  38746. bottom: 83/2448
  38747. }
  38748. },
  38749. frontClothed: {
  38750. height: math.unit(8, "feet"),
  38751. weight: math.unit(553, "lb"),
  38752. name: "Front (Clothed)",
  38753. image: {
  38754. source: "./media/characters/tawendeh/front-clothed.svg",
  38755. extra: 2365/2268,
  38756. bottom: 83/2448
  38757. }
  38758. },
  38759. back: {
  38760. height: math.unit(8, "feet"),
  38761. weight: math.unit(553, "lb"),
  38762. name: "Back",
  38763. image: {
  38764. source: "./media/characters/tawendeh/back.svg",
  38765. extra: 2397/2294,
  38766. bottom: 42/2439
  38767. }
  38768. },
  38769. },
  38770. [
  38771. {
  38772. name: "Mortal Interaction",
  38773. height: math.unit(8, "feet"),
  38774. default: true
  38775. },
  38776. {
  38777. name: "Giant",
  38778. height: math.unit(80, "feet")
  38779. },
  38780. {
  38781. name: "Macro",
  38782. height: math.unit(800, "feet")
  38783. },
  38784. {
  38785. name: "Megamacro",
  38786. height: math.unit(8000, "feet")
  38787. },
  38788. {
  38789. name: "City-Crushing",
  38790. height: math.unit(24000, "feet")
  38791. },
  38792. {
  38793. name: "Mountain-Mashing",
  38794. height: math.unit(80000, "feet")
  38795. },
  38796. {
  38797. name: "Nation Nemesis",
  38798. height: math.unit(8e6, "feet")
  38799. },
  38800. {
  38801. name: "Continent Cracker",
  38802. height: math.unit(24e6, "feet")
  38803. },
  38804. {
  38805. name: "Earth-Eclipsing",
  38806. height: math.unit(2.4e8, "feet")
  38807. },
  38808. {
  38809. name: "Gas Giant Gulper",
  38810. height: math.unit(2.4e9, "feet")
  38811. },
  38812. {
  38813. name: "Sol-Swallowing",
  38814. height: math.unit(8e10, "feet")
  38815. },
  38816. {
  38817. name: "Galaxy Gulper",
  38818. height: math.unit(8, "galaxies")
  38819. },
  38820. {
  38821. name: "Cosmos Churner",
  38822. height: math.unit(8, "universes")
  38823. },
  38824. {
  38825. name: "Omnipotent Otter",
  38826. height: math.unit(80, "universes")
  38827. },
  38828. ]
  38829. ))
  38830. characterMakers.push(() => makeCharacter(
  38831. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38832. {
  38833. front: {
  38834. height: math.unit(2.6, "meters"),
  38835. weight: math.unit(900, "kg"),
  38836. name: "Front",
  38837. image: {
  38838. source: "./media/characters/neesha/front.svg",
  38839. extra: 1803/1653,
  38840. bottom: 128/1931
  38841. }
  38842. },
  38843. },
  38844. [
  38845. {
  38846. name: "Normal",
  38847. height: math.unit(2.6, "meters"),
  38848. default: true
  38849. },
  38850. {
  38851. name: "Macro",
  38852. height: math.unit(50, "meters")
  38853. },
  38854. ]
  38855. ))
  38856. characterMakers.push(() => makeCharacter(
  38857. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38858. {
  38859. front: {
  38860. height: math.unit(5, "feet"),
  38861. weight: math.unit(185, "lb"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/kyera/front.svg",
  38865. extra: 1875/1790,
  38866. bottom: 96/1971
  38867. }
  38868. },
  38869. },
  38870. [
  38871. {
  38872. name: "Normal",
  38873. height: math.unit(5, "feet"),
  38874. default: true
  38875. },
  38876. ]
  38877. ))
  38878. characterMakers.push(() => makeCharacter(
  38879. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38880. {
  38881. front: {
  38882. height: math.unit(7 + 6/12, "feet"),
  38883. weight: math.unit(540, "lb"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/yuko/front.svg",
  38887. extra: 1282/1222,
  38888. bottom: 101/1383
  38889. }
  38890. },
  38891. frontClothed: {
  38892. height: math.unit(7 + 6/12, "feet"),
  38893. weight: math.unit(540, "lb"),
  38894. name: "Front (Clothed)",
  38895. image: {
  38896. source: "./media/characters/yuko/front-clothed.svg",
  38897. extra: 1282/1222,
  38898. bottom: 101/1383
  38899. }
  38900. },
  38901. },
  38902. [
  38903. {
  38904. name: "Normal",
  38905. height: math.unit(7 + 6/12, "feet"),
  38906. default: true
  38907. },
  38908. {
  38909. name: "Macro",
  38910. height: math.unit(26 + 9/12, "feet")
  38911. },
  38912. {
  38913. name: "Megamacro",
  38914. height: math.unit(300, "feet")
  38915. },
  38916. {
  38917. name: "Gigamacro",
  38918. height: math.unit(5000, "feet")
  38919. },
  38920. {
  38921. name: "Planetary",
  38922. height: math.unit(10000, "miles")
  38923. },
  38924. ]
  38925. ))
  38926. characterMakers.push(() => makeCharacter(
  38927. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38928. {
  38929. front: {
  38930. height: math.unit(8 + 2/12, "feet"),
  38931. weight: math.unit(600, "lb"),
  38932. name: "Front",
  38933. image: {
  38934. source: "./media/characters/deam-nitrel/front.svg",
  38935. extra: 1308/1234,
  38936. bottom: 125/1433
  38937. }
  38938. },
  38939. },
  38940. [
  38941. {
  38942. name: "Normal",
  38943. height: math.unit(8 + 2/12, "feet"),
  38944. default: true
  38945. },
  38946. ]
  38947. ))
  38948. characterMakers.push(() => makeCharacter(
  38949. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38950. {
  38951. front: {
  38952. height: math.unit(6.1, "feet"),
  38953. weight: math.unit(180, "lb"),
  38954. name: "Front",
  38955. image: {
  38956. source: "./media/characters/skyress/front.svg",
  38957. extra: 1045/915,
  38958. bottom: 28/1073
  38959. }
  38960. },
  38961. maw: {
  38962. height: math.unit(1, "feet"),
  38963. name: "Maw",
  38964. image: {
  38965. source: "./media/characters/skyress/maw.svg"
  38966. }
  38967. },
  38968. },
  38969. [
  38970. {
  38971. name: "Normal",
  38972. height: math.unit(6.1, "feet"),
  38973. default: true
  38974. },
  38975. {
  38976. name: "Macro",
  38977. height: math.unit(200, "feet")
  38978. },
  38979. ]
  38980. ))
  38981. characterMakers.push(() => makeCharacter(
  38982. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38983. {
  38984. front: {
  38985. height: math.unit(4 + 2/12, "feet"),
  38986. weight: math.unit(40, "kg"),
  38987. name: "Front",
  38988. image: {
  38989. source: "./media/characters/amethyst-jones/front.svg",
  38990. extra: 1220/1150,
  38991. bottom: 101/1321
  38992. }
  38993. },
  38994. },
  38995. [
  38996. {
  38997. name: "Normal",
  38998. height: math.unit(4 + 2/12, "feet"),
  38999. default: true
  39000. },
  39001. ]
  39002. ))
  39003. characterMakers.push(() => makeCharacter(
  39004. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39005. {
  39006. front: {
  39007. height: math.unit(1.7, "m"),
  39008. weight: math.unit(135, "lb"),
  39009. name: "Front",
  39010. image: {
  39011. source: "./media/characters/jade/front.svg",
  39012. extra: 1818/1767,
  39013. bottom: 32/1850
  39014. }
  39015. },
  39016. back: {
  39017. height: math.unit(1.7, "m"),
  39018. weight: math.unit(135, "lb"),
  39019. name: "Back",
  39020. image: {
  39021. source: "./media/characters/jade/back.svg",
  39022. extra: 1869/1809,
  39023. bottom: 35/1904
  39024. }
  39025. },
  39026. hand: {
  39027. height: math.unit(0.24, "m"),
  39028. name: "Hand",
  39029. image: {
  39030. source: "./media/characters/jade/hand.svg"
  39031. }
  39032. },
  39033. foot: {
  39034. height: math.unit(0.263, "m"),
  39035. name: "Foot",
  39036. image: {
  39037. source: "./media/characters/jade/foot.svg"
  39038. }
  39039. },
  39040. dick: {
  39041. height: math.unit(0.47, "m"),
  39042. name: "Dick",
  39043. image: {
  39044. source: "./media/characters/jade/dick.svg"
  39045. }
  39046. },
  39047. },
  39048. [
  39049. {
  39050. name: "Micro",
  39051. height: math.unit(22, "cm")
  39052. },
  39053. {
  39054. name: "Normal",
  39055. height: math.unit(1.7, "m"),
  39056. default: true
  39057. },
  39058. {
  39059. name: "Macro",
  39060. height: math.unit(152, "m")
  39061. },
  39062. ]
  39063. ))
  39064. characterMakers.push(() => makeCharacter(
  39065. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39066. {
  39067. front: {
  39068. height: math.unit(100, "miles"),
  39069. weight: math.unit(20000, "tons"),
  39070. name: "Front",
  39071. image: {
  39072. source: "./media/characters/cookie/front.svg",
  39073. extra: 1125/1070,
  39074. bottom: 30/1155
  39075. }
  39076. },
  39077. },
  39078. [
  39079. {
  39080. name: "Big",
  39081. height: math.unit(50, "feet")
  39082. },
  39083. {
  39084. name: "Macro",
  39085. height: math.unit(100, "miles"),
  39086. default: true
  39087. },
  39088. {
  39089. name: "Megamacro",
  39090. height: math.unit(90000, "miles")
  39091. },
  39092. ]
  39093. ))
  39094. characterMakers.push(() => makeCharacter(
  39095. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39096. {
  39097. front: {
  39098. height: math.unit(6, "feet"),
  39099. weight: math.unit(145, "lb"),
  39100. name: "Front",
  39101. image: {
  39102. source: "./media/characters/farzian/front.svg",
  39103. extra: 1902/1693,
  39104. bottom: 108/2010
  39105. }
  39106. },
  39107. },
  39108. [
  39109. {
  39110. name: "Macro",
  39111. height: math.unit(500, "feet"),
  39112. default: true
  39113. },
  39114. ]
  39115. ))
  39116. characterMakers.push(() => makeCharacter(
  39117. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39118. {
  39119. front: {
  39120. height: math.unit(3 + 6/12, "feet"),
  39121. weight: math.unit(50, "lb"),
  39122. name: "Front",
  39123. image: {
  39124. source: "./media/characters/kimberly-tilson/front.svg",
  39125. extra: 1400/1322,
  39126. bottom: 36/1436
  39127. }
  39128. },
  39129. back: {
  39130. height: math.unit(3 + 6/12, "feet"),
  39131. weight: math.unit(50, "lb"),
  39132. name: "Back",
  39133. image: {
  39134. source: "./media/characters/kimberly-tilson/back.svg",
  39135. extra: 1370/1307,
  39136. bottom: 20/1390
  39137. }
  39138. },
  39139. },
  39140. [
  39141. {
  39142. name: "Normal",
  39143. height: math.unit(3 + 6/12, "feet"),
  39144. default: true
  39145. },
  39146. ]
  39147. ))
  39148. characterMakers.push(() => makeCharacter(
  39149. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39150. {
  39151. front: {
  39152. height: math.unit(1148, "feet"),
  39153. weight: math.unit(34057, "lb"),
  39154. name: "Front",
  39155. image: {
  39156. source: "./media/characters/harthos/front.svg",
  39157. extra: 1391/1339,
  39158. bottom: 13/1404
  39159. }
  39160. },
  39161. },
  39162. [
  39163. {
  39164. name: "Macro",
  39165. height: math.unit(1148, "feet"),
  39166. default: true
  39167. },
  39168. ]
  39169. ))
  39170. characterMakers.push(() => makeCharacter(
  39171. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39172. {
  39173. front: {
  39174. height: math.unit(15, "feet"),
  39175. name: "Front",
  39176. image: {
  39177. source: "./media/characters/hypatia/front.svg",
  39178. extra: 1653/1591,
  39179. bottom: 79/1732
  39180. }
  39181. },
  39182. },
  39183. [
  39184. {
  39185. name: "Normal",
  39186. height: math.unit(15, "feet")
  39187. },
  39188. {
  39189. name: "Small",
  39190. height: math.unit(300, "feet")
  39191. },
  39192. {
  39193. name: "Macro",
  39194. height: math.unit(2500, "feet"),
  39195. default: true
  39196. },
  39197. {
  39198. name: "Mega Macro",
  39199. height: math.unit(1500, "miles")
  39200. },
  39201. {
  39202. name: "Giga Macro",
  39203. height: math.unit(1.5e6, "miles")
  39204. },
  39205. ]
  39206. ))
  39207. characterMakers.push(() => makeCharacter(
  39208. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39209. {
  39210. front: {
  39211. height: math.unit(6, "feet"),
  39212. weight: math.unit(200, "lb"),
  39213. name: "Front",
  39214. image: {
  39215. source: "./media/characters/wulver/front.svg",
  39216. extra: 1724/1632,
  39217. bottom: 130/1854
  39218. }
  39219. },
  39220. frontNsfw: {
  39221. height: math.unit(6, "feet"),
  39222. weight: math.unit(200, "lb"),
  39223. name: "Front (NSFW)",
  39224. image: {
  39225. source: "./media/characters/wulver/front-nsfw.svg",
  39226. extra: 1724/1632,
  39227. bottom: 130/1854
  39228. }
  39229. },
  39230. },
  39231. [
  39232. {
  39233. name: "Human-Sized",
  39234. height: math.unit(6, "feet")
  39235. },
  39236. {
  39237. name: "Normal",
  39238. height: math.unit(4, "meters"),
  39239. default: true
  39240. },
  39241. {
  39242. name: "Large",
  39243. height: math.unit(6, "m")
  39244. },
  39245. ]
  39246. ))
  39247. characterMakers.push(() => makeCharacter(
  39248. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39249. {
  39250. front: {
  39251. height: math.unit(7, "feet"),
  39252. name: "Front",
  39253. image: {
  39254. source: "./media/characters/maru/front.svg",
  39255. extra: 1595/1570,
  39256. bottom: 0/1595
  39257. }
  39258. },
  39259. },
  39260. [
  39261. {
  39262. name: "Normal",
  39263. height: math.unit(7, "feet"),
  39264. default: true
  39265. },
  39266. {
  39267. name: "Macro",
  39268. height: math.unit(700, "feet")
  39269. },
  39270. {
  39271. name: "Mega Macro",
  39272. height: math.unit(25, "miles")
  39273. },
  39274. ]
  39275. ))
  39276. characterMakers.push(() => makeCharacter(
  39277. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39278. {
  39279. front: {
  39280. height: math.unit(6, "feet"),
  39281. weight: math.unit(170, "lb"),
  39282. name: "Front",
  39283. image: {
  39284. source: "./media/characters/xenon/front.svg",
  39285. extra: 1376/1305,
  39286. bottom: 56/1432
  39287. }
  39288. },
  39289. back: {
  39290. height: math.unit(6, "feet"),
  39291. weight: math.unit(170, "lb"),
  39292. name: "Back",
  39293. image: {
  39294. source: "./media/characters/xenon/back.svg",
  39295. extra: 1328/1259,
  39296. bottom: 95/1423
  39297. }
  39298. },
  39299. maw: {
  39300. height: math.unit(0.52, "feet"),
  39301. name: "Maw",
  39302. image: {
  39303. source: "./media/characters/xenon/maw.svg"
  39304. }
  39305. },
  39306. hand: {
  39307. height: math.unit(0.82, "feet"),
  39308. name: "Hand",
  39309. image: {
  39310. source: "./media/characters/xenon/hand.svg"
  39311. }
  39312. },
  39313. foot: {
  39314. height: math.unit(1.13, "feet"),
  39315. name: "Foot",
  39316. image: {
  39317. source: "./media/characters/xenon/foot.svg"
  39318. }
  39319. },
  39320. },
  39321. [
  39322. {
  39323. name: "Micro",
  39324. height: math.unit(0.8, "inches")
  39325. },
  39326. {
  39327. name: "Normal",
  39328. height: math.unit(6, "feet")
  39329. },
  39330. {
  39331. name: "Macro",
  39332. height: math.unit(50, "feet"),
  39333. default: true
  39334. },
  39335. {
  39336. name: "Macro+",
  39337. height: math.unit(250, "feet")
  39338. },
  39339. {
  39340. name: "Megamacro",
  39341. height: math.unit(1500, "feet")
  39342. },
  39343. ]
  39344. ))
  39345. characterMakers.push(() => makeCharacter(
  39346. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39347. {
  39348. front: {
  39349. height: math.unit(7 + 5/12, "feet"),
  39350. name: "Front",
  39351. image: {
  39352. source: "./media/characters/zane/front.svg",
  39353. extra: 1260/1203,
  39354. bottom: 94/1354
  39355. }
  39356. },
  39357. back: {
  39358. height: math.unit(5.05, "feet"),
  39359. name: "Back",
  39360. image: {
  39361. source: "./media/characters/zane/back.svg",
  39362. extra: 893/829,
  39363. bottom: 30/923
  39364. }
  39365. },
  39366. werewolf: {
  39367. height: math.unit(11, "feet"),
  39368. name: "Werewolf",
  39369. image: {
  39370. source: "./media/characters/zane/werewolf.svg",
  39371. extra: 1383/1323,
  39372. bottom: 89/1472
  39373. }
  39374. },
  39375. foot: {
  39376. height: math.unit(1.46, "feet"),
  39377. name: "Foot",
  39378. image: {
  39379. source: "./media/characters/zane/foot.svg"
  39380. }
  39381. },
  39382. footFront: {
  39383. height: math.unit(0.784, "feet"),
  39384. name: "Foot (Front)",
  39385. image: {
  39386. source: "./media/characters/zane/foot-front.svg"
  39387. }
  39388. },
  39389. dick: {
  39390. height: math.unit(1.95, "feet"),
  39391. name: "Dick",
  39392. image: {
  39393. source: "./media/characters/zane/dick.svg"
  39394. }
  39395. },
  39396. dickWerewolf: {
  39397. height: math.unit(3.77, "feet"),
  39398. name: "Dick (Werewolf)",
  39399. image: {
  39400. source: "./media/characters/zane/dick.svg"
  39401. }
  39402. },
  39403. },
  39404. [
  39405. {
  39406. name: "Normal",
  39407. height: math.unit(7 + 5/12, "feet"),
  39408. default: true
  39409. },
  39410. ]
  39411. ))
  39412. characterMakers.push(() => makeCharacter(
  39413. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39414. {
  39415. front: {
  39416. height: math.unit(6 + 2/12, "feet"),
  39417. weight: math.unit(284, "lb"),
  39418. name: "Front",
  39419. image: {
  39420. source: "./media/characters/benni-desparque/front.svg",
  39421. extra: 1353/1126,
  39422. bottom: 69/1422
  39423. }
  39424. },
  39425. },
  39426. [
  39427. {
  39428. name: "Civilian",
  39429. height: math.unit(6 + 2/12, "feet")
  39430. },
  39431. {
  39432. name: "Normal",
  39433. height: math.unit(98, "feet"),
  39434. default: true
  39435. },
  39436. {
  39437. name: "Kaiju Fighter",
  39438. height: math.unit(268, "feet")
  39439. },
  39440. ]
  39441. ))
  39442. characterMakers.push(() => makeCharacter(
  39443. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39444. {
  39445. front: {
  39446. height: math.unit(5, "feet"),
  39447. weight: math.unit(105, "lb"),
  39448. name: "Front",
  39449. image: {
  39450. source: "./media/characters/maxine/front.svg",
  39451. extra: 1386/1250,
  39452. bottom: 71/1457
  39453. }
  39454. },
  39455. },
  39456. [
  39457. {
  39458. name: "Normal",
  39459. height: math.unit(5, "feet"),
  39460. default: true
  39461. },
  39462. ]
  39463. ))
  39464. characterMakers.push(() => makeCharacter(
  39465. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39466. {
  39467. front: {
  39468. height: math.unit(11 + 7/12, "feet"),
  39469. weight: math.unit(9576, "lb"),
  39470. name: "Front",
  39471. image: {
  39472. source: "./media/characters/scaly/front.svg",
  39473. extra: 888/867,
  39474. bottom: 36/924
  39475. }
  39476. },
  39477. },
  39478. [
  39479. {
  39480. name: "Normal",
  39481. height: math.unit(11 + 7/12, "feet"),
  39482. default: true
  39483. },
  39484. ]
  39485. ))
  39486. characterMakers.push(() => makeCharacter(
  39487. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39488. {
  39489. front: {
  39490. height: math.unit(9, "inches"),
  39491. name: "Front",
  39492. image: {
  39493. source: "./media/characters/saelria/front.svg",
  39494. extra: 662/621,
  39495. bottom: 12/674
  39496. }
  39497. },
  39498. },
  39499. [
  39500. {
  39501. name: "Tiny",
  39502. height: math.unit(9, "inches"),
  39503. default: true
  39504. },
  39505. ]
  39506. ))
  39507. characterMakers.push(() => makeCharacter(
  39508. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39509. {
  39510. front: {
  39511. height: math.unit(80, "meters"),
  39512. weight: math.unit(7000, "tonnes"),
  39513. name: "Front",
  39514. image: {
  39515. source: "./media/characters/tef/front.svg",
  39516. extra: 2036/1991,
  39517. bottom: 54/2090
  39518. }
  39519. },
  39520. back: {
  39521. height: math.unit(80, "meters"),
  39522. weight: math.unit(7000, "tonnes"),
  39523. name: "Back",
  39524. image: {
  39525. source: "./media/characters/tef/back.svg",
  39526. extra: 2036/1991,
  39527. bottom: 54/2090
  39528. }
  39529. },
  39530. },
  39531. [
  39532. {
  39533. name: "Macro",
  39534. height: math.unit(80, "meters"),
  39535. default: true
  39536. },
  39537. ]
  39538. ))
  39539. characterMakers.push(() => makeCharacter(
  39540. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39541. {
  39542. front: {
  39543. height: math.unit(13, "feet"),
  39544. weight: math.unit(6, "tons"),
  39545. name: "Front",
  39546. image: {
  39547. source: "./media/characters/rover/front.svg",
  39548. extra: 1233/1156,
  39549. bottom: 50/1283
  39550. }
  39551. },
  39552. back: {
  39553. height: math.unit(13, "feet"),
  39554. weight: math.unit(6, "tons"),
  39555. name: "Back",
  39556. image: {
  39557. source: "./media/characters/rover/back.svg",
  39558. extra: 1327/1258,
  39559. bottom: 39/1366
  39560. }
  39561. },
  39562. },
  39563. [
  39564. {
  39565. name: "Normal",
  39566. height: math.unit(13, "feet"),
  39567. default: true
  39568. },
  39569. {
  39570. name: "Macro",
  39571. height: math.unit(1300, "feet")
  39572. },
  39573. {
  39574. name: "Megamacro",
  39575. height: math.unit(1300, "miles")
  39576. },
  39577. {
  39578. name: "Gigamacro",
  39579. height: math.unit(1300000, "miles")
  39580. },
  39581. ]
  39582. ))
  39583. characterMakers.push(() => makeCharacter(
  39584. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39585. {
  39586. front: {
  39587. height: math.unit(6, "feet"),
  39588. weight: math.unit(150, "lb"),
  39589. name: "Front",
  39590. image: {
  39591. source: "./media/characters/ariz/front.svg",
  39592. extra: 1401/1346,
  39593. bottom: 5/1406
  39594. }
  39595. },
  39596. },
  39597. [
  39598. {
  39599. name: "Normal",
  39600. height: math.unit(10, "feet"),
  39601. default: true
  39602. },
  39603. ]
  39604. ))
  39605. characterMakers.push(() => makeCharacter(
  39606. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39607. {
  39608. front: {
  39609. height: math.unit(6, "feet"),
  39610. weight: math.unit(140, "lb"),
  39611. name: "Front",
  39612. image: {
  39613. source: "./media/characters/sigrun/front.svg",
  39614. extra: 1418/1359,
  39615. bottom: 27/1445
  39616. }
  39617. },
  39618. },
  39619. [
  39620. {
  39621. name: "Macro",
  39622. height: math.unit(35, "feet"),
  39623. default: true
  39624. },
  39625. ]
  39626. ))
  39627. characterMakers.push(() => makeCharacter(
  39628. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39629. {
  39630. front: {
  39631. height: math.unit(6, "feet"),
  39632. weight: math.unit(150, "lb"),
  39633. name: "Front",
  39634. image: {
  39635. source: "./media/characters/numin/front.svg",
  39636. extra: 1433/1388,
  39637. bottom: 12/1445
  39638. }
  39639. },
  39640. },
  39641. [
  39642. {
  39643. name: "Macro",
  39644. height: math.unit(21.5, "km"),
  39645. default: true
  39646. },
  39647. ]
  39648. ))
  39649. characterMakers.push(() => makeCharacter(
  39650. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39651. {
  39652. front: {
  39653. height: math.unit(6, "feet"),
  39654. weight: math.unit(463, "lb"),
  39655. name: "Front",
  39656. image: {
  39657. source: "./media/characters/melwa/front.svg",
  39658. extra: 1307/1248,
  39659. bottom: 93/1400
  39660. }
  39661. },
  39662. },
  39663. [
  39664. {
  39665. name: "Macro",
  39666. height: math.unit(50, "meters"),
  39667. default: true
  39668. },
  39669. ]
  39670. ))
  39671. characterMakers.push(() => makeCharacter(
  39672. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39673. {
  39674. front: {
  39675. height: math.unit(325, "feet"),
  39676. name: "Front",
  39677. image: {
  39678. source: "./media/characters/zorkaiju/front.svg",
  39679. extra: 1955/1814,
  39680. bottom: 40/1995
  39681. }
  39682. },
  39683. frontExtended: {
  39684. height: math.unit(325, "feet"),
  39685. name: "Front (Extended)",
  39686. image: {
  39687. source: "./media/characters/zorkaiju/front-extended.svg",
  39688. extra: 1955/1814,
  39689. bottom: 40/1995
  39690. }
  39691. },
  39692. side: {
  39693. height: math.unit(325, "feet"),
  39694. name: "Side",
  39695. image: {
  39696. source: "./media/characters/zorkaiju/side.svg",
  39697. extra: 1495/1396,
  39698. bottom: 17/1512
  39699. }
  39700. },
  39701. sideExtended: {
  39702. height: math.unit(325, "feet"),
  39703. name: "Side (Extended)",
  39704. image: {
  39705. source: "./media/characters/zorkaiju/side-extended.svg",
  39706. extra: 1495/1396,
  39707. bottom: 17/1512
  39708. }
  39709. },
  39710. back: {
  39711. height: math.unit(325, "feet"),
  39712. name: "Back",
  39713. image: {
  39714. source: "./media/characters/zorkaiju/back.svg",
  39715. extra: 1959/1821,
  39716. bottom: 31/1990
  39717. }
  39718. },
  39719. backExtended: {
  39720. height: math.unit(325, "feet"),
  39721. name: "Back (Extended)",
  39722. image: {
  39723. source: "./media/characters/zorkaiju/back-extended.svg",
  39724. extra: 1959/1821,
  39725. bottom: 31/1990
  39726. }
  39727. },
  39728. hand: {
  39729. height: math.unit(58.4, "feet"),
  39730. name: "Hand",
  39731. image: {
  39732. source: "./media/characters/zorkaiju/hand.svg"
  39733. }
  39734. },
  39735. handExtended: {
  39736. height: math.unit(61.4, "feet"),
  39737. name: "Hand (Extended)",
  39738. image: {
  39739. source: "./media/characters/zorkaiju/hand-extended.svg"
  39740. }
  39741. },
  39742. foot: {
  39743. height: math.unit(95, "feet"),
  39744. name: "Foot",
  39745. image: {
  39746. source: "./media/characters/zorkaiju/foot.svg"
  39747. }
  39748. },
  39749. leftArm: {
  39750. height: math.unit(59, "feet"),
  39751. name: "Left Arm",
  39752. image: {
  39753. source: "./media/characters/zorkaiju/left-arm.svg"
  39754. }
  39755. },
  39756. rightArm: {
  39757. height: math.unit(59, "feet"),
  39758. name: "Right Arm",
  39759. image: {
  39760. source: "./media/characters/zorkaiju/right-arm.svg"
  39761. }
  39762. },
  39763. tail: {
  39764. height: math.unit(104, "feet"),
  39765. name: "Tail",
  39766. image: {
  39767. source: "./media/characters/zorkaiju/tail.svg"
  39768. }
  39769. },
  39770. tailExtended: {
  39771. height: math.unit(104, "feet"),
  39772. name: "Tail (Extended)",
  39773. image: {
  39774. source: "./media/characters/zorkaiju/tail-extended.svg"
  39775. }
  39776. },
  39777. tailBottom: {
  39778. height: math.unit(104, "feet"),
  39779. name: "Tail Bottom",
  39780. image: {
  39781. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39782. }
  39783. },
  39784. crystal: {
  39785. height: math.unit(27.54, "feet"),
  39786. name: "Crystal",
  39787. image: {
  39788. source: "./media/characters/zorkaiju/crystal.svg"
  39789. }
  39790. },
  39791. },
  39792. [
  39793. {
  39794. name: "Kaiju",
  39795. height: math.unit(325, "feet"),
  39796. default: true
  39797. },
  39798. ]
  39799. ))
  39800. characterMakers.push(() => makeCharacter(
  39801. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39802. {
  39803. front: {
  39804. height: math.unit(6 + 1/12, "feet"),
  39805. weight: math.unit(115, "lb"),
  39806. name: "Front",
  39807. image: {
  39808. source: "./media/characters/bailey-belfry/front.svg",
  39809. extra: 1240/1121,
  39810. bottom: 101/1341
  39811. }
  39812. },
  39813. },
  39814. [
  39815. {
  39816. name: "Normal",
  39817. height: math.unit(6 + 1/12, "feet"),
  39818. default: true
  39819. },
  39820. ]
  39821. ))
  39822. characterMakers.push(() => makeCharacter(
  39823. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39824. {
  39825. side: {
  39826. height: math.unit(4, "meters"),
  39827. weight: math.unit(250, "kg"),
  39828. name: "Side",
  39829. image: {
  39830. source: "./media/characters/blacky/side.svg",
  39831. extra: 1027/919,
  39832. bottom: 43/1070
  39833. }
  39834. },
  39835. maw: {
  39836. height: math.unit(1, "meters"),
  39837. name: "Maw",
  39838. image: {
  39839. source: "./media/characters/blacky/maw.svg"
  39840. }
  39841. },
  39842. paw: {
  39843. height: math.unit(1, "meters"),
  39844. name: "Paw",
  39845. image: {
  39846. source: "./media/characters/blacky/paw.svg"
  39847. }
  39848. },
  39849. },
  39850. [
  39851. {
  39852. name: "Normal",
  39853. height: math.unit(4, "meters"),
  39854. default: true
  39855. },
  39856. ]
  39857. ))
  39858. characterMakers.push(() => makeCharacter(
  39859. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39860. {
  39861. front: {
  39862. height: math.unit(170, "cm"),
  39863. weight: math.unit(66, "kg"),
  39864. name: "Front",
  39865. image: {
  39866. source: "./media/characters/thux-ei/front.svg",
  39867. extra: 1109/1011,
  39868. bottom: 8/1117
  39869. }
  39870. },
  39871. },
  39872. [
  39873. {
  39874. name: "Normal",
  39875. height: math.unit(170, "cm"),
  39876. default: true
  39877. },
  39878. ]
  39879. ))
  39880. characterMakers.push(() => makeCharacter(
  39881. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39882. {
  39883. front: {
  39884. height: math.unit(5, "feet"),
  39885. weight: math.unit(120, "lb"),
  39886. name: "Front",
  39887. image: {
  39888. source: "./media/characters/roxanne-voltaire/front.svg",
  39889. extra: 1901/1779,
  39890. bottom: 53/1954
  39891. }
  39892. },
  39893. },
  39894. [
  39895. {
  39896. name: "Normal",
  39897. height: math.unit(5, "feet"),
  39898. default: true
  39899. },
  39900. {
  39901. name: "Giant",
  39902. height: math.unit(50, "feet")
  39903. },
  39904. {
  39905. name: "Titan",
  39906. height: math.unit(500, "feet")
  39907. },
  39908. {
  39909. name: "Macro",
  39910. height: math.unit(5000, "feet")
  39911. },
  39912. {
  39913. name: "Megamacro",
  39914. height: math.unit(50000, "feet")
  39915. },
  39916. {
  39917. name: "Gigamacro",
  39918. height: math.unit(500000, "feet")
  39919. },
  39920. {
  39921. name: "Teramacro",
  39922. height: math.unit(5e6, "feet")
  39923. },
  39924. ]
  39925. ))
  39926. characterMakers.push(() => makeCharacter(
  39927. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39928. {
  39929. front: {
  39930. height: math.unit(6 + 2/12, "feet"),
  39931. name: "Front",
  39932. image: {
  39933. source: "./media/characters/squeaks/front.svg",
  39934. extra: 1823/1768,
  39935. bottom: 138/1961
  39936. }
  39937. },
  39938. },
  39939. [
  39940. {
  39941. name: "Micro",
  39942. height: math.unit(0.5, "inches")
  39943. },
  39944. {
  39945. name: "Normal",
  39946. height: math.unit(6 + 2/12, "feet"),
  39947. default: true
  39948. },
  39949. {
  39950. name: "Macro",
  39951. height: math.unit(600, "feet")
  39952. },
  39953. ]
  39954. ))
  39955. characterMakers.push(() => makeCharacter(
  39956. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39957. {
  39958. front: {
  39959. height: math.unit(1.72, "meters"),
  39960. name: "Front",
  39961. image: {
  39962. source: "./media/characters/archinger/front.svg",
  39963. extra: 1861/1675,
  39964. bottom: 125/1986
  39965. }
  39966. },
  39967. back: {
  39968. height: math.unit(1.72, "meters"),
  39969. name: "Back",
  39970. image: {
  39971. source: "./media/characters/archinger/back.svg",
  39972. extra: 1844/1701,
  39973. bottom: 104/1948
  39974. }
  39975. },
  39976. cock: {
  39977. height: math.unit(0.59, "feet"),
  39978. name: "Cock",
  39979. image: {
  39980. source: "./media/characters/archinger/cock.svg"
  39981. }
  39982. },
  39983. },
  39984. [
  39985. {
  39986. name: "Normal",
  39987. height: math.unit(1.72, "meters"),
  39988. default: true
  39989. },
  39990. {
  39991. name: "Macro",
  39992. height: math.unit(84, "meters")
  39993. },
  39994. {
  39995. name: "Macro+",
  39996. height: math.unit(112, "meters")
  39997. },
  39998. {
  39999. name: "Macro++",
  40000. height: math.unit(960, "meters")
  40001. },
  40002. {
  40003. name: "Macro+++",
  40004. height: math.unit(4, "km")
  40005. },
  40006. {
  40007. name: "Macro++++",
  40008. height: math.unit(48, "km")
  40009. },
  40010. {
  40011. name: "Macro+++++",
  40012. height: math.unit(4500, "km")
  40013. },
  40014. ]
  40015. ))
  40016. characterMakers.push(() => makeCharacter(
  40017. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40018. {
  40019. front: {
  40020. height: math.unit(5 + 5/12, "feet"),
  40021. name: "Front",
  40022. image: {
  40023. source: "./media/characters/alsnapz/front.svg",
  40024. extra: 1157/1065,
  40025. bottom: 42/1199
  40026. }
  40027. },
  40028. },
  40029. [
  40030. {
  40031. name: "Normal",
  40032. height: math.unit(5 + 5/12, "feet"),
  40033. default: true
  40034. },
  40035. ]
  40036. ))
  40037. characterMakers.push(() => makeCharacter(
  40038. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40039. {
  40040. side: {
  40041. height: math.unit(3.2, "earths"),
  40042. name: "Side",
  40043. image: {
  40044. source: "./media/characters/mag/side.svg",
  40045. extra: 1331/1008,
  40046. bottom: 52/1383
  40047. }
  40048. },
  40049. wing: {
  40050. height: math.unit(1.94, "earths"),
  40051. name: "Wing",
  40052. image: {
  40053. source: "./media/characters/mag/wing.svg"
  40054. }
  40055. },
  40056. dick: {
  40057. height: math.unit(1.8, "earths"),
  40058. name: "Dick",
  40059. image: {
  40060. source: "./media/characters/mag/dick.svg"
  40061. }
  40062. },
  40063. ass: {
  40064. height: math.unit(1.33, "earths"),
  40065. name: "Ass",
  40066. image: {
  40067. source: "./media/characters/mag/ass.svg"
  40068. }
  40069. },
  40070. head: {
  40071. height: math.unit(1.1, "earths"),
  40072. name: "Head",
  40073. image: {
  40074. source: "./media/characters/mag/head.svg"
  40075. }
  40076. },
  40077. maw: {
  40078. height: math.unit(1.62, "earths"),
  40079. name: "Maw",
  40080. image: {
  40081. source: "./media/characters/mag/maw.svg"
  40082. }
  40083. },
  40084. },
  40085. [
  40086. {
  40087. name: "Small",
  40088. height: math.unit(162, "feet")
  40089. },
  40090. {
  40091. name: "Normal",
  40092. height: math.unit(3.2, "earths"),
  40093. default: true
  40094. },
  40095. ]
  40096. ))
  40097. characterMakers.push(() => makeCharacter(
  40098. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40099. {
  40100. front: {
  40101. height: math.unit(512, "feet"),
  40102. weight: math.unit(63509, "tonnes"),
  40103. name: "Front",
  40104. image: {
  40105. source: "./media/characters/vorrel-harroc/front.svg",
  40106. extra: 1075/1063,
  40107. bottom: 62/1137
  40108. }
  40109. },
  40110. },
  40111. [
  40112. {
  40113. name: "Normal",
  40114. height: math.unit(10, "feet")
  40115. },
  40116. {
  40117. name: "Macro",
  40118. height: math.unit(512, "feet"),
  40119. default: true
  40120. },
  40121. {
  40122. name: "Megamacro",
  40123. height: math.unit(256, "miles")
  40124. },
  40125. {
  40126. name: "Gigamacro",
  40127. height: math.unit(4096, "miles")
  40128. },
  40129. ]
  40130. ))
  40131. characterMakers.push(() => makeCharacter(
  40132. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40133. {
  40134. side: {
  40135. height: math.unit(50, "feet"),
  40136. name: "Side",
  40137. image: {
  40138. source: "./media/characters/froimar/side.svg",
  40139. extra: 855/638,
  40140. bottom: 99/954
  40141. }
  40142. },
  40143. },
  40144. [
  40145. {
  40146. name: "Macro",
  40147. height: math.unit(50, "feet"),
  40148. default: true
  40149. },
  40150. ]
  40151. ))
  40152. characterMakers.push(() => makeCharacter(
  40153. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40154. {
  40155. front: {
  40156. height: math.unit(210, "miles"),
  40157. name: "Front",
  40158. image: {
  40159. source: "./media/characters/timothy/front.svg",
  40160. extra: 1007/943,
  40161. bottom: 62/1069
  40162. }
  40163. },
  40164. frontSkirt: {
  40165. height: math.unit(210, "miles"),
  40166. name: "Front (Skirt)",
  40167. image: {
  40168. source: "./media/characters/timothy/front-skirt.svg",
  40169. extra: 1007/943,
  40170. bottom: 62/1069
  40171. }
  40172. },
  40173. frontCoat: {
  40174. height: math.unit(210, "miles"),
  40175. name: "Front (Coat)",
  40176. image: {
  40177. source: "./media/characters/timothy/front-coat.svg",
  40178. extra: 1007/943,
  40179. bottom: 62/1069
  40180. }
  40181. },
  40182. },
  40183. [
  40184. {
  40185. name: "Macro",
  40186. height: math.unit(210, "miles"),
  40187. default: true
  40188. },
  40189. {
  40190. name: "Megamacro",
  40191. height: math.unit(210000, "miles")
  40192. },
  40193. ]
  40194. ))
  40195. characterMakers.push(() => makeCharacter(
  40196. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40197. {
  40198. front: {
  40199. height: math.unit(188, "feet"),
  40200. name: "Front",
  40201. image: {
  40202. source: "./media/characters/pyotr/front.svg",
  40203. extra: 1912/1826,
  40204. bottom: 18/1930
  40205. }
  40206. },
  40207. },
  40208. [
  40209. {
  40210. name: "Macro",
  40211. height: math.unit(188, "feet"),
  40212. default: true
  40213. },
  40214. {
  40215. name: "Megamacro",
  40216. height: math.unit(8, "miles")
  40217. },
  40218. ]
  40219. ))
  40220. characterMakers.push(() => makeCharacter(
  40221. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40222. {
  40223. side: {
  40224. height: math.unit(10, "feet"),
  40225. weight: math.unit(4500, "lb"),
  40226. name: "Side",
  40227. image: {
  40228. source: "./media/characters/ackart/side.svg",
  40229. extra: 1776/1668,
  40230. bottom: 116/1892
  40231. }
  40232. },
  40233. },
  40234. [
  40235. {
  40236. name: "Normal",
  40237. height: math.unit(10, "feet"),
  40238. default: true
  40239. },
  40240. ]
  40241. ))
  40242. characterMakers.push(() => makeCharacter(
  40243. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40244. {
  40245. side: {
  40246. height: math.unit(21, "feet"),
  40247. name: "Side",
  40248. image: {
  40249. source: "./media/characters/nolow/side.svg",
  40250. extra: 1484/1434,
  40251. bottom: 85/1569
  40252. }
  40253. },
  40254. sideErect: {
  40255. height: math.unit(21, "feet"),
  40256. name: "Side-erect",
  40257. image: {
  40258. source: "./media/characters/nolow/side-erect.svg",
  40259. extra: 1484/1434,
  40260. bottom: 85/1569
  40261. }
  40262. },
  40263. },
  40264. [
  40265. {
  40266. name: "Regular",
  40267. height: math.unit(12, "feet")
  40268. },
  40269. {
  40270. name: "Big Chee",
  40271. height: math.unit(21, "feet"),
  40272. default: true
  40273. },
  40274. ]
  40275. ))
  40276. characterMakers.push(() => makeCharacter(
  40277. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40278. {
  40279. front: {
  40280. height: math.unit(7, "feet"),
  40281. weight: math.unit(250, "lb"),
  40282. name: "Front",
  40283. image: {
  40284. source: "./media/characters/nines/front.svg",
  40285. extra: 1741/1607,
  40286. bottom: 41/1782
  40287. }
  40288. },
  40289. side: {
  40290. height: math.unit(7, "feet"),
  40291. weight: math.unit(250, "lb"),
  40292. name: "Side",
  40293. image: {
  40294. source: "./media/characters/nines/side.svg",
  40295. extra: 1854/1735,
  40296. bottom: 93/1947
  40297. }
  40298. },
  40299. back: {
  40300. height: math.unit(7, "feet"),
  40301. weight: math.unit(250, "lb"),
  40302. name: "Back",
  40303. image: {
  40304. source: "./media/characters/nines/back.svg",
  40305. extra: 1748/1615,
  40306. bottom: 20/1768
  40307. }
  40308. },
  40309. },
  40310. [
  40311. {
  40312. name: "Megamacro",
  40313. height: math.unit(99, "km"),
  40314. default: true
  40315. },
  40316. ]
  40317. ))
  40318. characterMakers.push(() => makeCharacter(
  40319. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40320. {
  40321. front: {
  40322. height: math.unit(5 + 10/12, "feet"),
  40323. weight: math.unit(210, "lb"),
  40324. name: "Front",
  40325. image: {
  40326. source: "./media/characters/zenith/front.svg",
  40327. extra: 1531/1452,
  40328. bottom: 198/1729
  40329. }
  40330. },
  40331. back: {
  40332. height: math.unit(5 + 10/12, "feet"),
  40333. weight: math.unit(210, "lb"),
  40334. name: "Back",
  40335. image: {
  40336. source: "./media/characters/zenith/back.svg",
  40337. extra: 1571/1487,
  40338. bottom: 75/1646
  40339. }
  40340. },
  40341. },
  40342. [
  40343. {
  40344. name: "Normal",
  40345. height: math.unit(5 + 10/12, "feet"),
  40346. default: true
  40347. }
  40348. ]
  40349. ))
  40350. characterMakers.push(() => makeCharacter(
  40351. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40352. {
  40353. front: {
  40354. height: math.unit(4, "feet"),
  40355. weight: math.unit(60, "lb"),
  40356. name: "Front",
  40357. image: {
  40358. source: "./media/characters/jasper/front.svg",
  40359. extra: 1450/1379,
  40360. bottom: 19/1469
  40361. }
  40362. },
  40363. },
  40364. [
  40365. {
  40366. name: "Normal",
  40367. height: math.unit(4, "feet"),
  40368. default: true
  40369. },
  40370. ]
  40371. ))
  40372. characterMakers.push(() => makeCharacter(
  40373. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40374. {
  40375. front: {
  40376. height: math.unit(6 + 5/12, "feet"),
  40377. weight: math.unit(290, "lb"),
  40378. name: "Front",
  40379. image: {
  40380. source: "./media/characters/tiberius-thyben/front.svg",
  40381. extra: 757/739,
  40382. bottom: 39/796
  40383. }
  40384. },
  40385. },
  40386. [
  40387. {
  40388. name: "Micro",
  40389. height: math.unit(1.5, "inches")
  40390. },
  40391. {
  40392. name: "Normal",
  40393. height: math.unit(6 + 5/12, "feet"),
  40394. default: true
  40395. },
  40396. {
  40397. name: "Macro",
  40398. height: math.unit(300, "feet")
  40399. },
  40400. ]
  40401. ))
  40402. characterMakers.push(() => makeCharacter(
  40403. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40404. {
  40405. front: {
  40406. height: math.unit(5 + 6/12, "feet"),
  40407. weight: math.unit(60, "kg"),
  40408. name: "Front",
  40409. image: {
  40410. source: "./media/characters/sabre/front.svg",
  40411. extra: 738/671,
  40412. bottom: 27/765
  40413. }
  40414. },
  40415. },
  40416. [
  40417. {
  40418. name: "Teeny",
  40419. height: math.unit(2, "inches")
  40420. },
  40421. {
  40422. name: "Smol",
  40423. height: math.unit(8, "inches")
  40424. },
  40425. {
  40426. name: "Normal",
  40427. height: math.unit(5 + 6/12, "feet"),
  40428. default: true
  40429. },
  40430. {
  40431. name: "Mini-Macro",
  40432. height: math.unit(15, "feet")
  40433. },
  40434. {
  40435. name: "Macro",
  40436. height: math.unit(50, "feet")
  40437. },
  40438. ]
  40439. ))
  40440. characterMakers.push(() => makeCharacter(
  40441. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40442. {
  40443. front: {
  40444. height: math.unit(6 + 4/12, "feet"),
  40445. weight: math.unit(170, "lb"),
  40446. name: "Front",
  40447. image: {
  40448. source: "./media/characters/charlie/front.svg",
  40449. extra: 1348/1228,
  40450. bottom: 15/1363
  40451. }
  40452. },
  40453. },
  40454. [
  40455. {
  40456. name: "Macro",
  40457. height: math.unit(1700, "meters"),
  40458. default: true
  40459. },
  40460. {
  40461. name: "MegaMacro",
  40462. height: math.unit(20400, "meters")
  40463. },
  40464. ]
  40465. ))
  40466. characterMakers.push(() => makeCharacter(
  40467. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40468. {
  40469. front: {
  40470. height: math.unit(6 + 3/12, "feet"),
  40471. weight: math.unit(185, "lb"),
  40472. name: "Front",
  40473. image: {
  40474. source: "./media/characters/susan-grant/front.svg",
  40475. extra: 1351/1327,
  40476. bottom: 26/1377
  40477. }
  40478. },
  40479. },
  40480. [
  40481. {
  40482. name: "Normal",
  40483. height: math.unit(6 + 3/12, "feet"),
  40484. default: true
  40485. },
  40486. {
  40487. name: "Macro",
  40488. height: math.unit(225, "feet")
  40489. },
  40490. {
  40491. name: "Macro+",
  40492. height: math.unit(900, "feet")
  40493. },
  40494. {
  40495. name: "MegaMacro",
  40496. height: math.unit(14400, "feet")
  40497. },
  40498. ]
  40499. ))
  40500. characterMakers.push(() => makeCharacter(
  40501. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40502. {
  40503. front: {
  40504. height: math.unit(5 + 4/12, "feet"),
  40505. weight: math.unit(110, "lb"),
  40506. name: "Front",
  40507. image: {
  40508. source: "./media/characters/axel-isanov/front.svg",
  40509. extra: 1096/1065,
  40510. bottom: 13/1109
  40511. }
  40512. },
  40513. },
  40514. [
  40515. {
  40516. name: "Normal",
  40517. height: math.unit(5 + 4/12, "feet"),
  40518. default: true
  40519. },
  40520. ]
  40521. ))
  40522. characterMakers.push(() => makeCharacter(
  40523. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40524. {
  40525. front: {
  40526. height: math.unit(9, "feet"),
  40527. weight: math.unit(467, "lb"),
  40528. name: "Front",
  40529. image: {
  40530. source: "./media/characters/necahual/front.svg",
  40531. extra: 920/873,
  40532. bottom: 26/946
  40533. }
  40534. },
  40535. back: {
  40536. height: math.unit(9, "feet"),
  40537. weight: math.unit(467, "lb"),
  40538. name: "Back",
  40539. image: {
  40540. source: "./media/characters/necahual/back.svg",
  40541. extra: 930/884,
  40542. bottom: 16/946
  40543. }
  40544. },
  40545. frontUnderwear: {
  40546. height: math.unit(9, "feet"),
  40547. weight: math.unit(467, "lb"),
  40548. name: "Front (Underwear)",
  40549. image: {
  40550. source: "./media/characters/necahual/front-underwear.svg",
  40551. extra: 920/873,
  40552. bottom: 26/946
  40553. }
  40554. },
  40555. frontDressed: {
  40556. height: math.unit(9, "feet"),
  40557. weight: math.unit(467, "lb"),
  40558. name: "Front (Dressed)",
  40559. image: {
  40560. source: "./media/characters/necahual/front-dressed.svg",
  40561. extra: 920/873,
  40562. bottom: 26/946
  40563. }
  40564. },
  40565. },
  40566. [
  40567. {
  40568. name: "Comprsesed",
  40569. height: math.unit(9, "feet")
  40570. },
  40571. {
  40572. name: "Natural",
  40573. height: math.unit(15, "feet"),
  40574. default: true
  40575. },
  40576. {
  40577. name: "Boosted",
  40578. height: math.unit(50, "feet")
  40579. },
  40580. {
  40581. name: "Boosted+",
  40582. height: math.unit(150, "feet")
  40583. },
  40584. {
  40585. name: "Max",
  40586. height: math.unit(500, "feet")
  40587. },
  40588. ]
  40589. ))
  40590. characterMakers.push(() => makeCharacter(
  40591. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40592. {
  40593. front: {
  40594. height: math.unit(22 + 1/12, "feet"),
  40595. weight: math.unit(3200, "lb"),
  40596. name: "Front",
  40597. image: {
  40598. source: "./media/characters/theo-acacia/front.svg",
  40599. extra: 1796/1741,
  40600. bottom: 83/1879
  40601. }
  40602. },
  40603. frontUnderwear: {
  40604. height: math.unit(22 + 1/12, "feet"),
  40605. weight: math.unit(3200, "lb"),
  40606. name: "Front (Underwear)",
  40607. image: {
  40608. source: "./media/characters/theo-acacia/front-underwear.svg",
  40609. extra: 1796/1741,
  40610. bottom: 83/1879
  40611. }
  40612. },
  40613. frontNude: {
  40614. height: math.unit(22 + 1/12, "feet"),
  40615. weight: math.unit(3200, "lb"),
  40616. name: "Front (Nude)",
  40617. image: {
  40618. source: "./media/characters/theo-acacia/front-nude.svg",
  40619. extra: 1796/1741,
  40620. bottom: 83/1879
  40621. }
  40622. },
  40623. },
  40624. [
  40625. {
  40626. name: "Normal",
  40627. height: math.unit(22 + 1/12, "feet"),
  40628. default: true
  40629. },
  40630. ]
  40631. ))
  40632. characterMakers.push(() => makeCharacter(
  40633. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40634. {
  40635. front: {
  40636. height: math.unit(20, "feet"),
  40637. name: "Front",
  40638. image: {
  40639. source: "./media/characters/astra/front.svg",
  40640. extra: 1850/1714,
  40641. bottom: 106/1956
  40642. }
  40643. },
  40644. frontUndressed: {
  40645. height: math.unit(20, "feet"),
  40646. name: "Front (Undressed)",
  40647. image: {
  40648. source: "./media/characters/astra/front-undressed.svg",
  40649. extra: 1926/1749,
  40650. bottom: 0/1926
  40651. }
  40652. },
  40653. hand: {
  40654. height: math.unit(1.53, "feet"),
  40655. name: "Hand",
  40656. image: {
  40657. source: "./media/characters/astra/hand.svg"
  40658. }
  40659. },
  40660. paw: {
  40661. height: math.unit(1.53, "feet"),
  40662. name: "Paw",
  40663. image: {
  40664. source: "./media/characters/astra/paw.svg"
  40665. }
  40666. },
  40667. },
  40668. [
  40669. {
  40670. name: "Smallest",
  40671. height: math.unit(20, "feet")
  40672. },
  40673. {
  40674. name: "Normal",
  40675. height: math.unit(1e9, "miles"),
  40676. default: true
  40677. },
  40678. {
  40679. name: "Larger",
  40680. height: math.unit(5, "multiverses")
  40681. },
  40682. {
  40683. name: "Largest",
  40684. height: math.unit(1e9, "multiverses")
  40685. },
  40686. ]
  40687. ))
  40688. characterMakers.push(() => makeCharacter(
  40689. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40690. {
  40691. front: {
  40692. height: math.unit(8, "feet"),
  40693. name: "Front",
  40694. image: {
  40695. source: "./media/characters/breanna/front.svg",
  40696. extra: 1912/1632,
  40697. bottom: 33/1945
  40698. }
  40699. },
  40700. },
  40701. [
  40702. {
  40703. name: "Smallest",
  40704. height: math.unit(8, "feet")
  40705. },
  40706. {
  40707. name: "Normal",
  40708. height: math.unit(1, "mile"),
  40709. default: true
  40710. },
  40711. {
  40712. name: "Maximum",
  40713. height: math.unit(1500000000000, "lightyears")
  40714. },
  40715. ]
  40716. ))
  40717. characterMakers.push(() => makeCharacter(
  40718. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40719. {
  40720. front: {
  40721. height: math.unit(5 + 11/12, "feet"),
  40722. weight: math.unit(155, "lb"),
  40723. name: "Front",
  40724. image: {
  40725. source: "./media/characters/cai/front.svg",
  40726. extra: 1823/1702,
  40727. bottom: 32/1855
  40728. }
  40729. },
  40730. back: {
  40731. height: math.unit(5 + 11/12, "feet"),
  40732. weight: math.unit(155, "lb"),
  40733. name: "Back",
  40734. image: {
  40735. source: "./media/characters/cai/back.svg",
  40736. extra: 1809/1708,
  40737. bottom: 31/1840
  40738. }
  40739. },
  40740. },
  40741. [
  40742. {
  40743. name: "Normal",
  40744. height: math.unit(5 + 11/12, "feet"),
  40745. default: true
  40746. },
  40747. {
  40748. name: "Big",
  40749. height: math.unit(15, "feet")
  40750. },
  40751. {
  40752. name: "Macro",
  40753. height: math.unit(200, "feet")
  40754. },
  40755. ]
  40756. ))
  40757. characterMakers.push(() => makeCharacter(
  40758. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40759. {
  40760. front: {
  40761. height: math.unit(5 + 6/12, "feet"),
  40762. weight: math.unit(160, "lb"),
  40763. name: "Front",
  40764. image: {
  40765. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40766. extra: 1227/1174,
  40767. bottom: 37/1264
  40768. }
  40769. },
  40770. },
  40771. [
  40772. {
  40773. name: "Macro",
  40774. height: math.unit(444, "meters"),
  40775. default: true
  40776. },
  40777. ]
  40778. ))
  40779. characterMakers.push(() => makeCharacter(
  40780. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40781. {
  40782. front: {
  40783. height: math.unit(18 + 7/12, "feet"),
  40784. name: "Front",
  40785. image: {
  40786. source: "./media/characters/rex/front.svg",
  40787. extra: 1941/1807,
  40788. bottom: 66/2007
  40789. }
  40790. },
  40791. back: {
  40792. height: math.unit(18 + 7/12, "feet"),
  40793. name: "Back",
  40794. image: {
  40795. source: "./media/characters/rex/back.svg",
  40796. extra: 1937/1822,
  40797. bottom: 42/1979
  40798. }
  40799. },
  40800. boot: {
  40801. height: math.unit(3.45, "feet"),
  40802. name: "Boot",
  40803. image: {
  40804. source: "./media/characters/rex/boot.svg"
  40805. }
  40806. },
  40807. paw: {
  40808. height: math.unit(4.17, "feet"),
  40809. name: "Paw",
  40810. image: {
  40811. source: "./media/characters/rex/paw.svg"
  40812. }
  40813. },
  40814. head: {
  40815. height: math.unit(6.728, "feet"),
  40816. name: "Head",
  40817. image: {
  40818. source: "./media/characters/rex/head.svg"
  40819. }
  40820. },
  40821. },
  40822. [
  40823. {
  40824. name: "Nano",
  40825. height: math.unit(18 + 7/12, "feet")
  40826. },
  40827. {
  40828. name: "Micro",
  40829. height: math.unit(1.5, "megameters")
  40830. },
  40831. {
  40832. name: "Normal",
  40833. height: math.unit(440, "megameters"),
  40834. default: true
  40835. },
  40836. {
  40837. name: "Macro",
  40838. height: math.unit(2.5, "gigameters")
  40839. },
  40840. {
  40841. name: "Gigamacro",
  40842. height: math.unit(2, "galaxies")
  40843. },
  40844. ]
  40845. ))
  40846. characterMakers.push(() => makeCharacter(
  40847. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40848. {
  40849. side: {
  40850. height: math.unit(32, "feet"),
  40851. weight: math.unit(250000, "lb"),
  40852. name: "Side",
  40853. image: {
  40854. source: "./media/characters/silverwing/side.svg",
  40855. extra: 1100/1019,
  40856. bottom: 204/1304
  40857. }
  40858. },
  40859. },
  40860. [
  40861. {
  40862. name: "Normal",
  40863. height: math.unit(32, "feet"),
  40864. default: true
  40865. },
  40866. ]
  40867. ))
  40868. characterMakers.push(() => makeCharacter(
  40869. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40870. {
  40871. front: {
  40872. height: math.unit(6 + 6/12, "feet"),
  40873. weight: math.unit(350, "lb"),
  40874. name: "Front",
  40875. image: {
  40876. source: "./media/characters/tristan-hawthorne/front.svg",
  40877. extra: 1159/1124,
  40878. bottom: 37/1196
  40879. }
  40880. },
  40881. },
  40882. [
  40883. {
  40884. name: "Normal",
  40885. height: math.unit(6 + 6/12, "feet"),
  40886. default: true
  40887. },
  40888. ]
  40889. ))
  40890. characterMakers.push(() => makeCharacter(
  40891. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40892. {
  40893. front: {
  40894. height: math.unit(5 + 11/12, "feet"),
  40895. weight: math.unit(190, "lb"),
  40896. name: "Front",
  40897. image: {
  40898. source: "./media/characters/mizu/front.svg",
  40899. extra: 1988/1788,
  40900. bottom: 14/2002
  40901. }
  40902. },
  40903. },
  40904. [
  40905. {
  40906. name: "Normal",
  40907. height: math.unit(5 + 11/12, "feet"),
  40908. default: true
  40909. },
  40910. ]
  40911. ))
  40912. characterMakers.push(() => makeCharacter(
  40913. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40914. {
  40915. front: {
  40916. height: math.unit(6, "feet"),
  40917. name: "Front",
  40918. image: {
  40919. source: "./media/characters/moonlight-rose-terra/front.svg",
  40920. extra: 1434/1252,
  40921. bottom: 48/1482
  40922. }
  40923. },
  40924. },
  40925. [
  40926. {
  40927. name: "TRAPPIST-1D",
  40928. height: math.unit(4992*2, "km")
  40929. },
  40930. {
  40931. name: "Earth",
  40932. height: math.unit(6367*2, "km"),
  40933. default: true
  40934. },
  40935. {
  40936. name: "Kepler-22b",
  40937. height: math.unit(15282*2, "km")
  40938. },
  40939. ]
  40940. ))
  40941. characterMakers.push(() => makeCharacter(
  40942. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40943. {
  40944. front: {
  40945. height: math.unit(6, "feet"),
  40946. name: "Front",
  40947. image: {
  40948. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40949. extra: 1851/1712,
  40950. bottom: 0/1851
  40951. }
  40952. },
  40953. },
  40954. [
  40955. {
  40956. name: "Enceladus",
  40957. height: math.unit(513*2, "km")
  40958. },
  40959. {
  40960. name: "Europe",
  40961. height: math.unit(1560*2, "km")
  40962. },
  40963. {
  40964. name: "Neptune",
  40965. height: math.unit(24622*2, "km"),
  40966. default: true
  40967. },
  40968. {
  40969. name: "CoRoT-9b",
  40970. height: math.unit(75067*2, "km")
  40971. },
  40972. ]
  40973. ))
  40974. characterMakers.push(() => makeCharacter(
  40975. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40976. {
  40977. front: {
  40978. height: math.unit(6, "feet"),
  40979. name: "Front",
  40980. image: {
  40981. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40982. extra: 1367/1286,
  40983. bottom: 55/1422
  40984. }
  40985. },
  40986. },
  40987. [
  40988. {
  40989. name: "Saturn",
  40990. height: math.unit(58232*2, "km")
  40991. },
  40992. {
  40993. name: "Jupiter",
  40994. height: math.unit(69911*2, "km"),
  40995. default: true
  40996. },
  40997. {
  40998. name: "HD 100546 b",
  40999. height: math.unit(482938, "km")
  41000. },
  41001. ]
  41002. ))
  41003. characterMakers.push(() => makeCharacter(
  41004. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41005. {
  41006. front: {
  41007. height: math.unit(1.7, "feet"),
  41008. weight: math.unit(50, "lb"),
  41009. name: "Front",
  41010. image: {
  41011. source: "./media/characters/dechroma/front.svg",
  41012. extra: 1095/859,
  41013. bottom: 64/1159
  41014. }
  41015. },
  41016. },
  41017. [
  41018. {
  41019. name: "Normal",
  41020. height: math.unit(1.7, "feet"),
  41021. default: true
  41022. },
  41023. ]
  41024. ))
  41025. characterMakers.push(() => makeCharacter(
  41026. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41027. {
  41028. side: {
  41029. height: math.unit(30, "feet"),
  41030. name: "Side",
  41031. image: {
  41032. source: "./media/characters/veluren-thanazel/side.svg",
  41033. extra: 1611/633,
  41034. bottom: 118/1729
  41035. }
  41036. },
  41037. front: {
  41038. height: math.unit(30, "feet"),
  41039. name: "Front",
  41040. image: {
  41041. source: "./media/characters/veluren-thanazel/front.svg",
  41042. extra: 1486/636,
  41043. bottom: 238/1724
  41044. }
  41045. },
  41046. head: {
  41047. height: math.unit(21.4, "feet"),
  41048. name: "Head",
  41049. image: {
  41050. source: "./media/characters/veluren-thanazel/head.svg"
  41051. }
  41052. },
  41053. genitals: {
  41054. height: math.unit(19.4, "feet"),
  41055. name: "Genitals",
  41056. image: {
  41057. source: "./media/characters/veluren-thanazel/genitals.svg"
  41058. }
  41059. },
  41060. },
  41061. [
  41062. {
  41063. name: "Social",
  41064. height: math.unit(6, "feet")
  41065. },
  41066. {
  41067. name: "Play",
  41068. height: math.unit(12, "feet")
  41069. },
  41070. {
  41071. name: "True",
  41072. height: math.unit(30, "feet"),
  41073. default: true
  41074. },
  41075. ]
  41076. ))
  41077. characterMakers.push(() => makeCharacter(
  41078. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41079. {
  41080. front: {
  41081. height: math.unit(7 + 6/12, "feet"),
  41082. weight: math.unit(500, "kg"),
  41083. name: "Front",
  41084. image: {
  41085. source: "./media/characters/arcturas/front.svg",
  41086. extra: 1700/1500,
  41087. bottom: 145/1845
  41088. }
  41089. },
  41090. },
  41091. [
  41092. {
  41093. name: "Normal",
  41094. height: math.unit(7 + 6/12, "feet"),
  41095. default: true
  41096. },
  41097. ]
  41098. ))
  41099. characterMakers.push(() => makeCharacter(
  41100. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41101. {
  41102. side: {
  41103. height: math.unit(6, "feet"),
  41104. weight: math.unit(2, "tons"),
  41105. name: "Side",
  41106. image: {
  41107. source: "./media/characters/vitaen/side.svg",
  41108. extra: 1157/617,
  41109. bottom: 122/1279
  41110. }
  41111. },
  41112. },
  41113. [
  41114. {
  41115. name: "Normal",
  41116. height: math.unit(6, "feet"),
  41117. default: true
  41118. },
  41119. ]
  41120. ))
  41121. characterMakers.push(() => makeCharacter(
  41122. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41123. {
  41124. front: {
  41125. height: math.unit(19, "feet"),
  41126. name: "Front",
  41127. image: {
  41128. source: "./media/characters/fia-dreamweaver/front.svg",
  41129. extra: 1630/1504,
  41130. bottom: 25/1655
  41131. }
  41132. },
  41133. },
  41134. [
  41135. {
  41136. name: "Normal",
  41137. height: math.unit(19, "feet"),
  41138. default: true
  41139. },
  41140. ]
  41141. ))
  41142. characterMakers.push(() => makeCharacter(
  41143. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41144. {
  41145. front: {
  41146. height: math.unit(5 + 4/12, "feet"),
  41147. name: "Front",
  41148. image: {
  41149. source: "./media/characters/artan/front.svg",
  41150. extra: 1618/1535,
  41151. bottom: 46/1664
  41152. }
  41153. },
  41154. back: {
  41155. height: math.unit(5 + 4/12, "feet"),
  41156. name: "Back",
  41157. image: {
  41158. source: "./media/characters/artan/back.svg",
  41159. extra: 1618/1543,
  41160. bottom: 31/1649
  41161. }
  41162. },
  41163. },
  41164. [
  41165. {
  41166. name: "Normal",
  41167. height: math.unit(5 + 4/12, "feet"),
  41168. default: true
  41169. },
  41170. ]
  41171. ))
  41172. characterMakers.push(() => makeCharacter(
  41173. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41174. {
  41175. side: {
  41176. height: math.unit(182, "cm"),
  41177. weight: math.unit(1000, "lb"),
  41178. name: "Side",
  41179. image: {
  41180. source: "./media/characters/silver-dragon/side.svg",
  41181. extra: 710/287,
  41182. bottom: 88/798
  41183. }
  41184. },
  41185. },
  41186. [
  41187. {
  41188. name: "Normal",
  41189. height: math.unit(182, "cm"),
  41190. default: true
  41191. },
  41192. ]
  41193. ))
  41194. characterMakers.push(() => makeCharacter(
  41195. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41196. {
  41197. side: {
  41198. height: math.unit(6 + 6/12, "feet"),
  41199. weight: math.unit(1.5, "tons"),
  41200. name: "Side",
  41201. image: {
  41202. source: "./media/characters/zephyr/side.svg",
  41203. extra: 1433/586,
  41204. bottom: 109/1542
  41205. }
  41206. },
  41207. },
  41208. [
  41209. {
  41210. name: "Normal",
  41211. height: math.unit(6 + 6/12, "feet"),
  41212. default: true
  41213. },
  41214. ]
  41215. ))
  41216. characterMakers.push(() => makeCharacter(
  41217. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41218. {
  41219. side: {
  41220. height: math.unit(1, "feet"),
  41221. name: "Side",
  41222. image: {
  41223. source: "./media/characters/vixye/side.svg",
  41224. extra: 632/541,
  41225. bottom: 0/632
  41226. }
  41227. },
  41228. },
  41229. [
  41230. {
  41231. name: "Normal",
  41232. height: math.unit(1, "feet"),
  41233. default: true
  41234. },
  41235. {
  41236. name: "True",
  41237. height: math.unit(1e15, "multiverses")
  41238. },
  41239. ]
  41240. ))
  41241. characterMakers.push(() => makeCharacter(
  41242. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41243. {
  41244. front: {
  41245. height: math.unit(8 + 2/12, "feet"),
  41246. weight: math.unit(650, "lb"),
  41247. name: "Front",
  41248. image: {
  41249. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41250. extra: 1174/1137,
  41251. bottom: 82/1256
  41252. }
  41253. },
  41254. back: {
  41255. height: math.unit(8 + 2/12, "feet"),
  41256. weight: math.unit(650, "lb"),
  41257. name: "Back",
  41258. image: {
  41259. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41260. extra: 1204/1157,
  41261. bottom: 46/1250
  41262. }
  41263. },
  41264. },
  41265. [
  41266. {
  41267. name: "Wildform",
  41268. height: math.unit(8 + 2/12, "feet"),
  41269. default: true
  41270. },
  41271. ]
  41272. ))
  41273. characterMakers.push(() => makeCharacter(
  41274. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41275. {
  41276. front: {
  41277. height: math.unit(18, "feet"),
  41278. name: "Front",
  41279. image: {
  41280. source: "./media/characters/cyphin/front.svg",
  41281. extra: 970/886,
  41282. bottom: 42/1012
  41283. }
  41284. },
  41285. back: {
  41286. height: math.unit(18, "feet"),
  41287. name: "Back",
  41288. image: {
  41289. source: "./media/characters/cyphin/back.svg",
  41290. extra: 1009/894,
  41291. bottom: 24/1033
  41292. }
  41293. },
  41294. head: {
  41295. height: math.unit(5.05, "feet"),
  41296. name: "Head",
  41297. image: {
  41298. source: "./media/characters/cyphin/head.svg"
  41299. }
  41300. },
  41301. tailbud: {
  41302. height: math.unit(5, "feet"),
  41303. name: "Tailbud",
  41304. image: {
  41305. source: "./media/characters/cyphin/tailbud.svg"
  41306. }
  41307. },
  41308. },
  41309. [
  41310. ]
  41311. ))
  41312. characterMakers.push(() => makeCharacter(
  41313. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41314. {
  41315. side: {
  41316. height: math.unit(10, "feet"),
  41317. weight: math.unit(6, "tons"),
  41318. name: "Side",
  41319. image: {
  41320. source: "./media/characters/raijin/side.svg",
  41321. extra: 1529/613,
  41322. bottom: 337/1866
  41323. }
  41324. },
  41325. },
  41326. [
  41327. {
  41328. name: "Normal",
  41329. height: math.unit(10, "feet"),
  41330. default: true
  41331. },
  41332. ]
  41333. ))
  41334. characterMakers.push(() => makeCharacter(
  41335. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41336. {
  41337. side: {
  41338. height: math.unit(9, "feet"),
  41339. name: "Side",
  41340. image: {
  41341. source: "./media/characters/nilghais/side.svg",
  41342. extra: 1047/744,
  41343. bottom: 91/1138
  41344. }
  41345. },
  41346. head: {
  41347. height: math.unit(3.14, "feet"),
  41348. name: "Head",
  41349. image: {
  41350. source: "./media/characters/nilghais/head.svg"
  41351. }
  41352. },
  41353. mouth: {
  41354. height: math.unit(4.6, "feet"),
  41355. name: "Mouth",
  41356. image: {
  41357. source: "./media/characters/nilghais/mouth.svg"
  41358. }
  41359. },
  41360. wings: {
  41361. height: math.unit(24, "feet"),
  41362. name: "Wings",
  41363. image: {
  41364. source: "./media/characters/nilghais/wings.svg"
  41365. }
  41366. },
  41367. ass: {
  41368. height: math.unit(6.12, "feet"),
  41369. name: "Ass",
  41370. image: {
  41371. source: "./media/characters/nilghais/ass.svg"
  41372. }
  41373. },
  41374. },
  41375. [
  41376. {
  41377. name: "Normal",
  41378. height: math.unit(9, "feet"),
  41379. default: true
  41380. },
  41381. ]
  41382. ))
  41383. characterMakers.push(() => makeCharacter(
  41384. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41385. {
  41386. regular: {
  41387. height: math.unit(16 + 2/12, "feet"),
  41388. weight: math.unit(2300, "lb"),
  41389. name: "Regular",
  41390. image: {
  41391. source: "./media/characters/zolgar/regular.svg",
  41392. extra: 1246/1004,
  41393. bottom: 124/1370
  41394. }
  41395. },
  41396. boxers: {
  41397. height: math.unit(16 + 2/12, "feet"),
  41398. weight: math.unit(2300, "lb"),
  41399. name: "Boxers",
  41400. image: {
  41401. source: "./media/characters/zolgar/boxers.svg",
  41402. extra: 1246/1004,
  41403. bottom: 124/1370
  41404. }
  41405. },
  41406. armored: {
  41407. height: math.unit(16 + 2/12, "feet"),
  41408. weight: math.unit(2300, "lb"),
  41409. name: "Armored",
  41410. image: {
  41411. source: "./media/characters/zolgar/armored.svg",
  41412. extra: 1246/1004,
  41413. bottom: 124/1370
  41414. }
  41415. },
  41416. goth: {
  41417. height: math.unit(16 + 2/12, "feet"),
  41418. weight: math.unit(2300, "lb"),
  41419. name: "Goth",
  41420. image: {
  41421. source: "./media/characters/zolgar/goth.svg",
  41422. extra: 1246/1004,
  41423. bottom: 124/1370
  41424. }
  41425. },
  41426. },
  41427. [
  41428. {
  41429. name: "Shrunken Down",
  41430. height: math.unit(9 + 2/12, "feet")
  41431. },
  41432. {
  41433. name: "Normal",
  41434. height: math.unit(16 + 2/12, "feet"),
  41435. default: true
  41436. },
  41437. ]
  41438. ))
  41439. characterMakers.push(() => makeCharacter(
  41440. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41441. {
  41442. front: {
  41443. height: math.unit(6, "feet"),
  41444. weight: math.unit(168, "lb"),
  41445. name: "Front",
  41446. image: {
  41447. source: "./media/characters/luca/front.svg",
  41448. extra: 841/667,
  41449. bottom: 102/943
  41450. }
  41451. },
  41452. },
  41453. [
  41454. {
  41455. name: "Normal",
  41456. height: math.unit(6, "feet"),
  41457. default: true
  41458. },
  41459. ]
  41460. ))
  41461. characterMakers.push(() => makeCharacter(
  41462. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41463. {
  41464. side: {
  41465. height: math.unit(7 + 3/12, "feet"),
  41466. weight: math.unit(312, "lb"),
  41467. name: "Side",
  41468. image: {
  41469. source: "./media/characters/zezo/side.svg",
  41470. extra: 1192/1067,
  41471. bottom: 63/1255
  41472. }
  41473. },
  41474. },
  41475. [
  41476. {
  41477. name: "Normal",
  41478. height: math.unit(7 + 3/12, "feet"),
  41479. default: true
  41480. },
  41481. ]
  41482. ))
  41483. characterMakers.push(() => makeCharacter(
  41484. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41485. {
  41486. front: {
  41487. height: math.unit(5 + 5/12, "feet"),
  41488. weight: math.unit(170, "lb"),
  41489. name: "Front",
  41490. image: {
  41491. source: "./media/characters/mayso/front.svg",
  41492. extra: 1215/1108,
  41493. bottom: 16/1231
  41494. }
  41495. },
  41496. },
  41497. [
  41498. {
  41499. name: "Normal",
  41500. height: math.unit(5 + 5/12, "feet"),
  41501. default: true
  41502. },
  41503. ]
  41504. ))
  41505. characterMakers.push(() => makeCharacter(
  41506. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41507. {
  41508. front: {
  41509. height: math.unit(4 + 3/12, "feet"),
  41510. weight: math.unit(80, "lb"),
  41511. name: "Front",
  41512. image: {
  41513. source: "./media/characters/hess/front.svg",
  41514. extra: 1200/1123,
  41515. bottom: 16/1216
  41516. }
  41517. },
  41518. },
  41519. [
  41520. {
  41521. name: "Normal",
  41522. height: math.unit(4 + 3/12, "feet"),
  41523. default: true
  41524. },
  41525. ]
  41526. ))
  41527. characterMakers.push(() => makeCharacter(
  41528. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41529. {
  41530. front: {
  41531. height: math.unit(1.9, "meters"),
  41532. name: "Front",
  41533. image: {
  41534. source: "./media/characters/ashgar/front.svg",
  41535. extra: 1177/1146,
  41536. bottom: 99/1276
  41537. }
  41538. },
  41539. back: {
  41540. height: math.unit(1.9, "meters"),
  41541. name: "Back",
  41542. image: {
  41543. source: "./media/characters/ashgar/back.svg",
  41544. extra: 1201/1183,
  41545. bottom: 53/1254
  41546. }
  41547. },
  41548. feral: {
  41549. height: math.unit(1.4, "meters"),
  41550. name: "Feral",
  41551. image: {
  41552. source: "./media/characters/ashgar/feral.svg",
  41553. extra: 370/345,
  41554. bottom: 45/415
  41555. }
  41556. },
  41557. },
  41558. [
  41559. {
  41560. name: "Normal",
  41561. height: math.unit(1.9, "meters"),
  41562. default: true
  41563. },
  41564. ]
  41565. ))
  41566. characterMakers.push(() => makeCharacter(
  41567. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41568. {
  41569. regular: {
  41570. height: math.unit(6, "feet"),
  41571. weight: math.unit(220, "lb"),
  41572. name: "Regular",
  41573. image: {
  41574. source: "./media/characters/phillip/regular.svg",
  41575. extra: 1373/1277,
  41576. bottom: 75/1448
  41577. }
  41578. },
  41579. dressed: {
  41580. height: math.unit(6, "feet"),
  41581. weight: math.unit(220, "lb"),
  41582. name: "Dressed",
  41583. image: {
  41584. source: "./media/characters/phillip/dressed.svg",
  41585. extra: 1373/1277,
  41586. bottom: 75/1448
  41587. }
  41588. },
  41589. paw: {
  41590. height: math.unit(1.44, "feet"),
  41591. name: "Paw",
  41592. image: {
  41593. source: "./media/characters/phillip/paw.svg"
  41594. }
  41595. },
  41596. },
  41597. [
  41598. {
  41599. name: "Normal",
  41600. height: math.unit(6, "feet"),
  41601. default: true
  41602. },
  41603. ]
  41604. ))
  41605. characterMakers.push(() => makeCharacter(
  41606. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41607. {
  41608. side: {
  41609. height: math.unit(42, "feet"),
  41610. name: "Side",
  41611. image: {
  41612. source: "./media/characters/uvula/side.svg",
  41613. extra: 683/586,
  41614. bottom: 60/743
  41615. }
  41616. },
  41617. front: {
  41618. height: math.unit(42, "feet"),
  41619. name: "Front",
  41620. image: {
  41621. source: "./media/characters/uvula/front.svg",
  41622. extra: 705/613,
  41623. bottom: 54/759
  41624. }
  41625. },
  41626. maw: {
  41627. height: math.unit(23.5, "feet"),
  41628. name: "Maw",
  41629. image: {
  41630. source: "./media/characters/uvula/maw.svg"
  41631. }
  41632. },
  41633. },
  41634. [
  41635. {
  41636. name: "Original Size",
  41637. height: math.unit(14, "inches")
  41638. },
  41639. {
  41640. name: "Human Size",
  41641. height: math.unit(6, "feet")
  41642. },
  41643. {
  41644. name: "Big",
  41645. height: math.unit(42, "feet"),
  41646. default: true
  41647. },
  41648. {
  41649. name: "Bigger",
  41650. height: math.unit(100, "feet")
  41651. },
  41652. ]
  41653. ))
  41654. characterMakers.push(() => makeCharacter(
  41655. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41656. {
  41657. front: {
  41658. height: math.unit(5 + 11/12, "feet"),
  41659. name: "Front",
  41660. image: {
  41661. source: "./media/characters/lannah/front.svg",
  41662. extra: 1208/1113,
  41663. bottom: 97/1305
  41664. }
  41665. },
  41666. },
  41667. [
  41668. {
  41669. name: "Normal",
  41670. height: math.unit(5 + 11/12, "feet"),
  41671. default: true
  41672. },
  41673. ]
  41674. ))
  41675. characterMakers.push(() => makeCharacter(
  41676. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41677. {
  41678. front: {
  41679. height: math.unit(6 + 3/12, "feet"),
  41680. weight: math.unit(3.5, "tons"),
  41681. name: "Front",
  41682. image: {
  41683. source: "./media/characters/emberflame/front.svg",
  41684. extra: 1198/672,
  41685. bottom: 82/1280
  41686. }
  41687. },
  41688. side: {
  41689. height: math.unit(6 + 3/12, "feet"),
  41690. weight: math.unit(3.5, "tons"),
  41691. name: "Side",
  41692. image: {
  41693. source: "./media/characters/emberflame/side.svg",
  41694. extra: 938/527,
  41695. bottom: 56/994
  41696. }
  41697. },
  41698. },
  41699. [
  41700. {
  41701. name: "Normal",
  41702. height: math.unit(6 + 3/12, "feet"),
  41703. default: true
  41704. },
  41705. ]
  41706. ))
  41707. characterMakers.push(() => makeCharacter(
  41708. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41709. {
  41710. side: {
  41711. height: math.unit(17.5, "feet"),
  41712. weight: math.unit(35, "tons"),
  41713. name: "Side",
  41714. image: {
  41715. source: "./media/characters/sophie-ambrose/side.svg",
  41716. extra: 1573/1242,
  41717. bottom: 71/1644
  41718. }
  41719. },
  41720. maw: {
  41721. height: math.unit(7.4, "feet"),
  41722. name: "Maw",
  41723. image: {
  41724. source: "./media/characters/sophie-ambrose/maw.svg"
  41725. }
  41726. },
  41727. },
  41728. [
  41729. {
  41730. name: "Normal",
  41731. height: math.unit(17.5, "feet"),
  41732. default: true
  41733. },
  41734. ]
  41735. ))
  41736. characterMakers.push(() => makeCharacter(
  41737. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41738. {
  41739. front: {
  41740. height: math.unit(280, "feet"),
  41741. weight: math.unit(550, "tons"),
  41742. name: "Front",
  41743. image: {
  41744. source: "./media/characters/king-mugi/front.svg",
  41745. extra: 1102/947,
  41746. bottom: 104/1206
  41747. }
  41748. },
  41749. },
  41750. [
  41751. {
  41752. name: "King Mugi",
  41753. height: math.unit(280, "feet"),
  41754. default: true
  41755. },
  41756. ]
  41757. ))
  41758. characterMakers.push(() => makeCharacter(
  41759. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41760. {
  41761. front: {
  41762. height: math.unit(64, "meters"),
  41763. name: "Front",
  41764. image: {
  41765. source: "./media/characters/nova-fox/front.svg",
  41766. extra: 1310/1246,
  41767. bottom: 65/1375
  41768. }
  41769. },
  41770. },
  41771. [
  41772. {
  41773. name: "Macro",
  41774. height: math.unit(64, "meters"),
  41775. default: true
  41776. },
  41777. ]
  41778. ))
  41779. characterMakers.push(() => makeCharacter(
  41780. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41781. {
  41782. front: {
  41783. height: math.unit(6 + 3/12, "feet"),
  41784. weight: math.unit(170, "lb"),
  41785. name: "Front",
  41786. image: {
  41787. source: "./media/characters/sam-bat/front.svg",
  41788. extra: 1601/1411,
  41789. bottom: 125/1726
  41790. }
  41791. },
  41792. back: {
  41793. height: math.unit(6 + 3/12, "feet"),
  41794. weight: math.unit(170, "lb"),
  41795. name: "Back",
  41796. image: {
  41797. source: "./media/characters/sam-bat/back.svg",
  41798. extra: 1577/1405,
  41799. bottom: 58/1635
  41800. }
  41801. },
  41802. },
  41803. [
  41804. {
  41805. name: "Normal",
  41806. height: math.unit(6 + 3/12, "feet"),
  41807. default: true
  41808. },
  41809. ]
  41810. ))
  41811. characterMakers.push(() => makeCharacter(
  41812. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41813. {
  41814. front: {
  41815. height: math.unit(59, "feet"),
  41816. weight: math.unit(40000, "lb"),
  41817. name: "Front",
  41818. image: {
  41819. source: "./media/characters/inari/front.svg",
  41820. extra: 1884/1350,
  41821. bottom: 95/1979
  41822. }
  41823. },
  41824. },
  41825. [
  41826. {
  41827. name: "Gigantamax",
  41828. height: math.unit(59, "feet"),
  41829. default: true
  41830. },
  41831. ]
  41832. ))
  41833. characterMakers.push(() => makeCharacter(
  41834. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41835. {
  41836. front: {
  41837. height: math.unit(5 + 8/12, "feet"),
  41838. name: "Front",
  41839. image: {
  41840. source: "./media/characters/elizabeth/front.svg",
  41841. extra: 1395/1298,
  41842. bottom: 54/1449
  41843. }
  41844. },
  41845. mouth: {
  41846. height: math.unit(1.97, "feet"),
  41847. name: "Mouth",
  41848. image: {
  41849. source: "./media/characters/elizabeth/mouth.svg"
  41850. }
  41851. },
  41852. foot: {
  41853. height: math.unit(1.17, "feet"),
  41854. name: "Foot",
  41855. image: {
  41856. source: "./media/characters/elizabeth/foot.svg"
  41857. }
  41858. },
  41859. },
  41860. [
  41861. {
  41862. name: "Normal",
  41863. height: math.unit(5 + 8/12, "feet"),
  41864. default: true
  41865. },
  41866. {
  41867. name: "Minimacro",
  41868. height: math.unit(18, "feet")
  41869. },
  41870. {
  41871. name: "Macro",
  41872. height: math.unit(180, "feet")
  41873. },
  41874. ]
  41875. ))
  41876. characterMakers.push(() => makeCharacter(
  41877. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41878. {
  41879. front: {
  41880. height: math.unit(5 + 2/12, "feet"),
  41881. name: "Front",
  41882. image: {
  41883. source: "./media/characters/october-gossamer/front.svg",
  41884. extra: 505/454,
  41885. bottom: 7/512
  41886. }
  41887. },
  41888. back: {
  41889. height: math.unit(5 + 2/12, "feet"),
  41890. name: "Back",
  41891. image: {
  41892. source: "./media/characters/october-gossamer/back.svg",
  41893. extra: 501/454,
  41894. bottom: 11/512
  41895. }
  41896. },
  41897. },
  41898. [
  41899. {
  41900. name: "Normal",
  41901. height: math.unit(5 + 2/12, "feet"),
  41902. default: true
  41903. },
  41904. ]
  41905. ))
  41906. characterMakers.push(() => makeCharacter(
  41907. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41908. {
  41909. front: {
  41910. height: math.unit(5, "feet"),
  41911. name: "Front",
  41912. image: {
  41913. source: "./media/characters/epiglottis/front.svg",
  41914. extra: 923/849,
  41915. bottom: 17/940
  41916. }
  41917. },
  41918. },
  41919. [
  41920. {
  41921. name: "Original Size",
  41922. height: math.unit(10, "inches")
  41923. },
  41924. {
  41925. name: "Human Size",
  41926. height: math.unit(5, "feet"),
  41927. default: true
  41928. },
  41929. {
  41930. name: "Big",
  41931. height: math.unit(25, "feet")
  41932. },
  41933. {
  41934. name: "Bigger",
  41935. height: math.unit(50, "feet")
  41936. },
  41937. {
  41938. name: "oh lawd",
  41939. height: math.unit(75, "feet")
  41940. },
  41941. ]
  41942. ))
  41943. characterMakers.push(() => makeCharacter(
  41944. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41945. {
  41946. front: {
  41947. height: math.unit(2 + 4/12, "feet"),
  41948. weight: math.unit(60, "lb"),
  41949. name: "Front",
  41950. image: {
  41951. source: "./media/characters/lerm/front.svg",
  41952. extra: 796/790,
  41953. bottom: 79/875
  41954. }
  41955. },
  41956. },
  41957. [
  41958. {
  41959. name: "Normal",
  41960. height: math.unit(2 + 4/12, "feet"),
  41961. default: true
  41962. },
  41963. ]
  41964. ))
  41965. characterMakers.push(() => makeCharacter(
  41966. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41967. {
  41968. front: {
  41969. height: math.unit(5.5, "feet"),
  41970. weight: math.unit(130, "lb"),
  41971. name: "Front",
  41972. image: {
  41973. source: "./media/characters/xena-nebadon/front.svg",
  41974. extra: 1828/1730,
  41975. bottom: 79/1907
  41976. }
  41977. },
  41978. },
  41979. [
  41980. {
  41981. name: "Tiny Puppy",
  41982. height: math.unit(3, "inches")
  41983. },
  41984. {
  41985. name: "Normal",
  41986. height: math.unit(5.5, "feet"),
  41987. default: true
  41988. },
  41989. {
  41990. name: "Lotta Lady",
  41991. height: math.unit(12, "feet")
  41992. },
  41993. {
  41994. name: "Pretty Big",
  41995. height: math.unit(100, "feet")
  41996. },
  41997. {
  41998. name: "Big",
  41999. height: math.unit(500, "feet")
  42000. },
  42001. {
  42002. name: "Skyscraper Toys",
  42003. height: math.unit(2500, "feet")
  42004. },
  42005. {
  42006. name: "Plane Catcher",
  42007. height: math.unit(8, "miles")
  42008. },
  42009. {
  42010. name: "Planet Toys",
  42011. height: math.unit(15, "earths")
  42012. },
  42013. {
  42014. name: "Stardust",
  42015. height: math.unit(0.25, "galaxies")
  42016. },
  42017. {
  42018. name: "Snacks",
  42019. height: math.unit(70, "universes")
  42020. },
  42021. ]
  42022. ))
  42023. characterMakers.push(() => makeCharacter(
  42024. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42025. {
  42026. front: {
  42027. height: math.unit(1.6, "meters"),
  42028. weight: math.unit(60, "kg"),
  42029. name: "Front",
  42030. image: {
  42031. source: "./media/characters/bounty/front.svg",
  42032. extra: 1426/1308,
  42033. bottom: 15/1441
  42034. }
  42035. },
  42036. },
  42037. [
  42038. {
  42039. name: "Normal",
  42040. height: math.unit(1.6, "meters"),
  42041. default: true
  42042. },
  42043. {
  42044. name: "Macro",
  42045. height: math.unit(300, "meters")
  42046. },
  42047. ]
  42048. ))
  42049. characterMakers.push(() => makeCharacter(
  42050. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42051. {
  42052. front: {
  42053. height: math.unit(2 + 8/12, "feet"),
  42054. weight: math.unit(15, "lb"),
  42055. name: "Front",
  42056. image: {
  42057. source: "./media/characters/mochi/front.svg",
  42058. extra: 1022/852,
  42059. bottom: 435/1457
  42060. }
  42061. },
  42062. back: {
  42063. height: math.unit(2 + 8/12, "feet"),
  42064. weight: math.unit(15, "lb"),
  42065. name: "Back",
  42066. image: {
  42067. source: "./media/characters/mochi/back.svg",
  42068. extra: 1335/1119,
  42069. bottom: 39/1374
  42070. }
  42071. },
  42072. bird: {
  42073. height: math.unit(2 + 8/12, "feet"),
  42074. weight: math.unit(15, "lb"),
  42075. name: "Bird",
  42076. image: {
  42077. source: "./media/characters/mochi/bird.svg",
  42078. extra: 1251/1113,
  42079. bottom: 178/1429
  42080. }
  42081. },
  42082. kaiju: {
  42083. height: math.unit(154, "feet"),
  42084. weight: math.unit(1e7, "lb"),
  42085. name: "Kaiju",
  42086. image: {
  42087. source: "./media/characters/mochi/kaiju.svg",
  42088. extra: 460/324,
  42089. bottom: 40/500
  42090. }
  42091. },
  42092. head: {
  42093. height: math.unit(1.21, "feet"),
  42094. name: "Head",
  42095. image: {
  42096. source: "./media/characters/mochi/head.svg"
  42097. }
  42098. },
  42099. alternateTail: {
  42100. height: math.unit(2 + 8/12, "feet"),
  42101. weight: math.unit(45, "lb"),
  42102. name: "Alternate Tail",
  42103. image: {
  42104. source: "./media/characters/mochi/alternate-tail.svg",
  42105. extra: 139/76,
  42106. bottom: 45/184
  42107. }
  42108. },
  42109. },
  42110. [
  42111. {
  42112. name: "Micro",
  42113. height: math.unit(2, "inches")
  42114. },
  42115. {
  42116. name: "Normal",
  42117. height: math.unit(2 + 8/12, "feet"),
  42118. default: true
  42119. },
  42120. {
  42121. name: "Macro",
  42122. height: math.unit(106, "feet")
  42123. },
  42124. ]
  42125. ))
  42126. characterMakers.push(() => makeCharacter(
  42127. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42128. {
  42129. front: {
  42130. height: math.unit(5.67, "feet"),
  42131. weight: math.unit(135, "lb"),
  42132. name: "Front",
  42133. image: {
  42134. source: "./media/characters/sarel/front.svg",
  42135. extra: 865/788,
  42136. bottom: 97/962
  42137. }
  42138. },
  42139. back: {
  42140. height: math.unit(5.67, "feet"),
  42141. weight: math.unit(135, "lb"),
  42142. name: "Back",
  42143. image: {
  42144. source: "./media/characters/sarel/back.svg",
  42145. extra: 857/777,
  42146. bottom: 32/889
  42147. }
  42148. },
  42149. chozoan: {
  42150. height: math.unit(5.67, "feet"),
  42151. weight: math.unit(135, "lb"),
  42152. name: "Chozoan",
  42153. image: {
  42154. source: "./media/characters/sarel/chozoan.svg",
  42155. extra: 865/788,
  42156. bottom: 97/962
  42157. }
  42158. },
  42159. current: {
  42160. height: math.unit(5.67, "feet"),
  42161. weight: math.unit(135, "lb"),
  42162. name: "Current",
  42163. image: {
  42164. source: "./media/characters/sarel/current.svg",
  42165. extra: 865/788,
  42166. bottom: 97/962
  42167. }
  42168. },
  42169. head: {
  42170. height: math.unit(1.77, "feet"),
  42171. name: "Head",
  42172. image: {
  42173. source: "./media/characters/sarel/head.svg"
  42174. }
  42175. },
  42176. claws: {
  42177. height: math.unit(1.8, "feet"),
  42178. name: "Claws",
  42179. image: {
  42180. source: "./media/characters/sarel/claws.svg"
  42181. }
  42182. },
  42183. clawsAlt: {
  42184. height: math.unit(1.8, "feet"),
  42185. name: "Claws-alt",
  42186. image: {
  42187. source: "./media/characters/sarel/claws-alt.svg"
  42188. }
  42189. },
  42190. },
  42191. [
  42192. {
  42193. name: "Normal",
  42194. height: math.unit(5.67, "feet"),
  42195. default: true
  42196. },
  42197. ]
  42198. ))
  42199. characterMakers.push(() => makeCharacter(
  42200. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42201. {
  42202. front: {
  42203. height: math.unit(5500, "feet"),
  42204. name: "Front",
  42205. image: {
  42206. source: "./media/characters/alyonia/front.svg",
  42207. extra: 1200/1135,
  42208. bottom: 29/1229
  42209. }
  42210. },
  42211. back: {
  42212. height: math.unit(5500, "feet"),
  42213. name: "Back",
  42214. image: {
  42215. source: "./media/characters/alyonia/back.svg",
  42216. extra: 1205/1138,
  42217. bottom: 10/1215
  42218. }
  42219. },
  42220. },
  42221. [
  42222. {
  42223. name: "Small",
  42224. height: math.unit(10, "feet")
  42225. },
  42226. {
  42227. name: "Macro",
  42228. height: math.unit(500, "feet")
  42229. },
  42230. {
  42231. name: "Mega Macro",
  42232. height: math.unit(5500, "feet"),
  42233. default: true
  42234. },
  42235. {
  42236. name: "Mega Macro+",
  42237. height: math.unit(500000, "feet")
  42238. },
  42239. {
  42240. name: "Giga Macro",
  42241. height: math.unit(3000, "miles")
  42242. },
  42243. {
  42244. name: "Tera Macro",
  42245. height: math.unit(2.8e6, "miles")
  42246. },
  42247. {
  42248. name: "Galactic",
  42249. height: math.unit(120000, "lightyears")
  42250. },
  42251. ]
  42252. ))
  42253. characterMakers.push(() => makeCharacter(
  42254. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42255. {
  42256. werewolf: {
  42257. height: math.unit(8, "feet"),
  42258. weight: math.unit(425, "lb"),
  42259. name: "Werewolf",
  42260. image: {
  42261. source: "./media/characters/autumn/werewolf.svg",
  42262. extra: 2154/2031,
  42263. bottom: 160/2314
  42264. }
  42265. },
  42266. human: {
  42267. height: math.unit(5 + 8/12, "feet"),
  42268. weight: math.unit(150, "lb"),
  42269. name: "Human",
  42270. image: {
  42271. source: "./media/characters/autumn/human.svg",
  42272. extra: 1200/1149,
  42273. bottom: 30/1230
  42274. }
  42275. },
  42276. },
  42277. [
  42278. {
  42279. name: "Normal",
  42280. height: math.unit(8, "feet"),
  42281. default: true
  42282. },
  42283. ]
  42284. ))
  42285. characterMakers.push(() => makeCharacter(
  42286. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42287. {
  42288. front: {
  42289. height: math.unit(8 + 5/12, "feet"),
  42290. weight: math.unit(825, "lb"),
  42291. name: "Front",
  42292. image: {
  42293. source: "./media/characters/cobalt-charizard/front.svg",
  42294. extra: 1268/1155,
  42295. bottom: 122/1390
  42296. }
  42297. },
  42298. side: {
  42299. height: math.unit(8 + 5/12, "feet"),
  42300. weight: math.unit(825, "lb"),
  42301. name: "Side",
  42302. image: {
  42303. source: "./media/characters/cobalt-charizard/side.svg",
  42304. extra: 1348/1257,
  42305. bottom: 58/1406
  42306. }
  42307. },
  42308. gMax: {
  42309. height: math.unit(134 + 11/12, "feet"),
  42310. name: "G-Max",
  42311. image: {
  42312. source: "./media/characters/cobalt-charizard/g-max.svg",
  42313. extra: 1835/1541,
  42314. bottom: 151/1986
  42315. }
  42316. },
  42317. },
  42318. [
  42319. {
  42320. name: "Normal",
  42321. height: math.unit(8 + 5/12, "feet"),
  42322. default: true
  42323. },
  42324. ]
  42325. ))
  42326. characterMakers.push(() => makeCharacter(
  42327. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42328. {
  42329. front: {
  42330. height: math.unit(6 + 3/12, "feet"),
  42331. weight: math.unit(210, "lb"),
  42332. name: "Front",
  42333. image: {
  42334. source: "./media/characters/stella/front.svg",
  42335. extra: 3549/3335,
  42336. bottom: 51/3600
  42337. }
  42338. },
  42339. },
  42340. [
  42341. {
  42342. name: "Normal",
  42343. height: math.unit(6 + 3/12, "feet"),
  42344. default: true
  42345. },
  42346. ]
  42347. ))
  42348. characterMakers.push(() => makeCharacter(
  42349. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42350. {
  42351. front: {
  42352. height: math.unit(5, "feet"),
  42353. weight: math.unit(90, "lb"),
  42354. name: "Front",
  42355. image: {
  42356. source: "./media/characters/riley-bishop/front.svg",
  42357. extra: 1450/1428,
  42358. bottom: 152/1602
  42359. }
  42360. },
  42361. },
  42362. [
  42363. {
  42364. name: "Normal",
  42365. height: math.unit(5, "feet"),
  42366. default: true
  42367. },
  42368. ]
  42369. ))
  42370. characterMakers.push(() => makeCharacter(
  42371. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42372. {
  42373. side: {
  42374. height: math.unit(8 + 2/12, "feet"),
  42375. weight: math.unit(500, "kg"),
  42376. name: "Side",
  42377. image: {
  42378. source: "./media/characters/theo-arcanine/side.svg",
  42379. extra: 1342/1074,
  42380. bottom: 111/1453
  42381. }
  42382. },
  42383. },
  42384. [
  42385. {
  42386. name: "Normal",
  42387. height: math.unit(8 + 2/12, "feet"),
  42388. default: true
  42389. },
  42390. ]
  42391. ))
  42392. characterMakers.push(() => makeCharacter(
  42393. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42394. {
  42395. front: {
  42396. height: math.unit(4, "feet"),
  42397. name: "Front",
  42398. image: {
  42399. source: "./media/characters/kali/front.svg",
  42400. extra: 1921/1357,
  42401. bottom: 70/1991
  42402. }
  42403. },
  42404. },
  42405. [
  42406. {
  42407. name: "Normal",
  42408. height: math.unit(4, "feet"),
  42409. default: true
  42410. },
  42411. {
  42412. name: "Macro",
  42413. height: math.unit(32, "meters")
  42414. },
  42415. {
  42416. name: "Macro+",
  42417. height: math.unit(150, "meters")
  42418. },
  42419. {
  42420. name: "Megamacro",
  42421. height: math.unit(7500, "meters")
  42422. },
  42423. {
  42424. name: "Megamacro+",
  42425. height: math.unit(80, "kilometers")
  42426. },
  42427. ]
  42428. ))
  42429. characterMakers.push(() => makeCharacter(
  42430. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42431. {
  42432. side: {
  42433. height: math.unit(5 + 11/12, "feet"),
  42434. weight: math.unit(236, "lb"),
  42435. name: "Side",
  42436. image: {
  42437. source: "./media/characters/gapp/side.svg",
  42438. extra: 775/340,
  42439. bottom: 58/833
  42440. }
  42441. },
  42442. mouth: {
  42443. height: math.unit(2.98, "feet"),
  42444. name: "Mouth",
  42445. image: {
  42446. source: "./media/characters/gapp/mouth.svg"
  42447. }
  42448. },
  42449. },
  42450. [
  42451. {
  42452. name: "Normal",
  42453. height: math.unit(5 + 1/12, "feet"),
  42454. default: true
  42455. },
  42456. ]
  42457. ))
  42458. characterMakers.push(() => makeCharacter(
  42459. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42460. {
  42461. front: {
  42462. height: math.unit(6, "feet"),
  42463. name: "Front",
  42464. image: {
  42465. source: "./media/characters/persephone/front.svg",
  42466. extra: 1895/1717,
  42467. bottom: 96/1991
  42468. }
  42469. },
  42470. back: {
  42471. height: math.unit(6, "feet"),
  42472. name: "Back",
  42473. image: {
  42474. source: "./media/characters/persephone/back.svg",
  42475. extra: 1868/1679,
  42476. bottom: 26/1894
  42477. }
  42478. },
  42479. casual: {
  42480. height: math.unit(6, "feet"),
  42481. name: "Casual",
  42482. image: {
  42483. source: "./media/characters/persephone/casual.svg",
  42484. extra: 1713/1541,
  42485. bottom: 76/1789
  42486. }
  42487. },
  42488. },
  42489. [
  42490. {
  42491. name: "Human Size",
  42492. height: math.unit(6, "feet"),
  42493. default: true
  42494. },
  42495. {
  42496. name: "Galaxy Brain",
  42497. height: math.unit(1, "zettameter")
  42498. },
  42499. ]
  42500. ))
  42501. characterMakers.push(() => makeCharacter(
  42502. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42503. {
  42504. front: {
  42505. height: math.unit(1.85, "meters"),
  42506. name: "Front",
  42507. image: {
  42508. source: "./media/characters/riley-foxthing/front.svg",
  42509. extra: 1495/1354,
  42510. bottom: 122/1617
  42511. }
  42512. },
  42513. frontAlt: {
  42514. height: math.unit(1.85, "meters"),
  42515. name: "Front (Alt)",
  42516. image: {
  42517. source: "./media/characters/riley-foxthing/front-alt.svg",
  42518. extra: 1572/1389,
  42519. bottom: 116/1688
  42520. }
  42521. },
  42522. },
  42523. [
  42524. {
  42525. name: "Normal Sized",
  42526. height: math.unit(1.85, "meters"),
  42527. default: true
  42528. },
  42529. {
  42530. name: "Quite Sizable",
  42531. height: math.unit(5, "meters")
  42532. },
  42533. {
  42534. name: "Rather Large",
  42535. height: math.unit(20, "meters")
  42536. },
  42537. {
  42538. name: "Macro",
  42539. height: math.unit(450, "meters")
  42540. },
  42541. {
  42542. name: "Giga",
  42543. height: math.unit(5, "km")
  42544. },
  42545. ]
  42546. ))
  42547. characterMakers.push(() => makeCharacter(
  42548. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42549. {
  42550. front: {
  42551. height: math.unit(6, "feet"),
  42552. weight: math.unit(200, "lb"),
  42553. name: "Front",
  42554. image: {
  42555. source: "./media/characters/blizzard/front.svg",
  42556. extra: 1136/990,
  42557. bottom: 136/1272
  42558. }
  42559. },
  42560. back: {
  42561. height: math.unit(6, "feet"),
  42562. weight: math.unit(200, "lb"),
  42563. name: "Back",
  42564. image: {
  42565. source: "./media/characters/blizzard/back.svg",
  42566. extra: 1175/1034,
  42567. bottom: 97/1272
  42568. }
  42569. },
  42570. sitting: {
  42571. height: math.unit(3.725, "feet"),
  42572. weight: math.unit(200, "lb"),
  42573. name: "Sitting",
  42574. image: {
  42575. source: "./media/characters/blizzard/sitting.svg",
  42576. extra: 581/485,
  42577. bottom: 90/671
  42578. }
  42579. },
  42580. frontWizard: {
  42581. height: math.unit(7.9, "feet"),
  42582. weight: math.unit(200, "lb"),
  42583. name: "Front (Wizard)",
  42584. image: {
  42585. source: "./media/characters/blizzard/front-wizard.svg"
  42586. }
  42587. },
  42588. backWizard: {
  42589. height: math.unit(7.9, "feet"),
  42590. weight: math.unit(200, "lb"),
  42591. name: "Back (Wizard)",
  42592. image: {
  42593. source: "./media/characters/blizzard/back-wizard.svg"
  42594. }
  42595. },
  42596. frontNsfw: {
  42597. height: math.unit(6, "feet"),
  42598. weight: math.unit(200, "lb"),
  42599. name: "Front (NSFW)",
  42600. image: {
  42601. source: "./media/characters/blizzard/front-nsfw.svg",
  42602. extra: 1136/990,
  42603. bottom: 136/1272
  42604. }
  42605. },
  42606. backNsfw: {
  42607. height: math.unit(6, "feet"),
  42608. weight: math.unit(200, "lb"),
  42609. name: "Back (NSFW)",
  42610. image: {
  42611. source: "./media/characters/blizzard/back-nsfw.svg",
  42612. extra: 1175/1034,
  42613. bottom: 97/1272
  42614. }
  42615. },
  42616. sittingNsfw: {
  42617. height: math.unit(3.725, "feet"),
  42618. weight: math.unit(200, "lb"),
  42619. name: "Sitting (NSFW)",
  42620. image: {
  42621. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42622. extra: 581/485,
  42623. bottom: 90/671
  42624. }
  42625. },
  42626. wizardFrontNsfw: {
  42627. height: math.unit(7.9, "feet"),
  42628. weight: math.unit(200, "lb"),
  42629. name: "Wizard (Front, NSFW)",
  42630. image: {
  42631. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42632. }
  42633. },
  42634. },
  42635. [
  42636. {
  42637. name: "Normal",
  42638. height: math.unit(6, "feet"),
  42639. default: true
  42640. },
  42641. ]
  42642. ))
  42643. characterMakers.push(() => makeCharacter(
  42644. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42645. {
  42646. front: {
  42647. height: math.unit(5 + 2/12, "feet"),
  42648. name: "Front",
  42649. image: {
  42650. source: "./media/characters/lumi/front.svg",
  42651. extra: 1328/1268,
  42652. bottom: 103/1431
  42653. }
  42654. },
  42655. back: {
  42656. height: math.unit(5 + 2/12, "feet"),
  42657. name: "Back",
  42658. image: {
  42659. source: "./media/characters/lumi/back.svg",
  42660. extra: 1381/1327,
  42661. bottom: 43/1424
  42662. }
  42663. },
  42664. },
  42665. [
  42666. {
  42667. name: "Normal",
  42668. height: math.unit(5 + 2/12, "feet"),
  42669. default: true
  42670. },
  42671. ]
  42672. ))
  42673. characterMakers.push(() => makeCharacter(
  42674. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42675. {
  42676. front: {
  42677. height: math.unit(5 + 9/12, "feet"),
  42678. name: "Front",
  42679. image: {
  42680. source: "./media/characters/aliya-cotton/front.svg",
  42681. extra: 577/564,
  42682. bottom: 29/606
  42683. }
  42684. },
  42685. },
  42686. [
  42687. {
  42688. name: "Normal",
  42689. height: math.unit(5 + 9/12, "feet"),
  42690. default: true
  42691. },
  42692. ]
  42693. ))
  42694. characterMakers.push(() => makeCharacter(
  42695. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42696. {
  42697. front: {
  42698. height: math.unit(2.7, "meters"),
  42699. weight: math.unit(25000, "lb"),
  42700. name: "Front",
  42701. image: {
  42702. source: "./media/characters/noah-luxray/front.svg",
  42703. extra: 1644/825,
  42704. bottom: 339/1983
  42705. }
  42706. },
  42707. side: {
  42708. height: math.unit(2.97, "meters"),
  42709. weight: math.unit(25000, "lb"),
  42710. name: "Side",
  42711. image: {
  42712. source: "./media/characters/noah-luxray/side.svg",
  42713. extra: 1319/650,
  42714. bottom: 163/1482
  42715. }
  42716. },
  42717. dick: {
  42718. height: math.unit(7.4, "feet"),
  42719. weight: math.unit(2500, "lb"),
  42720. name: "Dick",
  42721. image: {
  42722. source: "./media/characters/noah-luxray/dick.svg"
  42723. }
  42724. },
  42725. dickAlt: {
  42726. height: math.unit(10.83, "feet"),
  42727. weight: math.unit(2500, "lb"),
  42728. name: "Dick-alt",
  42729. image: {
  42730. source: "./media/characters/noah-luxray/dick-alt.svg"
  42731. }
  42732. },
  42733. },
  42734. [
  42735. {
  42736. name: "BIG",
  42737. height: math.unit(2.7, "meters"),
  42738. default: true
  42739. },
  42740. ]
  42741. ))
  42742. characterMakers.push(() => makeCharacter(
  42743. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42744. {
  42745. standing: {
  42746. height: math.unit(183, "cm"),
  42747. weight: math.unit(68, "kg"),
  42748. name: "Standing",
  42749. image: {
  42750. source: "./media/characters/arion/standing.svg",
  42751. extra: 1869/1807,
  42752. bottom: 93/1962
  42753. }
  42754. },
  42755. reclining: {
  42756. height: math.unit(70.5, "cm"),
  42757. weight: math.unit(68, "lb"),
  42758. name: "Reclining",
  42759. image: {
  42760. source: "./media/characters/arion/reclining.svg",
  42761. extra: 937/870,
  42762. bottom: 63/1000
  42763. }
  42764. },
  42765. },
  42766. [
  42767. {
  42768. name: "Colossus Size, Low",
  42769. height: math.unit(33, "meters"),
  42770. default: true
  42771. },
  42772. {
  42773. name: "Colossus Size, Mid",
  42774. height: math.unit(52, "meters")
  42775. },
  42776. {
  42777. name: "Colossus Size, High",
  42778. height: math.unit(60, "meters")
  42779. },
  42780. {
  42781. name: "Titan Size, Low",
  42782. height: math.unit(91, "meters"),
  42783. },
  42784. {
  42785. name: "Titan Size, Mid",
  42786. height: math.unit(122, "meters")
  42787. },
  42788. {
  42789. name: "Titan Size, High",
  42790. height: math.unit(162, "meters")
  42791. },
  42792. ]
  42793. ))
  42794. characterMakers.push(() => makeCharacter(
  42795. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42796. {
  42797. front: {
  42798. height: math.unit(53, "meters"),
  42799. name: "Front",
  42800. image: {
  42801. source: "./media/characters/stellar-marbey/front.svg",
  42802. extra: 1913/1805,
  42803. bottom: 92/2005
  42804. }
  42805. },
  42806. back: {
  42807. height: math.unit(53, "meters"),
  42808. name: "Back",
  42809. image: {
  42810. source: "./media/characters/stellar-marbey/back.svg",
  42811. extra: 1960/1851,
  42812. bottom: 28/1988
  42813. }
  42814. },
  42815. mouth: {
  42816. height: math.unit(3.5, "meters"),
  42817. name: "Mouth",
  42818. image: {
  42819. source: "./media/characters/stellar-marbey/mouth.svg"
  42820. }
  42821. },
  42822. },
  42823. [
  42824. {
  42825. name: "Macro",
  42826. height: math.unit(53, "meters"),
  42827. default: true
  42828. },
  42829. ]
  42830. ))
  42831. characterMakers.push(() => makeCharacter(
  42832. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42833. {
  42834. front: {
  42835. height: math.unit(8 + 1/12, "feet"),
  42836. weight: math.unit(233, "lb"),
  42837. name: "Front",
  42838. image: {
  42839. source: "./media/characters/matsu/front.svg",
  42840. extra: 832/772,
  42841. bottom: 40/872
  42842. }
  42843. },
  42844. back: {
  42845. height: math.unit(8 + 1/12, "feet"),
  42846. weight: math.unit(233, "lb"),
  42847. name: "Back",
  42848. image: {
  42849. source: "./media/characters/matsu/back.svg",
  42850. extra: 839/780,
  42851. bottom: 47/886
  42852. }
  42853. },
  42854. },
  42855. [
  42856. {
  42857. name: "Normal",
  42858. height: math.unit(8 + 1/12, "feet"),
  42859. default: true
  42860. },
  42861. ]
  42862. ))
  42863. characterMakers.push(() => makeCharacter(
  42864. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42865. {
  42866. front: {
  42867. height: math.unit(4, "feet"),
  42868. weight: math.unit(148, "lb"),
  42869. name: "Front",
  42870. image: {
  42871. source: "./media/characters/thiz/front.svg",
  42872. extra: 1913/1748,
  42873. bottom: 62/1975
  42874. }
  42875. },
  42876. },
  42877. [
  42878. {
  42879. name: "Normal",
  42880. height: math.unit(4, "feet"),
  42881. default: true
  42882. },
  42883. ]
  42884. ))
  42885. characterMakers.push(() => makeCharacter(
  42886. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42887. {
  42888. front: {
  42889. height: math.unit(7 + 6/12, "feet"),
  42890. weight: math.unit(267, "lb"),
  42891. name: "Front",
  42892. image: {
  42893. source: "./media/characters/marcel/front.svg",
  42894. extra: 1221/1096,
  42895. bottom: 76/1297
  42896. }
  42897. },
  42898. },
  42899. [
  42900. {
  42901. name: "Normal",
  42902. height: math.unit(7 + 6/12, "feet"),
  42903. default: true
  42904. },
  42905. ]
  42906. ))
  42907. characterMakers.push(() => makeCharacter(
  42908. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42909. {
  42910. side: {
  42911. height: math.unit(42, "meters"),
  42912. name: "Side",
  42913. image: {
  42914. source: "./media/characters/flake/side.svg",
  42915. extra: 1525/1306,
  42916. bottom: 209/1734
  42917. }
  42918. },
  42919. },
  42920. [
  42921. {
  42922. name: "Normal",
  42923. height: math.unit(42, "meters"),
  42924. default: true
  42925. },
  42926. ]
  42927. ))
  42928. characterMakers.push(() => makeCharacter(
  42929. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  42930. {
  42931. dressed: {
  42932. height: math.unit(6 + 4/12, "feet"),
  42933. weight: math.unit(520, "lb"),
  42934. name: "Dressed",
  42935. image: {
  42936. source: "./media/characters/someonne/dressed.svg",
  42937. extra: 1020/1010,
  42938. bottom: 178/1198
  42939. }
  42940. },
  42941. undressed: {
  42942. height: math.unit(6 + 4/12, "feet"),
  42943. weight: math.unit(520, "lb"),
  42944. name: "Undressed",
  42945. image: {
  42946. source: "./media/characters/someonne/undressed.svg",
  42947. extra: 1019/1014,
  42948. bottom: 169/1188
  42949. }
  42950. },
  42951. },
  42952. [
  42953. {
  42954. name: "Normal",
  42955. height: math.unit(6 + 4/12, "feet"),
  42956. default: true
  42957. },
  42958. ]
  42959. ))
  42960. characterMakers.push(() => makeCharacter(
  42961. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  42962. {
  42963. front: {
  42964. height: math.unit(3, "feet"),
  42965. weight: math.unit(30, "lb"),
  42966. name: "Front",
  42967. image: {
  42968. source: "./media/characters/till/front.svg",
  42969. extra: 892/823,
  42970. bottom: 55/947
  42971. }
  42972. },
  42973. },
  42974. [
  42975. {
  42976. name: "Normal",
  42977. height: math.unit(3, "feet"),
  42978. default: true
  42979. },
  42980. ]
  42981. ))
  42982. characterMakers.push(() => makeCharacter(
  42983. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  42984. {
  42985. front: {
  42986. height: math.unit(9 + 8/12, "feet"),
  42987. weight: math.unit(800, "lb"),
  42988. name: "Front",
  42989. image: {
  42990. source: "./media/characters/sydney-heki/front.svg",
  42991. extra: 1360/1300,
  42992. bottom: 22/1382
  42993. }
  42994. },
  42995. back: {
  42996. height: math.unit(9 + 8/12, "feet"),
  42997. weight: math.unit(800, "lb"),
  42998. name: "Back",
  42999. image: {
  43000. source: "./media/characters/sydney-heki/back.svg",
  43001. extra: 1356/1293,
  43002. bottom: 12/1368
  43003. }
  43004. },
  43005. frontDressed: {
  43006. height: math.unit(9 + 8/12, "feet"),
  43007. weight: math.unit(800, "lb"),
  43008. name: "Front-dressed",
  43009. image: {
  43010. source: "./media/characters/sydney-heki/front-dressed.svg",
  43011. extra: 1360/1300,
  43012. bottom: 22/1382
  43013. }
  43014. },
  43015. },
  43016. [
  43017. {
  43018. name: "Normal",
  43019. height: math.unit(9 + 8/12, "feet"),
  43020. default: true
  43021. },
  43022. {
  43023. name: "Macro",
  43024. height: math.unit(500, "feet")
  43025. },
  43026. {
  43027. name: "Megamacro",
  43028. height: math.unit(3.6, "miles")
  43029. },
  43030. ]
  43031. ))
  43032. characterMakers.push(() => makeCharacter(
  43033. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43034. {
  43035. front: {
  43036. height: math.unit(200, "cm"),
  43037. weight: math.unit(250, "lb"),
  43038. name: "Front",
  43039. image: {
  43040. source: "./media/characters/fowler-karlsson/front.svg",
  43041. extra: 897/845,
  43042. bottom: 123/1020
  43043. }
  43044. },
  43045. back: {
  43046. height: math.unit(200, "cm"),
  43047. weight: math.unit(250, "lb"),
  43048. name: "Back",
  43049. image: {
  43050. source: "./media/characters/fowler-karlsson/back.svg",
  43051. extra: 999/944,
  43052. bottom: 26/1025
  43053. }
  43054. },
  43055. dick: {
  43056. height: math.unit(1.92, "feet"),
  43057. weight: math.unit(150, "lb"),
  43058. name: "Dick",
  43059. image: {
  43060. source: "./media/characters/fowler-karlsson/dick.svg"
  43061. }
  43062. },
  43063. },
  43064. [
  43065. {
  43066. name: "Normal",
  43067. height: math.unit(200, "cm"),
  43068. default: true
  43069. },
  43070. {
  43071. name: "Smaller Macro",
  43072. height: math.unit(90, "m")
  43073. },
  43074. {
  43075. name: "Macro",
  43076. height: math.unit(150, "m")
  43077. },
  43078. {
  43079. name: "Bigger Macro",
  43080. height: math.unit(300, "m")
  43081. },
  43082. ]
  43083. ))
  43084. characterMakers.push(() => makeCharacter(
  43085. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43086. {
  43087. side: {
  43088. height: math.unit(8 + 2/12, "feet"),
  43089. weight: math.unit(1, "tonne"),
  43090. name: "Side",
  43091. image: {
  43092. source: "./media/characters/rylide/side.svg",
  43093. extra: 1318/1034,
  43094. bottom: 106/1424
  43095. }
  43096. },
  43097. sitting: {
  43098. height: math.unit(303, "cm"),
  43099. weight: math.unit(1, "tonne"),
  43100. name: "Sitting",
  43101. image: {
  43102. source: "./media/characters/rylide/sitting.svg",
  43103. extra: 1303/1103,
  43104. bottom: 36/1339
  43105. }
  43106. },
  43107. },
  43108. [
  43109. {
  43110. name: "Normal",
  43111. height: math.unit(8 + 2/12, "feet"),
  43112. default: true
  43113. },
  43114. ]
  43115. ))
  43116. characterMakers.push(() => makeCharacter(
  43117. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43118. {
  43119. front: {
  43120. height: math.unit(5 + 10/12, "feet"),
  43121. weight: math.unit(160, "lb"),
  43122. name: "Front",
  43123. image: {
  43124. source: "./media/characters/pudask/front.svg",
  43125. extra: 1616/1590,
  43126. bottom: 161/1777
  43127. }
  43128. },
  43129. },
  43130. [
  43131. {
  43132. name: "Ferret Height",
  43133. height: math.unit(2 + 5/12, "feet")
  43134. },
  43135. {
  43136. name: "Canon Height",
  43137. height: math.unit(5 + 10/12, "feet"),
  43138. default: true
  43139. },
  43140. ]
  43141. ))
  43142. characterMakers.push(() => makeCharacter(
  43143. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43144. {
  43145. front: {
  43146. height: math.unit(3 + 6/12, "feet"),
  43147. weight: math.unit(60, "lb"),
  43148. name: "Front",
  43149. image: {
  43150. source: "./media/characters/ramita/front.svg",
  43151. extra: 1402/1232,
  43152. bottom: 62/1464
  43153. }
  43154. },
  43155. dressed: {
  43156. height: math.unit(3 + 6/12, "feet"),
  43157. weight: math.unit(60, "lb"),
  43158. name: "Dressed",
  43159. image: {
  43160. source: "./media/characters/ramita/dressed.svg",
  43161. extra: 1534/1249,
  43162. bottom: 50/1584
  43163. }
  43164. },
  43165. },
  43166. [
  43167. {
  43168. name: "Normal",
  43169. height: math.unit(3 + 6/12, "feet"),
  43170. default: true
  43171. },
  43172. ]
  43173. ))
  43174. characterMakers.push(() => makeCharacter(
  43175. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43176. {
  43177. front: {
  43178. height: math.unit(8, "feet"),
  43179. name: "Front",
  43180. image: {
  43181. source: "./media/characters/ark/front.svg",
  43182. extra: 772/693,
  43183. bottom: 45/817
  43184. }
  43185. },
  43186. },
  43187. [
  43188. {
  43189. name: "Normal",
  43190. height: math.unit(8, "feet"),
  43191. default: true
  43192. },
  43193. ]
  43194. ))
  43195. characterMakers.push(() => makeCharacter(
  43196. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43197. {
  43198. front: {
  43199. height: math.unit(6, "feet"),
  43200. weight: math.unit(250, "lb"),
  43201. volume: math.unit(5/8, "gallons"),
  43202. name: "Front",
  43203. image: {
  43204. source: "./media/characters/ludwig-horn/front.svg",
  43205. extra: 1782/1635,
  43206. bottom: 96/1878
  43207. }
  43208. },
  43209. back: {
  43210. height: math.unit(6, "feet"),
  43211. weight: math.unit(250, "lb"),
  43212. volume: math.unit(5/8, "gallons"),
  43213. name: "Back",
  43214. image: {
  43215. source: "./media/characters/ludwig-horn/back.svg",
  43216. extra: 1874/1729,
  43217. bottom: 27/1901
  43218. }
  43219. },
  43220. dick: {
  43221. height: math.unit(1.05, "feet"),
  43222. weight: math.unit(15, "lb"),
  43223. volume: math.unit(5/8, "gallons"),
  43224. name: "Dick",
  43225. image: {
  43226. source: "./media/characters/ludwig-horn/dick.svg"
  43227. }
  43228. },
  43229. },
  43230. [
  43231. {
  43232. name: "Small",
  43233. height: math.unit(6, "feet")
  43234. },
  43235. {
  43236. name: "Typical",
  43237. height: math.unit(12, "feet"),
  43238. default: true
  43239. },
  43240. {
  43241. name: "Building",
  43242. height: math.unit(80, "feet")
  43243. },
  43244. {
  43245. name: "Town",
  43246. height: math.unit(800, "feet")
  43247. },
  43248. {
  43249. name: "Kingdom",
  43250. height: math.unit(80000, "feet")
  43251. },
  43252. {
  43253. name: "Planet",
  43254. height: math.unit(8000000, "feet")
  43255. },
  43256. {
  43257. name: "Universe",
  43258. height: math.unit(8000000000, "feet")
  43259. },
  43260. {
  43261. name: "Transcended",
  43262. height: math.unit(8e27, "feet")
  43263. },
  43264. ]
  43265. ))
  43266. characterMakers.push(() => makeCharacter(
  43267. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43268. {
  43269. front: {
  43270. height: math.unit(5, "feet"),
  43271. weight: math.unit(50, "kg"),
  43272. name: "Front",
  43273. image: {
  43274. source: "./media/characters/biot-avery/front.svg",
  43275. extra: 1295/1232,
  43276. bottom: 86/1381
  43277. }
  43278. },
  43279. },
  43280. [
  43281. {
  43282. name: "Normal",
  43283. height: math.unit(5, "feet"),
  43284. default: true
  43285. },
  43286. ]
  43287. ))
  43288. characterMakers.push(() => makeCharacter(
  43289. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43290. {
  43291. front: {
  43292. height: math.unit(6, "feet"),
  43293. name: "Front",
  43294. image: {
  43295. source: "./media/characters/kitsune-kiro/front.svg",
  43296. extra: 1270/1158,
  43297. bottom: 42/1312
  43298. }
  43299. },
  43300. frontAlt: {
  43301. height: math.unit(6, "feet"),
  43302. name: "Front-alt",
  43303. image: {
  43304. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43305. extra: 1130/1081,
  43306. bottom: 36/1166
  43307. }
  43308. },
  43309. },
  43310. [
  43311. {
  43312. name: "Smol",
  43313. height: math.unit(3, "feet")
  43314. },
  43315. {
  43316. name: "Normal",
  43317. height: math.unit(6, "feet"),
  43318. default: true
  43319. },
  43320. ]
  43321. ))
  43322. characterMakers.push(() => makeCharacter(
  43323. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43324. {
  43325. front: {
  43326. height: math.unit(6, "feet"),
  43327. weight: math.unit(125, "lb"),
  43328. name: "Front",
  43329. image: {
  43330. source: "./media/characters/jack-thatcher/front.svg",
  43331. extra: 1474/1370,
  43332. bottom: 26/1500
  43333. }
  43334. },
  43335. back: {
  43336. height: math.unit(6, "feet"),
  43337. weight: math.unit(125, "lb"),
  43338. name: "Back",
  43339. image: {
  43340. source: "./media/characters/jack-thatcher/back.svg",
  43341. extra: 1489/1384,
  43342. bottom: 18/1507
  43343. }
  43344. },
  43345. },
  43346. [
  43347. {
  43348. name: "Normal",
  43349. height: math.unit(6, "feet"),
  43350. default: true
  43351. },
  43352. {
  43353. name: "Macro",
  43354. height: math.unit(75, "feet")
  43355. },
  43356. {
  43357. name: "Macro-er",
  43358. height: math.unit(250, "feet")
  43359. },
  43360. ]
  43361. ))
  43362. characterMakers.push(() => makeCharacter(
  43363. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43364. {
  43365. front: {
  43366. height: math.unit(7, "feet"),
  43367. weight: math.unit(110, "kg"),
  43368. name: "Front",
  43369. image: {
  43370. source: "./media/characters/max-hyper/front.svg",
  43371. extra: 1969/1881,
  43372. bottom: 49/2018
  43373. }
  43374. },
  43375. },
  43376. [
  43377. {
  43378. name: "Normal",
  43379. height: math.unit(7, "feet"),
  43380. default: true
  43381. },
  43382. ]
  43383. ))
  43384. characterMakers.push(() => makeCharacter(
  43385. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43386. {
  43387. front: {
  43388. height: math.unit(5 + 5/12, "feet"),
  43389. weight: math.unit(160, "lb"),
  43390. name: "Front",
  43391. image: {
  43392. source: "./media/characters/spook/front.svg",
  43393. extra: 794/791,
  43394. bottom: 54/848
  43395. }
  43396. },
  43397. back: {
  43398. height: math.unit(5 + 5/12, "feet"),
  43399. weight: math.unit(160, "lb"),
  43400. name: "Back",
  43401. image: {
  43402. source: "./media/characters/spook/back.svg",
  43403. extra: 812/798,
  43404. bottom: 32/844
  43405. }
  43406. },
  43407. },
  43408. [
  43409. {
  43410. name: "Normal",
  43411. height: math.unit(5 + 5/12, "feet"),
  43412. default: true
  43413. },
  43414. ]
  43415. ))
  43416. characterMakers.push(() => makeCharacter(
  43417. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43418. {
  43419. front: {
  43420. height: math.unit(18, "feet"),
  43421. name: "Front",
  43422. image: {
  43423. source: "./media/characters/xeaduulix/front.svg",
  43424. extra: 1380/1166,
  43425. bottom: 110/1490
  43426. }
  43427. },
  43428. back: {
  43429. height: math.unit(18, "feet"),
  43430. name: "Back",
  43431. image: {
  43432. source: "./media/characters/xeaduulix/back.svg",
  43433. extra: 1592/1170,
  43434. bottom: 128/1720
  43435. }
  43436. },
  43437. frontNsfw: {
  43438. height: math.unit(18, "feet"),
  43439. name: "Front (NSFW)",
  43440. image: {
  43441. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43442. extra: 1380/1166,
  43443. bottom: 110/1490
  43444. }
  43445. },
  43446. backNsfw: {
  43447. height: math.unit(18, "feet"),
  43448. name: "Back (NSFW)",
  43449. image: {
  43450. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43451. extra: 1592/1170,
  43452. bottom: 128/1720
  43453. }
  43454. },
  43455. },
  43456. [
  43457. {
  43458. name: "Normal",
  43459. height: math.unit(18, "feet"),
  43460. default: true
  43461. },
  43462. ]
  43463. ))
  43464. characterMakers.push(() => makeCharacter(
  43465. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43466. {
  43467. spreadWings: {
  43468. height: math.unit(20, "feet"),
  43469. name: "Spread Wings",
  43470. image: {
  43471. source: "./media/characters/fledge/spread-wings.svg",
  43472. extra: 693/635,
  43473. bottom: 26/719
  43474. }
  43475. },
  43476. front: {
  43477. height: math.unit(20, "feet"),
  43478. name: "Front",
  43479. image: {
  43480. source: "./media/characters/fledge/front.svg",
  43481. extra: 684/637,
  43482. bottom: 18/702
  43483. }
  43484. },
  43485. frontAlt: {
  43486. height: math.unit(20, "feet"),
  43487. name: "Front (Alt)",
  43488. image: {
  43489. source: "./media/characters/fledge/front-alt.svg",
  43490. extra: 708/664,
  43491. bottom: 13/721
  43492. }
  43493. },
  43494. back: {
  43495. height: math.unit(20, "feet"),
  43496. name: "Back",
  43497. image: {
  43498. source: "./media/characters/fledge/back.svg",
  43499. extra: 718/634,
  43500. bottom: 22/740
  43501. }
  43502. },
  43503. head: {
  43504. height: math.unit(5.55, "feet"),
  43505. name: "Head",
  43506. image: {
  43507. source: "./media/characters/fledge/head.svg"
  43508. }
  43509. },
  43510. headAlt: {
  43511. height: math.unit(5.1, "feet"),
  43512. name: "Head (Alt)",
  43513. image: {
  43514. source: "./media/characters/fledge/head-alt.svg"
  43515. }
  43516. },
  43517. },
  43518. [
  43519. {
  43520. name: "Small",
  43521. height: math.unit(6 + 2/12, "feet")
  43522. },
  43523. {
  43524. name: "Big",
  43525. height: math.unit(20, "feet"),
  43526. default: true
  43527. },
  43528. {
  43529. name: "Giant",
  43530. height: math.unit(100, "feet")
  43531. },
  43532. {
  43533. name: "Macro",
  43534. height: math.unit(200, "feet")
  43535. },
  43536. ]
  43537. ))
  43538. characterMakers.push(() => makeCharacter(
  43539. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43540. {
  43541. front: {
  43542. height: math.unit(1, "meter"),
  43543. name: "Front",
  43544. image: {
  43545. source: "./media/characters/atlas-morenai/front.svg",
  43546. extra: 1275/1043,
  43547. bottom: 19/1294
  43548. }
  43549. },
  43550. back: {
  43551. height: math.unit(1, "meter"),
  43552. name: "Back",
  43553. image: {
  43554. source: "./media/characters/atlas-morenai/back.svg",
  43555. extra: 1141/1001,
  43556. bottom: 25/1166
  43557. }
  43558. },
  43559. },
  43560. [
  43561. {
  43562. name: "Normal",
  43563. height: math.unit(1, "meter"),
  43564. default: true
  43565. },
  43566. {
  43567. name: "Magic-Infused",
  43568. height: math.unit(5, "meters")
  43569. },
  43570. ]
  43571. ))
  43572. characterMakers.push(() => makeCharacter(
  43573. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43574. {
  43575. front: {
  43576. height: math.unit(5, "meters"),
  43577. name: "Front",
  43578. image: {
  43579. source: "./media/characters/cintia/front.svg",
  43580. extra: 1312/1228,
  43581. bottom: 38/1350
  43582. }
  43583. },
  43584. back: {
  43585. height: math.unit(5, "meters"),
  43586. name: "Back",
  43587. image: {
  43588. source: "./media/characters/cintia/back.svg",
  43589. extra: 1260/1166,
  43590. bottom: 98/1358
  43591. }
  43592. },
  43593. frontDick: {
  43594. height: math.unit(5, "meters"),
  43595. name: "Front (Dick)",
  43596. image: {
  43597. source: "./media/characters/cintia/front-dick.svg",
  43598. extra: 1312/1228,
  43599. bottom: 38/1350
  43600. }
  43601. },
  43602. backDick: {
  43603. height: math.unit(5, "meters"),
  43604. name: "Back (Dick)",
  43605. image: {
  43606. source: "./media/characters/cintia/back-dick.svg",
  43607. extra: 1260/1166,
  43608. bottom: 98/1358
  43609. }
  43610. },
  43611. bust: {
  43612. height: math.unit(1.97, "meters"),
  43613. name: "Bust",
  43614. image: {
  43615. source: "./media/characters/cintia/bust.svg",
  43616. extra: 617/565,
  43617. bottom: 0/617
  43618. }
  43619. },
  43620. },
  43621. [
  43622. {
  43623. name: "Normal",
  43624. height: math.unit(5, "meters"),
  43625. default: true
  43626. },
  43627. ]
  43628. ))
  43629. characterMakers.push(() => makeCharacter(
  43630. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43631. {
  43632. side: {
  43633. height: math.unit(100, "feet"),
  43634. name: "Side",
  43635. image: {
  43636. source: "./media/characters/denora/side.svg",
  43637. extra: 875/803,
  43638. bottom: 9/884
  43639. }
  43640. },
  43641. },
  43642. [
  43643. {
  43644. name: "Standard",
  43645. height: math.unit(100, "feet"),
  43646. default: true
  43647. },
  43648. {
  43649. name: "Grand",
  43650. height: math.unit(1000, "feet")
  43651. },
  43652. {
  43653. name: "Conquering",
  43654. height: math.unit(10000, "feet")
  43655. },
  43656. ]
  43657. ))
  43658. characterMakers.push(() => makeCharacter(
  43659. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43660. {
  43661. dressed: {
  43662. height: math.unit(8 + 5/12, "feet"),
  43663. weight: math.unit(700, "lb"),
  43664. name: "Dressed",
  43665. image: {
  43666. source: "./media/characters/kiva/dressed.svg",
  43667. extra: 1102/1055,
  43668. bottom: 60/1162
  43669. }
  43670. },
  43671. nude: {
  43672. height: math.unit(8 + 5/12, "feet"),
  43673. weight: math.unit(700, "lb"),
  43674. name: "Nude",
  43675. image: {
  43676. source: "./media/characters/kiva/nude.svg",
  43677. extra: 1102/1055,
  43678. bottom: 60/1162
  43679. }
  43680. },
  43681. },
  43682. [
  43683. {
  43684. name: "Base Height",
  43685. height: math.unit(8 + 5/12, "feet"),
  43686. default: true
  43687. },
  43688. {
  43689. name: "Macro",
  43690. height: math.unit(100, "feet")
  43691. },
  43692. {
  43693. name: "Max",
  43694. height: math.unit(3280, "feet")
  43695. },
  43696. ]
  43697. ))
  43698. characterMakers.push(() => makeCharacter(
  43699. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  43700. {
  43701. front: {
  43702. height: math.unit(6 + 8/12, "feet"),
  43703. weight: math.unit(250, "lb"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/ztragon/front.svg",
  43707. extra: 1825/1684,
  43708. bottom: 98/1923
  43709. }
  43710. },
  43711. },
  43712. [
  43713. {
  43714. name: "Normal",
  43715. height: math.unit(6 + 8/12, "feet"),
  43716. default: true
  43717. },
  43718. {
  43719. name: "Macro",
  43720. height: math.unit(80, "feet")
  43721. },
  43722. ]
  43723. ))
  43724. //characters
  43725. function makeCharacters() {
  43726. const results = [];
  43727. characterMakers.forEach(character => {
  43728. results.push(character());
  43729. });
  43730. return results;
  43731. }