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

44698 строки
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. }
  4497. }
  4498. },
  4499. [
  4500. {
  4501. name: "Macro",
  4502. height: math.unit(150, "feet"),
  4503. default: true
  4504. }
  4505. ]
  4506. ))
  4507. characterMakers.push(() => makeCharacter(
  4508. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4509. {
  4510. front: {
  4511. height: math.unit(7 + 9 / 12, "feet"),
  4512. weight: math.unit(379, "lbs"),
  4513. name: "Front",
  4514. image: {
  4515. source: "./media/characters/chez/front.svg"
  4516. }
  4517. },
  4518. side: {
  4519. height: math.unit(7 + 9 / 12, "feet"),
  4520. weight: math.unit(379, "lbs"),
  4521. name: "Side",
  4522. image: {
  4523. source: "./media/characters/chez/side.svg"
  4524. }
  4525. }
  4526. },
  4527. [
  4528. {
  4529. name: "Normal",
  4530. height: math.unit(7 + 9 / 12, "feet"),
  4531. default: true
  4532. },
  4533. {
  4534. name: "God King",
  4535. height: math.unit(9750000, "meters")
  4536. }
  4537. ]
  4538. ))
  4539. characterMakers.push(() => makeCharacter(
  4540. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4541. {
  4542. front: {
  4543. height: math.unit(6, "feet"),
  4544. weight: math.unit(275, "lbs"),
  4545. name: "Front",
  4546. image: {
  4547. source: "./media/characters/kaylum/front.svg",
  4548. bottom: 0.01,
  4549. extra: 1166 / 1031
  4550. }
  4551. },
  4552. frontWingless: {
  4553. height: math.unit(6, "feet"),
  4554. weight: math.unit(275, "lbs"),
  4555. name: "Front (Wingless)",
  4556. image: {
  4557. source: "./media/characters/kaylum/front-wingless.svg",
  4558. bottom: 0.01,
  4559. extra: 1117 / 1031
  4560. }
  4561. }
  4562. },
  4563. [
  4564. {
  4565. name: "Normal",
  4566. height: math.unit(3.05, "meters")
  4567. },
  4568. {
  4569. name: "Master",
  4570. height: math.unit(5.5, "meters")
  4571. },
  4572. {
  4573. name: "Rampage",
  4574. height: math.unit(19, "meters")
  4575. },
  4576. {
  4577. name: "Macro Lite",
  4578. height: math.unit(37, "meters")
  4579. },
  4580. {
  4581. name: "Hyper Predator",
  4582. height: math.unit(61, "meters")
  4583. },
  4584. {
  4585. name: "Macro",
  4586. height: math.unit(138, "meters"),
  4587. default: true
  4588. }
  4589. ]
  4590. ))
  4591. characterMakers.push(() => makeCharacter(
  4592. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4593. {
  4594. front: {
  4595. height: math.unit(6, "feet"),
  4596. weight: math.unit(150, "lbs"),
  4597. name: "Front",
  4598. image: {
  4599. source: "./media/characters/geta/front.svg"
  4600. }
  4601. }
  4602. },
  4603. [
  4604. {
  4605. name: "Micro",
  4606. height: math.unit(3, "inches"),
  4607. default: true
  4608. },
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(5 + 5 / 12, "feet")
  4612. }
  4613. ]
  4614. ))
  4615. characterMakers.push(() => makeCharacter(
  4616. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4617. {
  4618. front: {
  4619. height: math.unit(6, "feet"),
  4620. weight: math.unit(300, "lbs"),
  4621. name: "Front",
  4622. image: {
  4623. source: "./media/characters/tyrnn/front.svg"
  4624. }
  4625. }
  4626. },
  4627. [
  4628. {
  4629. name: "Main Height",
  4630. height: math.unit(355, "feet"),
  4631. default: true
  4632. },
  4633. {
  4634. name: "Fave. Height",
  4635. height: math.unit(2400, "feet")
  4636. }
  4637. ]
  4638. ))
  4639. characterMakers.push(() => makeCharacter(
  4640. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4641. {
  4642. front: {
  4643. height: math.unit(6, "feet"),
  4644. weight: math.unit(300, "lbs"),
  4645. name: "Front",
  4646. image: {
  4647. source: "./media/characters/appledectomy/front.svg"
  4648. }
  4649. }
  4650. },
  4651. [
  4652. {
  4653. name: "Macro",
  4654. height: math.unit(2500, "feet")
  4655. },
  4656. {
  4657. name: "Megamacro",
  4658. height: math.unit(50, "miles"),
  4659. default: true
  4660. },
  4661. {
  4662. name: "Gigamacro",
  4663. height: math.unit(5000, "miles")
  4664. },
  4665. {
  4666. name: "Teramacro",
  4667. height: math.unit(250000, "miles")
  4668. },
  4669. ]
  4670. ))
  4671. characterMakers.push(() => makeCharacter(
  4672. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4673. {
  4674. front: {
  4675. height: math.unit(6, "feet"),
  4676. weight: math.unit(200, "lbs"),
  4677. name: "Front",
  4678. image: {
  4679. source: "./media/characters/vulpes/front.svg",
  4680. extra: 573 / 543,
  4681. bottom: 0.033
  4682. }
  4683. },
  4684. side: {
  4685. height: math.unit(6, "feet"),
  4686. weight: math.unit(200, "lbs"),
  4687. name: "Side",
  4688. image: {
  4689. source: "./media/characters/vulpes/side.svg",
  4690. extra: 577 / 549,
  4691. bottom: 11 / 588
  4692. }
  4693. },
  4694. back: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(200, "lbs"),
  4697. name: "Back",
  4698. image: {
  4699. source: "./media/characters/vulpes/back.svg",
  4700. extra: 573 / 549,
  4701. bottom: 20 / 593
  4702. }
  4703. },
  4704. feet: {
  4705. height: math.unit(1.276, "feet"),
  4706. name: "Feet",
  4707. image: {
  4708. source: "./media/characters/vulpes/feet.svg"
  4709. }
  4710. },
  4711. maw: {
  4712. height: math.unit(1.18, "feet"),
  4713. name: "Maw",
  4714. image: {
  4715. source: "./media/characters/vulpes/maw.svg"
  4716. }
  4717. },
  4718. },
  4719. [
  4720. {
  4721. name: "Micro",
  4722. height: math.unit(2, "inches")
  4723. },
  4724. {
  4725. name: "Normal",
  4726. height: math.unit(6.3, "feet")
  4727. },
  4728. {
  4729. name: "Macro",
  4730. height: math.unit(850, "feet")
  4731. },
  4732. {
  4733. name: "Megamacro",
  4734. height: math.unit(7500, "feet"),
  4735. default: true
  4736. },
  4737. {
  4738. name: "Gigamacro",
  4739. height: math.unit(570000, "miles")
  4740. }
  4741. ]
  4742. ))
  4743. characterMakers.push(() => makeCharacter(
  4744. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4745. {
  4746. front: {
  4747. height: math.unit(6, "feet"),
  4748. weight: math.unit(210, "lbs"),
  4749. name: "Front",
  4750. image: {
  4751. source: "./media/characters/rain-fallen/front.svg"
  4752. }
  4753. },
  4754. side: {
  4755. height: math.unit(6, "feet"),
  4756. weight: math.unit(210, "lbs"),
  4757. name: "Side",
  4758. image: {
  4759. source: "./media/characters/rain-fallen/side.svg"
  4760. }
  4761. },
  4762. back: {
  4763. height: math.unit(6, "feet"),
  4764. weight: math.unit(210, "lbs"),
  4765. name: "Back",
  4766. image: {
  4767. source: "./media/characters/rain-fallen/back.svg"
  4768. }
  4769. },
  4770. feral: {
  4771. height: math.unit(9, "feet"),
  4772. weight: math.unit(700, "lbs"),
  4773. name: "Feral",
  4774. image: {
  4775. source: "./media/characters/rain-fallen/feral.svg"
  4776. }
  4777. },
  4778. },
  4779. [
  4780. {
  4781. name: "Meddling with Mortals",
  4782. height: math.unit(8 + 8/12, "feet")
  4783. },
  4784. {
  4785. name: "Normal",
  4786. height: math.unit(5, "meter")
  4787. },
  4788. {
  4789. name: "Macro",
  4790. height: math.unit(150, "meter"),
  4791. default: true
  4792. },
  4793. {
  4794. name: "Megamacro",
  4795. height: math.unit(278e6, "meter")
  4796. },
  4797. {
  4798. name: "Gigamacro",
  4799. height: math.unit(2e9, "meter")
  4800. },
  4801. {
  4802. name: "Teramacro",
  4803. height: math.unit(8e12, "meter")
  4804. },
  4805. {
  4806. name: "Devourer",
  4807. height: math.unit(14, "zettameters")
  4808. },
  4809. {
  4810. name: "Scarlet King",
  4811. height: math.unit(18, "yottameters")
  4812. },
  4813. {
  4814. name: "Void",
  4815. height: math.unit(1e88, "yottameters")
  4816. }
  4817. ]
  4818. ))
  4819. characterMakers.push(() => makeCharacter(
  4820. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4821. {
  4822. standing: {
  4823. height: math.unit(6, "feet"),
  4824. weight: math.unit(180, "lbs"),
  4825. name: "Standing",
  4826. image: {
  4827. source: "./media/characters/zaakira/standing.svg",
  4828. extra: 1599/1504,
  4829. bottom: 39/1638
  4830. }
  4831. },
  4832. laying: {
  4833. height: math.unit(3, "feet"),
  4834. weight: math.unit(180, "lbs"),
  4835. name: "Laying",
  4836. image: {
  4837. source: "./media/characters/zaakira/laying.svg"
  4838. }
  4839. },
  4840. },
  4841. [
  4842. {
  4843. name: "Normal",
  4844. height: math.unit(12, "feet")
  4845. },
  4846. {
  4847. name: "Macro",
  4848. height: math.unit(279, "feet"),
  4849. default: true
  4850. }
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4855. {
  4856. femSfw: {
  4857. height: math.unit(8, "feet"),
  4858. weight: math.unit(350, "lb"),
  4859. name: "Fem",
  4860. image: {
  4861. source: "./media/characters/sigvald/fem-sfw.svg",
  4862. extra: 182 / 164,
  4863. bottom: 8.7 / 190.5
  4864. }
  4865. },
  4866. femNsfw: {
  4867. height: math.unit(8, "feet"),
  4868. weight: math.unit(350, "lb"),
  4869. name: "Fem (NSFW)",
  4870. image: {
  4871. source: "./media/characters/sigvald/fem-nsfw.svg",
  4872. extra: 182 / 164,
  4873. bottom: 8.7 / 190.5
  4874. }
  4875. },
  4876. maleNsfw: {
  4877. height: math.unit(8, "feet"),
  4878. weight: math.unit(350, "lb"),
  4879. name: "Male (NSFW)",
  4880. image: {
  4881. source: "./media/characters/sigvald/male-nsfw.svg",
  4882. extra: 182 / 164,
  4883. bottom: 8.7 / 190.5
  4884. }
  4885. },
  4886. hermNsfw: {
  4887. height: math.unit(8, "feet"),
  4888. weight: math.unit(350, "lb"),
  4889. name: "Herm (NSFW)",
  4890. image: {
  4891. source: "./media/characters/sigvald/herm-nsfw.svg",
  4892. extra: 182 / 164,
  4893. bottom: 8.7 / 190.5
  4894. }
  4895. },
  4896. dick: {
  4897. height: math.unit(2.36, "feet"),
  4898. name: "Dick",
  4899. image: {
  4900. source: "./media/characters/sigvald/dick.svg"
  4901. }
  4902. },
  4903. eye: {
  4904. height: math.unit(0.31, "feet"),
  4905. name: "Eye",
  4906. image: {
  4907. source: "./media/characters/sigvald/eye.svg"
  4908. }
  4909. },
  4910. mouth: {
  4911. height: math.unit(0.92, "feet"),
  4912. name: "Mouth",
  4913. image: {
  4914. source: "./media/characters/sigvald/mouth.svg"
  4915. }
  4916. },
  4917. paws: {
  4918. height: math.unit(2.2, "feet"),
  4919. name: "Paws",
  4920. image: {
  4921. source: "./media/characters/sigvald/paws.svg"
  4922. }
  4923. }
  4924. },
  4925. [
  4926. {
  4927. name: "Normal",
  4928. height: math.unit(8, "feet")
  4929. },
  4930. {
  4931. name: "Large",
  4932. height: math.unit(12, "feet")
  4933. },
  4934. {
  4935. name: "Larger",
  4936. height: math.unit(20, "feet")
  4937. },
  4938. {
  4939. name: "Macro",
  4940. height: math.unit(150, "feet")
  4941. },
  4942. {
  4943. name: "Macro+",
  4944. height: math.unit(200, "feet"),
  4945. default: true
  4946. },
  4947. ]
  4948. ))
  4949. characterMakers.push(() => makeCharacter(
  4950. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4951. {
  4952. side: {
  4953. height: math.unit(12, "feet"),
  4954. weight: math.unit(2000, "kg"),
  4955. name: "Side",
  4956. image: {
  4957. source: "./media/characters/scott/side.svg",
  4958. extra: 754 / 724,
  4959. bottom: 0.069
  4960. }
  4961. },
  4962. upright: {
  4963. height: math.unit(12, "feet"),
  4964. weight: math.unit(2000, "kg"),
  4965. name: "Upright",
  4966. image: {
  4967. source: "./media/characters/scott/upright.svg",
  4968. extra: 3881 / 3722,
  4969. bottom: 0.05
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(12, "feet"),
  4977. default: true
  4978. },
  4979. ]
  4980. ))
  4981. characterMakers.push(() => makeCharacter(
  4982. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4983. {
  4984. side: {
  4985. height: math.unit(8, "meters"),
  4986. weight: math.unit(84755, "lbs"),
  4987. name: "Side",
  4988. image: {
  4989. source: "./media/characters/tobias/side.svg",
  4990. extra: 1474 / 1096,
  4991. bottom: 38.9 / 1513.1235
  4992. }
  4993. },
  4994. },
  4995. [
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(8, "meters"),
  4999. default: true
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5005. {
  5006. front: {
  5007. height: math.unit(5.5, "feet"),
  5008. weight: math.unit(400, "lbs"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/kieran/front.svg",
  5012. extra: 2694 / 2364,
  5013. bottom: 217 / 2908
  5014. }
  5015. },
  5016. side: {
  5017. height: math.unit(5.5, "feet"),
  5018. weight: math.unit(400, "lbs"),
  5019. name: "Side",
  5020. image: {
  5021. source: "./media/characters/kieran/side.svg",
  5022. extra: 875 / 777,
  5023. bottom: 84.6 / 959
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(5.5, "feet"),
  5031. default: true
  5032. },
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5037. {
  5038. side: {
  5039. height: math.unit(2, "meters"),
  5040. weight: math.unit(70, "kg"),
  5041. name: "Side",
  5042. image: {
  5043. source: "./media/characters/sanya/side.svg",
  5044. bottom: 0.02,
  5045. extra: 1.02
  5046. }
  5047. },
  5048. },
  5049. [
  5050. {
  5051. name: "Small",
  5052. height: math.unit(2, "meters")
  5053. },
  5054. {
  5055. name: "Normal",
  5056. height: math.unit(3, "meters")
  5057. },
  5058. {
  5059. name: "Macro",
  5060. height: math.unit(16, "meters"),
  5061. default: true
  5062. },
  5063. ]
  5064. ))
  5065. characterMakers.push(() => makeCharacter(
  5066. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5067. {
  5068. front: {
  5069. height: math.unit(2, "meters"),
  5070. weight: math.unit(120, "kg"),
  5071. name: "Front",
  5072. image: {
  5073. source: "./media/characters/miranda/front.svg",
  5074. extra: 195 / 185,
  5075. bottom: 10.9 / 206.5
  5076. }
  5077. },
  5078. back: {
  5079. height: math.unit(2, "meters"),
  5080. weight: math.unit(120, "kg"),
  5081. name: "Back",
  5082. image: {
  5083. source: "./media/characters/miranda/back.svg",
  5084. extra: 201 / 193,
  5085. bottom: 2.3 / 203.7
  5086. }
  5087. },
  5088. },
  5089. [
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(10, "feet"),
  5093. default: true
  5094. }
  5095. ]
  5096. ))
  5097. characterMakers.push(() => makeCharacter(
  5098. { name: "James", species: ["deer"], tags: ["anthro"] },
  5099. {
  5100. side: {
  5101. height: math.unit(2, "meters"),
  5102. weight: math.unit(100, "kg"),
  5103. name: "Front",
  5104. image: {
  5105. source: "./media/characters/james/front.svg",
  5106. extra: 10 / 8.5
  5107. }
  5108. },
  5109. },
  5110. [
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(8.5, "feet"),
  5114. default: true
  5115. }
  5116. ]
  5117. ))
  5118. characterMakers.push(() => makeCharacter(
  5119. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5120. {
  5121. side: {
  5122. height: math.unit(9.5, "feet"),
  5123. weight: math.unit(2500, "lbs"),
  5124. name: "Side",
  5125. image: {
  5126. source: "./media/characters/heather/side.svg"
  5127. }
  5128. },
  5129. },
  5130. [
  5131. {
  5132. name: "Normal",
  5133. height: math.unit(9.5, "feet"),
  5134. default: true
  5135. }
  5136. ]
  5137. ))
  5138. characterMakers.push(() => makeCharacter(
  5139. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5140. {
  5141. side: {
  5142. height: math.unit(6.5, "feet"),
  5143. weight: math.unit(400, "lbs"),
  5144. name: "Side",
  5145. image: {
  5146. source: "./media/characters/lukas/side.svg",
  5147. extra: 7.25 / 6.5
  5148. }
  5149. },
  5150. },
  5151. [
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(6.5, "feet"),
  5155. default: true
  5156. }
  5157. ]
  5158. ))
  5159. characterMakers.push(() => makeCharacter(
  5160. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5161. {
  5162. side: {
  5163. height: math.unit(5, "feet"),
  5164. weight: math.unit(3000, "lbs"),
  5165. name: "Side",
  5166. image: {
  5167. source: "./media/characters/louise/side.svg"
  5168. }
  5169. },
  5170. },
  5171. [
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(5, "feet"),
  5175. default: true
  5176. }
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5181. {
  5182. side: {
  5183. height: math.unit(6, "feet"),
  5184. weight: math.unit(150, "lbs"),
  5185. name: "Side",
  5186. image: {
  5187. source: "./media/characters/ramona/side.svg"
  5188. }
  5189. },
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(5.3, "meters"),
  5195. default: true
  5196. },
  5197. {
  5198. name: "Macro",
  5199. height: math.unit(20, "stories")
  5200. },
  5201. {
  5202. name: "Macro+",
  5203. height: math.unit(50, "stories")
  5204. },
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5209. {
  5210. standing: {
  5211. height: math.unit(5.75, "feet"),
  5212. weight: math.unit(160, "lbs"),
  5213. name: "Standing",
  5214. image: {
  5215. source: "./media/characters/deerpuff/standing.svg",
  5216. extra: 682 / 624
  5217. }
  5218. },
  5219. sitting: {
  5220. height: math.unit(5.75 / 1.79, "feet"),
  5221. weight: math.unit(160, "lbs"),
  5222. name: "Sitting",
  5223. image: {
  5224. source: "./media/characters/deerpuff/sitting.svg",
  5225. bottom: 44 / 400,
  5226. extra: 1
  5227. }
  5228. },
  5229. taurLaying: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(400, "lbs"),
  5232. name: "Taur (Laying)",
  5233. image: {
  5234. source: "./media/characters/deerpuff/taur-laying.svg"
  5235. }
  5236. },
  5237. },
  5238. [
  5239. {
  5240. name: "Puffball",
  5241. height: math.unit(6, "inches")
  5242. },
  5243. {
  5244. name: "Normalpuff",
  5245. height: math.unit(5.75, "feet")
  5246. },
  5247. {
  5248. name: "Macropuff",
  5249. height: math.unit(1500, "feet"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Megapuff",
  5254. height: math.unit(500, "miles")
  5255. },
  5256. {
  5257. name: "Gigapuff",
  5258. height: math.unit(250000, "miles")
  5259. },
  5260. {
  5261. name: "Omegapuff",
  5262. height: math.unit(1000, "lightyears")
  5263. },
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5268. {
  5269. stomping: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(170, "lbs"),
  5272. name: "Stomping",
  5273. image: {
  5274. source: "./media/characters/vivian/stomping.svg"
  5275. }
  5276. },
  5277. sitting: {
  5278. height: math.unit(6 / 1.75, "feet"),
  5279. weight: math.unit(170, "lbs"),
  5280. name: "Sitting",
  5281. image: {
  5282. source: "./media/characters/vivian/sitting.svg",
  5283. bottom: 1 / 6.4,
  5284. extra: 1,
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(7, "feet"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(10, "stories")
  5297. },
  5298. {
  5299. name: "Macro+",
  5300. height: math.unit(30, "stories")
  5301. },
  5302. {
  5303. name: "Megamacro",
  5304. height: math.unit(10, "miles")
  5305. },
  5306. {
  5307. name: "Megamacro+",
  5308. height: math.unit(2750000, "meters")
  5309. },
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5314. {
  5315. front: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(160, "lbs"),
  5318. name: "Front",
  5319. image: {
  5320. source: "./media/characters/prince/front.svg",
  5321. extra: 3400 / 3000
  5322. }
  5323. },
  5324. jumping: {
  5325. height: math.unit(6, "feet"),
  5326. weight: math.unit(160, "lbs"),
  5327. name: "Jumping",
  5328. image: {
  5329. source: "./media/characters/prince/jump.svg",
  5330. extra: 2555 / 2134
  5331. }
  5332. },
  5333. },
  5334. [
  5335. {
  5336. name: "Normal",
  5337. height: math.unit(7.75, "feet"),
  5338. default: true
  5339. },
  5340. {
  5341. name: "Not cute",
  5342. height: math.unit(17, "feet")
  5343. },
  5344. {
  5345. name: "I said NOT",
  5346. height: math.unit(91, "feet")
  5347. },
  5348. {
  5349. name: "Please stop",
  5350. height: math.unit(560, "feet")
  5351. },
  5352. {
  5353. name: "What have you done",
  5354. height: math.unit(2200, "feet")
  5355. },
  5356. {
  5357. name: "Deer God",
  5358. height: math.unit(3.6, "miles")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5364. {
  5365. standing: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(300, "lbs"),
  5368. name: "Standing",
  5369. image: {
  5370. source: "./media/characters/psymon/standing.svg",
  5371. extra: 1888 / 1810,
  5372. bottom: 0.05
  5373. }
  5374. },
  5375. slithering: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(300, "lbs"),
  5378. name: "Slithering",
  5379. image: {
  5380. source: "./media/characters/psymon/slithering.svg",
  5381. extra: 1330 / 1224
  5382. }
  5383. },
  5384. slitheringAlt: {
  5385. height: math.unit(6, "feet"),
  5386. weight: math.unit(300, "lbs"),
  5387. name: "Slithering (Alt)",
  5388. image: {
  5389. source: "./media/characters/psymon/slithering-alt.svg",
  5390. extra: 1330 / 1224
  5391. }
  5392. },
  5393. },
  5394. [
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(11.25, "feet"),
  5398. default: true
  5399. },
  5400. {
  5401. name: "Large",
  5402. height: math.unit(27, "feet")
  5403. },
  5404. {
  5405. name: "Giant",
  5406. height: math.unit(87, "feet")
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(365, "feet")
  5411. },
  5412. {
  5413. name: "Megamacro",
  5414. height: math.unit(3, "miles")
  5415. },
  5416. {
  5417. name: "World Serpent",
  5418. height: math.unit(8000, "miles")
  5419. },
  5420. ]
  5421. ))
  5422. characterMakers.push(() => makeCharacter(
  5423. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5424. {
  5425. front: {
  5426. height: math.unit(6, "feet"),
  5427. weight: math.unit(180, "lbs"),
  5428. name: "Front",
  5429. image: {
  5430. source: "./media/characters/daimos/front.svg",
  5431. extra: 4160 / 3897,
  5432. bottom: 0.021
  5433. }
  5434. }
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(8, "feet"),
  5440. default: true
  5441. },
  5442. {
  5443. name: "Big Dog",
  5444. height: math.unit(22, "feet")
  5445. },
  5446. {
  5447. name: "Macro",
  5448. height: math.unit(127, "feet")
  5449. },
  5450. {
  5451. name: "Megamacro",
  5452. height: math.unit(3600, "feet")
  5453. },
  5454. ]
  5455. ))
  5456. characterMakers.push(() => makeCharacter(
  5457. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5458. {
  5459. side: {
  5460. height: math.unit(6, "feet"),
  5461. weight: math.unit(180, "lbs"),
  5462. name: "Side",
  5463. image: {
  5464. source: "./media/characters/blake/side.svg",
  5465. extra: 1212 / 1120,
  5466. bottom: 0.05
  5467. }
  5468. },
  5469. crouched: {
  5470. height: math.unit(6 * 0.57, "feet"),
  5471. weight: math.unit(180, "lbs"),
  5472. name: "Crouched",
  5473. image: {
  5474. source: "./media/characters/blake/crouched.svg",
  5475. extra: 840 / 587,
  5476. bottom: 0.04
  5477. }
  5478. },
  5479. bent: {
  5480. height: math.unit(6 * 0.75, "feet"),
  5481. weight: math.unit(180, "lbs"),
  5482. name: "Bent",
  5483. image: {
  5484. source: "./media/characters/blake/bent.svg",
  5485. extra: 592 / 544,
  5486. bottom: 0.035
  5487. }
  5488. },
  5489. },
  5490. [
  5491. {
  5492. name: "Normal",
  5493. height: math.unit(8 + 1 / 6, "feet"),
  5494. default: true
  5495. },
  5496. {
  5497. name: "Big Backside",
  5498. height: math.unit(37, "feet")
  5499. },
  5500. {
  5501. name: "Subway Shredder",
  5502. height: math.unit(72, "feet")
  5503. },
  5504. {
  5505. name: "City Carver",
  5506. height: math.unit(1675, "feet")
  5507. },
  5508. {
  5509. name: "Tectonic Tweaker",
  5510. height: math.unit(2300, "miles")
  5511. },
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5516. {
  5517. front: {
  5518. height: math.unit(6, "feet"),
  5519. weight: math.unit(180, "lbs"),
  5520. name: "Front",
  5521. image: {
  5522. source: "./media/characters/guisetto/front.svg",
  5523. extra: 856 / 817,
  5524. bottom: 0.06
  5525. }
  5526. },
  5527. airborne: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(180, "lbs"),
  5530. name: "Airborne",
  5531. image: {
  5532. source: "./media/characters/guisetto/airborne.svg",
  5533. extra: 584 / 525
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Normal",
  5540. height: math.unit(10 + 11 / 12, "feet"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Large",
  5545. height: math.unit(35, "feet")
  5546. },
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(475, "feet")
  5550. },
  5551. ]
  5552. ))
  5553. characterMakers.push(() => makeCharacter(
  5554. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5555. {
  5556. front: {
  5557. height: math.unit(6, "feet"),
  5558. weight: math.unit(180, "lbs"),
  5559. name: "Front",
  5560. image: {
  5561. source: "./media/characters/luxor/front.svg",
  5562. extra: 2940 / 2152
  5563. }
  5564. },
  5565. back: {
  5566. height: math.unit(6, "feet"),
  5567. weight: math.unit(180, "lbs"),
  5568. name: "Back",
  5569. image: {
  5570. source: "./media/characters/luxor/back.svg",
  5571. extra: 1083 / 960
  5572. }
  5573. },
  5574. },
  5575. [
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(5 + 5 / 6, "feet"),
  5579. default: true
  5580. },
  5581. {
  5582. name: "Lamp",
  5583. height: math.unit(50, "feet")
  5584. },
  5585. {
  5586. name: "Lämp",
  5587. height: math.unit(300, "feet")
  5588. },
  5589. {
  5590. name: "The sun is a lamp",
  5591. height: math.unit(250000, "miles")
  5592. },
  5593. ]
  5594. ))
  5595. characterMakers.push(() => makeCharacter(
  5596. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5597. {
  5598. front: {
  5599. height: math.unit(6, "feet"),
  5600. weight: math.unit(50, "lbs"),
  5601. name: "Front",
  5602. image: {
  5603. source: "./media/characters/huoyan/front.svg"
  5604. }
  5605. },
  5606. side: {
  5607. height: math.unit(6, "feet"),
  5608. weight: math.unit(180, "lbs"),
  5609. name: "Side",
  5610. image: {
  5611. source: "./media/characters/huoyan/side.svg"
  5612. }
  5613. },
  5614. },
  5615. [
  5616. {
  5617. name: "Chef",
  5618. height: math.unit(9, "feet")
  5619. },
  5620. {
  5621. name: "Normal",
  5622. height: math.unit(65, "feet"),
  5623. default: true
  5624. },
  5625. {
  5626. name: "Macro",
  5627. height: math.unit(780, "feet")
  5628. },
  5629. {
  5630. name: "Flaming Mountain",
  5631. height: math.unit(4.8, "miles")
  5632. },
  5633. {
  5634. name: "Celestial",
  5635. height: math.unit(765000, "miles")
  5636. },
  5637. ]
  5638. ))
  5639. characterMakers.push(() => makeCharacter(
  5640. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5641. {
  5642. front: {
  5643. height: math.unit(5 + 3 / 4, "feet"),
  5644. weight: math.unit(120, "lbs"),
  5645. name: "Front",
  5646. image: {
  5647. source: "./media/characters/tails/front.svg"
  5648. }
  5649. }
  5650. },
  5651. [
  5652. {
  5653. name: "Normal",
  5654. height: math.unit(5 + 3 / 4, "feet"),
  5655. default: true
  5656. }
  5657. ]
  5658. ))
  5659. characterMakers.push(() => makeCharacter(
  5660. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5661. {
  5662. front: {
  5663. height: math.unit(4, "feet"),
  5664. weight: math.unit(50, "lbs"),
  5665. name: "Front",
  5666. image: {
  5667. source: "./media/characters/rainy/front.svg"
  5668. }
  5669. }
  5670. },
  5671. [
  5672. {
  5673. name: "Macro",
  5674. height: math.unit(800, "feet"),
  5675. default: true
  5676. }
  5677. ]
  5678. ))
  5679. characterMakers.push(() => makeCharacter(
  5680. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5681. {
  5682. front: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(150, "lbs"),
  5685. name: "Front",
  5686. image: {
  5687. source: "./media/characters/rainier/front.svg"
  5688. }
  5689. }
  5690. },
  5691. [
  5692. {
  5693. name: "Micro",
  5694. height: math.unit(2, "mm"),
  5695. default: true
  5696. }
  5697. ]
  5698. ))
  5699. characterMakers.push(() => makeCharacter(
  5700. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5701. {
  5702. front: {
  5703. height: math.unit(8 + 4/12, "feet"),
  5704. name: "Front",
  5705. image: {
  5706. source: "./media/characters/andy-renard/front.svg",
  5707. extra: 1839/1726,
  5708. bottom: 134/1973
  5709. }
  5710. },
  5711. back: {
  5712. height: math.unit(8 + 4/12, "feet"),
  5713. name: "Back",
  5714. image: {
  5715. source: "./media/characters/andy-renard/back.svg",
  5716. extra: 1838/1710,
  5717. bottom: 105/1943
  5718. }
  5719. },
  5720. },
  5721. [
  5722. {
  5723. name: "Tall",
  5724. height: math.unit(8 + 4/12, "feet")
  5725. },
  5726. {
  5727. name: "Mini Macro",
  5728. height: math.unit(15, "feet"),
  5729. default: true
  5730. },
  5731. {
  5732. name: "Macro",
  5733. height: math.unit(100, "feet")
  5734. },
  5735. {
  5736. name: "Mega Macro",
  5737. height: math.unit(1000, "feet")
  5738. },
  5739. {
  5740. name: "Giga Macro",
  5741. height: math.unit(10, "miles")
  5742. },
  5743. {
  5744. name: "God Macro",
  5745. height: math.unit(1, "multiverse")
  5746. },
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5751. {
  5752. front: {
  5753. height: math.unit(6, "feet"),
  5754. weight: math.unit(210, "lbs"),
  5755. name: "Front",
  5756. image: {
  5757. source: "./media/characters/cimmaron/front-sfw.svg",
  5758. extra: 701 / 676,
  5759. bottom: 0.046
  5760. }
  5761. },
  5762. back: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(210, "lbs"),
  5765. name: "Back",
  5766. image: {
  5767. source: "./media/characters/cimmaron/back-sfw.svg",
  5768. extra: 701 / 676,
  5769. bottom: 0.046
  5770. }
  5771. },
  5772. frontNsfw: {
  5773. height: math.unit(6, "feet"),
  5774. weight: math.unit(210, "lbs"),
  5775. name: "Front (NSFW)",
  5776. image: {
  5777. source: "./media/characters/cimmaron/front-nsfw.svg",
  5778. extra: 701 / 676,
  5779. bottom: 0.046
  5780. }
  5781. },
  5782. backNsfw: {
  5783. height: math.unit(6, "feet"),
  5784. weight: math.unit(210, "lbs"),
  5785. name: "Back (NSFW)",
  5786. image: {
  5787. source: "./media/characters/cimmaron/back-nsfw.svg",
  5788. extra: 701 / 676,
  5789. bottom: 0.046
  5790. }
  5791. },
  5792. dick: {
  5793. height: math.unit(1.714, "feet"),
  5794. name: "Dick",
  5795. image: {
  5796. source: "./media/characters/cimmaron/dick.svg"
  5797. }
  5798. },
  5799. },
  5800. [
  5801. {
  5802. name: "Normal",
  5803. height: math.unit(6, "feet"),
  5804. default: true
  5805. },
  5806. {
  5807. name: "Macro Mayor",
  5808. height: math.unit(350, "meters")
  5809. },
  5810. ]
  5811. ))
  5812. characterMakers.push(() => makeCharacter(
  5813. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5814. {
  5815. front: {
  5816. height: math.unit(6, "feet"),
  5817. weight: math.unit(200, "lbs"),
  5818. name: "Front",
  5819. image: {
  5820. source: "./media/characters/akari/front.svg",
  5821. extra: 962 / 901,
  5822. bottom: 0.04
  5823. }
  5824. }
  5825. },
  5826. [
  5827. {
  5828. name: "Micro",
  5829. height: math.unit(5, "inches"),
  5830. default: true
  5831. },
  5832. {
  5833. name: "Normal",
  5834. height: math.unit(7, "feet")
  5835. },
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5840. {
  5841. front: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(140, "lbs"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/cynosura/front.svg",
  5847. extra: 896 / 847
  5848. }
  5849. },
  5850. back: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(140, "lbs"),
  5853. name: "Back",
  5854. image: {
  5855. source: "./media/characters/cynosura/back.svg",
  5856. extra: 1365 / 1250
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Micro",
  5863. height: math.unit(4, "inches")
  5864. },
  5865. {
  5866. name: "Normal",
  5867. height: math.unit(5.75, "feet"),
  5868. default: true
  5869. },
  5870. {
  5871. name: "Tall",
  5872. height: math.unit(10, "feet")
  5873. },
  5874. {
  5875. name: "Big",
  5876. height: math.unit(20, "feet")
  5877. },
  5878. {
  5879. name: "Macro",
  5880. height: math.unit(50, "feet")
  5881. },
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5886. {
  5887. front: {
  5888. height: math.unit(13 + 2/12, "feet"),
  5889. weight: math.unit(800, "kg"),
  5890. name: "Front",
  5891. image: {
  5892. source: "./media/characters/gin/front.svg",
  5893. extra: 1312/1191,
  5894. bottom: 45/1357
  5895. }
  5896. },
  5897. mouth: {
  5898. height: math.unit(2.39 * 1.8, "feet"),
  5899. name: "Mouth",
  5900. image: {
  5901. source: "./media/characters/gin/mouth.svg"
  5902. }
  5903. },
  5904. hand: {
  5905. height: math.unit(1.57 * 2.19, "feet"),
  5906. name: "Hand",
  5907. image: {
  5908. source: "./media/characters/gin/hand.svg"
  5909. }
  5910. },
  5911. foot: {
  5912. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5913. name: "Foot",
  5914. image: {
  5915. source: "./media/characters/gin/foot.svg"
  5916. }
  5917. },
  5918. sole: {
  5919. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5920. name: "Sole",
  5921. image: {
  5922. source: "./media/characters/gin/sole.svg"
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Very Small",
  5929. height: math.unit(13 + 2 / 12, "feet")
  5930. },
  5931. {
  5932. name: "Micro",
  5933. height: math.unit(600, "miles")
  5934. },
  5935. {
  5936. name: "Regular",
  5937. height: math.unit(20, "earths"),
  5938. default: true
  5939. },
  5940. {
  5941. name: "Macro",
  5942. height: math.unit(2.2, "solarradii")
  5943. },
  5944. {
  5945. name: "Teramacro",
  5946. height: math.unit(1.2, "galaxies")
  5947. },
  5948. {
  5949. name: "Omegamacro",
  5950. height: math.unit(200, "universes")
  5951. },
  5952. ]
  5953. ))
  5954. characterMakers.push(() => makeCharacter(
  5955. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5956. {
  5957. front: {
  5958. height: math.unit(6 + 1 / 6, "feet"),
  5959. weight: math.unit(178, "lbs"),
  5960. name: "Front",
  5961. image: {
  5962. source: "./media/characters/guy/front.svg"
  5963. }
  5964. }
  5965. },
  5966. [
  5967. {
  5968. name: "Normal",
  5969. height: math.unit(6 + 1 / 6, "feet"),
  5970. default: true
  5971. },
  5972. {
  5973. name: "Large",
  5974. height: math.unit(25 + 7 / 12, "feet")
  5975. },
  5976. {
  5977. name: "Macro",
  5978. height: math.unit(60 + 9 / 12, "feet")
  5979. },
  5980. {
  5981. name: "Macro+",
  5982. height: math.unit(246, "feet")
  5983. },
  5984. {
  5985. name: "Macro++",
  5986. height: math.unit(878, "feet")
  5987. }
  5988. ]
  5989. ))
  5990. characterMakers.push(() => makeCharacter(
  5991. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5992. {
  5993. front: {
  5994. height: math.unit(9, "feet"),
  5995. weight: math.unit(800, "lbs"),
  5996. name: "Front",
  5997. image: {
  5998. source: "./media/characters/tiberius/front.svg",
  5999. extra: 2295 / 2071
  6000. }
  6001. },
  6002. back: {
  6003. height: math.unit(9, "feet"),
  6004. weight: math.unit(800, "lbs"),
  6005. name: "Back",
  6006. image: {
  6007. source: "./media/characters/tiberius/back.svg",
  6008. extra: 2373 / 2160
  6009. }
  6010. },
  6011. },
  6012. [
  6013. {
  6014. name: "Normal",
  6015. height: math.unit(9, "feet"),
  6016. default: true
  6017. }
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6022. {
  6023. front: {
  6024. height: math.unit(6, "feet"),
  6025. weight: math.unit(600, "lbs"),
  6026. name: "Front",
  6027. image: {
  6028. source: "./media/characters/surgo/front.svg",
  6029. extra: 3591 / 2227
  6030. }
  6031. },
  6032. back: {
  6033. height: math.unit(6, "feet"),
  6034. weight: math.unit(600, "lbs"),
  6035. name: "Back",
  6036. image: {
  6037. source: "./media/characters/surgo/back.svg",
  6038. extra: 3557 / 2228
  6039. }
  6040. },
  6041. laying: {
  6042. height: math.unit(6 * 0.85, "feet"),
  6043. weight: math.unit(600, "lbs"),
  6044. name: "Laying",
  6045. image: {
  6046. source: "./media/characters/surgo/laying.svg"
  6047. }
  6048. },
  6049. },
  6050. [
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(6, "feet"),
  6054. default: true
  6055. }
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6060. {
  6061. side: {
  6062. height: math.unit(6, "feet"),
  6063. weight: math.unit(150, "lbs"),
  6064. name: "Side",
  6065. image: {
  6066. source: "./media/characters/cibus/side.svg",
  6067. extra: 800 / 400
  6068. }
  6069. },
  6070. },
  6071. [
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(6, "feet"),
  6075. default: true
  6076. }
  6077. ]
  6078. ))
  6079. characterMakers.push(() => makeCharacter(
  6080. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6081. {
  6082. front: {
  6083. height: math.unit(6, "feet"),
  6084. weight: math.unit(240, "lbs"),
  6085. name: "Front",
  6086. image: {
  6087. source: "./media/characters/nibbles/front.svg"
  6088. }
  6089. },
  6090. side: {
  6091. height: math.unit(6, "feet"),
  6092. weight: math.unit(240, "lbs"),
  6093. name: "Side",
  6094. image: {
  6095. source: "./media/characters/nibbles/side.svg"
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(9, "feet"),
  6103. default: true
  6104. }
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6109. {
  6110. side: {
  6111. height: math.unit(5 + 1 / 6, "feet"),
  6112. weight: math.unit(130, "lbs"),
  6113. name: "Side",
  6114. image: {
  6115. source: "./media/characters/rikky/side.svg",
  6116. extra: 851 / 801
  6117. }
  6118. },
  6119. },
  6120. [
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(5 + 1 / 6, "feet")
  6124. },
  6125. {
  6126. name: "Macro",
  6127. height: math.unit(152, "feet"),
  6128. default: true
  6129. },
  6130. {
  6131. name: "Megamacro",
  6132. height: math.unit(7, "miles")
  6133. }
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6138. {
  6139. side: {
  6140. height: math.unit(370, "cm"),
  6141. weight: math.unit(350, "lbs"),
  6142. name: "Side",
  6143. image: {
  6144. source: "./media/characters/malfressa/side.svg"
  6145. }
  6146. },
  6147. walking: {
  6148. height: math.unit(370, "cm"),
  6149. weight: math.unit(350, "lbs"),
  6150. name: "Walking",
  6151. image: {
  6152. source: "./media/characters/malfressa/walking.svg"
  6153. }
  6154. },
  6155. feral: {
  6156. height: math.unit(2500, "cm"),
  6157. weight: math.unit(100000, "lbs"),
  6158. name: "Feral",
  6159. image: {
  6160. source: "./media/characters/malfressa/feral.svg",
  6161. extra: 2108 / 837,
  6162. bottom: 0.02
  6163. }
  6164. },
  6165. },
  6166. [
  6167. {
  6168. name: "Normal",
  6169. height: math.unit(370, "cm")
  6170. },
  6171. {
  6172. name: "Macro",
  6173. height: math.unit(300, "meters"),
  6174. default: true
  6175. }
  6176. ]
  6177. ))
  6178. characterMakers.push(() => makeCharacter(
  6179. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6180. {
  6181. front: {
  6182. height: math.unit(6, "feet"),
  6183. weight: math.unit(60, "kg"),
  6184. name: "Front",
  6185. image: {
  6186. source: "./media/characters/jaro/front.svg"
  6187. }
  6188. },
  6189. back: {
  6190. height: math.unit(6, "feet"),
  6191. weight: math.unit(60, "kg"),
  6192. name: "Back",
  6193. image: {
  6194. source: "./media/characters/jaro/back.svg"
  6195. }
  6196. },
  6197. },
  6198. [
  6199. {
  6200. name: "Micro",
  6201. height: math.unit(7, "inches")
  6202. },
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(5.5, "feet"),
  6206. default: true
  6207. },
  6208. {
  6209. name: "Minimacro",
  6210. height: math.unit(20, "feet")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(200, "meters")
  6215. }
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(195, "lb"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/rogue/front.svg"
  6227. }
  6228. },
  6229. },
  6230. [
  6231. {
  6232. name: "Macro",
  6233. height: math.unit(90, "feet"),
  6234. default: true
  6235. },
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6240. {
  6241. front: {
  6242. height: math.unit(5 + 8 / 12, "feet"),
  6243. weight: math.unit(140, "lb"),
  6244. name: "Front",
  6245. image: {
  6246. source: "./media/characters/piper/front.svg",
  6247. extra: 3948/3655,
  6248. bottom: 0/3948
  6249. }
  6250. },
  6251. },
  6252. [
  6253. {
  6254. name: "Micro",
  6255. height: math.unit(2, "inches")
  6256. },
  6257. {
  6258. name: "Normal",
  6259. height: math.unit(5 + 8 / 12, "feet")
  6260. },
  6261. {
  6262. name: "Macro",
  6263. height: math.unit(250, "feet"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Megamacro",
  6268. height: math.unit(7, "miles")
  6269. },
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6274. {
  6275. front: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(220, "lb"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/gemini/front.svg"
  6281. }
  6282. },
  6283. back: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(220, "lb"),
  6286. name: "Back",
  6287. image: {
  6288. source: "./media/characters/gemini/back.svg"
  6289. }
  6290. },
  6291. kneeling: {
  6292. height: math.unit(6 / 1.5, "feet"),
  6293. weight: math.unit(220, "lb"),
  6294. name: "Kneeling",
  6295. image: {
  6296. source: "./media/characters/gemini/kneeling.svg",
  6297. bottom: 0.02
  6298. }
  6299. },
  6300. },
  6301. [
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(300, "meters"),
  6305. default: true
  6306. },
  6307. {
  6308. name: "Megamacro",
  6309. height: math.unit(6900, "meters")
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6315. {
  6316. anthro: {
  6317. height: math.unit(2.35, "meters"),
  6318. weight: math.unit(73, "kg"),
  6319. name: "Anthro",
  6320. image: {
  6321. source: "./media/characters/alicia/anthro.svg",
  6322. extra: 2571 / 2385,
  6323. bottom: 75 / 2648
  6324. }
  6325. },
  6326. paw: {
  6327. height: math.unit(1.32, "feet"),
  6328. name: "Paw",
  6329. image: {
  6330. source: "./media/characters/alicia/paw.svg"
  6331. }
  6332. },
  6333. feral: {
  6334. height: math.unit(1.69, "meters"),
  6335. weight: math.unit(73, "kg"),
  6336. name: "Feral",
  6337. image: {
  6338. source: "./media/characters/alicia/feral.svg",
  6339. extra: 2123 / 1715,
  6340. bottom: 222 / 2349
  6341. }
  6342. },
  6343. },
  6344. [
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(2.35, "meters")
  6348. },
  6349. {
  6350. name: "Macro",
  6351. height: math.unit(60, "meters"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Megamacro",
  6356. height: math.unit(10000, "kilometers")
  6357. },
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(7, "feet"),
  6365. weight: math.unit(250, "lbs"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/archy/front.svg"
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Micro",
  6375. height: math.unit(1, "inch")
  6376. },
  6377. {
  6378. name: "Shorty",
  6379. height: math.unit(5, "feet")
  6380. },
  6381. {
  6382. name: "Normal",
  6383. height: math.unit(7, "feet")
  6384. },
  6385. {
  6386. name: "Macro",
  6387. height: math.unit(600, "meters"),
  6388. default: true
  6389. },
  6390. {
  6391. name: "Megamacro",
  6392. height: math.unit(1, "mile")
  6393. },
  6394. ]
  6395. ))
  6396. characterMakers.push(() => makeCharacter(
  6397. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6398. {
  6399. front: {
  6400. height: math.unit(1.65, "meters"),
  6401. weight: math.unit(74, "kg"),
  6402. name: "Front",
  6403. image: {
  6404. source: "./media/characters/berri/front.svg",
  6405. extra: 857 / 837,
  6406. bottom: 18 / 877
  6407. }
  6408. },
  6409. bum: {
  6410. height: math.unit(1.46, "feet"),
  6411. name: "Bum",
  6412. image: {
  6413. source: "./media/characters/berri/bum.svg"
  6414. }
  6415. },
  6416. mouth: {
  6417. height: math.unit(0.44, "feet"),
  6418. name: "Mouth",
  6419. image: {
  6420. source: "./media/characters/berri/mouth.svg"
  6421. }
  6422. },
  6423. paw: {
  6424. height: math.unit(0.826, "feet"),
  6425. name: "Paw",
  6426. image: {
  6427. source: "./media/characters/berri/paw.svg"
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(1.65, "meters")
  6435. },
  6436. {
  6437. name: "Macro",
  6438. height: math.unit(60, "m"),
  6439. default: true
  6440. },
  6441. {
  6442. name: "Megamacro",
  6443. height: math.unit(9.213, "km")
  6444. },
  6445. {
  6446. name: "Planet Eater",
  6447. height: math.unit(489, "megameters")
  6448. },
  6449. {
  6450. name: "Teramacro",
  6451. height: math.unit(2471635000000, "meters")
  6452. },
  6453. {
  6454. name: "Examacro",
  6455. height: math.unit(8.0624e+26, "meters")
  6456. }
  6457. ]
  6458. ))
  6459. characterMakers.push(() => makeCharacter(
  6460. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6461. {
  6462. front: {
  6463. height: math.unit(1.72, "meters"),
  6464. weight: math.unit(68, "kg"),
  6465. name: "Front",
  6466. image: {
  6467. source: "./media/characters/lexi/front.svg"
  6468. }
  6469. }
  6470. },
  6471. [
  6472. {
  6473. name: "Very Smol",
  6474. height: math.unit(10, "mm")
  6475. },
  6476. {
  6477. name: "Micro",
  6478. height: math.unit(6.8, "cm"),
  6479. default: true
  6480. },
  6481. {
  6482. name: "Normal",
  6483. height: math.unit(1.72, "m")
  6484. }
  6485. ]
  6486. ))
  6487. characterMakers.push(() => makeCharacter(
  6488. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6489. {
  6490. front: {
  6491. height: math.unit(1.69, "meters"),
  6492. weight: math.unit(68, "kg"),
  6493. name: "Front",
  6494. image: {
  6495. source: "./media/characters/martin/front.svg",
  6496. extra: 596 / 581
  6497. }
  6498. }
  6499. },
  6500. [
  6501. {
  6502. name: "Micro",
  6503. height: math.unit(6.85, "cm"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Normal",
  6508. height: math.unit(1.69, "m")
  6509. }
  6510. ]
  6511. ))
  6512. characterMakers.push(() => makeCharacter(
  6513. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6514. {
  6515. front: {
  6516. height: math.unit(1.69, "meters"),
  6517. weight: math.unit(68, "kg"),
  6518. name: "Front",
  6519. image: {
  6520. source: "./media/characters/juno/front.svg"
  6521. }
  6522. }
  6523. },
  6524. [
  6525. {
  6526. name: "Micro",
  6527. height: math.unit(7, "cm")
  6528. },
  6529. {
  6530. name: "Normal",
  6531. height: math.unit(1.89, "m")
  6532. },
  6533. {
  6534. name: "Macro",
  6535. height: math.unit(353, "meters"),
  6536. default: true
  6537. }
  6538. ]
  6539. ))
  6540. characterMakers.push(() => makeCharacter(
  6541. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6542. {
  6543. front: {
  6544. height: math.unit(1.93, "meters"),
  6545. weight: math.unit(83, "kg"),
  6546. name: "Front",
  6547. image: {
  6548. source: "./media/characters/samantha/front.svg"
  6549. }
  6550. },
  6551. frontClothed: {
  6552. height: math.unit(1.93, "meters"),
  6553. weight: math.unit(83, "kg"),
  6554. name: "Front (Clothed)",
  6555. image: {
  6556. source: "./media/characters/samantha/front-clothed.svg"
  6557. }
  6558. },
  6559. back: {
  6560. height: math.unit(1.93, "meters"),
  6561. weight: math.unit(83, "kg"),
  6562. name: "Back",
  6563. image: {
  6564. source: "./media/characters/samantha/back.svg"
  6565. }
  6566. },
  6567. },
  6568. [
  6569. {
  6570. name: "Normal",
  6571. height: math.unit(1.93, "m")
  6572. },
  6573. {
  6574. name: "Macro",
  6575. height: math.unit(74, "meters"),
  6576. default: true
  6577. },
  6578. {
  6579. name: "Macro+",
  6580. height: math.unit(223, "meters"),
  6581. },
  6582. {
  6583. name: "Megamacro",
  6584. height: math.unit(8381, "meters"),
  6585. },
  6586. {
  6587. name: "Megamacro+",
  6588. height: math.unit(12000, "kilometers")
  6589. },
  6590. ]
  6591. ))
  6592. characterMakers.push(() => makeCharacter(
  6593. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6594. {
  6595. front: {
  6596. height: math.unit(1.92, "meters"),
  6597. weight: math.unit(80, "kg"),
  6598. name: "Front",
  6599. image: {
  6600. source: "./media/characters/dr-clay/front.svg"
  6601. }
  6602. },
  6603. frontClothed: {
  6604. height: math.unit(1.92, "meters"),
  6605. weight: math.unit(80, "kg"),
  6606. name: "Front (Clothed)",
  6607. image: {
  6608. source: "./media/characters/dr-clay/front-clothed.svg"
  6609. }
  6610. }
  6611. },
  6612. [
  6613. {
  6614. name: "Normal",
  6615. height: math.unit(1.92, "m")
  6616. },
  6617. {
  6618. name: "Macro",
  6619. height: math.unit(214, "meters"),
  6620. default: true
  6621. },
  6622. {
  6623. name: "Macro+",
  6624. height: math.unit(12.237, "meters"),
  6625. },
  6626. {
  6627. name: "Megamacro",
  6628. height: math.unit(557, "megameters"),
  6629. },
  6630. {
  6631. name: "Unimaginable",
  6632. height: math.unit(120e9, "lightyears")
  6633. },
  6634. ]
  6635. ))
  6636. characterMakers.push(() => makeCharacter(
  6637. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6638. {
  6639. front: {
  6640. height: math.unit(2, "meters"),
  6641. weight: math.unit(80, "kg"),
  6642. name: "Front",
  6643. image: {
  6644. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6645. }
  6646. }
  6647. },
  6648. [
  6649. {
  6650. name: "Teramacro",
  6651. height: math.unit(500000, "lightyears"),
  6652. default: true
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6658. {
  6659. crux: {
  6660. height: math.unit(2, "meters"),
  6661. weight: math.unit(150, "kg"),
  6662. name: "Crux",
  6663. image: {
  6664. source: "./media/characters/vemus/crux.svg",
  6665. extra: 1074/936,
  6666. bottom: 23/1097
  6667. }
  6668. },
  6669. skunkTanuki: {
  6670. height: math.unit(2, "meters"),
  6671. weight: math.unit(150, "kg"),
  6672. name: "Skunk-Tanuki",
  6673. image: {
  6674. source: "./media/characters/vemus/skunk-tanuki.svg",
  6675. extra: 926/893,
  6676. bottom: 20/946
  6677. }
  6678. },
  6679. },
  6680. [
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(3.75, "meters"),
  6684. default: true
  6685. },
  6686. {
  6687. name: "Big",
  6688. height: math.unit(8, "meters")
  6689. },
  6690. {
  6691. name: "Macro",
  6692. height: math.unit(100, "meters")
  6693. },
  6694. {
  6695. name: "Macro+",
  6696. height: math.unit(1500, "meters")
  6697. },
  6698. {
  6699. name: "Stellar",
  6700. height: math.unit(14e8, "meters")
  6701. },
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6706. {
  6707. front: {
  6708. height: math.unit(2, "meters"),
  6709. weight: math.unit(70, "kg"),
  6710. name: "Front",
  6711. image: {
  6712. source: "./media/characters/beherit/front.svg",
  6713. extra: 1408 / 1242
  6714. }
  6715. }
  6716. },
  6717. [
  6718. {
  6719. name: "Normal",
  6720. height: math.unit(6, "feet")
  6721. },
  6722. {
  6723. name: "Lorg",
  6724. height: math.unit(25, "feet"),
  6725. default: true
  6726. },
  6727. {
  6728. name: "Lorger",
  6729. height: math.unit(75, "feet")
  6730. },
  6731. {
  6732. name: "Macro",
  6733. height: math.unit(200, "meters")
  6734. },
  6735. ]
  6736. ))
  6737. characterMakers.push(() => makeCharacter(
  6738. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6739. {
  6740. front: {
  6741. height: math.unit(2, "meters"),
  6742. weight: math.unit(150, "kg"),
  6743. name: "Front",
  6744. image: {
  6745. source: "./media/characters/everett/front.svg",
  6746. extra: 2038 / 1737,
  6747. bottom: 0.03
  6748. }
  6749. },
  6750. paw: {
  6751. height: math.unit(2 / 3.6, "meters"),
  6752. name: "Paw",
  6753. image: {
  6754. source: "./media/characters/everett/paw.svg"
  6755. }
  6756. },
  6757. },
  6758. [
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(15, "feet"),
  6762. default: true
  6763. },
  6764. {
  6765. name: "Lorg",
  6766. height: math.unit(70, "feet"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Lorger",
  6771. height: math.unit(250, "feet")
  6772. },
  6773. {
  6774. name: "Macro",
  6775. height: math.unit(500, "meters")
  6776. },
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6781. {
  6782. front: {
  6783. height: math.unit(2, "meters"),
  6784. weight: math.unit(86, "kg"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/rose/front.svg",
  6788. extra: 1785/1636,
  6789. bottom: 30/1815
  6790. }
  6791. },
  6792. frontSporty: {
  6793. height: math.unit(2, "meters"),
  6794. weight: math.unit(86, "kg"),
  6795. name: "Front (Sporty)",
  6796. image: {
  6797. source: "./media/characters/rose/front-sporty.svg",
  6798. extra: 350/335,
  6799. bottom: 10/360
  6800. }
  6801. },
  6802. frontAlt: {
  6803. height: math.unit(1.6, "meters"),
  6804. weight: math.unit(86, "kg"),
  6805. name: "Front (Alt)",
  6806. image: {
  6807. source: "./media/characters/rose/front-alt.svg",
  6808. extra: 299/283,
  6809. bottom: 3/302
  6810. }
  6811. },
  6812. plush: {
  6813. height: math.unit(2, "meters"),
  6814. weight: math.unit(86/3, "kg"),
  6815. name: "Plush",
  6816. image: {
  6817. source: "./media/characters/rose/plush.svg",
  6818. extra: 361/337,
  6819. bottom: 11/372
  6820. }
  6821. },
  6822. },
  6823. [
  6824. {
  6825. name: "True Micro",
  6826. height: math.unit(9, "cm")
  6827. },
  6828. {
  6829. name: "Micro",
  6830. height: math.unit(16, "cm")
  6831. },
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(1.85, "meters"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Mini-Macro",
  6839. height: math.unit(5, "meters")
  6840. },
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(15, "meters")
  6844. },
  6845. {
  6846. name: "True Macro",
  6847. height: math.unit(40, "meters")
  6848. },
  6849. {
  6850. name: "City Scale",
  6851. height: math.unit(1, "km")
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6857. {
  6858. front: {
  6859. height: math.unit(2, "meters"),
  6860. weight: math.unit(350, "lbs"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/regal/front.svg"
  6864. }
  6865. },
  6866. back: {
  6867. height: math.unit(2, "meters"),
  6868. weight: math.unit(350, "lbs"),
  6869. name: "Back",
  6870. image: {
  6871. source: "./media/characters/regal/back.svg"
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Macro",
  6878. height: math.unit(350, "feet"),
  6879. default: true
  6880. }
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(4 + 11 / 12, "feet"),
  6888. weight: math.unit(100, "lbs"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/opal/front.svg"
  6892. }
  6893. },
  6894. frontAlt: {
  6895. height: math.unit(4 + 11 / 12, "feet"),
  6896. weight: math.unit(100, "lbs"),
  6897. name: "Front (Alt)",
  6898. image: {
  6899. source: "./media/characters/opal/front-alt.svg"
  6900. }
  6901. },
  6902. },
  6903. [
  6904. {
  6905. name: "Small",
  6906. height: math.unit(4 + 11 / 12, "feet")
  6907. },
  6908. {
  6909. name: "Normal",
  6910. height: math.unit(20, "feet"),
  6911. default: true
  6912. },
  6913. {
  6914. name: "Macro",
  6915. height: math.unit(120, "feet")
  6916. },
  6917. {
  6918. name: "Megamacro",
  6919. height: math.unit(80, "miles")
  6920. },
  6921. {
  6922. name: "True Size",
  6923. height: math.unit(100000, "lightyears")
  6924. },
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(200, "lbs"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/vector-wuff/front.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Normal",
  6942. height: math.unit(2.8, "meters")
  6943. },
  6944. {
  6945. name: "Macro",
  6946. height: math.unit(450, "meters"),
  6947. default: true
  6948. },
  6949. {
  6950. name: "Megamacro",
  6951. height: math.unit(15, "kilometers")
  6952. }
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(6, "feet"),
  6960. weight: math.unit(256, "lbs"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/dannik/front.svg"
  6964. }
  6965. }
  6966. },
  6967. [
  6968. {
  6969. name: "Macro",
  6970. height: math.unit(69.57, "meters"),
  6971. default: true
  6972. },
  6973. ]
  6974. ))
  6975. characterMakers.push(() => makeCharacter(
  6976. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6977. {
  6978. front: {
  6979. height: math.unit(6, "feet"),
  6980. weight: math.unit(120, "lbs"),
  6981. name: "Front",
  6982. image: {
  6983. source: "./media/characters/azura-saharah/front.svg"
  6984. }
  6985. },
  6986. back: {
  6987. height: math.unit(6, "feet"),
  6988. weight: math.unit(120, "lbs"),
  6989. name: "Back",
  6990. image: {
  6991. source: "./media/characters/azura-saharah/back.svg"
  6992. }
  6993. },
  6994. },
  6995. [
  6996. {
  6997. name: "Macro",
  6998. height: math.unit(100, "feet"),
  6999. default: true
  7000. },
  7001. ]
  7002. ))
  7003. characterMakers.push(() => makeCharacter(
  7004. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7005. {
  7006. side: {
  7007. height: math.unit(5 + 4 / 12, "feet"),
  7008. weight: math.unit(163, "lbs"),
  7009. name: "Side",
  7010. image: {
  7011. source: "./media/characters/kennedy/side.svg"
  7012. }
  7013. }
  7014. },
  7015. [
  7016. {
  7017. name: "Standard Doggo",
  7018. height: math.unit(5 + 4 / 12, "feet")
  7019. },
  7020. {
  7021. name: "Big Doggo",
  7022. height: math.unit(25 + 3 / 12, "feet"),
  7023. default: true
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(90, "lbs"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/odi-lunar/front.svg"
  7036. }
  7037. }
  7038. },
  7039. [
  7040. {
  7041. name: "Micro",
  7042. height: math.unit(3, "inches"),
  7043. default: true
  7044. },
  7045. {
  7046. name: "Normal",
  7047. height: math.unit(5.5, "feet")
  7048. }
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7053. {
  7054. back: {
  7055. height: math.unit(6, "feet"),
  7056. weight: math.unit(220, "lbs"),
  7057. name: "Back",
  7058. image: {
  7059. source: "./media/characters/mandake/back.svg"
  7060. }
  7061. }
  7062. },
  7063. [
  7064. {
  7065. name: "Normal",
  7066. height: math.unit(7, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(78, "feet")
  7072. },
  7073. {
  7074. name: "Macro+",
  7075. height: math.unit(300, "meters")
  7076. },
  7077. {
  7078. name: "Macro++",
  7079. height: math.unit(2400, "feet")
  7080. },
  7081. {
  7082. name: "Megamacro",
  7083. height: math.unit(5167, "meters")
  7084. },
  7085. {
  7086. name: "Gigamacro",
  7087. height: math.unit(41769, "miles")
  7088. },
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7093. {
  7094. front: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(120, "lbs"),
  7097. name: "Front",
  7098. image: {
  7099. source: "./media/characters/yozey/front.svg"
  7100. }
  7101. },
  7102. frontAlt: {
  7103. height: math.unit(6, "feet"),
  7104. weight: math.unit(120, "lbs"),
  7105. name: "Front (Alt)",
  7106. image: {
  7107. source: "./media/characters/yozey/front-alt.svg"
  7108. }
  7109. },
  7110. side: {
  7111. height: math.unit(6, "feet"),
  7112. weight: math.unit(120, "lbs"),
  7113. name: "Side",
  7114. image: {
  7115. source: "./media/characters/yozey/side.svg"
  7116. }
  7117. },
  7118. },
  7119. [
  7120. {
  7121. name: "Micro",
  7122. height: math.unit(3, "inches"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Normal",
  7127. height: math.unit(6, "feet")
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(103, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/valeska-voss/front.svg"
  7140. }
  7141. }
  7142. },
  7143. [
  7144. {
  7145. name: "Mini-Sized Sub",
  7146. height: math.unit(3.1, "inches")
  7147. },
  7148. {
  7149. name: "Mid-Sized Sub",
  7150. height: math.unit(6.2, "inches")
  7151. },
  7152. {
  7153. name: "Full-Sized Sub",
  7154. height: math.unit(9.3, "inches")
  7155. },
  7156. {
  7157. name: "Normal",
  7158. height: math.unit(5 + 2 / 12, "foot"),
  7159. default: true
  7160. },
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7165. {
  7166. front: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(160, "lbs"),
  7169. name: "Front",
  7170. image: {
  7171. source: "./media/characters/gene-zeta/front.svg",
  7172. extra: 3006 / 2826,
  7173. bottom: 182 / 3188
  7174. }
  7175. }
  7176. },
  7177. [
  7178. {
  7179. name: "Micro",
  7180. height: math.unit(6, "inches")
  7181. },
  7182. {
  7183. name: "Normal",
  7184. height: math.unit(5 + 11 / 12, "foot"),
  7185. default: true
  7186. },
  7187. {
  7188. name: "Macro",
  7189. height: math.unit(140, "feet")
  7190. },
  7191. {
  7192. name: "Supercharged",
  7193. height: math.unit(2500, "feet")
  7194. },
  7195. ]
  7196. ))
  7197. characterMakers.push(() => makeCharacter(
  7198. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7199. {
  7200. front: {
  7201. height: math.unit(6, "feet"),
  7202. weight: math.unit(350, "lbs"),
  7203. name: "Front",
  7204. image: {
  7205. source: "./media/characters/razinox/front.svg",
  7206. extra: 1686 / 1548,
  7207. bottom: 28.2 / 1868
  7208. }
  7209. },
  7210. back: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(350, "lbs"),
  7213. name: "Back",
  7214. image: {
  7215. source: "./media/characters/razinox/back.svg",
  7216. extra: 1660 / 1590,
  7217. bottom: 15 / 1665
  7218. }
  7219. },
  7220. },
  7221. [
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(10 + 8 / 12, "foot")
  7225. },
  7226. {
  7227. name: "Minimacro",
  7228. height: math.unit(15, "foot")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(60, "foot"),
  7233. default: true
  7234. },
  7235. {
  7236. name: "Megamacro",
  7237. height: math.unit(5, "miles")
  7238. },
  7239. {
  7240. name: "Gigamacro",
  7241. height: math.unit(6000, "miles")
  7242. },
  7243. ]
  7244. ))
  7245. characterMakers.push(() => makeCharacter(
  7246. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7247. {
  7248. front: {
  7249. height: math.unit(6, "feet"),
  7250. weight: math.unit(150, "lbs"),
  7251. name: "Front",
  7252. image: {
  7253. source: "./media/characters/cobalt/front.svg"
  7254. }
  7255. }
  7256. },
  7257. [
  7258. {
  7259. name: "Normal",
  7260. height: math.unit(8 + 1 / 12, "foot")
  7261. },
  7262. {
  7263. name: "Macro",
  7264. height: math.unit(111, "foot"),
  7265. default: true
  7266. },
  7267. {
  7268. name: "Supracosmic",
  7269. height: math.unit(1e42, "feet")
  7270. },
  7271. ]
  7272. ))
  7273. characterMakers.push(() => makeCharacter(
  7274. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7275. {
  7276. front: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(140, "lbs"),
  7279. name: "Front",
  7280. image: {
  7281. source: "./media/characters/amanda/front.svg"
  7282. }
  7283. }
  7284. },
  7285. [
  7286. {
  7287. name: "Micro",
  7288. height: math.unit(5, "inches"),
  7289. default: true
  7290. },
  7291. ]
  7292. ))
  7293. characterMakers.push(() => makeCharacter(
  7294. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7295. {
  7296. front: {
  7297. height: math.unit(2.75, "meters"),
  7298. weight: math.unit(1200, "lb"),
  7299. name: "Front",
  7300. image: {
  7301. source: "./media/characters/teal/front.svg",
  7302. extra: 2463 / 2320,
  7303. bottom: 166 / 2629
  7304. }
  7305. },
  7306. back: {
  7307. height: math.unit(2.75, "meters"),
  7308. weight: math.unit(1200, "lb"),
  7309. name: "Back",
  7310. image: {
  7311. source: "./media/characters/teal/back.svg",
  7312. extra: 2580 / 2489,
  7313. bottom: 151 / 2731
  7314. }
  7315. },
  7316. sitting: {
  7317. height: math.unit(1.9, "meters"),
  7318. weight: math.unit(1200, "lb"),
  7319. name: "Sitting",
  7320. image: {
  7321. source: "./media/characters/teal/sitting.svg",
  7322. extra: 623 / 590,
  7323. bottom: 121 / 744
  7324. }
  7325. },
  7326. standing: {
  7327. height: math.unit(2.75, "meters"),
  7328. weight: math.unit(1200, "lb"),
  7329. name: "Standing",
  7330. image: {
  7331. source: "./media/characters/teal/standing.svg",
  7332. extra: 923 / 893,
  7333. bottom: 60 / 983
  7334. }
  7335. },
  7336. stretching: {
  7337. height: math.unit(3.65, "meters"),
  7338. weight: math.unit(1200, "lb"),
  7339. name: "Stretching",
  7340. image: {
  7341. source: "./media/characters/teal/stretching.svg",
  7342. extra: 1276 / 1244,
  7343. bottom: 0 / 1276
  7344. }
  7345. },
  7346. legged: {
  7347. height: math.unit(1.3, "meters"),
  7348. weight: math.unit(100, "lb"),
  7349. name: "Legged",
  7350. image: {
  7351. source: "./media/characters/teal/legged.svg",
  7352. extra: 462 / 437,
  7353. bottom: 24 / 486
  7354. }
  7355. },
  7356. naga: {
  7357. height: math.unit(5.4, "meters"),
  7358. weight: math.unit(4000, "lb"),
  7359. name: "Naga",
  7360. image: {
  7361. source: "./media/characters/teal/naga.svg",
  7362. extra: 1902 / 1858,
  7363. bottom: 0 / 1902
  7364. }
  7365. },
  7366. hand: {
  7367. height: math.unit(0.52, "meters"),
  7368. name: "Hand",
  7369. image: {
  7370. source: "./media/characters/teal/hand.svg"
  7371. }
  7372. },
  7373. maw: {
  7374. height: math.unit(0.43, "meters"),
  7375. name: "Maw",
  7376. image: {
  7377. source: "./media/characters/teal/maw.svg"
  7378. }
  7379. },
  7380. slit: {
  7381. height: math.unit(0.25, "meters"),
  7382. name: "Slit",
  7383. image: {
  7384. source: "./media/characters/teal/slit.svg"
  7385. }
  7386. },
  7387. },
  7388. [
  7389. {
  7390. name: "Normal",
  7391. height: math.unit(2.75, "meters"),
  7392. default: true
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(300, "feet")
  7397. },
  7398. {
  7399. name: "Macro+",
  7400. height: math.unit(2000, "feet")
  7401. },
  7402. ]
  7403. ))
  7404. characterMakers.push(() => makeCharacter(
  7405. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7406. {
  7407. frontCat: {
  7408. height: math.unit(6, "feet"),
  7409. weight: math.unit(180, "lbs"),
  7410. name: "Front (Cat)",
  7411. image: {
  7412. source: "./media/characters/ravin-amulet/front-cat.svg"
  7413. }
  7414. },
  7415. frontCatAlt: {
  7416. height: math.unit(6, "feet"),
  7417. weight: math.unit(180, "lbs"),
  7418. name: "Front (Alt, Cat)",
  7419. image: {
  7420. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7421. }
  7422. },
  7423. frontWerewolf: {
  7424. height: math.unit(6 * 1.2, "feet"),
  7425. weight: math.unit(225, "lbs"),
  7426. name: "Front (Werewolf)",
  7427. image: {
  7428. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7429. }
  7430. },
  7431. backWerewolf: {
  7432. height: math.unit(6 * 1.2, "feet"),
  7433. weight: math.unit(225, "lbs"),
  7434. name: "Back (Werewolf)",
  7435. image: {
  7436. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Nano",
  7443. height: math.unit(1, "micrometer")
  7444. },
  7445. {
  7446. name: "Micro",
  7447. height: math.unit(1, "inch")
  7448. },
  7449. {
  7450. name: "Normal",
  7451. height: math.unit(6, "feet"),
  7452. default: true
  7453. },
  7454. {
  7455. name: "Macro",
  7456. height: math.unit(60, "feet")
  7457. }
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7462. {
  7463. front: {
  7464. height: math.unit(6, "feet"),
  7465. weight: math.unit(165, "lbs"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/fluoresce/front.svg"
  7469. }
  7470. }
  7471. },
  7472. [
  7473. {
  7474. name: "Micro",
  7475. height: math.unit(6, "cm")
  7476. },
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(5 + 7 / 12, "feet"),
  7480. default: true
  7481. },
  7482. {
  7483. name: "Macro",
  7484. height: math.unit(56, "feet")
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(1.9, "miles")
  7489. },
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7494. {
  7495. front: {
  7496. height: math.unit(9 + 6 / 12, "feet"),
  7497. weight: math.unit(523, "lbs"),
  7498. name: "Side",
  7499. image: {
  7500. source: "./media/characters/aurora/side.svg"
  7501. }
  7502. }
  7503. },
  7504. [
  7505. {
  7506. name: "Normal",
  7507. height: math.unit(9 + 6 / 12, "feet")
  7508. },
  7509. {
  7510. name: "Macro",
  7511. height: math.unit(96, "feet"),
  7512. default: true
  7513. },
  7514. {
  7515. name: "Macro+",
  7516. height: math.unit(243, "feet")
  7517. },
  7518. ]
  7519. ))
  7520. characterMakers.push(() => makeCharacter(
  7521. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7522. {
  7523. front: {
  7524. height: math.unit(194, "cm"),
  7525. weight: math.unit(90, "kg"),
  7526. name: "Front",
  7527. image: {
  7528. source: "./media/characters/ranek/front.svg"
  7529. }
  7530. },
  7531. side: {
  7532. height: math.unit(194, "cm"),
  7533. weight: math.unit(90, "kg"),
  7534. name: "Side",
  7535. image: {
  7536. source: "./media/characters/ranek/side.svg"
  7537. }
  7538. },
  7539. back: {
  7540. height: math.unit(194, "cm"),
  7541. weight: math.unit(90, "kg"),
  7542. name: "Back",
  7543. image: {
  7544. source: "./media/characters/ranek/back.svg"
  7545. }
  7546. },
  7547. feral: {
  7548. height: math.unit(30, "cm"),
  7549. weight: math.unit(1.6, "lbs"),
  7550. name: "Feral",
  7551. image: {
  7552. source: "./media/characters/ranek/feral.svg"
  7553. }
  7554. },
  7555. },
  7556. [
  7557. {
  7558. name: "Normal",
  7559. height: math.unit(194, "cm"),
  7560. default: true
  7561. },
  7562. {
  7563. name: "Macro",
  7564. height: math.unit(100, "meters")
  7565. },
  7566. ]
  7567. ))
  7568. characterMakers.push(() => makeCharacter(
  7569. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7570. {
  7571. front: {
  7572. height: math.unit(5 + 6 / 12, "feet"),
  7573. weight: math.unit(153, "lbs"),
  7574. name: "Front",
  7575. image: {
  7576. source: "./media/characters/andrew-cooper/front.svg"
  7577. }
  7578. },
  7579. },
  7580. [
  7581. {
  7582. name: "Nano",
  7583. height: math.unit(1, "mm")
  7584. },
  7585. {
  7586. name: "Micro",
  7587. height: math.unit(2, "inches")
  7588. },
  7589. {
  7590. name: "Normal",
  7591. height: math.unit(5 + 6 / 12, "feet"),
  7592. default: true
  7593. }
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7598. {
  7599. front: {
  7600. height: math.unit(6, "feet"),
  7601. weight: math.unit(180, "lbs"),
  7602. name: "Front",
  7603. image: {
  7604. source: "./media/characters/akane-sato/front.svg",
  7605. extra: 1219 / 1140
  7606. }
  7607. },
  7608. back: {
  7609. height: math.unit(6, "feet"),
  7610. weight: math.unit(180, "lbs"),
  7611. name: "Back",
  7612. image: {
  7613. source: "./media/characters/akane-sato/back.svg",
  7614. extra: 1219 / 1170
  7615. }
  7616. },
  7617. },
  7618. [
  7619. {
  7620. name: "Normal",
  7621. height: math.unit(2.5, "meters")
  7622. },
  7623. {
  7624. name: "Macro",
  7625. height: math.unit(250, "meters"),
  7626. default: true
  7627. },
  7628. {
  7629. name: "Megamacro",
  7630. height: math.unit(25, "km")
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(65, "kg"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/rook/front.svg",
  7643. extra: 960 / 950
  7644. }
  7645. }
  7646. },
  7647. [
  7648. {
  7649. name: "Normal",
  7650. height: math.unit(8.8, "feet")
  7651. },
  7652. {
  7653. name: "Macro",
  7654. height: math.unit(88, "feet"),
  7655. default: true
  7656. },
  7657. {
  7658. name: "Megamacro",
  7659. height: math.unit(8, "miles")
  7660. },
  7661. ]
  7662. ))
  7663. characterMakers.push(() => makeCharacter(
  7664. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7665. {
  7666. front: {
  7667. height: math.unit(12 + 2 / 12, "feet"),
  7668. weight: math.unit(808, "lbs"),
  7669. name: "Front",
  7670. image: {
  7671. source: "./media/characters/prodigy/front.svg"
  7672. }
  7673. }
  7674. },
  7675. [
  7676. {
  7677. name: "Normal",
  7678. height: math.unit(12 + 2 / 12, "feet"),
  7679. default: true
  7680. },
  7681. {
  7682. name: "Macro",
  7683. height: math.unit(143, "feet")
  7684. },
  7685. {
  7686. name: "Macro+",
  7687. height: math.unit(400, "feet")
  7688. },
  7689. ]
  7690. ))
  7691. characterMakers.push(() => makeCharacter(
  7692. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7693. {
  7694. front: {
  7695. height: math.unit(6, "feet"),
  7696. weight: math.unit(225, "lbs"),
  7697. name: "Front",
  7698. image: {
  7699. source: "./media/characters/daniel/front.svg"
  7700. }
  7701. },
  7702. leaning: {
  7703. height: math.unit(6, "feet"),
  7704. weight: math.unit(225, "lbs"),
  7705. name: "Leaning",
  7706. image: {
  7707. source: "./media/characters/daniel/leaning.svg"
  7708. }
  7709. },
  7710. },
  7711. [
  7712. {
  7713. name: "Macro",
  7714. height: math.unit(1000, "feet"),
  7715. default: true
  7716. },
  7717. ]
  7718. ))
  7719. characterMakers.push(() => makeCharacter(
  7720. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7721. {
  7722. front: {
  7723. height: math.unit(6, "feet"),
  7724. weight: math.unit(88, "lbs"),
  7725. name: "Front",
  7726. image: {
  7727. source: "./media/characters/chiros/front.svg",
  7728. extra: 306 / 226
  7729. }
  7730. },
  7731. side: {
  7732. height: math.unit(6, "feet"),
  7733. weight: math.unit(88, "lbs"),
  7734. name: "Side",
  7735. image: {
  7736. source: "./media/characters/chiros/side.svg",
  7737. extra: 306 / 226
  7738. }
  7739. },
  7740. },
  7741. [
  7742. {
  7743. name: "Normal",
  7744. height: math.unit(6, "cm"),
  7745. default: true
  7746. },
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7751. {
  7752. front: {
  7753. height: math.unit(6, "feet"),
  7754. weight: math.unit(100, "lbs"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/selka/front.svg",
  7758. extra: 947 / 887
  7759. }
  7760. }
  7761. },
  7762. [
  7763. {
  7764. name: "Normal",
  7765. height: math.unit(5, "cm"),
  7766. default: true
  7767. },
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7772. {
  7773. front: {
  7774. height: math.unit(8 + 3 / 12, "feet"),
  7775. weight: math.unit(424, "lbs"),
  7776. name: "Front",
  7777. image: {
  7778. source: "./media/characters/verin/front.svg",
  7779. extra: 1845 / 1550
  7780. }
  7781. },
  7782. frontArmored: {
  7783. height: math.unit(8 + 3 / 12, "feet"),
  7784. weight: math.unit(424, "lbs"),
  7785. name: "Front (Armored)",
  7786. image: {
  7787. source: "./media/characters/verin/front-armor.svg",
  7788. extra: 1845 / 1550,
  7789. bottom: 0.01
  7790. }
  7791. },
  7792. back: {
  7793. height: math.unit(8 + 3 / 12, "feet"),
  7794. weight: math.unit(424, "lbs"),
  7795. name: "Back",
  7796. image: {
  7797. source: "./media/characters/verin/back.svg",
  7798. bottom: 0.1,
  7799. extra: 1
  7800. }
  7801. },
  7802. foot: {
  7803. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7804. name: "Foot",
  7805. image: {
  7806. source: "./media/characters/verin/foot.svg"
  7807. }
  7808. },
  7809. },
  7810. [
  7811. {
  7812. name: "Normal",
  7813. height: math.unit(8 + 3 / 12, "feet")
  7814. },
  7815. {
  7816. name: "Minimacro",
  7817. height: math.unit(21, "feet"),
  7818. default: true
  7819. },
  7820. {
  7821. name: "Macro",
  7822. height: math.unit(626, "feet")
  7823. },
  7824. ]
  7825. ))
  7826. characterMakers.push(() => makeCharacter(
  7827. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7828. {
  7829. front: {
  7830. height: math.unit(2.718, "meters"),
  7831. weight: math.unit(150, "lbs"),
  7832. name: "Front",
  7833. image: {
  7834. source: "./media/characters/sovrim-terraquian/front.svg"
  7835. }
  7836. },
  7837. back: {
  7838. height: math.unit(2.718, "meters"),
  7839. weight: math.unit(150, "lbs"),
  7840. name: "Back",
  7841. image: {
  7842. source: "./media/characters/sovrim-terraquian/back.svg"
  7843. }
  7844. }
  7845. },
  7846. [
  7847. {
  7848. name: "Micro",
  7849. height: math.unit(2, "inches")
  7850. },
  7851. {
  7852. name: "Small",
  7853. height: math.unit(1, "meter")
  7854. },
  7855. {
  7856. name: "Normal",
  7857. height: math.unit(Math.E, "meters"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Macro",
  7862. height: math.unit(20, "meters")
  7863. },
  7864. {
  7865. name: "Macro+",
  7866. height: math.unit(400, "meters")
  7867. },
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(7, "feet"),
  7875. weight: math.unit(489, "lbs"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/reece-silvermane/front.svg",
  7879. bottom: 0.02,
  7880. extra: 1
  7881. }
  7882. },
  7883. },
  7884. [
  7885. {
  7886. name: "Macro",
  7887. height: math.unit(1.5, "miles"),
  7888. default: true
  7889. },
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(6, "feet"),
  7897. weight: math.unit(78, "kg"),
  7898. name: "Front",
  7899. image: {
  7900. source: "./media/characters/kane/front.svg",
  7901. extra: 978 / 899
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Normal",
  7908. height: math.unit(2.1, "m"),
  7909. },
  7910. {
  7911. name: "Macro",
  7912. height: math.unit(1, "km"),
  7913. default: true
  7914. },
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(6, "feet"),
  7922. weight: math.unit(200, "kg"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/tegon/front.svg",
  7926. bottom: 0.01,
  7927. extra: 1
  7928. }
  7929. },
  7930. },
  7931. [
  7932. {
  7933. name: "Micro",
  7934. height: math.unit(1, "inch")
  7935. },
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(6 + 3 / 12, "feet"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Macro",
  7943. height: math.unit(300, "feet")
  7944. },
  7945. {
  7946. name: "Megamacro",
  7947. height: math.unit(69, "miles")
  7948. },
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7953. {
  7954. side: {
  7955. height: math.unit(6, "feet"),
  7956. weight: math.unit(2304, "lbs"),
  7957. name: "Side",
  7958. image: {
  7959. source: "./media/characters/arcturax/side.svg",
  7960. extra: 790 / 376,
  7961. bottom: 0.01
  7962. }
  7963. },
  7964. },
  7965. [
  7966. {
  7967. name: "Micro",
  7968. height: math.unit(2, "inch")
  7969. },
  7970. {
  7971. name: "Normal",
  7972. height: math.unit(6, "feet")
  7973. },
  7974. {
  7975. name: "Macro",
  7976. height: math.unit(39, "feet"),
  7977. default: true
  7978. },
  7979. {
  7980. name: "Megamacro",
  7981. height: math.unit(7, "miles")
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7987. {
  7988. front: {
  7989. height: math.unit(6, "feet"),
  7990. weight: math.unit(50, "lbs"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/sentri/front.svg",
  7994. extra: 1750 / 1570,
  7995. bottom: 0.025
  7996. }
  7997. },
  7998. frontAlt: {
  7999. height: math.unit(6, "feet"),
  8000. weight: math.unit(50, "lbs"),
  8001. name: "Front (Alt)",
  8002. image: {
  8003. source: "./media/characters/sentri/front-alt.svg",
  8004. extra: 1750 / 1570,
  8005. bottom: 0.025
  8006. }
  8007. },
  8008. },
  8009. [
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(15, "feet"),
  8013. default: true
  8014. },
  8015. {
  8016. name: "Macro",
  8017. height: math.unit(2500, "feet")
  8018. }
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8023. {
  8024. front: {
  8025. height: math.unit(5 + 8 / 12, "feet"),
  8026. weight: math.unit(130, "lbs"),
  8027. name: "Front",
  8028. image: {
  8029. source: "./media/characters/corvin/front.svg",
  8030. extra: 1803 / 1629
  8031. }
  8032. },
  8033. frontShirt: {
  8034. height: math.unit(5 + 8 / 12, "feet"),
  8035. weight: math.unit(130, "lbs"),
  8036. name: "Front (Shirt)",
  8037. image: {
  8038. source: "./media/characters/corvin/front-shirt.svg",
  8039. extra: 1803 / 1629
  8040. }
  8041. },
  8042. frontPoncho: {
  8043. height: math.unit(5 + 8 / 12, "feet"),
  8044. weight: math.unit(130, "lbs"),
  8045. name: "Front (Poncho)",
  8046. image: {
  8047. source: "./media/characters/corvin/front-poncho.svg",
  8048. extra: 1803 / 1629
  8049. }
  8050. },
  8051. side: {
  8052. height: math.unit(5 + 8 / 12, "feet"),
  8053. weight: math.unit(130, "lbs"),
  8054. name: "Side",
  8055. image: {
  8056. source: "./media/characters/corvin/side.svg",
  8057. extra: 1012 / 945
  8058. }
  8059. },
  8060. back: {
  8061. height: math.unit(5 + 8 / 12, "feet"),
  8062. weight: math.unit(130, "lbs"),
  8063. name: "Back",
  8064. image: {
  8065. source: "./media/characters/corvin/back.svg",
  8066. extra: 1803 / 1629
  8067. }
  8068. },
  8069. },
  8070. [
  8071. {
  8072. name: "Micro",
  8073. height: math.unit(3, "inches")
  8074. },
  8075. {
  8076. name: "Normal",
  8077. height: math.unit(5 + 8 / 12, "feet")
  8078. },
  8079. {
  8080. name: "Macro",
  8081. height: math.unit(300, "feet"),
  8082. default: true
  8083. },
  8084. {
  8085. name: "Megamacro",
  8086. height: math.unit(500, "miles")
  8087. }
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8092. {
  8093. front: {
  8094. height: math.unit(6, "feet"),
  8095. weight: math.unit(135, "lbs"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/q/front.svg",
  8099. extra: 854 / 752,
  8100. bottom: 0.005
  8101. }
  8102. },
  8103. back: {
  8104. height: math.unit(6, "feet"),
  8105. weight: math.unit(130, "lbs"),
  8106. name: "Back",
  8107. image: {
  8108. source: "./media/characters/q/back.svg",
  8109. extra: 854 / 752
  8110. }
  8111. },
  8112. },
  8113. [
  8114. {
  8115. name: "Macro",
  8116. height: math.unit(90, "feet"),
  8117. default: true
  8118. },
  8119. {
  8120. name: "Extra Macro",
  8121. height: math.unit(300, "feet"),
  8122. },
  8123. {
  8124. name: "BIG WALF",
  8125. height: math.unit(750, "feet"),
  8126. },
  8127. ]
  8128. ))
  8129. characterMakers.push(() => makeCharacter(
  8130. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8131. {
  8132. front: {
  8133. height: math.unit(6, "feet"),
  8134. weight: math.unit(150, "lbs"),
  8135. name: "Front",
  8136. image: {
  8137. source: "./media/characters/carley/front.svg",
  8138. extra: 3927 / 3540,
  8139. bottom: 29.2 / 735
  8140. }
  8141. }
  8142. },
  8143. [
  8144. {
  8145. name: "Normal",
  8146. height: math.unit(6 + 3 / 12, "feet")
  8147. },
  8148. {
  8149. name: "Macro",
  8150. height: math.unit(185, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Megamacro",
  8155. height: math.unit(8, "miles"),
  8156. },
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8161. {
  8162. front: {
  8163. height: math.unit(3, "feet"),
  8164. weight: math.unit(28, "lbs"),
  8165. name: "Front",
  8166. image: {
  8167. source: "./media/characters/citrine/front.svg"
  8168. }
  8169. }
  8170. },
  8171. [
  8172. {
  8173. name: "Normal",
  8174. height: math.unit(3, "feet"),
  8175. default: true
  8176. }
  8177. ]
  8178. ))
  8179. characterMakers.push(() => makeCharacter(
  8180. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8181. {
  8182. front: {
  8183. height: math.unit(14, "feet"),
  8184. weight: math.unit(1450, "kg"),
  8185. capacity: math.unit(15, "people"),
  8186. name: "Front",
  8187. image: {
  8188. source: "./media/characters/aura-starwind/front.svg",
  8189. extra: 1440/1327,
  8190. bottom: 11/1451
  8191. }
  8192. },
  8193. side: {
  8194. height: math.unit(14, "feet"),
  8195. weight: math.unit(1450, "kg"),
  8196. capacity: math.unit(15, "people"),
  8197. name: "Side",
  8198. image: {
  8199. source: "./media/characters/aura-starwind/side.svg",
  8200. extra: 1654 / 1497
  8201. }
  8202. },
  8203. taur: {
  8204. height: math.unit(18, "feet"),
  8205. weight: math.unit(5500, "kg"),
  8206. capacity: math.unit(50, "people"),
  8207. name: "Taur",
  8208. image: {
  8209. source: "./media/characters/aura-starwind/taur.svg",
  8210. extra: 1760 / 1650
  8211. }
  8212. },
  8213. feral: {
  8214. height: math.unit(46, "feet"),
  8215. weight: math.unit(25000, "kg"),
  8216. capacity: math.unit(120, "people"),
  8217. name: "Feral",
  8218. image: {
  8219. source: "./media/characters/aura-starwind/feral.svg"
  8220. }
  8221. },
  8222. },
  8223. [
  8224. {
  8225. name: "Normal",
  8226. height: math.unit(14, "feet"),
  8227. default: true
  8228. },
  8229. {
  8230. name: "Macro",
  8231. height: math.unit(50, "meters")
  8232. },
  8233. {
  8234. name: "Megamacro",
  8235. height: math.unit(5000, "meters")
  8236. },
  8237. {
  8238. name: "Gigamacro",
  8239. height: math.unit(100000, "kilometers")
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8245. {
  8246. front: {
  8247. height: math.unit(2 + 7 / 12, "feet"),
  8248. weight: math.unit(32, "lbs"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/rivet/front.svg",
  8252. extra: 1716 / 1658,
  8253. bottom: 0.03
  8254. }
  8255. },
  8256. foot: {
  8257. height: math.unit(0.551, "feet"),
  8258. name: "Rivet's Foot",
  8259. image: {
  8260. source: "./media/characters/rivet/foot.svg"
  8261. },
  8262. rename: true
  8263. }
  8264. },
  8265. [
  8266. {
  8267. name: "Micro",
  8268. height: math.unit(1.5, "inches"),
  8269. },
  8270. {
  8271. name: "Normal",
  8272. height: math.unit(2 + 7 / 12, "feet"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "Macro",
  8277. height: math.unit(85, "feet")
  8278. },
  8279. {
  8280. name: "Megamacro",
  8281. height: math.unit(2.2, "km")
  8282. }
  8283. ]
  8284. ))
  8285. characterMakers.push(() => makeCharacter(
  8286. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8287. {
  8288. front: {
  8289. height: math.unit(5 + 9 / 12, "feet"),
  8290. weight: math.unit(150, "lbs"),
  8291. name: "Front",
  8292. image: {
  8293. source: "./media/characters/coffee/front.svg",
  8294. extra: 3666 / 3032,
  8295. bottom: 0.04
  8296. }
  8297. },
  8298. foot: {
  8299. height: math.unit(1.29, "feet"),
  8300. name: "Foot",
  8301. image: {
  8302. source: "./media/characters/coffee/foot.svg"
  8303. }
  8304. },
  8305. },
  8306. [
  8307. {
  8308. name: "Micro",
  8309. height: math.unit(2, "inches"),
  8310. },
  8311. {
  8312. name: "Normal",
  8313. height: math.unit(5 + 9 / 12, "feet"),
  8314. default: true
  8315. },
  8316. {
  8317. name: "Macro",
  8318. height: math.unit(800, "feet")
  8319. },
  8320. {
  8321. name: "Megamacro",
  8322. height: math.unit(25, "miles")
  8323. }
  8324. ]
  8325. ))
  8326. characterMakers.push(() => makeCharacter(
  8327. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8328. {
  8329. front: {
  8330. height: math.unit(6, "feet"),
  8331. weight: math.unit(200, "lbs"),
  8332. name: "Front",
  8333. image: {
  8334. source: "./media/characters/chari-gal/front.svg",
  8335. extra: 1568 / 1385,
  8336. bottom: 0.047
  8337. }
  8338. },
  8339. gigantamax: {
  8340. height: math.unit(6 * 16, "feet"),
  8341. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8342. name: "Gigantamax",
  8343. image: {
  8344. source: "./media/characters/chari-gal/gigantamax.svg",
  8345. extra: 1124 / 888,
  8346. bottom: 0.03
  8347. }
  8348. },
  8349. },
  8350. [
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(5 + 7 / 12, "feet")
  8354. },
  8355. {
  8356. name: "Macro",
  8357. height: math.unit(200, "feet"),
  8358. default: true
  8359. }
  8360. ]
  8361. ))
  8362. characterMakers.push(() => makeCharacter(
  8363. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8364. {
  8365. front: {
  8366. height: math.unit(6, "feet"),
  8367. weight: math.unit(150, "lbs"),
  8368. name: "Front",
  8369. image: {
  8370. source: "./media/characters/nova/front.svg",
  8371. extra: 5000 / 4722,
  8372. bottom: 0.02
  8373. }
  8374. }
  8375. },
  8376. [
  8377. {
  8378. name: "Micro-",
  8379. height: math.unit(0.8, "inches")
  8380. },
  8381. {
  8382. name: "Micro",
  8383. height: math.unit(2, "inches"),
  8384. default: true
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(3 + 1 / 12, "feet"),
  8393. weight: math.unit(21.7, "lbs"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/argent/front.svg",
  8397. extra: 1471 / 1331,
  8398. bottom: 100.8 / 1575.5
  8399. }
  8400. }
  8401. },
  8402. [
  8403. {
  8404. name: "Micro",
  8405. height: math.unit(2, "inches")
  8406. },
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(3 + 1 / 12, "feet"),
  8410. default: true
  8411. },
  8412. {
  8413. name: "Macro",
  8414. height: math.unit(120, "feet")
  8415. },
  8416. ]
  8417. ))
  8418. characterMakers.push(() => makeCharacter(
  8419. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8420. {
  8421. lamp: {
  8422. height: math.unit(7 * 1559 / 989, "feet"),
  8423. name: "Magic Lamp",
  8424. image: {
  8425. source: "./media/characters/mira-al-cul/lamp.svg",
  8426. extra: 1617 / 1559
  8427. }
  8428. },
  8429. front: {
  8430. height: math.unit(7, "feet"),
  8431. name: "Front",
  8432. image: {
  8433. source: "./media/characters/mira-al-cul/front.svg",
  8434. extra: 1044 / 990
  8435. }
  8436. },
  8437. },
  8438. [
  8439. {
  8440. name: "Heavily Restricted",
  8441. height: math.unit(7 * 1559 / 989, "feet")
  8442. },
  8443. {
  8444. name: "Freshly Freed",
  8445. height: math.unit(50 * 1559 / 989, "feet")
  8446. },
  8447. {
  8448. name: "World Encompassing",
  8449. height: math.unit(10000 * 1559 / 989, "miles")
  8450. },
  8451. {
  8452. name: "Galactic",
  8453. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8454. },
  8455. {
  8456. name: "Palmed Universe",
  8457. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Multiversal Matriarch",
  8462. height: math.unit(8.87e10, "yottameters")
  8463. },
  8464. {
  8465. name: "Void Mother",
  8466. height: math.unit(3.14e110, "yottaparsecs")
  8467. },
  8468. {
  8469. name: "Toying with Transcendence",
  8470. height: math.unit(1e307, "meters")
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8476. {
  8477. front: {
  8478. height: math.unit(17 + 1 / 12, "feet"),
  8479. weight: math.unit(476.2 * 5, "lbs"),
  8480. name: "Front",
  8481. image: {
  8482. source: "./media/characters/kuro-shi-uchū/front.svg",
  8483. extra: 2329 / 1835,
  8484. bottom: 0.02
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Micro",
  8491. height: math.unit(2, "inches")
  8492. },
  8493. {
  8494. name: "Normal",
  8495. height: math.unit(12, "meters")
  8496. },
  8497. {
  8498. name: "Planetary",
  8499. height: math.unit(0.00929, "AU"),
  8500. default: true
  8501. },
  8502. {
  8503. name: "Universal",
  8504. height: math.unit(20, "gigaparsecs")
  8505. },
  8506. ]
  8507. ))
  8508. characterMakers.push(() => makeCharacter(
  8509. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8510. {
  8511. front: {
  8512. height: math.unit(5 + 2 / 12, "feet"),
  8513. weight: math.unit(120, "lbs"),
  8514. name: "Front",
  8515. image: {
  8516. source: "./media/characters/katherine/front.svg",
  8517. extra: 2075 / 1969
  8518. }
  8519. },
  8520. dress: {
  8521. height: math.unit(5 + 2 / 12, "feet"),
  8522. weight: math.unit(120, "lbs"),
  8523. name: "Dress",
  8524. image: {
  8525. source: "./media/characters/katherine/dress.svg",
  8526. extra: 2258 / 2064
  8527. }
  8528. },
  8529. },
  8530. [
  8531. {
  8532. name: "Micro",
  8533. height: math.unit(1, "inches"),
  8534. default: true
  8535. },
  8536. {
  8537. name: "Normal",
  8538. height: math.unit(5 + 2 / 12, "feet")
  8539. },
  8540. {
  8541. name: "Macro",
  8542. height: math.unit(100, "meters")
  8543. },
  8544. {
  8545. name: "Megamacro",
  8546. height: math.unit(80, "miles")
  8547. },
  8548. ]
  8549. ))
  8550. characterMakers.push(() => makeCharacter(
  8551. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8552. {
  8553. front: {
  8554. height: math.unit(7 + 8 / 12, "feet"),
  8555. weight: math.unit(250, "lbs"),
  8556. name: "Front",
  8557. image: {
  8558. source: "./media/characters/yevis/front.svg",
  8559. extra: 1938 / 1755
  8560. }
  8561. }
  8562. },
  8563. [
  8564. {
  8565. name: "Mortal",
  8566. height: math.unit(7 + 8 / 12, "feet")
  8567. },
  8568. {
  8569. name: "Battle",
  8570. height: math.unit(25 + 11 / 12, "feet")
  8571. },
  8572. {
  8573. name: "Wrath",
  8574. height: math.unit(1654 + 11 / 12, "feet")
  8575. },
  8576. {
  8577. name: "Planet Destroyer",
  8578. height: math.unit(12000, "miles")
  8579. },
  8580. {
  8581. name: "Galaxy Conqueror",
  8582. height: math.unit(1.45, "zettameters"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Universal War",
  8587. height: math.unit(184, "gigaparsecs")
  8588. },
  8589. {
  8590. name: "Eternity War",
  8591. height: math.unit(1.98e55, "yottaparsecs")
  8592. },
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8597. {
  8598. front: {
  8599. height: math.unit(5 + 8 / 12, "feet"),
  8600. weight: math.unit(63, "kg"),
  8601. name: "Front",
  8602. image: {
  8603. source: "./media/characters/xavier/front.svg",
  8604. extra: 944 / 883
  8605. }
  8606. },
  8607. frontStretch: {
  8608. height: math.unit(5 + 8 / 12, "feet"),
  8609. weight: math.unit(63, "kg"),
  8610. name: "Stretching",
  8611. image: {
  8612. source: "./media/characters/xavier/front-stretch.svg",
  8613. extra: 962 / 820
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Normal",
  8620. height: math.unit(5 + 8 / 12, "feet")
  8621. },
  8622. {
  8623. name: "Macro",
  8624. height: math.unit(100, "meters"),
  8625. default: true
  8626. },
  8627. {
  8628. name: "McLargeHuge",
  8629. height: math.unit(10, "miles")
  8630. },
  8631. ]
  8632. ))
  8633. characterMakers.push(() => makeCharacter(
  8634. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8635. {
  8636. front: {
  8637. height: math.unit(5 + 5 / 12, "feet"),
  8638. weight: math.unit(150, "lb"),
  8639. name: "Front",
  8640. image: {
  8641. source: "./media/characters/joshii/front.svg",
  8642. extra: 765 / 653,
  8643. bottom: 51 / 816
  8644. }
  8645. },
  8646. foot: {
  8647. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8648. name: "Foot",
  8649. image: {
  8650. source: "./media/characters/joshii/foot.svg"
  8651. }
  8652. },
  8653. },
  8654. [
  8655. {
  8656. name: "Micro",
  8657. height: math.unit(2, "inches"),
  8658. default: true
  8659. },
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(5 + 5 / 12, "feet")
  8663. },
  8664. {
  8665. name: "Macro",
  8666. height: math.unit(785, "feet")
  8667. },
  8668. {
  8669. name: "Megamacro",
  8670. height: math.unit(24.5, "miles")
  8671. },
  8672. ]
  8673. ))
  8674. characterMakers.push(() => makeCharacter(
  8675. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8676. {
  8677. front: {
  8678. height: math.unit(6, "feet"),
  8679. weight: math.unit(150, "lb"),
  8680. name: "Front",
  8681. image: {
  8682. source: "./media/characters/goddess-elizabeth/front.svg",
  8683. extra: 1800 / 1525,
  8684. bottom: 0.005
  8685. }
  8686. },
  8687. foot: {
  8688. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8689. name: "Foot",
  8690. image: {
  8691. source: "./media/characters/goddess-elizabeth/foot.svg"
  8692. }
  8693. },
  8694. mouth: {
  8695. height: math.unit(6, "feet"),
  8696. name: "Mouth",
  8697. image: {
  8698. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Micro",
  8705. height: math.unit(12, "feet")
  8706. },
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(80, "miles"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Macro",
  8714. height: math.unit(15000, "parsecs")
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8720. {
  8721. front: {
  8722. height: math.unit(5 + 9 / 12, "feet"),
  8723. weight: math.unit(144, "lb"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/kara/front.svg"
  8727. }
  8728. },
  8729. feet: {
  8730. height: math.unit(6 / 6.765, "feet"),
  8731. name: "Kara's Feet",
  8732. rename: true,
  8733. image: {
  8734. source: "./media/characters/kara/feet.svg"
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Normal",
  8741. height: math.unit(5 + 9 / 12, "feet")
  8742. },
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(174, "feet"),
  8746. default: true
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(18, "feet"),
  8755. weight: math.unit(4050, "lb"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/tyrone/front.svg",
  8759. extra: 2405 / 2270,
  8760. bottom: 182 / 2587
  8761. }
  8762. },
  8763. },
  8764. [
  8765. {
  8766. name: "Normal",
  8767. height: math.unit(18, "feet"),
  8768. default: true
  8769. },
  8770. {
  8771. name: "Macro",
  8772. height: math.unit(300, "feet")
  8773. },
  8774. {
  8775. name: "Megamacro",
  8776. height: math.unit(15, "km")
  8777. },
  8778. {
  8779. name: "Gigamacro",
  8780. height: math.unit(500, "km")
  8781. },
  8782. {
  8783. name: "Teramacro",
  8784. height: math.unit(0.5, "gigameters")
  8785. },
  8786. {
  8787. name: "Omnimacro",
  8788. height: math.unit(1e252, "yottauniverse")
  8789. },
  8790. ]
  8791. ))
  8792. characterMakers.push(() => makeCharacter(
  8793. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8794. {
  8795. front: {
  8796. height: math.unit(7 + 8 / 12, "feet"),
  8797. weight: math.unit(120, "lb"),
  8798. name: "Front",
  8799. image: {
  8800. source: "./media/characters/danny/front.svg",
  8801. extra: 1490 / 1350
  8802. }
  8803. },
  8804. back: {
  8805. height: math.unit(7 + 8 / 12, "feet"),
  8806. weight: math.unit(120, "lb"),
  8807. name: "Back",
  8808. image: {
  8809. source: "./media/characters/danny/back.svg",
  8810. extra: 1490 / 1350
  8811. }
  8812. },
  8813. },
  8814. [
  8815. {
  8816. name: "Normal",
  8817. height: math.unit(7 + 8 / 12, "feet"),
  8818. default: true
  8819. },
  8820. ]
  8821. ))
  8822. characterMakers.push(() => makeCharacter(
  8823. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8824. {
  8825. front: {
  8826. height: math.unit(3.5, "inches"),
  8827. weight: math.unit(19, "grams"),
  8828. name: "Front",
  8829. image: {
  8830. source: "./media/characters/mallow/front.svg",
  8831. extra: 471 / 431
  8832. }
  8833. },
  8834. back: {
  8835. height: math.unit(3.5, "inches"),
  8836. weight: math.unit(19, "grams"),
  8837. name: "Back",
  8838. image: {
  8839. source: "./media/characters/mallow/back.svg",
  8840. extra: 471 / 431
  8841. }
  8842. },
  8843. },
  8844. [
  8845. {
  8846. name: "Normal",
  8847. height: math.unit(3.5, "inches"),
  8848. default: true
  8849. },
  8850. ]
  8851. ))
  8852. characterMakers.push(() => makeCharacter(
  8853. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8854. {
  8855. front: {
  8856. height: math.unit(9, "feet"),
  8857. weight: math.unit(230, "kg"),
  8858. name: "Front",
  8859. image: {
  8860. source: "./media/characters/starry-aqua/front.svg"
  8861. }
  8862. },
  8863. back: {
  8864. height: math.unit(9, "feet"),
  8865. weight: math.unit(230, "kg"),
  8866. name: "Back",
  8867. image: {
  8868. source: "./media/characters/starry-aqua/back.svg"
  8869. }
  8870. },
  8871. hand: {
  8872. height: math.unit(9 * 0.1168, "feet"),
  8873. name: "Hand",
  8874. image: {
  8875. source: "./media/characters/starry-aqua/hand.svg"
  8876. }
  8877. },
  8878. foot: {
  8879. height: math.unit(9 * 0.18, "feet"),
  8880. name: "Foot",
  8881. image: {
  8882. source: "./media/characters/starry-aqua/foot.svg"
  8883. }
  8884. }
  8885. },
  8886. [
  8887. {
  8888. name: "Micro",
  8889. height: math.unit(3, "inches")
  8890. },
  8891. {
  8892. name: "Normal",
  8893. height: math.unit(9, "feet")
  8894. },
  8895. {
  8896. name: "Macro",
  8897. height: math.unit(300, "feet"),
  8898. default: true
  8899. },
  8900. {
  8901. name: "Megamacro",
  8902. height: math.unit(3200, "feet")
  8903. }
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(6, "feet"),
  8911. weight: math.unit(230, "lb"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/luka/front.svg",
  8915. extra: 1,
  8916. bottom: 0.025
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(12 + 8 / 12, "feet"),
  8924. default: true
  8925. },
  8926. {
  8927. name: "Minimacro",
  8928. height: math.unit(20, "feet")
  8929. },
  8930. {
  8931. name: "Macro",
  8932. height: math.unit(250, "feet")
  8933. },
  8934. {
  8935. name: "Megamacro",
  8936. height: math.unit(5, "miles")
  8937. },
  8938. {
  8939. name: "Gigamacro",
  8940. height: math.unit(8000, "miles")
  8941. },
  8942. ]
  8943. ))
  8944. characterMakers.push(() => makeCharacter(
  8945. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8946. {
  8947. front: {
  8948. height: math.unit(6, "feet"),
  8949. weight: math.unit(150, "lb"),
  8950. name: "Front",
  8951. image: {
  8952. source: "./media/characters/natalie-nightring/front.svg",
  8953. extra: 1,
  8954. bottom: 0.06
  8955. }
  8956. },
  8957. },
  8958. [
  8959. {
  8960. name: "Uh Oh",
  8961. height: math.unit(0.1, "mm")
  8962. },
  8963. {
  8964. name: "Small",
  8965. height: math.unit(3, "inches")
  8966. },
  8967. {
  8968. name: "Human Scale",
  8969. height: math.unit(6, "feet")
  8970. },
  8971. {
  8972. name: "Librarian",
  8973. height: math.unit(50, "feet"),
  8974. default: true
  8975. },
  8976. {
  8977. name: "Immense",
  8978. height: math.unit(200, "miles")
  8979. },
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8984. {
  8985. front: {
  8986. height: math.unit(6, "feet"),
  8987. weight: math.unit(180, "lbs"),
  8988. name: "Front",
  8989. image: {
  8990. source: "./media/characters/danni-rosie/front.svg",
  8991. extra: 1260 / 1128,
  8992. bottom: 0.022
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Micro",
  8999. height: math.unit(2, "inches"),
  9000. default: true
  9001. },
  9002. ]
  9003. ))
  9004. characterMakers.push(() => makeCharacter(
  9005. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9006. {
  9007. front: {
  9008. height: math.unit(5 + 9 / 12, "feet"),
  9009. weight: math.unit(220, "lb"),
  9010. name: "Front",
  9011. image: {
  9012. source: "./media/characters/samantha-kruse/front.svg",
  9013. extra: (985 / 935),
  9014. bottom: 0.03
  9015. }
  9016. },
  9017. frontUndressed: {
  9018. height: math.unit(5 + 9 / 12, "feet"),
  9019. weight: math.unit(220, "lb"),
  9020. name: "Front (Undressed)",
  9021. image: {
  9022. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9023. extra: (973 / 923),
  9024. bottom: 0.025
  9025. }
  9026. },
  9027. fat: {
  9028. height: math.unit(5 + 9 / 12, "feet"),
  9029. weight: math.unit(900, "lb"),
  9030. name: "Front (Fat)",
  9031. image: {
  9032. source: "./media/characters/samantha-kruse/fat.svg",
  9033. extra: 2688 / 2561
  9034. }
  9035. },
  9036. },
  9037. [
  9038. {
  9039. name: "Normal",
  9040. height: math.unit(5 + 9 / 12, "feet"),
  9041. default: true
  9042. }
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9047. {
  9048. back: {
  9049. height: math.unit(5 + 4 / 12, "feet"),
  9050. weight: math.unit(4963, "lb"),
  9051. name: "Back",
  9052. image: {
  9053. source: "./media/characters/amelia-rosie/back.svg",
  9054. extra: 1113 / 963,
  9055. bottom: 0.01
  9056. }
  9057. },
  9058. },
  9059. [
  9060. {
  9061. name: "Level 0",
  9062. height: math.unit(5 + 4 / 12, "feet")
  9063. },
  9064. {
  9065. name: "Level 1",
  9066. height: math.unit(164597, "feet"),
  9067. default: true
  9068. },
  9069. {
  9070. name: "Level 2",
  9071. height: math.unit(956243, "miles")
  9072. },
  9073. {
  9074. name: "Level 3",
  9075. height: math.unit(29421709423, "miles")
  9076. },
  9077. {
  9078. name: "Level 4",
  9079. height: math.unit(154, "lightyears")
  9080. },
  9081. {
  9082. name: "Level 5",
  9083. height: math.unit(4738272, "lightyears")
  9084. },
  9085. {
  9086. name: "Level 6",
  9087. height: math.unit(145787152896, "lightyears")
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(5 + 11 / 12, "feet"),
  9096. weight: math.unit(65, "kg"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/rook-kitara/front.svg",
  9100. extra: 1347 / 1274,
  9101. bottom: 0.005
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Totally Unfair",
  9108. height: math.unit(1.8, "mm")
  9109. },
  9110. {
  9111. name: "Lap Rookie",
  9112. height: math.unit(1.4, "feet")
  9113. },
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(5 + 11 / 12, "feet"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "How Did This Happen",
  9121. height: math.unit(80, "miles")
  9122. }
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9127. {
  9128. front: {
  9129. height: math.unit(7, "feet"),
  9130. weight: math.unit(300, "lb"),
  9131. name: "Front",
  9132. image: {
  9133. source: "./media/characters/pisces/front.svg",
  9134. extra: 2255 / 2115,
  9135. bottom: 0.03
  9136. }
  9137. },
  9138. back: {
  9139. height: math.unit(7, "feet"),
  9140. weight: math.unit(300, "lb"),
  9141. name: "Back",
  9142. image: {
  9143. source: "./media/characters/pisces/back.svg",
  9144. extra: 2146 / 2055,
  9145. bottom: 0.04
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Normal",
  9152. height: math.unit(7, "feet"),
  9153. default: true
  9154. },
  9155. {
  9156. name: "Swimming Pool",
  9157. height: math.unit(12.2, "meters")
  9158. },
  9159. {
  9160. name: "Olympic Swimming Pool",
  9161. height: math.unit(56.3, "meters")
  9162. },
  9163. {
  9164. name: "Lake Superior",
  9165. height: math.unit(93900, "meters")
  9166. },
  9167. {
  9168. name: "Mediterranean Sea",
  9169. height: math.unit(644457, "meters")
  9170. },
  9171. {
  9172. name: "World's Oceans",
  9173. height: math.unit(4567491, "meters")
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9179. {
  9180. front: {
  9181. height: math.unit(2.3, "meters"),
  9182. weight: math.unit(120, "kg"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/zelas/front.svg"
  9186. }
  9187. },
  9188. side: {
  9189. height: math.unit(2.3, "meters"),
  9190. weight: math.unit(120, "kg"),
  9191. name: "Side",
  9192. image: {
  9193. source: "./media/characters/zelas/side.svg"
  9194. }
  9195. },
  9196. back: {
  9197. height: math.unit(2.3, "meters"),
  9198. weight: math.unit(120, "kg"),
  9199. name: "Back",
  9200. image: {
  9201. source: "./media/characters/zelas/back.svg"
  9202. }
  9203. },
  9204. foot: {
  9205. height: math.unit(1.116, "feet"),
  9206. name: "Foot",
  9207. image: {
  9208. source: "./media/characters/zelas/foot.svg"
  9209. }
  9210. },
  9211. },
  9212. [
  9213. {
  9214. name: "Normal",
  9215. height: math.unit(2.3, "meters")
  9216. },
  9217. {
  9218. name: "Macro",
  9219. height: math.unit(30, "meters"),
  9220. default: true
  9221. },
  9222. ]
  9223. ))
  9224. characterMakers.push(() => makeCharacter(
  9225. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9226. {
  9227. front: {
  9228. height: math.unit(1, "inch"),
  9229. weight: math.unit(0.21, "grams"),
  9230. name: "Front",
  9231. image: {
  9232. source: "./media/characters/talbot/front.svg",
  9233. extra: 594 / 544
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(1, "inch"),
  9241. default: true
  9242. },
  9243. ]
  9244. ))
  9245. characterMakers.push(() => makeCharacter(
  9246. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9247. {
  9248. front: {
  9249. height: math.unit(3 + 3 / 12, "feet"),
  9250. weight: math.unit(51.8, "lb"),
  9251. name: "Front",
  9252. image: {
  9253. source: "./media/characters/fliss/front.svg",
  9254. extra: 840 / 640
  9255. }
  9256. },
  9257. },
  9258. [
  9259. {
  9260. name: "Teeny Tiny",
  9261. height: math.unit(1, "mm")
  9262. },
  9263. {
  9264. name: "Small",
  9265. height: math.unit(1, "inch"),
  9266. default: true
  9267. },
  9268. {
  9269. name: "Standard Sylveon",
  9270. height: math.unit(3 + 3 / 12, "feet")
  9271. },
  9272. {
  9273. name: "Large Nuisance",
  9274. height: math.unit(33, "feet")
  9275. },
  9276. {
  9277. name: "City Filler",
  9278. height: math.unit(3000, "feet")
  9279. },
  9280. {
  9281. name: "New Horizon",
  9282. height: math.unit(6000, "miles")
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9288. {
  9289. front: {
  9290. height: math.unit(5, "cm"),
  9291. weight: math.unit(1.94, "g"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/fleta/front.svg",
  9295. extra: 835 / 803
  9296. }
  9297. },
  9298. back: {
  9299. height: math.unit(5, "cm"),
  9300. weight: math.unit(1.94, "g"),
  9301. name: "Back",
  9302. image: {
  9303. source: "./media/characters/fleta/back.svg",
  9304. extra: 835 / 803
  9305. }
  9306. },
  9307. },
  9308. [
  9309. {
  9310. name: "Micro",
  9311. height: math.unit(5, "cm"),
  9312. default: true
  9313. },
  9314. ]
  9315. ))
  9316. characterMakers.push(() => makeCharacter(
  9317. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9318. {
  9319. front: {
  9320. height: math.unit(6, "feet"),
  9321. weight: math.unit(225, "lb"),
  9322. name: "Front",
  9323. image: {
  9324. source: "./media/characters/dominic/front.svg",
  9325. extra: 1770 / 1620,
  9326. bottom: 0.025
  9327. }
  9328. },
  9329. back: {
  9330. height: math.unit(6, "feet"),
  9331. weight: math.unit(225, "lb"),
  9332. name: "Back",
  9333. image: {
  9334. source: "./media/characters/dominic/back.svg",
  9335. extra: 1745 / 1620,
  9336. bottom: 0.065
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Nano",
  9343. height: math.unit(0.1, "mm")
  9344. },
  9345. {
  9346. name: "Micro-",
  9347. height: math.unit(1, "mm")
  9348. },
  9349. {
  9350. name: "Micro",
  9351. height: math.unit(4, "inches")
  9352. },
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(6 + 4 / 12, "feet"),
  9356. default: true
  9357. },
  9358. {
  9359. name: "Macro",
  9360. height: math.unit(115, "feet")
  9361. },
  9362. {
  9363. name: "Macro+",
  9364. height: math.unit(955, "feet")
  9365. },
  9366. {
  9367. name: "Megamacro",
  9368. height: math.unit(8990, "feet")
  9369. },
  9370. {
  9371. name: "Gigmacro",
  9372. height: math.unit(9310, "miles")
  9373. },
  9374. {
  9375. name: "Teramacro",
  9376. height: math.unit(1567005010, "miles")
  9377. },
  9378. {
  9379. name: "Examacro",
  9380. height: math.unit(1425, "parsecs")
  9381. },
  9382. ]
  9383. ))
  9384. characterMakers.push(() => makeCharacter(
  9385. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9386. {
  9387. front: {
  9388. height: math.unit(400, "feet"),
  9389. weight: math.unit(44444444, "lb"),
  9390. name: "Front",
  9391. image: {
  9392. source: "./media/characters/major-colonel/front.svg"
  9393. }
  9394. },
  9395. back: {
  9396. height: math.unit(400, "feet"),
  9397. weight: math.unit(44444444, "lb"),
  9398. name: "Back",
  9399. image: {
  9400. source: "./media/characters/major-colonel/back.svg"
  9401. }
  9402. },
  9403. },
  9404. [
  9405. {
  9406. name: "Macro",
  9407. height: math.unit(400, "feet"),
  9408. default: true
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9414. {
  9415. catFront: {
  9416. height: math.unit(6, "feet"),
  9417. weight: math.unit(120, "lb"),
  9418. name: "Front (Cat Side)",
  9419. image: {
  9420. source: "./media/characters/axel-lycan/cat-front.svg",
  9421. extra: 430 / 402,
  9422. bottom: 43 / 472.35
  9423. }
  9424. },
  9425. catBack: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(120, "lb"),
  9428. name: "Back (Cat Side)",
  9429. image: {
  9430. source: "./media/characters/axel-lycan/cat-back.svg",
  9431. extra: 447 / 419,
  9432. bottom: 23.3 / 469
  9433. }
  9434. },
  9435. wolfFront: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(120, "lb"),
  9438. name: "Front (Wolf Side)",
  9439. image: {
  9440. source: "./media/characters/axel-lycan/wolf-front.svg",
  9441. extra: 485 / 456,
  9442. bottom: 19 / 504
  9443. }
  9444. },
  9445. wolfBack: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(120, "lb"),
  9448. name: "Back (Wolf Side)",
  9449. image: {
  9450. source: "./media/characters/axel-lycan/wolf-back.svg",
  9451. extra: 475 / 438,
  9452. bottom: 39.2 / 514
  9453. }
  9454. },
  9455. },
  9456. [
  9457. {
  9458. name: "Macro",
  9459. height: math.unit(1, "km"),
  9460. default: true
  9461. },
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9466. {
  9467. front: {
  9468. height: math.unit(5 + 9 / 12, "feet"),
  9469. weight: math.unit(175, "lb"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/vanrel-hyena/front.svg",
  9473. extra: 1086 / 1010,
  9474. bottom: 0.04
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(5 + 9 / 12, "feet"),
  9482. default: true
  9483. },
  9484. ]
  9485. ))
  9486. characterMakers.push(() => makeCharacter(
  9487. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9488. {
  9489. front: {
  9490. height: math.unit(6, "feet"),
  9491. weight: math.unit(103, "lb"),
  9492. name: "Front",
  9493. image: {
  9494. source: "./media/characters/abbott-absol/front.svg",
  9495. extra: 2010 / 1842
  9496. }
  9497. },
  9498. },
  9499. [
  9500. {
  9501. name: "Megamicro",
  9502. height: math.unit(0.1, "mm")
  9503. },
  9504. {
  9505. name: "Micro",
  9506. height: math.unit(1, "inch")
  9507. },
  9508. {
  9509. name: "Normal",
  9510. height: math.unit(6, "feet"),
  9511. default: true
  9512. },
  9513. ]
  9514. ))
  9515. characterMakers.push(() => makeCharacter(
  9516. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9517. {
  9518. front: {
  9519. height: math.unit(6, "feet"),
  9520. weight: math.unit(264, "lb"),
  9521. name: "Front",
  9522. image: {
  9523. source: "./media/characters/hector/front.svg",
  9524. extra: 2280 / 2130,
  9525. bottom: 0.07
  9526. }
  9527. },
  9528. },
  9529. [
  9530. {
  9531. name: "Normal",
  9532. height: math.unit(12.25, "foot"),
  9533. default: true
  9534. },
  9535. {
  9536. name: "Macro",
  9537. height: math.unit(160, "feet")
  9538. },
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9543. {
  9544. front: {
  9545. height: math.unit(6, "feet"),
  9546. weight: math.unit(150, "lb"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/sal/front.svg",
  9550. extra: 1846 / 1699,
  9551. bottom: 0.04
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Megamacro",
  9558. height: math.unit(10, "miles"),
  9559. default: true
  9560. },
  9561. ]
  9562. ))
  9563. characterMakers.push(() => makeCharacter(
  9564. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9565. {
  9566. front: {
  9567. height: math.unit(3, "meters"),
  9568. weight: math.unit(450, "kg"),
  9569. name: "front",
  9570. image: {
  9571. source: "./media/characters/ranger/front.svg",
  9572. extra: 2401 / 2243,
  9573. bottom: 0.05
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Normal",
  9580. height: math.unit(3, "meters"),
  9581. default: true
  9582. },
  9583. ]
  9584. ))
  9585. characterMakers.push(() => makeCharacter(
  9586. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9587. {
  9588. front: {
  9589. height: math.unit(14, "feet"),
  9590. weight: math.unit(800, "kg"),
  9591. name: "Front",
  9592. image: {
  9593. source: "./media/characters/theresa/front.svg",
  9594. extra: 3575 / 3346,
  9595. bottom: 0.03
  9596. }
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Normal",
  9602. height: math.unit(14, "feet"),
  9603. default: true
  9604. },
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9609. {
  9610. front: {
  9611. height: math.unit(6, "feet"),
  9612. weight: math.unit(3, "kg"),
  9613. name: "Front",
  9614. image: {
  9615. source: "./media/characters/ine/front.svg",
  9616. extra: 678 / 539,
  9617. bottom: 0.023
  9618. }
  9619. },
  9620. },
  9621. [
  9622. {
  9623. name: "Normal",
  9624. height: math.unit(2.265, "feet"),
  9625. default: true
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(5, "feet"),
  9634. weight: math.unit(30, "kg"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/vial/front.svg",
  9638. extra: 1365 / 1277,
  9639. bottom: 0.04
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(5, "feet"),
  9647. default: true
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9653. {
  9654. side: {
  9655. height: math.unit(3.4, "meters"),
  9656. weight: math.unit(1000, "lb"),
  9657. name: "Side",
  9658. image: {
  9659. source: "./media/characters/rovoska/side.svg",
  9660. extra: 4403 / 1515
  9661. }
  9662. },
  9663. },
  9664. [
  9665. {
  9666. name: "Normal",
  9667. height: math.unit(3.4, "meters"),
  9668. default: true
  9669. },
  9670. ]
  9671. ))
  9672. characterMakers.push(() => makeCharacter(
  9673. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9674. {
  9675. front: {
  9676. height: math.unit(8, "feet"),
  9677. weight: math.unit(315, "lb"),
  9678. name: "Front",
  9679. image: {
  9680. source: "./media/characters/gunner-rotthbauer/front.svg"
  9681. }
  9682. },
  9683. back: {
  9684. height: math.unit(8, "feet"),
  9685. weight: math.unit(315, "lb"),
  9686. name: "Back",
  9687. image: {
  9688. source: "./media/characters/gunner-rotthbauer/back.svg"
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Micro",
  9695. height: math.unit(3.5, "inches")
  9696. },
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(8, "feet"),
  9700. default: true
  9701. },
  9702. {
  9703. name: "Macro",
  9704. height: math.unit(250, "feet")
  9705. },
  9706. {
  9707. name: "Megamacro",
  9708. height: math.unit(1, "AU")
  9709. },
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9714. {
  9715. front: {
  9716. height: math.unit(5 + 5 / 12, "feet"),
  9717. weight: math.unit(140, "lb"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/allatia/front.svg",
  9721. extra: 1227 / 1180,
  9722. bottom: 0.027
  9723. }
  9724. },
  9725. },
  9726. [
  9727. {
  9728. name: "Normal",
  9729. height: math.unit(5 + 5 / 12, "feet")
  9730. },
  9731. {
  9732. name: "Macro",
  9733. height: math.unit(250, "feet"),
  9734. default: true
  9735. },
  9736. {
  9737. name: "Megamacro",
  9738. height: math.unit(8, "miles")
  9739. }
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9744. {
  9745. front: {
  9746. height: math.unit(6, "feet"),
  9747. weight: math.unit(120, "lb"),
  9748. name: "Front",
  9749. image: {
  9750. source: "./media/characters/tene/front.svg",
  9751. extra: 1728 / 1578,
  9752. bottom: 0.022
  9753. }
  9754. },
  9755. stomping: {
  9756. height: math.unit(2.025, "meters"),
  9757. weight: math.unit(120, "lb"),
  9758. name: "Stomping",
  9759. image: {
  9760. source: "./media/characters/tene/stomping.svg",
  9761. extra: 938 / 873,
  9762. bottom: 0.01
  9763. }
  9764. },
  9765. sitting: {
  9766. height: math.unit(1, "meter"),
  9767. weight: math.unit(120, "lb"),
  9768. name: "Sitting",
  9769. image: {
  9770. source: "./media/characters/tene/sitting.svg",
  9771. extra: 437 / 415,
  9772. bottom: 0.1
  9773. }
  9774. },
  9775. feral: {
  9776. height: math.unit(3.9, "feet"),
  9777. weight: math.unit(250, "lb"),
  9778. name: "Feral",
  9779. image: {
  9780. source: "./media/characters/tene/feral.svg",
  9781. extra: 717 / 458,
  9782. bottom: 0.179
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(6, "feet")
  9790. },
  9791. {
  9792. name: "Macro",
  9793. height: math.unit(300, "feet"),
  9794. default: true
  9795. },
  9796. {
  9797. name: "Megamacro",
  9798. height: math.unit(5, "miles")
  9799. },
  9800. ]
  9801. ))
  9802. characterMakers.push(() => makeCharacter(
  9803. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9804. {
  9805. side: {
  9806. height: math.unit(6, "feet"),
  9807. name: "Side",
  9808. image: {
  9809. source: "./media/characters/evander/side.svg",
  9810. extra: 877 / 477
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Normal",
  9817. height: math.unit(0.83, "meters"),
  9818. default: true
  9819. },
  9820. ]
  9821. ))
  9822. characterMakers.push(() => makeCharacter(
  9823. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9824. {
  9825. front: {
  9826. height: math.unit(12, "feet"),
  9827. weight: math.unit(1000, "lb"),
  9828. name: "Front",
  9829. image: {
  9830. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9831. extra: 1762 / 1611
  9832. }
  9833. },
  9834. back: {
  9835. height: math.unit(12, "feet"),
  9836. weight: math.unit(1000, "lb"),
  9837. name: "Back",
  9838. image: {
  9839. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9840. extra: 1762 / 1611
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(12, "feet"),
  9848. default: true
  9849. },
  9850. {
  9851. name: "Kaiju",
  9852. height: math.unit(150, "feet")
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9858. {
  9859. front: {
  9860. height: math.unit(6, "feet"),
  9861. weight: math.unit(150, "lb"),
  9862. name: "Front",
  9863. image: {
  9864. source: "./media/characters/zero-alurus/front.svg"
  9865. }
  9866. },
  9867. back: {
  9868. height: math.unit(6, "feet"),
  9869. weight: math.unit(150, "lb"),
  9870. name: "Back",
  9871. image: {
  9872. source: "./media/characters/zero-alurus/back.svg"
  9873. }
  9874. },
  9875. },
  9876. [
  9877. {
  9878. name: "Normal",
  9879. height: math.unit(5 + 10 / 12, "feet")
  9880. },
  9881. {
  9882. name: "Macro",
  9883. height: math.unit(60, "feet"),
  9884. default: true
  9885. },
  9886. {
  9887. name: "Macro+",
  9888. height: math.unit(450, "feet")
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9894. {
  9895. front: {
  9896. height: math.unit(6, "feet"),
  9897. weight: math.unit(200, "lb"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/mega-shi/front.svg",
  9901. extra: 1279 / 1250,
  9902. bottom: 0.02
  9903. }
  9904. },
  9905. back: {
  9906. height: math.unit(6, "feet"),
  9907. weight: math.unit(200, "lb"),
  9908. name: "Back",
  9909. image: {
  9910. source: "./media/characters/mega-shi/back.svg",
  9911. extra: 1279 / 1250,
  9912. bottom: 0.02
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Micro",
  9919. height: math.unit(16 + 6 / 12, "feet")
  9920. },
  9921. {
  9922. name: "Third Dimension",
  9923. height: math.unit(40, "meters")
  9924. },
  9925. {
  9926. name: "Normal",
  9927. height: math.unit(660, "feet"),
  9928. default: true
  9929. },
  9930. {
  9931. name: "Megamacro",
  9932. height: math.unit(10, "miles")
  9933. },
  9934. {
  9935. name: "Planetary Launch",
  9936. height: math.unit(500, "miles")
  9937. },
  9938. {
  9939. name: "Interstellar",
  9940. height: math.unit(1e9, "miles")
  9941. },
  9942. {
  9943. name: "Leaving the Universe",
  9944. height: math.unit(1, "gigaparsec")
  9945. },
  9946. {
  9947. name: "Travelling Universes",
  9948. height: math.unit(30e15, "parsecs")
  9949. },
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9954. {
  9955. front: {
  9956. height: math.unit(6, "feet"),
  9957. weight: math.unit(150, "lb"),
  9958. name: "Front",
  9959. image: {
  9960. source: "./media/characters/odyssey/front.svg",
  9961. extra: 1782 / 1582,
  9962. bottom: 0.01
  9963. }
  9964. },
  9965. side: {
  9966. height: math.unit(5.7, "feet"),
  9967. weight: math.unit(140, "lb"),
  9968. name: "Side",
  9969. image: {
  9970. source: "./media/characters/odyssey/side.svg",
  9971. extra: 6462 / 5700
  9972. }
  9973. },
  9974. },
  9975. [
  9976. {
  9977. name: "Normal",
  9978. height: math.unit(5 + 4 / 12, "feet")
  9979. },
  9980. {
  9981. name: "Macro",
  9982. height: math.unit(1, "km")
  9983. },
  9984. {
  9985. name: "Megamacro",
  9986. height: math.unit(3000, "km")
  9987. },
  9988. {
  9989. name: "Gigamacro",
  9990. height: math.unit(1, "AU"),
  9991. default: true
  9992. },
  9993. {
  9994. name: "Omniversal",
  9995. height: math.unit(100e14, "lightyears")
  9996. },
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10001. {
  10002. front: {
  10003. height: math.unit(6, "feet"),
  10004. weight: math.unit(300, "lb"),
  10005. name: "Front",
  10006. image: {
  10007. source: "./media/characters/mekuto/front.svg",
  10008. extra: 921 / 832,
  10009. bottom: 0.03
  10010. }
  10011. },
  10012. hand: {
  10013. height: math.unit(6 / 10.24, "feet"),
  10014. name: "Hand",
  10015. image: {
  10016. source: "./media/characters/mekuto/hand.svg"
  10017. }
  10018. },
  10019. foot: {
  10020. height: math.unit(6 / 5.05, "feet"),
  10021. name: "Foot",
  10022. image: {
  10023. source: "./media/characters/mekuto/foot.svg"
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Minimicro",
  10030. height: math.unit(0.2, "inches")
  10031. },
  10032. {
  10033. name: "Micro",
  10034. height: math.unit(1.5, "inches")
  10035. },
  10036. {
  10037. name: "Normal",
  10038. height: math.unit(5 + 11 / 12, "feet"),
  10039. default: true
  10040. },
  10041. {
  10042. name: "Minimacro",
  10043. height: math.unit(17 + 9 / 12, "feet")
  10044. },
  10045. {
  10046. name: "Macro",
  10047. height: math.unit(177.5, "feet")
  10048. },
  10049. {
  10050. name: "Megamacro",
  10051. height: math.unit(152, "miles")
  10052. },
  10053. ]
  10054. ))
  10055. characterMakers.push(() => makeCharacter(
  10056. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10057. {
  10058. front: {
  10059. height: math.unit(6.5, "inches"),
  10060. weight: math.unit(13, "oz"),
  10061. name: "Front",
  10062. image: {
  10063. source: "./media/characters/dafydd-tomos/front.svg",
  10064. extra: 2990 / 2603,
  10065. bottom: 0.03
  10066. }
  10067. },
  10068. },
  10069. [
  10070. {
  10071. name: "Micro",
  10072. height: math.unit(6.5, "inches"),
  10073. default: true
  10074. },
  10075. ]
  10076. ))
  10077. characterMakers.push(() => makeCharacter(
  10078. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10079. {
  10080. front: {
  10081. height: math.unit(6, "feet"),
  10082. weight: math.unit(150, "lb"),
  10083. name: "Front",
  10084. image: {
  10085. source: "./media/characters/splinter/front.svg",
  10086. extra: 2990 / 2882,
  10087. bottom: 0.04
  10088. }
  10089. },
  10090. back: {
  10091. height: math.unit(6, "feet"),
  10092. weight: math.unit(150, "lb"),
  10093. name: "Back",
  10094. image: {
  10095. source: "./media/characters/splinter/back.svg",
  10096. extra: 2990 / 2882,
  10097. bottom: 0.04
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Normal",
  10104. height: math.unit(6, "feet")
  10105. },
  10106. {
  10107. name: "Macro",
  10108. height: math.unit(230, "meters"),
  10109. default: true
  10110. },
  10111. ]
  10112. ))
  10113. characterMakers.push(() => makeCharacter(
  10114. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10115. {
  10116. front: {
  10117. height: math.unit(4 + 10 / 12, "feet"),
  10118. weight: math.unit(480, "lb"),
  10119. name: "Front",
  10120. image: {
  10121. source: "./media/characters/snow-gabumon/front.svg",
  10122. extra: 1140 / 963,
  10123. bottom: 0.058
  10124. }
  10125. },
  10126. back: {
  10127. height: math.unit(4 + 10 / 12, "feet"),
  10128. weight: math.unit(480, "lb"),
  10129. name: "Back",
  10130. image: {
  10131. source: "./media/characters/snow-gabumon/back.svg",
  10132. extra: 1115 / 962,
  10133. bottom: 0.041
  10134. }
  10135. },
  10136. frontUndresed: {
  10137. height: math.unit(4 + 10 / 12, "feet"),
  10138. weight: math.unit(480, "lb"),
  10139. name: "Front (Undressed)",
  10140. image: {
  10141. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10142. extra: 1061 / 960,
  10143. bottom: 0.045
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Micro",
  10150. height: math.unit(1, "inch")
  10151. },
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(4 + 10 / 12, "feet"),
  10155. default: true
  10156. },
  10157. {
  10158. name: "Macro",
  10159. height: math.unit(200, "feet")
  10160. },
  10161. {
  10162. name: "Megamacro",
  10163. height: math.unit(120, "miles")
  10164. },
  10165. {
  10166. name: "Gigamacro",
  10167. height: math.unit(9800, "miles")
  10168. },
  10169. ]
  10170. ))
  10171. characterMakers.push(() => makeCharacter(
  10172. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10173. {
  10174. front: {
  10175. height: math.unit(1.7, "meters"),
  10176. weight: math.unit(140, "lb"),
  10177. name: "Front",
  10178. image: {
  10179. source: "./media/characters/moody/front.svg",
  10180. extra: 3226 / 3007,
  10181. bottom: 0.087
  10182. }
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Micro",
  10188. height: math.unit(1, "mm")
  10189. },
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(1.7, "meters"),
  10193. default: true
  10194. },
  10195. {
  10196. name: "Macro",
  10197. height: math.unit(80, "meters")
  10198. },
  10199. {
  10200. name: "Macro+",
  10201. height: math.unit(500, "meters")
  10202. },
  10203. ]
  10204. ))
  10205. characterMakers.push(() => makeCharacter(
  10206. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10207. {
  10208. front: {
  10209. height: math.unit(6, "feet"),
  10210. weight: math.unit(150, "lb"),
  10211. name: "Front",
  10212. image: {
  10213. source: "./media/characters/zyas/front.svg",
  10214. extra: 1180 / 1120,
  10215. bottom: 0.045
  10216. }
  10217. },
  10218. },
  10219. [
  10220. {
  10221. name: "Normal",
  10222. height: math.unit(10, "feet"),
  10223. default: true
  10224. },
  10225. {
  10226. name: "Macro",
  10227. height: math.unit(500, "feet")
  10228. },
  10229. {
  10230. name: "Megamacro",
  10231. height: math.unit(5, "miles")
  10232. },
  10233. {
  10234. name: "Teramacro",
  10235. height: math.unit(150000, "miles")
  10236. },
  10237. ]
  10238. ))
  10239. characterMakers.push(() => makeCharacter(
  10240. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10241. {
  10242. front: {
  10243. height: math.unit(6, "feet"),
  10244. weight: math.unit(150, "lb"),
  10245. name: "Front",
  10246. image: {
  10247. source: "./media/characters/cuon/front.svg",
  10248. extra: 1390 / 1320,
  10249. bottom: 0.008
  10250. }
  10251. },
  10252. },
  10253. [
  10254. {
  10255. name: "Micro",
  10256. height: math.unit(3, "inches")
  10257. },
  10258. {
  10259. name: "Normal",
  10260. height: math.unit(18 + 9 / 12, "feet"),
  10261. default: true
  10262. },
  10263. {
  10264. name: "Macro",
  10265. height: math.unit(360, "feet")
  10266. },
  10267. {
  10268. name: "Megamacro",
  10269. height: math.unit(360, "miles")
  10270. },
  10271. ]
  10272. ))
  10273. characterMakers.push(() => makeCharacter(
  10274. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10275. {
  10276. front: {
  10277. height: math.unit(2.4, "meters"),
  10278. weight: math.unit(70, "kg"),
  10279. name: "Front",
  10280. image: {
  10281. source: "./media/characters/nyanuxk/front.svg",
  10282. extra: 1172 / 1084,
  10283. bottom: 0.065
  10284. }
  10285. },
  10286. side: {
  10287. height: math.unit(2.4, "meters"),
  10288. weight: math.unit(70, "kg"),
  10289. name: "Side",
  10290. image: {
  10291. source: "./media/characters/nyanuxk/side.svg",
  10292. extra: 1190 / 1132,
  10293. bottom: 0.007
  10294. }
  10295. },
  10296. back: {
  10297. height: math.unit(2.4, "meters"),
  10298. weight: math.unit(70, "kg"),
  10299. name: "Back",
  10300. image: {
  10301. source: "./media/characters/nyanuxk/back.svg",
  10302. extra: 1200 / 1141,
  10303. bottom: 0.015
  10304. }
  10305. },
  10306. foot: {
  10307. height: math.unit(0.52, "meters"),
  10308. name: "Foot",
  10309. image: {
  10310. source: "./media/characters/nyanuxk/foot.svg"
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Micro",
  10317. height: math.unit(2, "cm")
  10318. },
  10319. {
  10320. name: "Normal",
  10321. height: math.unit(2.4, "meters"),
  10322. default: true
  10323. },
  10324. {
  10325. name: "Smaller Macro",
  10326. height: math.unit(120, "meters")
  10327. },
  10328. {
  10329. name: "Bigger Macro",
  10330. height: math.unit(1.2, "km")
  10331. },
  10332. {
  10333. name: "Megamacro",
  10334. height: math.unit(15, "kilometers")
  10335. },
  10336. {
  10337. name: "Gigamacro",
  10338. height: math.unit(2000, "km")
  10339. },
  10340. {
  10341. name: "Teramacro",
  10342. height: math.unit(500000, "km")
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10348. {
  10349. side: {
  10350. height: math.unit(6, "feet"),
  10351. name: "Side",
  10352. image: {
  10353. source: "./media/characters/ailbhe/side.svg",
  10354. extra: 757 / 464,
  10355. bottom: 0.041
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Normal",
  10362. height: math.unit(1.07, "meters"),
  10363. default: true
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(120, "kg"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/zevulfius/front.svg",
  10376. extra: 965 / 903
  10377. }
  10378. },
  10379. side: {
  10380. height: math.unit(6, "feet"),
  10381. weight: math.unit(120, "kg"),
  10382. name: "Side",
  10383. image: {
  10384. source: "./media/characters/zevulfius/side.svg",
  10385. extra: 939 / 900
  10386. }
  10387. },
  10388. back: {
  10389. height: math.unit(6, "feet"),
  10390. weight: math.unit(120, "kg"),
  10391. name: "Back",
  10392. image: {
  10393. source: "./media/characters/zevulfius/back.svg",
  10394. extra: 918 / 854,
  10395. bottom: 0.005
  10396. }
  10397. },
  10398. foot: {
  10399. height: math.unit(6 / 3.72, "feet"),
  10400. name: "Foot",
  10401. image: {
  10402. source: "./media/characters/zevulfius/foot.svg"
  10403. }
  10404. },
  10405. },
  10406. [
  10407. {
  10408. name: "Macro",
  10409. height: math.unit(750, "meters")
  10410. },
  10411. {
  10412. name: "Megamacro",
  10413. height: math.unit(20, "km"),
  10414. default: true
  10415. },
  10416. {
  10417. name: "Gigamacro",
  10418. height: math.unit(2000, "km")
  10419. },
  10420. {
  10421. name: "Teramacro",
  10422. height: math.unit(250000, "km")
  10423. },
  10424. ]
  10425. ))
  10426. characterMakers.push(() => makeCharacter(
  10427. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10428. {
  10429. front: {
  10430. height: math.unit(100, "feet"),
  10431. weight: math.unit(350, "kg"),
  10432. name: "Front",
  10433. image: {
  10434. source: "./media/characters/rikes/front.svg",
  10435. extra: 1565 / 1483,
  10436. bottom: 0.017
  10437. }
  10438. },
  10439. },
  10440. [
  10441. {
  10442. name: "Macro",
  10443. height: math.unit(100, "feet"),
  10444. default: true
  10445. },
  10446. ]
  10447. ))
  10448. characterMakers.push(() => makeCharacter(
  10449. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10450. {
  10451. anthro: {
  10452. height: math.unit(8, "feet"),
  10453. weight: math.unit(120, "kg"),
  10454. name: "Anthro",
  10455. image: {
  10456. source: "./media/characters/adam-silver-mane/anthro.svg",
  10457. extra: 5743 / 5339,
  10458. bottom: 0.07
  10459. }
  10460. },
  10461. taur: {
  10462. height: math.unit(16, "feet"),
  10463. weight: math.unit(1500, "kg"),
  10464. name: "Taur",
  10465. image: {
  10466. source: "./media/characters/adam-silver-mane/taur.svg",
  10467. extra: 1713 / 1571,
  10468. bottom: 0.01
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Normal",
  10475. height: math.unit(8, "feet")
  10476. },
  10477. {
  10478. name: "Minimacro",
  10479. height: math.unit(80, "feet")
  10480. },
  10481. {
  10482. name: "Macro",
  10483. height: math.unit(800, "feet"),
  10484. default: true
  10485. },
  10486. {
  10487. name: "Megamacro",
  10488. height: math.unit(8000, "feet")
  10489. },
  10490. {
  10491. name: "Gigamacro",
  10492. height: math.unit(800, "miles")
  10493. },
  10494. {
  10495. name: "Teramacro",
  10496. height: math.unit(80000, "miles")
  10497. },
  10498. {
  10499. name: "Celestial",
  10500. height: math.unit(8e6, "miles")
  10501. },
  10502. {
  10503. name: "Star Dragon",
  10504. height: math.unit(800000, "parsecs")
  10505. },
  10506. {
  10507. name: "Godly",
  10508. height: math.unit(800, "teraparsecs")
  10509. },
  10510. ]
  10511. ))
  10512. characterMakers.push(() => makeCharacter(
  10513. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10514. {
  10515. front: {
  10516. height: math.unit(6, "feet"),
  10517. weight: math.unit(150, "lb"),
  10518. name: "Front",
  10519. image: {
  10520. source: "./media/characters/ky'owin/front.svg",
  10521. extra: 3888 / 3068,
  10522. bottom: 0.015
  10523. }
  10524. },
  10525. },
  10526. [
  10527. {
  10528. name: "Normal",
  10529. height: math.unit(6 + 8 / 12, "feet")
  10530. },
  10531. {
  10532. name: "Large",
  10533. height: math.unit(68, "feet")
  10534. },
  10535. {
  10536. name: "Macro",
  10537. height: math.unit(132, "feet")
  10538. },
  10539. {
  10540. name: "Macro+",
  10541. height: math.unit(340, "feet")
  10542. },
  10543. {
  10544. name: "Macro++",
  10545. height: math.unit(680, "feet"),
  10546. default: true
  10547. },
  10548. {
  10549. name: "Megamacro",
  10550. height: math.unit(1, "mile")
  10551. },
  10552. {
  10553. name: "Megamacro+",
  10554. height: math.unit(10, "miles")
  10555. },
  10556. ]
  10557. ))
  10558. characterMakers.push(() => makeCharacter(
  10559. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10560. {
  10561. front: {
  10562. height: math.unit(4, "feet"),
  10563. weight: math.unit(50, "lb"),
  10564. name: "Front",
  10565. image: {
  10566. source: "./media/characters/mal/front.svg",
  10567. extra: 785 / 724,
  10568. bottom: 0.07
  10569. }
  10570. },
  10571. },
  10572. [
  10573. {
  10574. name: "Micro",
  10575. height: math.unit(4, "inches")
  10576. },
  10577. {
  10578. name: "Normal",
  10579. height: math.unit(4, "feet"),
  10580. default: true
  10581. },
  10582. {
  10583. name: "Macro",
  10584. height: math.unit(200, "feet")
  10585. },
  10586. ]
  10587. ))
  10588. characterMakers.push(() => makeCharacter(
  10589. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10590. {
  10591. front: {
  10592. height: math.unit(6, "feet"),
  10593. weight: math.unit(150, "lb"),
  10594. name: "Front",
  10595. image: {
  10596. source: "./media/characters/jordan-deware/front.svg",
  10597. extra: 1191 / 1012
  10598. }
  10599. },
  10600. },
  10601. [
  10602. {
  10603. name: "Nano",
  10604. height: math.unit(0.01, "mm")
  10605. },
  10606. {
  10607. name: "Minimicro",
  10608. height: math.unit(1, "mm")
  10609. },
  10610. {
  10611. name: "Micro",
  10612. height: math.unit(0.5, "inches")
  10613. },
  10614. {
  10615. name: "Normal",
  10616. height: math.unit(4, "feet"),
  10617. default: true
  10618. },
  10619. {
  10620. name: "Minimacro",
  10621. height: math.unit(40, "meters")
  10622. },
  10623. {
  10624. name: "Small Macro",
  10625. height: math.unit(400, "meters")
  10626. },
  10627. {
  10628. name: "Macro",
  10629. height: math.unit(4, "miles")
  10630. },
  10631. {
  10632. name: "Megamacro",
  10633. height: math.unit(40, "miles")
  10634. },
  10635. {
  10636. name: "Megamacro+",
  10637. height: math.unit(400, "miles")
  10638. },
  10639. {
  10640. name: "Gigamacro",
  10641. height: math.unit(400000, "miles")
  10642. },
  10643. ]
  10644. ))
  10645. characterMakers.push(() => makeCharacter(
  10646. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10647. {
  10648. side: {
  10649. height: math.unit(6, "feet"),
  10650. weight: math.unit(150, "lb"),
  10651. name: "Side",
  10652. image: {
  10653. source: "./media/characters/kimiko/side.svg",
  10654. extra: 600 / 358
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Normal",
  10661. height: math.unit(15, "feet"),
  10662. default: true
  10663. },
  10664. {
  10665. name: "Macro",
  10666. height: math.unit(220, "feet")
  10667. },
  10668. {
  10669. name: "Macro+",
  10670. height: math.unit(1450, "feet")
  10671. },
  10672. {
  10673. name: "Megamacro",
  10674. height: math.unit(11500, "feet")
  10675. },
  10676. {
  10677. name: "Gigamacro",
  10678. height: math.unit(9500, "miles")
  10679. },
  10680. {
  10681. name: "Teramacro",
  10682. height: math.unit(2208005005, "miles")
  10683. },
  10684. {
  10685. name: "Examacro",
  10686. height: math.unit(2750, "parsecs")
  10687. },
  10688. {
  10689. name: "Zettamacro",
  10690. height: math.unit(101500, "parsecs")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10696. {
  10697. front: {
  10698. height: math.unit(6, "feet"),
  10699. weight: math.unit(70, "kg"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/andrew-sleepy/front.svg"
  10703. }
  10704. },
  10705. side: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(70, "kg"),
  10708. name: "Side",
  10709. image: {
  10710. source: "./media/characters/andrew-sleepy/side.svg"
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Micro",
  10717. height: math.unit(1, "mm"),
  10718. default: true
  10719. },
  10720. ]
  10721. ))
  10722. characterMakers.push(() => makeCharacter(
  10723. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10724. {
  10725. front: {
  10726. height: math.unit(6, "feet"),
  10727. weight: math.unit(150, "lb"),
  10728. name: "Front",
  10729. image: {
  10730. source: "./media/characters/judio/front.svg",
  10731. extra: 1258 / 1110
  10732. }
  10733. },
  10734. },
  10735. [
  10736. {
  10737. name: "Normal",
  10738. height: math.unit(5 + 6 / 12, "feet")
  10739. },
  10740. {
  10741. name: "Macro",
  10742. height: math.unit(1000, "feet"),
  10743. default: true
  10744. },
  10745. {
  10746. name: "Megamacro",
  10747. height: math.unit(10, "miles")
  10748. },
  10749. ]
  10750. ))
  10751. characterMakers.push(() => makeCharacter(
  10752. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10753. {
  10754. front: {
  10755. height: math.unit(6, "feet"),
  10756. weight: math.unit(68, "kg"),
  10757. name: "Front",
  10758. image: {
  10759. source: "./media/characters/nomaxice/front.svg",
  10760. extra: 1498 / 1073,
  10761. bottom: 0.075
  10762. }
  10763. },
  10764. foot: {
  10765. height: math.unit(1.1, "feet"),
  10766. name: "Foot",
  10767. image: {
  10768. source: "./media/characters/nomaxice/foot.svg"
  10769. }
  10770. },
  10771. },
  10772. [
  10773. {
  10774. name: "Micro",
  10775. height: math.unit(8, "cm")
  10776. },
  10777. {
  10778. name: "Norm",
  10779. height: math.unit(1.82, "m")
  10780. },
  10781. {
  10782. name: "Norm+",
  10783. height: math.unit(8.8, "feet")
  10784. },
  10785. {
  10786. name: "Big",
  10787. height: math.unit(8, "meters"),
  10788. default: true
  10789. },
  10790. {
  10791. name: "Macro",
  10792. height: math.unit(18, "meters")
  10793. },
  10794. {
  10795. name: "Macro+",
  10796. height: math.unit(88, "meters")
  10797. },
  10798. ]
  10799. ))
  10800. characterMakers.push(() => makeCharacter(
  10801. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10802. {
  10803. front: {
  10804. height: math.unit(12, "feet"),
  10805. weight: math.unit(1.5, "tons"),
  10806. name: "Front",
  10807. image: {
  10808. source: "./media/characters/dydros/front.svg",
  10809. extra: 863 / 800,
  10810. bottom: 0.015
  10811. }
  10812. },
  10813. back: {
  10814. height: math.unit(12, "feet"),
  10815. weight: math.unit(1.5, "tons"),
  10816. name: "Back",
  10817. image: {
  10818. source: "./media/characters/dydros/back.svg",
  10819. extra: 900 / 843,
  10820. bottom: 0.005
  10821. }
  10822. },
  10823. },
  10824. [
  10825. {
  10826. name: "Normal",
  10827. height: math.unit(12, "feet"),
  10828. default: true
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10834. {
  10835. front: {
  10836. height: math.unit(6, "feet"),
  10837. weight: math.unit(100, "kg"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/riggi/front.svg",
  10841. extra: 5787 / 5303
  10842. }
  10843. },
  10844. hyper: {
  10845. height: math.unit(6 * 5 / 3, "feet"),
  10846. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10847. name: "Hyper",
  10848. image: {
  10849. source: "./media/characters/riggi/hyper.svg",
  10850. extra: 3595 / 3485
  10851. }
  10852. },
  10853. },
  10854. [
  10855. {
  10856. name: "Small Macro",
  10857. height: math.unit(50, "feet")
  10858. },
  10859. {
  10860. name: "Default",
  10861. height: math.unit(200, "feet"),
  10862. default: true
  10863. },
  10864. {
  10865. name: "Loom",
  10866. height: math.unit(10000, "feet")
  10867. },
  10868. {
  10869. name: "Cruising Altitude",
  10870. height: math.unit(30000, "feet")
  10871. },
  10872. {
  10873. name: "Megamacro",
  10874. height: math.unit(100, "miles")
  10875. },
  10876. {
  10877. name: "Continent Sized",
  10878. height: math.unit(2800, "miles")
  10879. },
  10880. {
  10881. name: "Earth Sized",
  10882. height: math.unit(8000, "miles")
  10883. },
  10884. ]
  10885. ))
  10886. characterMakers.push(() => makeCharacter(
  10887. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10888. {
  10889. front: {
  10890. height: math.unit(6, "feet"),
  10891. weight: math.unit(250, "lb"),
  10892. name: "Front",
  10893. image: {
  10894. source: "./media/characters/alexi/front.svg",
  10895. extra: 3483 / 3291,
  10896. bottom: 0.04
  10897. }
  10898. },
  10899. back: {
  10900. height: math.unit(6, "feet"),
  10901. weight: math.unit(250, "lb"),
  10902. name: "Back",
  10903. image: {
  10904. source: "./media/characters/alexi/back.svg",
  10905. extra: 3533 / 3356,
  10906. bottom: 0.021
  10907. }
  10908. },
  10909. frontTransforming: {
  10910. height: math.unit(8.58, "feet"),
  10911. weight: math.unit(1300, "lb"),
  10912. name: "Transforming",
  10913. image: {
  10914. source: "./media/characters/alexi/front-transforming.svg",
  10915. extra: 437 / 409,
  10916. bottom: 19 / 458.66
  10917. }
  10918. },
  10919. frontTransformed: {
  10920. height: math.unit(12.5, "feet"),
  10921. weight: math.unit(4000, "lb"),
  10922. name: "Transformed",
  10923. image: {
  10924. source: "./media/characters/alexi/front-transformed.svg",
  10925. extra: 639 / 614,
  10926. bottom: 30.55 / 671
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Normal",
  10933. height: math.unit(14, "feet"),
  10934. default: true
  10935. },
  10936. {
  10937. name: "Minimacro",
  10938. height: math.unit(30, "meters")
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(500, "meters")
  10943. },
  10944. {
  10945. name: "Megamacro",
  10946. height: math.unit(9000, "km")
  10947. },
  10948. {
  10949. name: "Teramacro",
  10950. height: math.unit(384000, "km")
  10951. },
  10952. ]
  10953. ))
  10954. characterMakers.push(() => makeCharacter(
  10955. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10956. {
  10957. front: {
  10958. height: math.unit(6, "feet"),
  10959. weight: math.unit(150, "lb"),
  10960. name: "Front",
  10961. image: {
  10962. source: "./media/characters/kayroo/front.svg",
  10963. extra: 1153 / 1038,
  10964. bottom: 0.06
  10965. }
  10966. },
  10967. foot: {
  10968. height: math.unit(6, "feet"),
  10969. weight: math.unit(150, "lb"),
  10970. name: "Foot",
  10971. image: {
  10972. source: "./media/characters/kayroo/foot.svg"
  10973. }
  10974. },
  10975. },
  10976. [
  10977. {
  10978. name: "Normal",
  10979. height: math.unit(8, "feet"),
  10980. default: true
  10981. },
  10982. {
  10983. name: "Minimacro",
  10984. height: math.unit(250, "feet")
  10985. },
  10986. {
  10987. name: "Macro",
  10988. height: math.unit(2800, "feet")
  10989. },
  10990. {
  10991. name: "Megamacro",
  10992. height: math.unit(5200, "feet")
  10993. },
  10994. {
  10995. name: "Gigamacro",
  10996. height: math.unit(27000, "feet")
  10997. },
  10998. {
  10999. name: "Omega",
  11000. height: math.unit(45000, "feet")
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11006. {
  11007. front: {
  11008. height: math.unit(18, "feet"),
  11009. weight: math.unit(5800, "lb"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/rhys/front.svg",
  11013. extra: 3386 / 3090,
  11014. bottom: 0.07
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Normal",
  11021. height: math.unit(18, "feet"),
  11022. default: true
  11023. },
  11024. {
  11025. name: "Working Size",
  11026. height: math.unit(200, "feet")
  11027. },
  11028. {
  11029. name: "Demolition Size",
  11030. height: math.unit(2000, "feet")
  11031. },
  11032. {
  11033. name: "Maximum Licensed Size",
  11034. height: math.unit(5, "miles")
  11035. },
  11036. {
  11037. name: "Maximum Observed Size",
  11038. height: math.unit(10, "yottameters")
  11039. },
  11040. ]
  11041. ))
  11042. characterMakers.push(() => makeCharacter(
  11043. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11044. {
  11045. front: {
  11046. height: math.unit(6, "feet"),
  11047. weight: math.unit(250, "lb"),
  11048. name: "Front",
  11049. image: {
  11050. source: "./media/characters/toto/front.svg",
  11051. extra: 527 / 479,
  11052. bottom: 0.05
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Micro",
  11059. height: math.unit(3, "feet")
  11060. },
  11061. {
  11062. name: "Normal",
  11063. height: math.unit(10, "feet")
  11064. },
  11065. {
  11066. name: "Macro",
  11067. height: math.unit(150, "feet"),
  11068. default: true
  11069. },
  11070. {
  11071. name: "Megamacro",
  11072. height: math.unit(1200, "feet")
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "King", species: ["lion"], tags: ["anthro"] },
  11078. {
  11079. back: {
  11080. height: math.unit(6, "feet"),
  11081. weight: math.unit(150, "lb"),
  11082. name: "Back",
  11083. image: {
  11084. source: "./media/characters/king/back.svg"
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Micro",
  11091. height: math.unit(2, "inches")
  11092. },
  11093. {
  11094. name: "Normal",
  11095. height: math.unit(8, "feet")
  11096. },
  11097. {
  11098. name: "Macro",
  11099. height: math.unit(200, "feet"),
  11100. default: true
  11101. },
  11102. {
  11103. name: "Megamacro",
  11104. height: math.unit(50, "miles")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11110. {
  11111. anthro: {
  11112. height: math.unit(6 + 5 / 12, "feet"),
  11113. weight: math.unit(280, "lb"),
  11114. name: "Anthro",
  11115. image: {
  11116. source: "./media/characters/cordite/anthro.svg",
  11117. extra: 1986 / 1905,
  11118. bottom: 0.025
  11119. }
  11120. },
  11121. feral: {
  11122. height: math.unit(2, "feet"),
  11123. weight: math.unit(90, "lb"),
  11124. name: "Feral",
  11125. image: {
  11126. source: "./media/characters/cordite/feral.svg",
  11127. extra: 1260 / 755,
  11128. bottom: 0.05
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Normal",
  11135. height: math.unit(6 + 5 / 12, "feet"),
  11136. default: true
  11137. },
  11138. ]
  11139. ))
  11140. characterMakers.push(() => makeCharacter(
  11141. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11142. {
  11143. front: {
  11144. height: math.unit(6, "feet"),
  11145. weight: math.unit(150, "lb"),
  11146. name: "Front",
  11147. image: {
  11148. source: "./media/characters/pianostrong/front.svg",
  11149. extra: 6577 / 6254,
  11150. bottom: 0.02
  11151. }
  11152. },
  11153. side: {
  11154. height: math.unit(6, "feet"),
  11155. weight: math.unit(150, "lb"),
  11156. name: "Side",
  11157. image: {
  11158. source: "./media/characters/pianostrong/side.svg",
  11159. extra: 6106 / 5730
  11160. }
  11161. },
  11162. back: {
  11163. height: math.unit(6, "feet"),
  11164. weight: math.unit(150, "lb"),
  11165. name: "Back",
  11166. image: {
  11167. source: "./media/characters/pianostrong/back.svg",
  11168. extra: 6085 / 5733,
  11169. bottom: 0.01
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Macro",
  11176. height: math.unit(100, "feet")
  11177. },
  11178. {
  11179. name: "Macro+",
  11180. height: math.unit(300, "feet"),
  11181. default: true
  11182. },
  11183. {
  11184. name: "Macro++",
  11185. height: math.unit(1000, "feet")
  11186. },
  11187. ]
  11188. ))
  11189. characterMakers.push(() => makeCharacter(
  11190. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11191. {
  11192. front: {
  11193. height: math.unit(6, "feet"),
  11194. weight: math.unit(150, "lb"),
  11195. name: "Front",
  11196. image: {
  11197. source: "./media/characters/kona/front.svg",
  11198. extra: 2960 / 2629,
  11199. bottom: 0.005
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Normal",
  11206. height: math.unit(11 + 8 / 12, "feet")
  11207. },
  11208. {
  11209. name: "Macro",
  11210. height: math.unit(850, "feet"),
  11211. default: true
  11212. },
  11213. {
  11214. name: "Macro+",
  11215. height: math.unit(1.5, "km"),
  11216. default: true
  11217. },
  11218. {
  11219. name: "Megamacro",
  11220. height: math.unit(80, "miles")
  11221. },
  11222. {
  11223. name: "Gigamacro",
  11224. height: math.unit(3500, "miles")
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11230. {
  11231. side: {
  11232. height: math.unit(1.9, "meters"),
  11233. weight: math.unit(326, "kg"),
  11234. name: "Side",
  11235. image: {
  11236. source: "./media/characters/levi/side.svg",
  11237. extra: 1704 / 1334,
  11238. bottom: 0.02
  11239. }
  11240. },
  11241. },
  11242. [
  11243. {
  11244. name: "Normal",
  11245. height: math.unit(1.9, "meters"),
  11246. default: true
  11247. },
  11248. {
  11249. name: "Macro",
  11250. height: math.unit(20, "meters")
  11251. },
  11252. {
  11253. name: "Macro+",
  11254. height: math.unit(200, "meters")
  11255. },
  11256. {
  11257. name: "Megamacro",
  11258. height: math.unit(2, "km")
  11259. },
  11260. {
  11261. name: "Megamacro+",
  11262. height: math.unit(20, "km")
  11263. },
  11264. {
  11265. name: "Gigamacro",
  11266. height: math.unit(2500, "km")
  11267. },
  11268. {
  11269. name: "Gigamacro+",
  11270. height: math.unit(120000, "km")
  11271. },
  11272. {
  11273. name: "Teramacro",
  11274. height: math.unit(7.77e6, "km")
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11280. {
  11281. front: {
  11282. height: math.unit(6 + 4/12, "feet"),
  11283. weight: math.unit(190, "lb"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/bmc/front.svg",
  11287. extra: 1626/1472,
  11288. bottom: 79/1705
  11289. }
  11290. },
  11291. back: {
  11292. height: math.unit(6 + 4/12, "feet"),
  11293. weight: math.unit(190, "lb"),
  11294. name: "Back",
  11295. image: {
  11296. source: "./media/characters/bmc/back.svg",
  11297. extra: 1640/1479,
  11298. bottom: 45/1685
  11299. }
  11300. },
  11301. frontArmor: {
  11302. height: math.unit(6 + 4/12, "feet"),
  11303. weight: math.unit(190, "lb"),
  11304. name: "Front-armor",
  11305. image: {
  11306. source: "./media/characters/bmc/front-armor.svg",
  11307. extra: 1538/1468,
  11308. bottom: 79/1617
  11309. }
  11310. },
  11311. },
  11312. [
  11313. {
  11314. name: "Human-sized",
  11315. height: math.unit(6 + 4 / 12, "feet")
  11316. },
  11317. {
  11318. name: "Interactive Size",
  11319. height: math.unit(25, "feet")
  11320. },
  11321. {
  11322. name: "Small",
  11323. height: math.unit(250, "feet")
  11324. },
  11325. {
  11326. name: "Normal",
  11327. height: math.unit(1250, "feet"),
  11328. default: true
  11329. },
  11330. {
  11331. name: "Good Day",
  11332. height: math.unit(88, "miles")
  11333. },
  11334. {
  11335. name: "Largest Measured Size",
  11336. height: math.unit(105.960, "galaxies")
  11337. },
  11338. ]
  11339. ))
  11340. characterMakers.push(() => makeCharacter(
  11341. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11342. {
  11343. front: {
  11344. height: math.unit(20, "feet"),
  11345. weight: math.unit(2016, "kg"),
  11346. name: "Front",
  11347. image: {
  11348. source: "./media/characters/sven-the-kaiju/front.svg",
  11349. extra: 1277/1250,
  11350. bottom: 35/1312
  11351. }
  11352. },
  11353. mouth: {
  11354. height: math.unit(1.85, "feet"),
  11355. name: "Mouth",
  11356. image: {
  11357. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11358. }
  11359. },
  11360. },
  11361. [
  11362. {
  11363. name: "Fairy",
  11364. height: math.unit(6, "inches")
  11365. },
  11366. {
  11367. name: "Normal",
  11368. height: math.unit(20, "feet"),
  11369. default: true
  11370. },
  11371. {
  11372. name: "Rampage",
  11373. height: math.unit(200, "feet")
  11374. },
  11375. {
  11376. name: "Archfey Forest Guardian",
  11377. height: math.unit(1, "mile")
  11378. },
  11379. ]
  11380. ))
  11381. characterMakers.push(() => makeCharacter(
  11382. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11383. {
  11384. front: {
  11385. height: math.unit(4, "meters"),
  11386. weight: math.unit(2, "tons"),
  11387. name: "Front",
  11388. image: {
  11389. source: "./media/characters/marik/front.svg",
  11390. extra: 1057 / 1003,
  11391. bottom: 0.08
  11392. }
  11393. },
  11394. },
  11395. [
  11396. {
  11397. name: "Normal",
  11398. height: math.unit(4, "meters"),
  11399. default: true
  11400. },
  11401. {
  11402. name: "Macro",
  11403. height: math.unit(20, "meters")
  11404. },
  11405. {
  11406. name: "Megamacro",
  11407. height: math.unit(50, "km")
  11408. },
  11409. {
  11410. name: "Gigamacro",
  11411. height: math.unit(100, "km")
  11412. },
  11413. {
  11414. name: "Alpha Macro",
  11415. height: math.unit(7.88e7, "yottameters")
  11416. },
  11417. ]
  11418. ))
  11419. characterMakers.push(() => makeCharacter(
  11420. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11421. {
  11422. front: {
  11423. height: math.unit(6, "feet"),
  11424. weight: math.unit(110, "lb"),
  11425. name: "Front",
  11426. image: {
  11427. source: "./media/characters/mel/front.svg",
  11428. extra: 736 / 617,
  11429. bottom: 0.017
  11430. }
  11431. },
  11432. },
  11433. [
  11434. {
  11435. name: "Pico",
  11436. height: math.unit(3, "pm")
  11437. },
  11438. {
  11439. name: "Nano",
  11440. height: math.unit(3, "nm")
  11441. },
  11442. {
  11443. name: "Micro",
  11444. height: math.unit(0.3, "mm"),
  11445. default: true
  11446. },
  11447. {
  11448. name: "Micro+",
  11449. height: math.unit(3, "mm")
  11450. },
  11451. {
  11452. name: "Normal",
  11453. height: math.unit(5 + 10.5 / 12, "feet")
  11454. },
  11455. ]
  11456. ))
  11457. characterMakers.push(() => makeCharacter(
  11458. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11459. {
  11460. kaiju: {
  11461. height: math.unit(1.75, "meters"),
  11462. weight: math.unit(55, "kg"),
  11463. name: "Kaiju",
  11464. image: {
  11465. source: "./media/characters/lykonous/kaiju.svg",
  11466. extra: 1055 / 946,
  11467. bottom: 0.135
  11468. }
  11469. },
  11470. },
  11471. [
  11472. {
  11473. name: "Normal",
  11474. height: math.unit(2.5, "meters"),
  11475. default: true
  11476. },
  11477. {
  11478. name: "Kaiju Dragon",
  11479. height: math.unit(60, "meters")
  11480. },
  11481. {
  11482. name: "Mega Kaiju",
  11483. height: math.unit(120, "km")
  11484. },
  11485. {
  11486. name: "Giga Kaiju",
  11487. height: math.unit(200, "megameters")
  11488. },
  11489. {
  11490. name: "Terra Kaiju",
  11491. height: math.unit(400, "gigameters")
  11492. },
  11493. {
  11494. name: "Kaiju Dragon God",
  11495. height: math.unit(13000, "exaparsecs")
  11496. },
  11497. ]
  11498. ))
  11499. characterMakers.push(() => makeCharacter(
  11500. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11501. {
  11502. front: {
  11503. height: math.unit(6, "feet"),
  11504. weight: math.unit(150, "lb"),
  11505. name: "Front",
  11506. image: {
  11507. source: "./media/characters/blü/front.svg",
  11508. extra: 1883 / 1564,
  11509. bottom: 0.031
  11510. }
  11511. },
  11512. },
  11513. [
  11514. {
  11515. name: "Normal",
  11516. height: math.unit(13, "feet"),
  11517. default: true
  11518. },
  11519. {
  11520. name: "Big Boi",
  11521. height: math.unit(150, "meters")
  11522. },
  11523. {
  11524. name: "Mini Stomper",
  11525. height: math.unit(300, "meters")
  11526. },
  11527. {
  11528. name: "Macro",
  11529. height: math.unit(1000, "meters")
  11530. },
  11531. {
  11532. name: "Megamacro",
  11533. height: math.unit(11000, "meters")
  11534. },
  11535. {
  11536. name: "Gigamacro",
  11537. height: math.unit(11000, "km")
  11538. },
  11539. {
  11540. name: "Teramacro",
  11541. height: math.unit(420000, "km")
  11542. },
  11543. {
  11544. name: "Examacro",
  11545. height: math.unit(120, "parsecs")
  11546. },
  11547. {
  11548. name: "God Tho",
  11549. height: math.unit(98000000000, "parsecs")
  11550. },
  11551. ]
  11552. ))
  11553. characterMakers.push(() => makeCharacter(
  11554. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11555. {
  11556. taurFront: {
  11557. height: math.unit(6, "feet"),
  11558. weight: math.unit(200, "lb"),
  11559. name: "Taur (Front)",
  11560. image: {
  11561. source: "./media/characters/scales/taur-front.svg",
  11562. extra: 1,
  11563. bottom: 0.05
  11564. }
  11565. },
  11566. taurBack: {
  11567. height: math.unit(6, "feet"),
  11568. weight: math.unit(200, "lb"),
  11569. name: "Taur (Back)",
  11570. image: {
  11571. source: "./media/characters/scales/taur-back.svg",
  11572. extra: 1,
  11573. bottom: 0.08
  11574. }
  11575. },
  11576. anthro: {
  11577. height: math.unit(6 * 7 / 12, "feet"),
  11578. weight: math.unit(100, "lb"),
  11579. name: "Anthro",
  11580. image: {
  11581. source: "./media/characters/scales/anthro.svg",
  11582. extra: 1,
  11583. bottom: 0.06
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "Normal",
  11590. height: math.unit(12, "feet"),
  11591. default: true
  11592. },
  11593. ]
  11594. ))
  11595. characterMakers.push(() => makeCharacter(
  11596. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11597. {
  11598. front: {
  11599. height: math.unit(6, "feet"),
  11600. weight: math.unit(150, "lb"),
  11601. name: "Front",
  11602. image: {
  11603. source: "./media/characters/koragos/front.svg",
  11604. extra: 841 / 794,
  11605. bottom: 0.035
  11606. }
  11607. },
  11608. back: {
  11609. height: math.unit(6, "feet"),
  11610. weight: math.unit(150, "lb"),
  11611. name: "Back",
  11612. image: {
  11613. source: "./media/characters/koragos/back.svg",
  11614. extra: 841 / 810,
  11615. bottom: 0.022
  11616. }
  11617. },
  11618. },
  11619. [
  11620. {
  11621. name: "Normal",
  11622. height: math.unit(6 + 11 / 12, "feet"),
  11623. default: true
  11624. },
  11625. {
  11626. name: "Macro",
  11627. height: math.unit(490, "feet")
  11628. },
  11629. {
  11630. name: "Megamacro",
  11631. height: math.unit(10, "miles")
  11632. },
  11633. {
  11634. name: "Gigamacro",
  11635. height: math.unit(50, "miles")
  11636. },
  11637. ]
  11638. ))
  11639. characterMakers.push(() => makeCharacter(
  11640. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11641. {
  11642. front: {
  11643. height: math.unit(6, "feet"),
  11644. weight: math.unit(250, "lb"),
  11645. name: "Front",
  11646. image: {
  11647. source: "./media/characters/xylrem/front.svg",
  11648. extra: 3323 / 3050,
  11649. bottom: 0.065
  11650. }
  11651. },
  11652. },
  11653. [
  11654. {
  11655. name: "Micro",
  11656. height: math.unit(4, "feet")
  11657. },
  11658. {
  11659. name: "Normal",
  11660. height: math.unit(16, "feet"),
  11661. default: true
  11662. },
  11663. {
  11664. name: "Macro",
  11665. height: math.unit(2720, "feet")
  11666. },
  11667. {
  11668. name: "Megamacro",
  11669. height: math.unit(25000, "miles")
  11670. },
  11671. ]
  11672. ))
  11673. characterMakers.push(() => makeCharacter(
  11674. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11675. {
  11676. front: {
  11677. height: math.unit(8, "feet"),
  11678. weight: math.unit(250, "kg"),
  11679. name: "Front",
  11680. image: {
  11681. source: "./media/characters/ikideru/front.svg",
  11682. extra: 930 / 870,
  11683. bottom: 0.087
  11684. }
  11685. },
  11686. back: {
  11687. height: math.unit(8, "feet"),
  11688. weight: math.unit(250, "kg"),
  11689. name: "Back",
  11690. image: {
  11691. source: "./media/characters/ikideru/back.svg",
  11692. extra: 919 / 852,
  11693. bottom: 0.055
  11694. }
  11695. },
  11696. },
  11697. [
  11698. {
  11699. name: "Rare",
  11700. height: math.unit(8, "feet"),
  11701. default: true
  11702. },
  11703. {
  11704. name: "Playful Loom",
  11705. height: math.unit(80, "feet")
  11706. },
  11707. {
  11708. name: "City Leaner",
  11709. height: math.unit(230, "feet")
  11710. },
  11711. {
  11712. name: "Megamacro",
  11713. height: math.unit(2500, "feet")
  11714. },
  11715. {
  11716. name: "Gigamacro",
  11717. height: math.unit(26400, "feet")
  11718. },
  11719. {
  11720. name: "Tectonic Shifter",
  11721. height: math.unit(1.7, "megameters")
  11722. },
  11723. {
  11724. name: "Planet Carer",
  11725. height: math.unit(21, "megameters")
  11726. },
  11727. {
  11728. name: "God",
  11729. height: math.unit(11157.22, "parsecs")
  11730. },
  11731. ]
  11732. ))
  11733. characterMakers.push(() => makeCharacter(
  11734. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11735. {
  11736. front: {
  11737. height: math.unit(6, "feet"),
  11738. weight: math.unit(120, "lb"),
  11739. name: "Front",
  11740. image: {
  11741. source: "./media/characters/neo/front.svg"
  11742. }
  11743. },
  11744. },
  11745. [
  11746. {
  11747. name: "Micro",
  11748. height: math.unit(2, "inches"),
  11749. default: true
  11750. },
  11751. {
  11752. name: "Human Size",
  11753. height: math.unit(5 + 8 / 12, "feet")
  11754. },
  11755. ]
  11756. ))
  11757. characterMakers.push(() => makeCharacter(
  11758. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11759. {
  11760. front: {
  11761. height: math.unit(13 + 10 / 12, "feet"),
  11762. weight: math.unit(5320, "lb"),
  11763. name: "Front",
  11764. image: {
  11765. source: "./media/characters/chauncey-chantz/front.svg",
  11766. extra: 1587 / 1435,
  11767. bottom: 0.02
  11768. }
  11769. },
  11770. },
  11771. [
  11772. {
  11773. name: "Normal",
  11774. height: math.unit(13 + 10 / 12, "feet"),
  11775. default: true
  11776. },
  11777. {
  11778. name: "Macro",
  11779. height: math.unit(45, "feet")
  11780. },
  11781. {
  11782. name: "Megamacro",
  11783. height: math.unit(250, "miles")
  11784. },
  11785. {
  11786. name: "Planetary",
  11787. height: math.unit(10000, "miles")
  11788. },
  11789. {
  11790. name: "Galactic",
  11791. height: math.unit(40000, "parsecs")
  11792. },
  11793. {
  11794. name: "Universal",
  11795. height: math.unit(1, "yottameter")
  11796. },
  11797. ]
  11798. ))
  11799. characterMakers.push(() => makeCharacter(
  11800. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11801. {
  11802. front: {
  11803. height: math.unit(6, "feet"),
  11804. weight: math.unit(150, "lb"),
  11805. name: "Front",
  11806. image: {
  11807. source: "./media/characters/epifox/front.svg",
  11808. extra: 1,
  11809. bottom: 0.075
  11810. }
  11811. },
  11812. },
  11813. [
  11814. {
  11815. name: "Micro",
  11816. height: math.unit(6, "inches")
  11817. },
  11818. {
  11819. name: "Normal",
  11820. height: math.unit(12, "feet"),
  11821. default: true
  11822. },
  11823. {
  11824. name: "Macro",
  11825. height: math.unit(3810, "feet")
  11826. },
  11827. {
  11828. name: "Megamacro",
  11829. height: math.unit(500, "miles")
  11830. },
  11831. ]
  11832. ))
  11833. characterMakers.push(() => makeCharacter(
  11834. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11835. {
  11836. front: {
  11837. height: math.unit(1.8796, "m"),
  11838. weight: math.unit(230, "lb"),
  11839. name: "Front",
  11840. image: {
  11841. source: "./media/characters/colin-t/front.svg",
  11842. extra: 1272 / 1193,
  11843. bottom: 0.07
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Micro",
  11850. height: math.unit(0.571, "meters")
  11851. },
  11852. {
  11853. name: "Normal",
  11854. height: math.unit(1.8796, "meters"),
  11855. default: true
  11856. },
  11857. {
  11858. name: "Tall",
  11859. height: math.unit(4, "meters")
  11860. },
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(67.241, "meters")
  11864. },
  11865. {
  11866. name: "Megamacro",
  11867. height: math.unit(371.856, "meters")
  11868. },
  11869. {
  11870. name: "Planetary",
  11871. height: math.unit(12631.5689, "km")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(1.85, "meters"),
  11880. weight: math.unit(80, "kg"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/matvei/front.svg",
  11884. extra: 614 / 594,
  11885. bottom: 0.01
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(1.85, "meters"),
  11893. default: true
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11899. {
  11900. front: {
  11901. height: math.unit(5 + 9 / 12, "feet"),
  11902. weight: math.unit(70, "lb"),
  11903. name: "Front",
  11904. image: {
  11905. source: "./media/characters/quincy/front.svg",
  11906. extra: 3041 / 2751
  11907. }
  11908. },
  11909. back: {
  11910. height: math.unit(5 + 9 / 12, "feet"),
  11911. weight: math.unit(70, "lb"),
  11912. name: "Back",
  11913. image: {
  11914. source: "./media/characters/quincy/back.svg",
  11915. extra: 3041 / 2751
  11916. }
  11917. },
  11918. flying: {
  11919. height: math.unit(5 + 4 / 12, "feet"),
  11920. weight: math.unit(70, "lb"),
  11921. name: "Flying",
  11922. image: {
  11923. source: "./media/characters/quincy/flying.svg",
  11924. extra: 1044 / 930
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Micro",
  11931. height: math.unit(3, "cm")
  11932. },
  11933. {
  11934. name: "Normal",
  11935. height: math.unit(5 + 9 / 12, "feet")
  11936. },
  11937. {
  11938. name: "Macro",
  11939. height: math.unit(200, "meters"),
  11940. default: true
  11941. },
  11942. {
  11943. name: "Megamacro",
  11944. height: math.unit(1000, "meters")
  11945. },
  11946. ]
  11947. ))
  11948. characterMakers.push(() => makeCharacter(
  11949. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11950. {
  11951. front: {
  11952. height: math.unit(3 + 11/12, "feet"),
  11953. weight: math.unit(50, "lb"),
  11954. name: "Front",
  11955. image: {
  11956. source: "./media/characters/vanrel/front.svg",
  11957. extra: 1104/949,
  11958. bottom: 52/1156
  11959. }
  11960. },
  11961. back: {
  11962. height: math.unit(3 + 11/12, "feet"),
  11963. weight: math.unit(50, "lb"),
  11964. name: "Back",
  11965. image: {
  11966. source: "./media/characters/vanrel/back.svg",
  11967. extra: 1119/976,
  11968. bottom: 37/1156
  11969. }
  11970. },
  11971. tome: {
  11972. height: math.unit(1.35, "feet"),
  11973. weight: math.unit(10, "lb"),
  11974. name: "Vanrel's Tome",
  11975. rename: true,
  11976. image: {
  11977. source: "./media/characters/vanrel/tome.svg"
  11978. }
  11979. },
  11980. beans: {
  11981. height: math.unit(0.89, "feet"),
  11982. name: "Beans",
  11983. image: {
  11984. source: "./media/characters/vanrel/beans.svg"
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Normal",
  11991. height: math.unit(3 + 11/12, "feet"),
  11992. default: true
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11998. {
  11999. front: {
  12000. height: math.unit(7 + 5 / 12, "feet"),
  12001. name: "Front",
  12002. image: {
  12003. source: "./media/characters/kuiper-vanrel/front.svg",
  12004. extra: 1219/1169,
  12005. bottom: 69/1288
  12006. }
  12007. },
  12008. back: {
  12009. height: math.unit(7 + 5 / 12, "feet"),
  12010. name: "Back",
  12011. image: {
  12012. source: "./media/characters/kuiper-vanrel/back.svg",
  12013. extra: 1236/1193,
  12014. bottom: 27/1263
  12015. }
  12016. },
  12017. foot: {
  12018. height: math.unit(0.55, "meters"),
  12019. name: "Foot",
  12020. image: {
  12021. source: "./media/characters/kuiper-vanrel/foot.svg",
  12022. }
  12023. },
  12024. battle: {
  12025. height: math.unit(6.824, "feet"),
  12026. name: "Battle",
  12027. image: {
  12028. source: "./media/characters/kuiper-vanrel/battle.svg",
  12029. extra: 1466 / 1327,
  12030. bottom: 29 / 1492.5
  12031. }
  12032. },
  12033. meerkui: {
  12034. height: math.unit(18, "inches"),
  12035. name: "Meerkui",
  12036. image: {
  12037. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12038. extra: 1354/1289,
  12039. bottom: 69/1423
  12040. }
  12041. },
  12042. },
  12043. [
  12044. {
  12045. name: "Normal",
  12046. height: math.unit(7 + 5 / 12, "feet"),
  12047. default: true
  12048. },
  12049. ]
  12050. ))
  12051. characterMakers.push(() => makeCharacter(
  12052. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12053. {
  12054. front: {
  12055. height: math.unit(8 + 5 / 12, "feet"),
  12056. name: "Front",
  12057. image: {
  12058. source: "./media/characters/keset-vanrel/front.svg",
  12059. extra: 1231/1148,
  12060. bottom: 82/1313
  12061. }
  12062. },
  12063. back: {
  12064. height: math.unit(8 + 5 / 12, "feet"),
  12065. name: "Back",
  12066. image: {
  12067. source: "./media/characters/keset-vanrel/back.svg",
  12068. extra: 1240/1174,
  12069. bottom: 33/1273
  12070. }
  12071. },
  12072. hand: {
  12073. height: math.unit(0.6, "meters"),
  12074. name: "Hand",
  12075. image: {
  12076. source: "./media/characters/keset-vanrel/hand.svg"
  12077. }
  12078. },
  12079. foot: {
  12080. height: math.unit(0.94978, "meters"),
  12081. name: "Foot",
  12082. image: {
  12083. source: "./media/characters/keset-vanrel/foot.svg"
  12084. }
  12085. },
  12086. battle: {
  12087. height: math.unit(7.408, "feet"),
  12088. name: "Battle",
  12089. image: {
  12090. source: "./media/characters/keset-vanrel/battle.svg",
  12091. extra: 1890 / 1386,
  12092. bottom: 73.28 / 1970
  12093. }
  12094. },
  12095. },
  12096. [
  12097. {
  12098. name: "Normal",
  12099. height: math.unit(8 + 5 / 12, "feet"),
  12100. default: true
  12101. },
  12102. ]
  12103. ))
  12104. characterMakers.push(() => makeCharacter(
  12105. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12106. {
  12107. front: {
  12108. height: math.unit(6, "feet"),
  12109. weight: math.unit(150, "lb"),
  12110. name: "Front",
  12111. image: {
  12112. source: "./media/characters/neos/front.svg",
  12113. extra: 1696 / 992,
  12114. bottom: 0.14
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Normal",
  12121. height: math.unit(54, "cm"),
  12122. default: true
  12123. },
  12124. {
  12125. name: "Macro",
  12126. height: math.unit(100, "m")
  12127. },
  12128. {
  12129. name: "Megamacro",
  12130. height: math.unit(10, "km")
  12131. },
  12132. {
  12133. name: "Megamacro+",
  12134. height: math.unit(100, "km")
  12135. },
  12136. {
  12137. name: "Gigamacro",
  12138. height: math.unit(100, "Mm")
  12139. },
  12140. {
  12141. name: "Teramacro",
  12142. height: math.unit(100, "Gm")
  12143. },
  12144. {
  12145. name: "Examacro",
  12146. height: math.unit(100, "Em")
  12147. },
  12148. {
  12149. name: "Godly",
  12150. height: math.unit(10000, "Ym")
  12151. },
  12152. {
  12153. name: "Beyond Godly",
  12154. height: math.unit(25, "multiverses")
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12160. {
  12161. feminine: {
  12162. height: math.unit(5, "feet"),
  12163. weight: math.unit(100, "lb"),
  12164. name: "Feminine",
  12165. image: {
  12166. source: "./media/characters/sammy-mouse/feminine.svg",
  12167. extra: 2526 / 2425,
  12168. bottom: 0.123
  12169. }
  12170. },
  12171. masculine: {
  12172. height: math.unit(5, "feet"),
  12173. weight: math.unit(100, "lb"),
  12174. name: "Masculine",
  12175. image: {
  12176. source: "./media/characters/sammy-mouse/masculine.svg",
  12177. extra: 2526 / 2425,
  12178. bottom: 0.123
  12179. }
  12180. },
  12181. },
  12182. [
  12183. {
  12184. name: "Micro",
  12185. height: math.unit(5, "inches")
  12186. },
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(5, "feet"),
  12190. default: true
  12191. },
  12192. {
  12193. name: "Macro",
  12194. height: math.unit(60, "feet")
  12195. },
  12196. ]
  12197. ))
  12198. characterMakers.push(() => makeCharacter(
  12199. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12200. {
  12201. front: {
  12202. height: math.unit(4, "feet"),
  12203. weight: math.unit(50, "lb"),
  12204. name: "Front",
  12205. image: {
  12206. source: "./media/characters/kole/front.svg",
  12207. extra: 1423 / 1303,
  12208. bottom: 0.025
  12209. }
  12210. },
  12211. back: {
  12212. height: math.unit(4, "feet"),
  12213. weight: math.unit(50, "lb"),
  12214. name: "Back",
  12215. image: {
  12216. source: "./media/characters/kole/back.svg",
  12217. extra: 1426 / 1280,
  12218. bottom: 0.02
  12219. }
  12220. },
  12221. },
  12222. [
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(4, "feet"),
  12226. default: true
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12232. {
  12233. front: {
  12234. height: math.unit(2.5, "feet"),
  12235. weight: math.unit(32, "lb"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/rufran/front.svg",
  12239. extra: 1313/885,
  12240. bottom: 94/1407
  12241. }
  12242. },
  12243. side: {
  12244. height: math.unit(2.5, "feet"),
  12245. weight: math.unit(32, "lb"),
  12246. name: "Side",
  12247. image: {
  12248. source: "./media/characters/rufran/side.svg",
  12249. extra: 1109/852,
  12250. bottom: 118/1227
  12251. }
  12252. },
  12253. back: {
  12254. height: math.unit(2.5, "feet"),
  12255. weight: math.unit(32, "lb"),
  12256. name: "Back",
  12257. image: {
  12258. source: "./media/characters/rufran/back.svg",
  12259. extra: 1280/878,
  12260. bottom: 131/1411
  12261. }
  12262. },
  12263. mouth: {
  12264. height: math.unit(1.13, "feet"),
  12265. name: "Mouth",
  12266. image: {
  12267. source: "./media/characters/rufran/mouth.svg"
  12268. }
  12269. },
  12270. foot: {
  12271. height: math.unit(1.33, "feet"),
  12272. name: "Foot",
  12273. image: {
  12274. source: "./media/characters/rufran/foot.svg"
  12275. }
  12276. },
  12277. koboldFront: {
  12278. height: math.unit(2 + 6 / 12, "feet"),
  12279. weight: math.unit(20, "lb"),
  12280. name: "Front (Kobold)",
  12281. image: {
  12282. source: "./media/characters/rufran/kobold-front.svg",
  12283. extra: 2041 / 1839,
  12284. bottom: 0.055
  12285. }
  12286. },
  12287. koboldBack: {
  12288. height: math.unit(2 + 6 / 12, "feet"),
  12289. weight: math.unit(20, "lb"),
  12290. name: "Back (Kobold)",
  12291. image: {
  12292. source: "./media/characters/rufran/kobold-back.svg",
  12293. extra: 2054 / 1839,
  12294. bottom: 0.01
  12295. }
  12296. },
  12297. koboldHand: {
  12298. height: math.unit(0.2166, "meters"),
  12299. name: "Hand (Kobold)",
  12300. image: {
  12301. source: "./media/characters/rufran/kobold-hand.svg"
  12302. }
  12303. },
  12304. koboldFoot: {
  12305. height: math.unit(0.185, "meters"),
  12306. name: "Foot (Kobold)",
  12307. image: {
  12308. source: "./media/characters/rufran/kobold-foot.svg"
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Micro",
  12315. height: math.unit(1, "inch")
  12316. },
  12317. {
  12318. name: "Normal",
  12319. height: math.unit(2 + 6 / 12, "feet"),
  12320. default: true
  12321. },
  12322. {
  12323. name: "Big",
  12324. height: math.unit(60, "feet")
  12325. },
  12326. {
  12327. name: "Macro",
  12328. height: math.unit(325, "feet")
  12329. },
  12330. ]
  12331. ))
  12332. characterMakers.push(() => makeCharacter(
  12333. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12334. {
  12335. front: {
  12336. height: math.unit(0.3, "meters"),
  12337. weight: math.unit(3.5, "kg"),
  12338. name: "Front",
  12339. image: {
  12340. source: "./media/characters/chip/front.svg",
  12341. extra: 748 / 674
  12342. }
  12343. },
  12344. },
  12345. [
  12346. {
  12347. name: "Micro",
  12348. height: math.unit(1, "inch"),
  12349. default: true
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12355. {
  12356. side: {
  12357. height: math.unit(2.3, "meters"),
  12358. weight: math.unit(3500, "lb"),
  12359. name: "Side",
  12360. image: {
  12361. source: "./media/characters/torvid/side.svg",
  12362. extra: 1972 / 722,
  12363. bottom: 0.035
  12364. }
  12365. },
  12366. },
  12367. [
  12368. {
  12369. name: "Normal",
  12370. height: math.unit(2.3, "meters"),
  12371. default: true
  12372. },
  12373. ]
  12374. ))
  12375. characterMakers.push(() => makeCharacter(
  12376. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12377. {
  12378. front: {
  12379. height: math.unit(2, "meters"),
  12380. weight: math.unit(150.5, "kg"),
  12381. name: "Front",
  12382. image: {
  12383. source: "./media/characters/susan/front.svg",
  12384. extra: 693 / 635,
  12385. bottom: 0.05
  12386. }
  12387. },
  12388. },
  12389. [
  12390. {
  12391. name: "Megamacro",
  12392. height: math.unit(505, "miles"),
  12393. default: true
  12394. },
  12395. ]
  12396. ))
  12397. characterMakers.push(() => makeCharacter(
  12398. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12399. {
  12400. front: {
  12401. height: math.unit(6, "feet"),
  12402. weight: math.unit(150, "lb"),
  12403. name: "Front",
  12404. image: {
  12405. source: "./media/characters/raindrops/front.svg",
  12406. extra: 2655 / 2461,
  12407. bottom: 49 / 2705
  12408. }
  12409. },
  12410. back: {
  12411. height: math.unit(6, "feet"),
  12412. weight: math.unit(150, "lb"),
  12413. name: "Back",
  12414. image: {
  12415. source: "./media/characters/raindrops/back.svg",
  12416. extra: 2574 / 2400,
  12417. bottom: 65 / 2634
  12418. }
  12419. },
  12420. },
  12421. [
  12422. {
  12423. name: "Micro",
  12424. height: math.unit(6, "inches")
  12425. },
  12426. {
  12427. name: "Normal",
  12428. height: math.unit(6 + 2 / 12, "feet")
  12429. },
  12430. {
  12431. name: "Macro",
  12432. height: math.unit(131, "feet"),
  12433. default: true
  12434. },
  12435. {
  12436. name: "Megamacro",
  12437. height: math.unit(15, "miles")
  12438. },
  12439. {
  12440. name: "Gigamacro",
  12441. height: math.unit(4000, "miles")
  12442. },
  12443. {
  12444. name: "Teramacro",
  12445. height: math.unit(315000, "miles")
  12446. },
  12447. ]
  12448. ))
  12449. characterMakers.push(() => makeCharacter(
  12450. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12451. {
  12452. front: {
  12453. height: math.unit(2.794, "meters"),
  12454. weight: math.unit(325, "kg"),
  12455. name: "Front",
  12456. image: {
  12457. source: "./media/characters/tezwa/front.svg",
  12458. extra: 2083 / 1906,
  12459. bottom: 0.031
  12460. }
  12461. },
  12462. foot: {
  12463. height: math.unit(0.687, "meters"),
  12464. name: "Foot",
  12465. image: {
  12466. source: "./media/characters/tezwa/foot.svg"
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Normal",
  12473. height: math.unit(9 + 2 / 12, "feet"),
  12474. default: true
  12475. },
  12476. ]
  12477. ))
  12478. characterMakers.push(() => makeCharacter(
  12479. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12480. {
  12481. front: {
  12482. height: math.unit(58, "feet"),
  12483. weight: math.unit(89000, "lb"),
  12484. name: "Front",
  12485. image: {
  12486. source: "./media/characters/typhus/front.svg",
  12487. extra: 816 / 800,
  12488. bottom: 0.065
  12489. }
  12490. },
  12491. },
  12492. [
  12493. {
  12494. name: "Macro",
  12495. height: math.unit(58, "feet"),
  12496. default: true
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12502. {
  12503. front: {
  12504. height: math.unit(12, "feet"),
  12505. weight: math.unit(6, "tonnes"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/lyra-von-wulf/front.svg",
  12509. extra: 1,
  12510. bottom: 0.10
  12511. }
  12512. },
  12513. frontMecha: {
  12514. height: math.unit(12, "feet"),
  12515. weight: math.unit(12, "tonnes"),
  12516. name: "Front (Mecha)",
  12517. image: {
  12518. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12519. extra: 1,
  12520. bottom: 0.042
  12521. }
  12522. },
  12523. maw: {
  12524. height: math.unit(2.2, "feet"),
  12525. name: "Maw",
  12526. image: {
  12527. source: "./media/characters/lyra-von-wulf/maw.svg"
  12528. }
  12529. },
  12530. },
  12531. [
  12532. {
  12533. name: "Normal",
  12534. height: math.unit(12, "feet"),
  12535. default: true
  12536. },
  12537. {
  12538. name: "Classic",
  12539. height: math.unit(50, "feet")
  12540. },
  12541. {
  12542. name: "Macro",
  12543. height: math.unit(500, "feet")
  12544. },
  12545. {
  12546. name: "Megamacro",
  12547. height: math.unit(1, "mile")
  12548. },
  12549. {
  12550. name: "Gigamacro",
  12551. height: math.unit(400, "miles")
  12552. },
  12553. {
  12554. name: "Teramacro",
  12555. height: math.unit(22000, "miles")
  12556. },
  12557. {
  12558. name: "Solarmacro",
  12559. height: math.unit(8600000, "miles")
  12560. },
  12561. {
  12562. name: "Galactic",
  12563. height: math.unit(1057000, "lightyears")
  12564. },
  12565. ]
  12566. ))
  12567. characterMakers.push(() => makeCharacter(
  12568. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12569. {
  12570. front: {
  12571. height: math.unit(6 + 10 / 12, "feet"),
  12572. weight: math.unit(150, "lb"),
  12573. name: "Front",
  12574. image: {
  12575. source: "./media/characters/dixon/front.svg",
  12576. extra: 3361 / 3209,
  12577. bottom: 0.01
  12578. }
  12579. },
  12580. },
  12581. [
  12582. {
  12583. name: "Normal",
  12584. height: math.unit(6 + 10 / 12, "feet"),
  12585. default: true
  12586. },
  12587. {
  12588. name: "Big",
  12589. height: math.unit(12, "meters")
  12590. },
  12591. {
  12592. name: "Macro",
  12593. height: math.unit(500, "meters")
  12594. },
  12595. {
  12596. name: "Megamacro",
  12597. height: math.unit(2, "km")
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12603. {
  12604. front: {
  12605. height: math.unit(185, "cm"),
  12606. weight: math.unit(68, "kg"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/kauko/front.svg",
  12610. extra: 1455 / 1421,
  12611. bottom: 0.03
  12612. }
  12613. },
  12614. back: {
  12615. height: math.unit(185, "cm"),
  12616. weight: math.unit(68, "kg"),
  12617. name: "Back",
  12618. image: {
  12619. source: "./media/characters/kauko/back.svg",
  12620. extra: 1455 / 1421,
  12621. bottom: 0.004
  12622. }
  12623. },
  12624. },
  12625. [
  12626. {
  12627. name: "Normal",
  12628. height: math.unit(185, "cm"),
  12629. default: true
  12630. },
  12631. ]
  12632. ))
  12633. characterMakers.push(() => makeCharacter(
  12634. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12635. {
  12636. front: {
  12637. height: math.unit(6, "feet"),
  12638. weight: math.unit(150, "kg"),
  12639. name: "Front",
  12640. image: {
  12641. source: "./media/characters/varg/front.svg",
  12642. extra: 1108 / 1018,
  12643. bottom: 0.0375
  12644. }
  12645. },
  12646. },
  12647. [
  12648. {
  12649. name: "Normal",
  12650. height: math.unit(5, "meters")
  12651. },
  12652. {
  12653. name: "Macro",
  12654. height: math.unit(200, "meters")
  12655. },
  12656. {
  12657. name: "Megamacro",
  12658. height: math.unit(20, "kilometers")
  12659. },
  12660. {
  12661. name: "True Size",
  12662. height: math.unit(211, "km"),
  12663. default: true
  12664. },
  12665. {
  12666. name: "Gigamacro",
  12667. height: math.unit(1000, "km")
  12668. },
  12669. {
  12670. name: "Gigamacro+",
  12671. height: math.unit(8000, "km")
  12672. },
  12673. {
  12674. name: "Teramacro",
  12675. height: math.unit(1000000, "km")
  12676. },
  12677. ]
  12678. ))
  12679. characterMakers.push(() => makeCharacter(
  12680. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12681. {
  12682. front: {
  12683. height: math.unit(7 + 7 / 12, "feet"),
  12684. weight: math.unit(267, "lb"),
  12685. name: "Front",
  12686. image: {
  12687. source: "./media/characters/dayza/front.svg",
  12688. extra: 1262 / 1200,
  12689. bottom: 0.035
  12690. }
  12691. },
  12692. side: {
  12693. height: math.unit(7 + 7 / 12, "feet"),
  12694. weight: math.unit(267, "lb"),
  12695. name: "Side",
  12696. image: {
  12697. source: "./media/characters/dayza/side.svg",
  12698. extra: 1295 / 1245,
  12699. bottom: 0.05
  12700. }
  12701. },
  12702. back: {
  12703. height: math.unit(7 + 7 / 12, "feet"),
  12704. weight: math.unit(267, "lb"),
  12705. name: "Back",
  12706. image: {
  12707. source: "./media/characters/dayza/back.svg",
  12708. extra: 1241 / 1170
  12709. }
  12710. },
  12711. },
  12712. [
  12713. {
  12714. name: "Normal",
  12715. height: math.unit(7 + 7 / 12, "feet"),
  12716. default: true
  12717. },
  12718. {
  12719. name: "Macro",
  12720. height: math.unit(155, "feet")
  12721. },
  12722. ]
  12723. ))
  12724. characterMakers.push(() => makeCharacter(
  12725. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12726. {
  12727. front: {
  12728. height: math.unit(6 + 5 / 12, "feet"),
  12729. weight: math.unit(160, "lb"),
  12730. name: "Front",
  12731. image: {
  12732. source: "./media/characters/xanthos/front.svg",
  12733. extra: 1,
  12734. bottom: 0.04
  12735. }
  12736. },
  12737. back: {
  12738. height: math.unit(6 + 5 / 12, "feet"),
  12739. weight: math.unit(160, "lb"),
  12740. name: "Back",
  12741. image: {
  12742. source: "./media/characters/xanthos/back.svg",
  12743. extra: 1,
  12744. bottom: 0.03
  12745. }
  12746. },
  12747. hand: {
  12748. height: math.unit(0.928, "feet"),
  12749. name: "Hand",
  12750. image: {
  12751. source: "./media/characters/xanthos/hand.svg"
  12752. }
  12753. },
  12754. foot: {
  12755. height: math.unit(1.286, "feet"),
  12756. name: "Foot",
  12757. image: {
  12758. source: "./media/characters/xanthos/foot.svg"
  12759. }
  12760. },
  12761. },
  12762. [
  12763. {
  12764. name: "Normal",
  12765. height: math.unit(6 + 5 / 12, "feet"),
  12766. default: true
  12767. },
  12768. {
  12769. name: "Normal+",
  12770. height: math.unit(6, "meters")
  12771. },
  12772. {
  12773. name: "Macro",
  12774. height: math.unit(40, "feet")
  12775. },
  12776. {
  12777. name: "Macro+",
  12778. height: math.unit(200, "meters")
  12779. },
  12780. {
  12781. name: "Megamacro",
  12782. height: math.unit(20, "km")
  12783. },
  12784. {
  12785. name: "Megamacro+",
  12786. height: math.unit(100, "km")
  12787. },
  12788. {
  12789. name: "Gigamacro",
  12790. height: math.unit(200, "megameters")
  12791. },
  12792. {
  12793. name: "Gigamacro+",
  12794. height: math.unit(1.5, "gigameters")
  12795. },
  12796. ]
  12797. ))
  12798. characterMakers.push(() => makeCharacter(
  12799. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12800. {
  12801. front: {
  12802. height: math.unit(6 + 3 / 12, "feet"),
  12803. weight: math.unit(215, "lb"),
  12804. name: "Front",
  12805. image: {
  12806. source: "./media/characters/grynn/front.svg",
  12807. extra: 4627 / 4209,
  12808. bottom: 0.047
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Micro",
  12815. height: math.unit(6, "inches")
  12816. },
  12817. {
  12818. name: "Normal",
  12819. height: math.unit(6 + 3 / 12, "feet"),
  12820. default: true
  12821. },
  12822. {
  12823. name: "Big",
  12824. height: math.unit(104, "feet")
  12825. },
  12826. {
  12827. name: "Macro",
  12828. height: math.unit(944, "feet")
  12829. },
  12830. {
  12831. name: "Macro+",
  12832. height: math.unit(9480, "feet")
  12833. },
  12834. {
  12835. name: "Megamacro",
  12836. height: math.unit(78752, "feet")
  12837. },
  12838. {
  12839. name: "Megamacro+",
  12840. height: math.unit(630128, "feet")
  12841. },
  12842. {
  12843. name: "Megamacro++",
  12844. height: math.unit(3150695, "feet")
  12845. },
  12846. ]
  12847. ))
  12848. characterMakers.push(() => makeCharacter(
  12849. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12850. {
  12851. front: {
  12852. height: math.unit(7 + 5 / 12, "feet"),
  12853. weight: math.unit(450, "lb"),
  12854. name: "Front",
  12855. image: {
  12856. source: "./media/characters/mocha-aura/front.svg",
  12857. extra: 1907 / 1817,
  12858. bottom: 0.04
  12859. }
  12860. },
  12861. back: {
  12862. height: math.unit(7 + 5 / 12, "feet"),
  12863. weight: math.unit(450, "lb"),
  12864. name: "Back",
  12865. image: {
  12866. source: "./media/characters/mocha-aura/back.svg",
  12867. extra: 1900 / 1825,
  12868. bottom: 0.045
  12869. }
  12870. },
  12871. },
  12872. [
  12873. {
  12874. name: "Nano",
  12875. height: math.unit(1, "nm")
  12876. },
  12877. {
  12878. name: "Megamicro",
  12879. height: math.unit(1, "mm")
  12880. },
  12881. {
  12882. name: "Micro",
  12883. height: math.unit(3, "inches")
  12884. },
  12885. {
  12886. name: "Normal",
  12887. height: math.unit(7 + 5 / 12, "feet"),
  12888. default: true
  12889. },
  12890. {
  12891. name: "Macro",
  12892. height: math.unit(30, "feet")
  12893. },
  12894. {
  12895. name: "Megamacro",
  12896. height: math.unit(3500, "feet")
  12897. },
  12898. {
  12899. name: "Teramacro",
  12900. height: math.unit(500000, "miles")
  12901. },
  12902. {
  12903. name: "Petamacro",
  12904. height: math.unit(50000000000000000, "parsecs")
  12905. },
  12906. ]
  12907. ))
  12908. characterMakers.push(() => makeCharacter(
  12909. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12910. {
  12911. front: {
  12912. height: math.unit(6, "feet"),
  12913. weight: math.unit(150, "lb"),
  12914. name: "Front",
  12915. image: {
  12916. source: "./media/characters/ilisha-devya/front.svg",
  12917. extra: 1,
  12918. bottom: 0.175
  12919. }
  12920. },
  12921. back: {
  12922. height: math.unit(6, "feet"),
  12923. weight: math.unit(150, "lb"),
  12924. name: "Back",
  12925. image: {
  12926. source: "./media/characters/ilisha-devya/back.svg",
  12927. extra: 1,
  12928. bottom: 0.015
  12929. }
  12930. },
  12931. },
  12932. [
  12933. {
  12934. name: "Macro",
  12935. height: math.unit(500, "feet"),
  12936. default: true
  12937. },
  12938. {
  12939. name: "Megamacro",
  12940. height: math.unit(10, "miles")
  12941. },
  12942. {
  12943. name: "Gigamacro",
  12944. height: math.unit(100000, "miles")
  12945. },
  12946. {
  12947. name: "Examacro",
  12948. height: math.unit(1e9, "lightyears")
  12949. },
  12950. {
  12951. name: "Omniversal",
  12952. height: math.unit(1e33, "lightyears")
  12953. },
  12954. {
  12955. name: "Beyond Infinite",
  12956. height: math.unit(1e100, "lightyears")
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12962. {
  12963. Side: {
  12964. height: math.unit(6, "feet"),
  12965. weight: math.unit(150, "lb"),
  12966. name: "Side",
  12967. image: {
  12968. source: "./media/characters/mira/side.svg",
  12969. extra: 900 / 799,
  12970. bottom: 0.02
  12971. }
  12972. },
  12973. },
  12974. [
  12975. {
  12976. name: "Human Size",
  12977. height: math.unit(6, "feet")
  12978. },
  12979. {
  12980. name: "Macro",
  12981. height: math.unit(100, "feet"),
  12982. default: true
  12983. },
  12984. {
  12985. name: "Megamacro",
  12986. height: math.unit(10, "miles")
  12987. },
  12988. {
  12989. name: "Gigamacro",
  12990. height: math.unit(25000, "miles")
  12991. },
  12992. {
  12993. name: "Teramacro",
  12994. height: math.unit(300, "AU")
  12995. },
  12996. {
  12997. name: "Full Size",
  12998. height: math.unit(4.5e10, "lightyears")
  12999. },
  13000. ]
  13001. ))
  13002. characterMakers.push(() => makeCharacter(
  13003. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13004. {
  13005. front: {
  13006. height: math.unit(6, "feet"),
  13007. weight: math.unit(150, "lb"),
  13008. name: "Front",
  13009. image: {
  13010. source: "./media/characters/holly/front.svg",
  13011. extra: 639 / 606
  13012. }
  13013. },
  13014. back: {
  13015. height: math.unit(6, "feet"),
  13016. weight: math.unit(150, "lb"),
  13017. name: "Back",
  13018. image: {
  13019. source: "./media/characters/holly/back.svg",
  13020. extra: 623 / 598
  13021. }
  13022. },
  13023. frontWorking: {
  13024. height: math.unit(6, "feet"),
  13025. weight: math.unit(150, "lb"),
  13026. name: "Front (Working)",
  13027. image: {
  13028. source: "./media/characters/holly/front-working.svg",
  13029. extra: 607 / 577,
  13030. bottom: 0.048
  13031. }
  13032. },
  13033. },
  13034. [
  13035. {
  13036. name: "Normal",
  13037. height: math.unit(12 + 3 / 12, "feet"),
  13038. default: true
  13039. },
  13040. ]
  13041. ))
  13042. characterMakers.push(() => makeCharacter(
  13043. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13044. {
  13045. front: {
  13046. height: math.unit(6, "feet"),
  13047. weight: math.unit(150, "lb"),
  13048. name: "Front",
  13049. image: {
  13050. source: "./media/characters/porter/front.svg",
  13051. extra: 1,
  13052. bottom: 0.01
  13053. }
  13054. },
  13055. frontRobes: {
  13056. height: math.unit(6, "feet"),
  13057. weight: math.unit(150, "lb"),
  13058. name: "Front (Robes)",
  13059. image: {
  13060. source: "./media/characters/porter/front-robes.svg",
  13061. extra: 1.01,
  13062. bottom: 0.01
  13063. }
  13064. },
  13065. },
  13066. [
  13067. {
  13068. name: "Normal",
  13069. height: math.unit(11 + 9 / 12, "feet"),
  13070. default: true
  13071. },
  13072. ]
  13073. ))
  13074. characterMakers.push(() => makeCharacter(
  13075. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13076. {
  13077. legendary: {
  13078. height: math.unit(6, "feet"),
  13079. weight: math.unit(150, "lb"),
  13080. name: "Legendary",
  13081. image: {
  13082. source: "./media/characters/lucy/legendary.svg",
  13083. extra: 1355 / 1100,
  13084. bottom: 0.045
  13085. }
  13086. },
  13087. },
  13088. [
  13089. {
  13090. name: "Legendary",
  13091. height: math.unit(86882 * 2, "miles"),
  13092. default: true
  13093. },
  13094. ]
  13095. ))
  13096. characterMakers.push(() => makeCharacter(
  13097. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13098. {
  13099. front: {
  13100. height: math.unit(6, "feet"),
  13101. weight: math.unit(150, "lb"),
  13102. name: "Front",
  13103. image: {
  13104. source: "./media/characters/drusilla/front.svg",
  13105. extra: 678 / 635,
  13106. bottom: 0.03
  13107. }
  13108. },
  13109. back: {
  13110. height: math.unit(6, "feet"),
  13111. weight: math.unit(150, "lb"),
  13112. name: "Back",
  13113. image: {
  13114. source: "./media/characters/drusilla/back.svg",
  13115. extra: 678 / 635,
  13116. bottom: 0.005
  13117. }
  13118. },
  13119. },
  13120. [
  13121. {
  13122. name: "Macro",
  13123. height: math.unit(100, "feet")
  13124. },
  13125. {
  13126. name: "Canon Height",
  13127. height: math.unit(2000, "feet"),
  13128. default: true
  13129. },
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13134. {
  13135. front: {
  13136. height: math.unit(6, "feet"),
  13137. weight: math.unit(180, "lb"),
  13138. name: "Front",
  13139. image: {
  13140. source: "./media/characters/renard-thatch/front.svg",
  13141. extra: 2411 / 2275,
  13142. bottom: 0.01
  13143. }
  13144. },
  13145. frontPosing: {
  13146. height: math.unit(6, "feet"),
  13147. weight: math.unit(180, "lb"),
  13148. name: "Front (Posing)",
  13149. image: {
  13150. source: "./media/characters/renard-thatch/front-posing.svg",
  13151. extra: 2381 / 2261,
  13152. bottom: 0.01
  13153. }
  13154. },
  13155. back: {
  13156. height: math.unit(6, "feet"),
  13157. weight: math.unit(180, "lb"),
  13158. name: "Back",
  13159. image: {
  13160. source: "./media/characters/renard-thatch/back.svg",
  13161. extra: 2428 / 2288
  13162. }
  13163. },
  13164. },
  13165. [
  13166. {
  13167. name: "Micro",
  13168. height: math.unit(3, "inches")
  13169. },
  13170. {
  13171. name: "Default",
  13172. height: math.unit(6, "feet"),
  13173. default: true
  13174. },
  13175. {
  13176. name: "Macro",
  13177. height: math.unit(75, "feet")
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13183. {
  13184. front: {
  13185. height: math.unit(1450, "feet"),
  13186. weight: math.unit(1.21e6, "tons"),
  13187. name: "Front",
  13188. image: {
  13189. source: "./media/characters/sekvra/front.svg",
  13190. extra: 1,
  13191. bottom: 0.03
  13192. }
  13193. },
  13194. frontClothed: {
  13195. height: math.unit(1450, "feet"),
  13196. weight: math.unit(1.21e6, "tons"),
  13197. name: "Front (Clothed)",
  13198. image: {
  13199. source: "./media/characters/sekvra/front-clothed.svg",
  13200. extra: 1,
  13201. bottom: 0.03
  13202. }
  13203. },
  13204. side: {
  13205. height: math.unit(1450, "feet"),
  13206. weight: math.unit(1.21e6, "tons"),
  13207. name: "Side",
  13208. image: {
  13209. source: "./media/characters/sekvra/side.svg",
  13210. extra: 1,
  13211. bottom: 0.025
  13212. }
  13213. },
  13214. back: {
  13215. height: math.unit(1450, "feet"),
  13216. weight: math.unit(1.21e6, "tons"),
  13217. name: "Back",
  13218. image: {
  13219. source: "./media/characters/sekvra/back.svg",
  13220. extra: 1,
  13221. bottom: 0.005
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Macro",
  13228. height: math.unit(1450, "feet"),
  13229. default: true
  13230. },
  13231. {
  13232. name: "Megamacro",
  13233. height: math.unit(15000, "feet")
  13234. },
  13235. ]
  13236. ))
  13237. characterMakers.push(() => makeCharacter(
  13238. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13239. {
  13240. front: {
  13241. height: math.unit(6, "feet"),
  13242. weight: math.unit(150, "lb"),
  13243. name: "Front",
  13244. image: {
  13245. source: "./media/characters/carmine/front.svg",
  13246. extra: 1,
  13247. bottom: 0.035
  13248. }
  13249. },
  13250. frontArmor: {
  13251. height: math.unit(6, "feet"),
  13252. weight: math.unit(150, "lb"),
  13253. name: "Front (Armor)",
  13254. image: {
  13255. source: "./media/characters/carmine/front-armor.svg",
  13256. extra: 1,
  13257. bottom: 0.035
  13258. }
  13259. },
  13260. },
  13261. [
  13262. {
  13263. name: "Large",
  13264. height: math.unit(1, "mile")
  13265. },
  13266. {
  13267. name: "Huge",
  13268. height: math.unit(40, "miles"),
  13269. default: true
  13270. },
  13271. {
  13272. name: "Colossal",
  13273. height: math.unit(2500, "miles")
  13274. },
  13275. ]
  13276. ))
  13277. characterMakers.push(() => makeCharacter(
  13278. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13279. {
  13280. front: {
  13281. height: math.unit(6, "feet"),
  13282. weight: math.unit(150, "lb"),
  13283. name: "Front",
  13284. image: {
  13285. source: "./media/characters/elyssia/front.svg",
  13286. extra: 2201 / 2035,
  13287. bottom: 0.05
  13288. }
  13289. },
  13290. frontClothed: {
  13291. height: math.unit(6, "feet"),
  13292. weight: math.unit(150, "lb"),
  13293. name: "Front (Clothed)",
  13294. image: {
  13295. source: "./media/characters/elyssia/front-clothed.svg",
  13296. extra: 2201 / 2035,
  13297. bottom: 0.05
  13298. }
  13299. },
  13300. back: {
  13301. height: math.unit(6, "feet"),
  13302. weight: math.unit(150, "lb"),
  13303. name: "Back",
  13304. image: {
  13305. source: "./media/characters/elyssia/back.svg",
  13306. extra: 2201 / 2035,
  13307. bottom: 0.013
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Smaller",
  13314. height: math.unit(150, "feet")
  13315. },
  13316. {
  13317. name: "Standard",
  13318. height: math.unit(1400, "feet"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Distracted",
  13323. height: math.unit(15000, "feet")
  13324. },
  13325. ]
  13326. ))
  13327. characterMakers.push(() => makeCharacter(
  13328. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13329. {
  13330. front: {
  13331. height: math.unit(7 + 4 / 12, "feet"),
  13332. weight: math.unit(500, "lb"),
  13333. name: "Front",
  13334. image: {
  13335. source: "./media/characters/geno-maxwell/front.svg",
  13336. extra: 2207 / 2040,
  13337. bottom: 0.015
  13338. }
  13339. },
  13340. },
  13341. [
  13342. {
  13343. name: "Micro",
  13344. height: math.unit(3, "inches")
  13345. },
  13346. {
  13347. name: "Normal",
  13348. height: math.unit(7 + 4 / 12, "feet"),
  13349. default: true
  13350. },
  13351. {
  13352. name: "Macro",
  13353. height: math.unit(220, "feet")
  13354. },
  13355. {
  13356. name: "Megamacro",
  13357. height: math.unit(11, "miles")
  13358. },
  13359. ]
  13360. ))
  13361. characterMakers.push(() => makeCharacter(
  13362. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13363. {
  13364. front: {
  13365. height: math.unit(7 + 4 / 12, "feet"),
  13366. weight: math.unit(500, "lb"),
  13367. name: "Front",
  13368. image: {
  13369. source: "./media/characters/regena-maxwell/front.svg",
  13370. extra: 3115 / 2770,
  13371. bottom: 0.02
  13372. }
  13373. },
  13374. },
  13375. [
  13376. {
  13377. name: "Normal",
  13378. height: math.unit(7 + 4 / 12, "feet"),
  13379. default: true
  13380. },
  13381. {
  13382. name: "Macro",
  13383. height: math.unit(220, "feet")
  13384. },
  13385. {
  13386. name: "Megamacro",
  13387. height: math.unit(11, "miles")
  13388. },
  13389. ]
  13390. ))
  13391. characterMakers.push(() => makeCharacter(
  13392. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13393. {
  13394. front: {
  13395. height: math.unit(6, "feet"),
  13396. weight: math.unit(150, "lb"),
  13397. name: "Front",
  13398. image: {
  13399. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13400. extra: 860 / 690,
  13401. bottom: 0.03
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Normal",
  13408. height: math.unit(1.7, "meters"),
  13409. default: true
  13410. },
  13411. ]
  13412. ))
  13413. characterMakers.push(() => makeCharacter(
  13414. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13415. {
  13416. front: {
  13417. height: math.unit(6, "feet"),
  13418. weight: math.unit(150, "lb"),
  13419. name: "Front",
  13420. image: {
  13421. source: "./media/characters/quilly/front.svg",
  13422. extra: 890 / 776
  13423. }
  13424. },
  13425. },
  13426. [
  13427. {
  13428. name: "Gigamacro",
  13429. height: math.unit(404090, "miles"),
  13430. default: true
  13431. },
  13432. ]
  13433. ))
  13434. characterMakers.push(() => makeCharacter(
  13435. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13436. {
  13437. front: {
  13438. height: math.unit(7 + 8 / 12, "feet"),
  13439. weight: math.unit(350, "lb"),
  13440. name: "Front",
  13441. image: {
  13442. source: "./media/characters/tempest/front.svg",
  13443. extra: 1175 / 1086,
  13444. bottom: 0.02
  13445. }
  13446. },
  13447. },
  13448. [
  13449. {
  13450. name: "Normal",
  13451. height: math.unit(7 + 8 / 12, "feet"),
  13452. default: true
  13453. },
  13454. ]
  13455. ))
  13456. characterMakers.push(() => makeCharacter(
  13457. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13458. {
  13459. side: {
  13460. height: math.unit(4 + 5 / 12, "feet"),
  13461. weight: math.unit(80, "lb"),
  13462. name: "Side",
  13463. image: {
  13464. source: "./media/characters/rodger/side.svg",
  13465. extra: 1235 / 1118
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Micro",
  13472. height: math.unit(1, "inch")
  13473. },
  13474. {
  13475. name: "Normal",
  13476. height: math.unit(4 + 5 / 12, "feet"),
  13477. default: true
  13478. },
  13479. {
  13480. name: "Macro",
  13481. height: math.unit(120, "feet")
  13482. },
  13483. ]
  13484. ))
  13485. characterMakers.push(() => makeCharacter(
  13486. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13487. {
  13488. front: {
  13489. height: math.unit(6, "feet"),
  13490. weight: math.unit(150, "lb"),
  13491. name: "Front",
  13492. image: {
  13493. source: "./media/characters/danyel/front.svg",
  13494. extra: 1185 / 1123,
  13495. bottom: 0.05
  13496. }
  13497. },
  13498. },
  13499. [
  13500. {
  13501. name: "Shrunken",
  13502. height: math.unit(0.5, "mm")
  13503. },
  13504. {
  13505. name: "Micro",
  13506. height: math.unit(1, "mm"),
  13507. default: true
  13508. },
  13509. {
  13510. name: "Upsized",
  13511. height: math.unit(5 + 5 / 12, "feet")
  13512. },
  13513. ]
  13514. ))
  13515. characterMakers.push(() => makeCharacter(
  13516. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13517. {
  13518. front: {
  13519. height: math.unit(5 + 6 / 12, "feet"),
  13520. weight: math.unit(200, "lb"),
  13521. name: "Front",
  13522. image: {
  13523. source: "./media/characters/vivian-bijoux/front.svg",
  13524. extra: 1,
  13525. bottom: 0.072
  13526. }
  13527. },
  13528. },
  13529. [
  13530. {
  13531. name: "Normal",
  13532. height: math.unit(5 + 6 / 12, "feet"),
  13533. default: true
  13534. },
  13535. {
  13536. name: "Bad Dream",
  13537. height: math.unit(500, "feet")
  13538. },
  13539. {
  13540. name: "Nightmare",
  13541. height: math.unit(500, "miles")
  13542. },
  13543. ]
  13544. ))
  13545. characterMakers.push(() => makeCharacter(
  13546. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13547. {
  13548. front: {
  13549. height: math.unit(6 + 1 / 12, "feet"),
  13550. weight: math.unit(260, "lb"),
  13551. name: "Front",
  13552. image: {
  13553. source: "./media/characters/zeta/front.svg",
  13554. extra: 1968 / 1889,
  13555. bottom: 0.06
  13556. }
  13557. },
  13558. back: {
  13559. height: math.unit(6 + 1 / 12, "feet"),
  13560. weight: math.unit(260, "lb"),
  13561. name: "Back",
  13562. image: {
  13563. source: "./media/characters/zeta/back.svg",
  13564. extra: 1944 / 1858,
  13565. bottom: 0.03
  13566. }
  13567. },
  13568. hand: {
  13569. height: math.unit(1.112, "feet"),
  13570. name: "Hand",
  13571. image: {
  13572. source: "./media/characters/zeta/hand.svg"
  13573. }
  13574. },
  13575. foot: {
  13576. height: math.unit(1.48, "feet"),
  13577. name: "Foot",
  13578. image: {
  13579. source: "./media/characters/zeta/foot.svg"
  13580. }
  13581. },
  13582. },
  13583. [
  13584. {
  13585. name: "Micro",
  13586. height: math.unit(6, "inches")
  13587. },
  13588. {
  13589. name: "Normal",
  13590. height: math.unit(6 + 1 / 12, "feet"),
  13591. default: true
  13592. },
  13593. {
  13594. name: "Macro",
  13595. height: math.unit(20, "feet")
  13596. },
  13597. ]
  13598. ))
  13599. characterMakers.push(() => makeCharacter(
  13600. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13601. {
  13602. front: {
  13603. height: math.unit(6, "feet"),
  13604. weight: math.unit(150, "lb"),
  13605. name: "Front",
  13606. image: {
  13607. source: "./media/characters/jamie-larsen/front.svg",
  13608. extra: 962 / 933,
  13609. bottom: 0.02
  13610. }
  13611. },
  13612. back: {
  13613. height: math.unit(6, "feet"),
  13614. weight: math.unit(150, "lb"),
  13615. name: "Back",
  13616. image: {
  13617. source: "./media/characters/jamie-larsen/back.svg",
  13618. extra: 997 / 946
  13619. }
  13620. },
  13621. },
  13622. [
  13623. {
  13624. name: "Macro",
  13625. height: math.unit(28 + 7 / 12, "feet"),
  13626. default: true
  13627. },
  13628. {
  13629. name: "Macro+",
  13630. height: math.unit(180, "feet")
  13631. },
  13632. {
  13633. name: "Megamacro",
  13634. height: math.unit(10, "miles")
  13635. },
  13636. {
  13637. name: "Gigamacro",
  13638. height: math.unit(200000, "miles")
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(120, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/vance/front.svg",
  13651. extra: 1980 / 1890,
  13652. bottom: 0.09
  13653. }
  13654. },
  13655. back: {
  13656. height: math.unit(6, "feet"),
  13657. weight: math.unit(120, "lb"),
  13658. name: "Back",
  13659. image: {
  13660. source: "./media/characters/vance/back.svg",
  13661. extra: 2081 / 1994,
  13662. bottom: 0.014
  13663. }
  13664. },
  13665. hand: {
  13666. height: math.unit(0.88, "feet"),
  13667. name: "Hand",
  13668. image: {
  13669. source: "./media/characters/vance/hand.svg"
  13670. }
  13671. },
  13672. foot: {
  13673. height: math.unit(0.64, "feet"),
  13674. name: "Foot",
  13675. image: {
  13676. source: "./media/characters/vance/foot.svg"
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Small",
  13683. height: math.unit(90, "feet"),
  13684. default: true
  13685. },
  13686. {
  13687. name: "Macro",
  13688. height: math.unit(100, "meters")
  13689. },
  13690. {
  13691. name: "Megamacro",
  13692. height: math.unit(15, "miles")
  13693. },
  13694. ]
  13695. ))
  13696. characterMakers.push(() => makeCharacter(
  13697. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13698. {
  13699. front: {
  13700. height: math.unit(6, "feet"),
  13701. weight: math.unit(180, "lb"),
  13702. name: "Front",
  13703. image: {
  13704. source: "./media/characters/xochitl/front.svg",
  13705. extra: 2297 / 2261,
  13706. bottom: 0.065
  13707. }
  13708. },
  13709. back: {
  13710. height: math.unit(6, "feet"),
  13711. weight: math.unit(180, "lb"),
  13712. name: "Back",
  13713. image: {
  13714. source: "./media/characters/xochitl/back.svg",
  13715. extra: 2386 / 2354,
  13716. bottom: 0.01
  13717. }
  13718. },
  13719. foot: {
  13720. height: math.unit(6 / 5 * 1.15, "feet"),
  13721. weight: math.unit(150, "lb"),
  13722. name: "Foot",
  13723. image: {
  13724. source: "./media/characters/xochitl/foot.svg"
  13725. }
  13726. },
  13727. },
  13728. [
  13729. {
  13730. name: "Macro",
  13731. height: math.unit(80, "feet")
  13732. },
  13733. {
  13734. name: "Macro+",
  13735. height: math.unit(400, "feet"),
  13736. default: true
  13737. },
  13738. {
  13739. name: "Gigamacro",
  13740. height: math.unit(80000, "miles")
  13741. },
  13742. {
  13743. name: "Gigamacro+",
  13744. height: math.unit(400000, "miles")
  13745. },
  13746. {
  13747. name: "Teramacro",
  13748. height: math.unit(300, "AU")
  13749. },
  13750. ]
  13751. ))
  13752. characterMakers.push(() => makeCharacter(
  13753. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13754. {
  13755. front: {
  13756. height: math.unit(6, "feet"),
  13757. weight: math.unit(150, "lb"),
  13758. name: "Front",
  13759. image: {
  13760. source: "./media/characters/vincent/front.svg",
  13761. extra: 1130 / 1080,
  13762. bottom: 0.055
  13763. }
  13764. },
  13765. beak: {
  13766. height: math.unit(6 * 0.1, "feet"),
  13767. name: "Beak",
  13768. image: {
  13769. source: "./media/characters/vincent/beak.svg"
  13770. }
  13771. },
  13772. hand: {
  13773. height: math.unit(6 * 0.85, "feet"),
  13774. weight: math.unit(150, "lb"),
  13775. name: "Hand",
  13776. image: {
  13777. source: "./media/characters/vincent/hand.svg"
  13778. }
  13779. },
  13780. foot: {
  13781. height: math.unit(6 * 0.19, "feet"),
  13782. weight: math.unit(150, "lb"),
  13783. name: "Foot",
  13784. image: {
  13785. source: "./media/characters/vincent/foot.svg"
  13786. }
  13787. },
  13788. },
  13789. [
  13790. {
  13791. name: "Base",
  13792. height: math.unit(6 + 5 / 12, "feet"),
  13793. default: true
  13794. },
  13795. {
  13796. name: "Macro",
  13797. height: math.unit(300, "feet")
  13798. },
  13799. {
  13800. name: "Megamacro",
  13801. height: math.unit(2, "miles")
  13802. },
  13803. {
  13804. name: "Gigamacro",
  13805. height: math.unit(1000, "miles")
  13806. },
  13807. ]
  13808. ))
  13809. characterMakers.push(() => makeCharacter(
  13810. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13811. {
  13812. front: {
  13813. height: math.unit(2, "meters"),
  13814. weight: math.unit(500, "kg"),
  13815. name: "Front",
  13816. image: {
  13817. source: "./media/characters/coatl/front.svg",
  13818. extra: 3948 / 3500,
  13819. bottom: 0.082
  13820. }
  13821. },
  13822. },
  13823. [
  13824. {
  13825. name: "Normal",
  13826. height: math.unit(4, "meters")
  13827. },
  13828. {
  13829. name: "Macro",
  13830. height: math.unit(100, "meters"),
  13831. default: true
  13832. },
  13833. {
  13834. name: "Macro+",
  13835. height: math.unit(300, "meters")
  13836. },
  13837. {
  13838. name: "Megamacro",
  13839. height: math.unit(3, "gigameters")
  13840. },
  13841. {
  13842. name: "Megamacro+",
  13843. height: math.unit(300, "terameters")
  13844. },
  13845. {
  13846. name: "Megamacro++",
  13847. height: math.unit(3, "lightyears")
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13853. {
  13854. front: {
  13855. height: math.unit(6, "feet"),
  13856. weight: math.unit(50, "kg"),
  13857. name: "front",
  13858. image: {
  13859. source: "./media/characters/shiroryu/front.svg",
  13860. extra: 1990 / 1935
  13861. }
  13862. },
  13863. },
  13864. [
  13865. {
  13866. name: "Mortal Mingling",
  13867. height: math.unit(3, "meters")
  13868. },
  13869. {
  13870. name: "Kaiju-ish",
  13871. height: math.unit(250, "meters")
  13872. },
  13873. {
  13874. name: "Somewhat Godly",
  13875. height: math.unit(400, "km"),
  13876. default: true
  13877. },
  13878. {
  13879. name: "Planetary",
  13880. height: math.unit(300, "megameters")
  13881. },
  13882. {
  13883. name: "Galaxy-dwarfing",
  13884. height: math.unit(450, "kiloparsecs")
  13885. },
  13886. {
  13887. name: "Universe Eater",
  13888. height: math.unit(150, "gigaparsecs")
  13889. },
  13890. {
  13891. name: "Almost Immeasurable",
  13892. height: math.unit(1.3e266, "yottaparsecs")
  13893. },
  13894. ]
  13895. ))
  13896. characterMakers.push(() => makeCharacter(
  13897. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13898. {
  13899. front: {
  13900. height: math.unit(6, "feet"),
  13901. weight: math.unit(150, "lb"),
  13902. name: "Front",
  13903. image: {
  13904. source: "./media/characters/umeko/front.svg",
  13905. extra: 1,
  13906. bottom: 0.019
  13907. }
  13908. },
  13909. frontArmored: {
  13910. height: math.unit(6, "feet"),
  13911. weight: math.unit(150, "lb"),
  13912. name: "Front (Armored)",
  13913. image: {
  13914. source: "./media/characters/umeko/front-armored.svg",
  13915. extra: 1,
  13916. bottom: 0.021
  13917. }
  13918. },
  13919. },
  13920. [
  13921. {
  13922. name: "Macro",
  13923. height: math.unit(220, "feet"),
  13924. default: true
  13925. },
  13926. {
  13927. name: "Guardian Dragon",
  13928. height: math.unit(50, "miles")
  13929. },
  13930. {
  13931. name: "Cosmic",
  13932. height: math.unit(800000, "miles")
  13933. },
  13934. ]
  13935. ))
  13936. characterMakers.push(() => makeCharacter(
  13937. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13938. {
  13939. front: {
  13940. height: math.unit(6, "feet"),
  13941. weight: math.unit(150, "lb"),
  13942. name: "Front",
  13943. image: {
  13944. source: "./media/characters/cassidy/front.svg",
  13945. extra: 1,
  13946. bottom: 0.043
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Canon Height",
  13953. height: math.unit(120, "feet"),
  13954. default: true
  13955. },
  13956. {
  13957. name: "Macro+",
  13958. height: math.unit(400, "feet")
  13959. },
  13960. {
  13961. name: "Macro++",
  13962. height: math.unit(4000, "feet")
  13963. },
  13964. {
  13965. name: "Megamacro",
  13966. height: math.unit(3, "miles")
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13972. {
  13973. front: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(150, "lb"),
  13976. name: "Front",
  13977. image: {
  13978. source: "./media/characters/isaac/front.svg",
  13979. extra: 896 / 815,
  13980. bottom: 0.11
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "Human Size",
  13987. height: math.unit(8, "feet"),
  13988. default: true
  13989. },
  13990. {
  13991. name: "Macro",
  13992. height: math.unit(400, "feet")
  13993. },
  13994. {
  13995. name: "Megamacro",
  13996. height: math.unit(50, "miles")
  13997. },
  13998. {
  13999. name: "Canon Height",
  14000. height: math.unit(200, "AU")
  14001. },
  14002. ]
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14006. {
  14007. front: {
  14008. height: math.unit(6, "feet"),
  14009. weight: math.unit(72, "kg"),
  14010. name: "Front",
  14011. image: {
  14012. source: "./media/characters/sleekit/front.svg",
  14013. extra: 4693 / 4487,
  14014. bottom: 0.012
  14015. }
  14016. },
  14017. },
  14018. [
  14019. {
  14020. name: "Minimum Height",
  14021. height: math.unit(10, "meters")
  14022. },
  14023. {
  14024. name: "Smaller",
  14025. height: math.unit(25, "meters")
  14026. },
  14027. {
  14028. name: "Larger",
  14029. height: math.unit(38, "meters"),
  14030. default: true
  14031. },
  14032. {
  14033. name: "Maximum height",
  14034. height: math.unit(100, "meters")
  14035. },
  14036. ]
  14037. ))
  14038. characterMakers.push(() => makeCharacter(
  14039. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14040. {
  14041. front: {
  14042. height: math.unit(6, "feet"),
  14043. weight: math.unit(150, "lb"),
  14044. name: "Front",
  14045. image: {
  14046. source: "./media/characters/nillia/front.svg",
  14047. extra: 2195 / 2037,
  14048. bottom: 0.005
  14049. }
  14050. },
  14051. back: {
  14052. height: math.unit(6, "feet"),
  14053. weight: math.unit(150, "lb"),
  14054. name: "Back",
  14055. image: {
  14056. source: "./media/characters/nillia/back.svg",
  14057. extra: 2195 / 2037,
  14058. bottom: 0.005
  14059. }
  14060. },
  14061. },
  14062. [
  14063. {
  14064. name: "Canon Height",
  14065. height: math.unit(489, "feet"),
  14066. default: true
  14067. }
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(6, "feet"),
  14075. weight: math.unit(150, "lb"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/mesmyriza/front.svg",
  14079. extra: 2067 / 1784,
  14080. bottom: 0.035
  14081. }
  14082. },
  14083. foot: {
  14084. height: math.unit(6 / (250 / 35), "feet"),
  14085. name: "Foot",
  14086. image: {
  14087. source: "./media/characters/mesmyriza/foot.svg"
  14088. }
  14089. },
  14090. },
  14091. [
  14092. {
  14093. name: "Macro",
  14094. height: math.unit(457, "meters"),
  14095. default: true
  14096. },
  14097. {
  14098. name: "Megamacro",
  14099. height: math.unit(8, "megameters")
  14100. },
  14101. ]
  14102. ))
  14103. characterMakers.push(() => makeCharacter(
  14104. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14105. {
  14106. front: {
  14107. height: math.unit(6, "feet"),
  14108. weight: math.unit(250, "lb"),
  14109. name: "Front",
  14110. image: {
  14111. source: "./media/characters/saudade/front.svg",
  14112. extra: 1172 / 1139,
  14113. bottom: 0.035
  14114. }
  14115. },
  14116. },
  14117. [
  14118. {
  14119. name: "Micro",
  14120. height: math.unit(3, "inches")
  14121. },
  14122. {
  14123. name: "Normal",
  14124. height: math.unit(6, "feet"),
  14125. default: true
  14126. },
  14127. {
  14128. name: "Macro",
  14129. height: math.unit(50, "feet")
  14130. },
  14131. {
  14132. name: "Megamacro",
  14133. height: math.unit(2800, "feet")
  14134. },
  14135. ]
  14136. ))
  14137. characterMakers.push(() => makeCharacter(
  14138. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14139. {
  14140. front: {
  14141. height: math.unit(5 + 4 / 12, "feet"),
  14142. weight: math.unit(100, "lb"),
  14143. name: "Front",
  14144. image: {
  14145. source: "./media/characters/keireer/front.svg",
  14146. extra: 716 / 666,
  14147. bottom: 0.05
  14148. }
  14149. },
  14150. },
  14151. [
  14152. {
  14153. name: "Normal",
  14154. height: math.unit(5 + 4 / 12, "feet"),
  14155. default: true
  14156. },
  14157. ]
  14158. ))
  14159. characterMakers.push(() => makeCharacter(
  14160. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14161. {
  14162. front: {
  14163. height: math.unit(6, "feet"),
  14164. weight: math.unit(90, "kg"),
  14165. name: "Front",
  14166. image: {
  14167. source: "./media/characters/mirja/front.svg",
  14168. extra: 1789 / 1683,
  14169. bottom: 0.05
  14170. }
  14171. },
  14172. frontDressed: {
  14173. height: math.unit(6, "feet"),
  14174. weight: math.unit(90, "lb"),
  14175. name: "Front (Dressed)",
  14176. image: {
  14177. source: "./media/characters/mirja/front-dressed.svg",
  14178. extra: 1789 / 1683,
  14179. bottom: 0.05
  14180. }
  14181. },
  14182. back: {
  14183. height: math.unit(6, "feet"),
  14184. weight: math.unit(90, "lb"),
  14185. name: "Back",
  14186. image: {
  14187. source: "./media/characters/mirja/back.svg",
  14188. extra: 953 / 917,
  14189. bottom: 0.017
  14190. }
  14191. },
  14192. },
  14193. [
  14194. {
  14195. name: "\"Incognito\"",
  14196. height: math.unit(3, "meters")
  14197. },
  14198. {
  14199. name: "Strolling Size",
  14200. height: math.unit(15, "km")
  14201. },
  14202. {
  14203. name: "Larger Strolling Size",
  14204. height: math.unit(400, "km")
  14205. },
  14206. {
  14207. name: "Preferred Size",
  14208. height: math.unit(5000, "km")
  14209. },
  14210. {
  14211. name: "True Size",
  14212. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14213. default: true
  14214. },
  14215. ]
  14216. ))
  14217. characterMakers.push(() => makeCharacter(
  14218. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14219. {
  14220. front: {
  14221. height: math.unit(15, "feet"),
  14222. weight: math.unit(880, "kg"),
  14223. name: "Front",
  14224. image: {
  14225. source: "./media/characters/nightraver/front.svg",
  14226. extra: 2444 / 2160,
  14227. bottom: 0.027
  14228. }
  14229. },
  14230. back: {
  14231. height: math.unit(15, "feet"),
  14232. weight: math.unit(880, "kg"),
  14233. name: "Back",
  14234. image: {
  14235. source: "./media/characters/nightraver/back.svg",
  14236. extra: 2309 / 2180,
  14237. bottom: 0.005
  14238. }
  14239. },
  14240. sole: {
  14241. height: math.unit(2.878, "feet"),
  14242. name: "Sole",
  14243. image: {
  14244. source: "./media/characters/nightraver/sole.svg"
  14245. }
  14246. },
  14247. foot: {
  14248. height: math.unit(2.285, "feet"),
  14249. name: "Foot",
  14250. image: {
  14251. source: "./media/characters/nightraver/foot.svg"
  14252. }
  14253. },
  14254. maw: {
  14255. height: math.unit(2.67, "feet"),
  14256. name: "Maw",
  14257. image: {
  14258. source: "./media/characters/nightraver/maw.svg"
  14259. }
  14260. },
  14261. },
  14262. [
  14263. {
  14264. name: "Micro",
  14265. height: math.unit(1, "cm")
  14266. },
  14267. {
  14268. name: "Normal",
  14269. height: math.unit(15, "feet"),
  14270. default: true
  14271. },
  14272. {
  14273. name: "Macro",
  14274. height: math.unit(300, "feet")
  14275. },
  14276. {
  14277. name: "Megamacro",
  14278. height: math.unit(300, "miles")
  14279. },
  14280. {
  14281. name: "Gigamacro",
  14282. height: math.unit(10000, "miles")
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14288. {
  14289. side: {
  14290. height: math.unit(2, "inches"),
  14291. weight: math.unit(5, "grams"),
  14292. name: "Side",
  14293. image: {
  14294. source: "./media/characters/arc/side.svg"
  14295. }
  14296. },
  14297. },
  14298. [
  14299. {
  14300. name: "Micro",
  14301. height: math.unit(2, "inches"),
  14302. default: true
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14308. {
  14309. front: {
  14310. height: math.unit(1.1938, "meters"),
  14311. weight: math.unit(54, "kg"),
  14312. name: "Front",
  14313. image: {
  14314. source: "./media/characters/nebula-shahar/front.svg",
  14315. extra: 1642 / 1436,
  14316. bottom: 0.06
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Megamicro",
  14323. height: math.unit(0.3, "mm")
  14324. },
  14325. {
  14326. name: "Micro",
  14327. height: math.unit(3, "cm")
  14328. },
  14329. {
  14330. name: "Normal",
  14331. height: math.unit(138, "cm"),
  14332. default: true
  14333. },
  14334. {
  14335. name: "Macro",
  14336. height: math.unit(30, "m")
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14342. {
  14343. front: {
  14344. height: math.unit(5.24, "feet"),
  14345. weight: math.unit(150, "lb"),
  14346. name: "Front",
  14347. image: {
  14348. source: "./media/characters/shayla/front.svg",
  14349. extra: 1512 / 1414,
  14350. bottom: 0.01
  14351. }
  14352. },
  14353. back: {
  14354. height: math.unit(5.24, "feet"),
  14355. weight: math.unit(150, "lb"),
  14356. name: "Back",
  14357. image: {
  14358. source: "./media/characters/shayla/back.svg",
  14359. extra: 1512 / 1414
  14360. }
  14361. },
  14362. hand: {
  14363. height: math.unit(0.7781496062992126, "feet"),
  14364. name: "Hand",
  14365. image: {
  14366. source: "./media/characters/shayla/hand.svg"
  14367. }
  14368. },
  14369. foot: {
  14370. height: math.unit(1.4206036745406823, "feet"),
  14371. name: "Foot",
  14372. image: {
  14373. source: "./media/characters/shayla/foot.svg"
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Micro",
  14380. height: math.unit(0.32, "feet")
  14381. },
  14382. {
  14383. name: "Normal",
  14384. height: math.unit(5.24, "feet"),
  14385. default: true
  14386. },
  14387. {
  14388. name: "Macro",
  14389. height: math.unit(492.12, "feet")
  14390. },
  14391. {
  14392. name: "Megamacro",
  14393. height: math.unit(186.41, "miles")
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14399. {
  14400. front: {
  14401. height: math.unit(2.2, "m"),
  14402. weight: math.unit(120, "kg"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/pia-jr/front.svg",
  14406. extra: 1000 / 970,
  14407. bottom: 0.035
  14408. }
  14409. },
  14410. hand: {
  14411. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14412. name: "Hand",
  14413. image: {
  14414. source: "./media/characters/pia-jr/hand.svg"
  14415. }
  14416. },
  14417. paw: {
  14418. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14419. name: "Paw",
  14420. image: {
  14421. source: "./media/characters/pia-jr/paw.svg"
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Micro",
  14428. height: math.unit(1.2, "cm")
  14429. },
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(2.2, "m"),
  14433. default: true
  14434. },
  14435. {
  14436. name: "Macro",
  14437. height: math.unit(180, "m")
  14438. },
  14439. {
  14440. name: "Megamacro",
  14441. height: math.unit(420, "km")
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(2, "m"),
  14450. weight: math.unit(115, "kg"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/pia-sr/front.svg",
  14454. extra: 760 / 730,
  14455. bottom: 0.015
  14456. }
  14457. },
  14458. back: {
  14459. height: math.unit(2, "m"),
  14460. weight: math.unit(115, "kg"),
  14461. name: "Back",
  14462. image: {
  14463. source: "./media/characters/pia-sr/back.svg",
  14464. extra: 760 / 730,
  14465. bottom: 0.01
  14466. }
  14467. },
  14468. hand: {
  14469. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14470. name: "Hand",
  14471. image: {
  14472. source: "./media/characters/pia-sr/hand.svg"
  14473. }
  14474. },
  14475. foot: {
  14476. height: math.unit(1.83, "feet"),
  14477. name: "Foot",
  14478. image: {
  14479. source: "./media/characters/pia-sr/foot.svg"
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Micro",
  14486. height: math.unit(88, "mm")
  14487. },
  14488. {
  14489. name: "Normal",
  14490. height: math.unit(2, "m"),
  14491. default: true
  14492. },
  14493. {
  14494. name: "Macro",
  14495. height: math.unit(200, "m")
  14496. },
  14497. {
  14498. name: "Megamacro",
  14499. height: math.unit(420, "km")
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14505. {
  14506. front: {
  14507. height: math.unit(8 + 2 / 12, "feet"),
  14508. weight: math.unit(300, "lb"),
  14509. name: "Front",
  14510. image: {
  14511. source: "./media/characters/kibibyte/front.svg",
  14512. extra: 2221 / 2098,
  14513. bottom: 0.04
  14514. }
  14515. },
  14516. },
  14517. [
  14518. {
  14519. name: "Normal",
  14520. height: math.unit(8 + 2 / 12, "feet"),
  14521. default: true
  14522. },
  14523. {
  14524. name: "Socialable Macro",
  14525. height: math.unit(50, "feet")
  14526. },
  14527. {
  14528. name: "Macro",
  14529. height: math.unit(300, "feet")
  14530. },
  14531. {
  14532. name: "Megamacro",
  14533. height: math.unit(500, "miles")
  14534. },
  14535. ]
  14536. ))
  14537. characterMakers.push(() => makeCharacter(
  14538. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14539. {
  14540. front: {
  14541. height: math.unit(6, "feet"),
  14542. weight: math.unit(150, "lb"),
  14543. name: "Front",
  14544. image: {
  14545. source: "./media/characters/felix/front.svg",
  14546. extra: 762 / 722,
  14547. bottom: 0.02
  14548. }
  14549. },
  14550. frontClothed: {
  14551. height: math.unit(6, "feet"),
  14552. weight: math.unit(150, "lb"),
  14553. name: "Front (Clothed)",
  14554. image: {
  14555. source: "./media/characters/felix/front-clothed.svg",
  14556. extra: 762 / 722,
  14557. bottom: 0.02
  14558. }
  14559. },
  14560. },
  14561. [
  14562. {
  14563. name: "Normal",
  14564. height: math.unit(6 + 8 / 12, "feet"),
  14565. default: true
  14566. },
  14567. {
  14568. name: "Macro",
  14569. height: math.unit(2600, "feet")
  14570. },
  14571. {
  14572. name: "Megamacro",
  14573. height: math.unit(450, "miles")
  14574. },
  14575. ]
  14576. ))
  14577. characterMakers.push(() => makeCharacter(
  14578. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14579. {
  14580. front: {
  14581. height: math.unit(6 + 1 / 12, "feet"),
  14582. weight: math.unit(250, "lb"),
  14583. name: "Front",
  14584. image: {
  14585. source: "./media/characters/tobo/front.svg",
  14586. extra: 608 / 586,
  14587. bottom: 0.023
  14588. }
  14589. },
  14590. back: {
  14591. height: math.unit(6 + 1 / 12, "feet"),
  14592. weight: math.unit(250, "lb"),
  14593. name: "Back",
  14594. image: {
  14595. source: "./media/characters/tobo/back.svg",
  14596. extra: 608 / 586
  14597. }
  14598. },
  14599. },
  14600. [
  14601. {
  14602. name: "Nano",
  14603. height: math.unit(2, "nm")
  14604. },
  14605. {
  14606. name: "Megamicro",
  14607. height: math.unit(0.1, "mm")
  14608. },
  14609. {
  14610. name: "Micro",
  14611. height: math.unit(1, "inch"),
  14612. default: true
  14613. },
  14614. {
  14615. name: "Human-sized",
  14616. height: math.unit(6 + 1 / 12, "feet")
  14617. },
  14618. {
  14619. name: "Macro",
  14620. height: math.unit(250, "feet")
  14621. },
  14622. {
  14623. name: "Megamacro",
  14624. height: math.unit(75, "miles")
  14625. },
  14626. {
  14627. name: "Texas-sized",
  14628. height: math.unit(750, "miles")
  14629. },
  14630. {
  14631. name: "Teramacro",
  14632. height: math.unit(50000, "miles")
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14638. {
  14639. front: {
  14640. height: math.unit(6, "feet"),
  14641. weight: math.unit(269, "lb"),
  14642. name: "Front",
  14643. image: {
  14644. source: "./media/characters/danny-kapowsky/front.svg",
  14645. extra: 766 / 736,
  14646. bottom: 0.044
  14647. }
  14648. },
  14649. back: {
  14650. height: math.unit(6, "feet"),
  14651. weight: math.unit(269, "lb"),
  14652. name: "Back",
  14653. image: {
  14654. source: "./media/characters/danny-kapowsky/back.svg",
  14655. extra: 797 / 760,
  14656. bottom: 0.025
  14657. }
  14658. },
  14659. },
  14660. [
  14661. {
  14662. name: "Macro",
  14663. height: math.unit(150, "feet"),
  14664. default: true
  14665. },
  14666. {
  14667. name: "Macro+",
  14668. height: math.unit(200, "feet")
  14669. },
  14670. {
  14671. name: "Macro++",
  14672. height: math.unit(300, "feet")
  14673. },
  14674. {
  14675. name: "Macro+++",
  14676. height: math.unit(400, "feet")
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14682. {
  14683. side: {
  14684. height: math.unit(6, "feet"),
  14685. weight: math.unit(170, "lb"),
  14686. name: "Side",
  14687. image: {
  14688. source: "./media/characters/finn/side.svg",
  14689. extra: 1953 / 1807,
  14690. bottom: 0.057
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Megamacro",
  14697. height: math.unit(14445, "feet"),
  14698. default: true
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(5 + 6 / 12, "feet"),
  14707. weight: math.unit(125, "lb"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/roy/front.svg",
  14711. extra: 1,
  14712. bottom: 0.11
  14713. }
  14714. },
  14715. },
  14716. [
  14717. {
  14718. name: "Micro",
  14719. height: math.unit(3, "inches"),
  14720. default: true
  14721. },
  14722. {
  14723. name: "Normal",
  14724. height: math.unit(5 + 6 / 12, "feet")
  14725. },
  14726. {
  14727. name: "Lesser Macro",
  14728. height: math.unit(60, "feet")
  14729. },
  14730. {
  14731. name: "Greater Macro",
  14732. height: math.unit(120, "feet")
  14733. },
  14734. ]
  14735. ))
  14736. characterMakers.push(() => makeCharacter(
  14737. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14738. {
  14739. front: {
  14740. height: math.unit(6, "feet"),
  14741. weight: math.unit(100, "lb"),
  14742. name: "Front",
  14743. image: {
  14744. source: "./media/characters/aevsivs/front.svg",
  14745. extra: 1,
  14746. bottom: 0.03
  14747. }
  14748. },
  14749. back: {
  14750. height: math.unit(6, "feet"),
  14751. weight: math.unit(100, "lb"),
  14752. name: "Back",
  14753. image: {
  14754. source: "./media/characters/aevsivs/back.svg"
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "Micro",
  14761. height: math.unit(2, "inches"),
  14762. default: true
  14763. },
  14764. {
  14765. name: "Normal",
  14766. height: math.unit(5, "feet")
  14767. },
  14768. ]
  14769. ))
  14770. characterMakers.push(() => makeCharacter(
  14771. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14772. {
  14773. front: {
  14774. height: math.unit(5 + 7 / 12, "feet"),
  14775. weight: math.unit(159, "lb"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/hildegard/front.svg",
  14779. extra: 289 / 269,
  14780. bottom: 7.63 / 297.8
  14781. }
  14782. },
  14783. back: {
  14784. height: math.unit(5 + 7 / 12, "feet"),
  14785. weight: math.unit(159, "lb"),
  14786. name: "Back",
  14787. image: {
  14788. source: "./media/characters/hildegard/back.svg",
  14789. extra: 280 / 260,
  14790. bottom: 2.3 / 282
  14791. }
  14792. },
  14793. },
  14794. [
  14795. {
  14796. name: "Normal",
  14797. height: math.unit(5 + 7 / 12, "feet"),
  14798. default: true
  14799. },
  14800. ]
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14804. {
  14805. bernard: {
  14806. height: math.unit(2 + 7 / 12, "feet"),
  14807. weight: math.unit(66, "lb"),
  14808. name: "Bernard",
  14809. rename: true,
  14810. image: {
  14811. source: "./media/characters/bernard-wilder/bernard.svg",
  14812. extra: 192 / 128,
  14813. bottom: 0.05
  14814. }
  14815. },
  14816. wilder: {
  14817. height: math.unit(5 + 8 / 12, "feet"),
  14818. weight: math.unit(143, "lb"),
  14819. name: "Wilder",
  14820. rename: true,
  14821. image: {
  14822. source: "./media/characters/bernard-wilder/wilder.svg",
  14823. extra: 361 / 312,
  14824. bottom: 0.02
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Normal",
  14831. height: math.unit(2 + 7 / 12, "feet"),
  14832. default: true
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14838. {
  14839. anthro: {
  14840. height: math.unit(6 + 1 / 12, "feet"),
  14841. weight: math.unit(155, "lb"),
  14842. name: "Anthro",
  14843. image: {
  14844. source: "./media/characters/hearth/anthro.svg",
  14845. extra: 260 / 250,
  14846. bottom: 0.02
  14847. }
  14848. },
  14849. feral: {
  14850. height: math.unit(3.78, "feet"),
  14851. weight: math.unit(35, "kg"),
  14852. name: "Feral",
  14853. image: {
  14854. source: "./media/characters/hearth/feral.svg",
  14855. extra: 153 / 135,
  14856. bottom: 0.03
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Normal",
  14863. height: math.unit(6 + 1 / 12, "feet"),
  14864. default: true
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(6, "feet"),
  14873. weight: math.unit(182, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/ingrid/front.svg",
  14877. extra: 294 / 268,
  14878. bottom: 0.027
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Normal",
  14885. height: math.unit(6, "feet"),
  14886. default: true
  14887. },
  14888. ]
  14889. ))
  14890. characterMakers.push(() => makeCharacter(
  14891. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14892. {
  14893. eevee: {
  14894. height: math.unit(2 + 10 / 12, "feet"),
  14895. weight: math.unit(86, "lb"),
  14896. name: "Malgam",
  14897. image: {
  14898. source: "./media/characters/malgam/eevee.svg",
  14899. extra: 218 / 180,
  14900. bottom: 0.2
  14901. }
  14902. },
  14903. sylveon: {
  14904. height: math.unit(4, "feet"),
  14905. weight: math.unit(101, "lb"),
  14906. name: "Future Malgam",
  14907. rename: true,
  14908. image: {
  14909. source: "./media/characters/malgam/sylveon.svg",
  14910. extra: 371 / 325,
  14911. bottom: 0.015
  14912. }
  14913. },
  14914. gigantamax: {
  14915. height: math.unit(50, "feet"),
  14916. name: "Gigantamax Malgam",
  14917. rename: true,
  14918. image: {
  14919. source: "./media/characters/malgam/gigantamax.svg"
  14920. }
  14921. },
  14922. },
  14923. [
  14924. {
  14925. name: "Normal",
  14926. height: math.unit(2 + 10 / 12, "feet"),
  14927. default: true
  14928. },
  14929. ]
  14930. ))
  14931. characterMakers.push(() => makeCharacter(
  14932. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14933. {
  14934. front: {
  14935. height: math.unit(5 + 11 / 12, "feet"),
  14936. weight: math.unit(188, "lb"),
  14937. name: "Front",
  14938. image: {
  14939. source: "./media/characters/fleur/front.svg",
  14940. extra: 309 / 283,
  14941. bottom: 0.007
  14942. }
  14943. },
  14944. },
  14945. [
  14946. {
  14947. name: "Normal",
  14948. height: math.unit(5 + 11 / 12, "feet"),
  14949. default: true
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(5 + 4 / 12, "feet"),
  14958. weight: math.unit(122, "lb"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/jude/front.svg",
  14962. extra: 288 / 273,
  14963. bottom: 0.03
  14964. }
  14965. },
  14966. },
  14967. [
  14968. {
  14969. name: "Normal",
  14970. height: math.unit(5 + 4 / 12, "feet"),
  14971. default: true
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14977. {
  14978. front: {
  14979. height: math.unit(5 + 11 / 12, "feet"),
  14980. weight: math.unit(190, "lb"),
  14981. name: "Front",
  14982. image: {
  14983. source: "./media/characters/seara/front.svg",
  14984. extra: 1,
  14985. bottom: 0.05
  14986. }
  14987. },
  14988. },
  14989. [
  14990. {
  14991. name: "Normal",
  14992. height: math.unit(5 + 11 / 12, "feet"),
  14993. default: true
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14999. {
  15000. front: {
  15001. height: math.unit(16 + 5 / 12, "feet"),
  15002. weight: math.unit(524, "lb"),
  15003. name: "Front",
  15004. image: {
  15005. source: "./media/characters/caspian/front.svg",
  15006. extra: 1,
  15007. bottom: 0.04
  15008. }
  15009. },
  15010. },
  15011. [
  15012. {
  15013. name: "Normal",
  15014. height: math.unit(16 + 5 / 12, "feet"),
  15015. default: true
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15021. {
  15022. front: {
  15023. height: math.unit(5 + 7 / 12, "feet"),
  15024. weight: math.unit(170, "lb"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/mika/front.svg",
  15028. extra: 1,
  15029. bottom: 0.016
  15030. }
  15031. },
  15032. },
  15033. [
  15034. {
  15035. name: "Normal",
  15036. height: math.unit(5 + 7 / 12, "feet"),
  15037. default: true
  15038. },
  15039. ]
  15040. ))
  15041. characterMakers.push(() => makeCharacter(
  15042. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15043. {
  15044. front: {
  15045. height: math.unit(6 + 2 / 12, "feet"),
  15046. weight: math.unit(268, "lb"),
  15047. name: "Front",
  15048. image: {
  15049. source: "./media/characters/sol/front.svg",
  15050. extra: 247 / 231,
  15051. bottom: 0.05
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Normal",
  15058. height: math.unit(6 + 2 / 12, "feet"),
  15059. default: true
  15060. },
  15061. ]
  15062. ))
  15063. characterMakers.push(() => makeCharacter(
  15064. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15065. {
  15066. buizel: {
  15067. height: math.unit(2 + 5 / 12, "feet"),
  15068. weight: math.unit(87, "lb"),
  15069. name: "Buizel",
  15070. image: {
  15071. source: "./media/characters/umiko/buizel.svg",
  15072. extra: 172 / 157,
  15073. bottom: 0.01
  15074. }
  15075. },
  15076. floatzel: {
  15077. height: math.unit(5 + 9 / 12, "feet"),
  15078. weight: math.unit(250, "lb"),
  15079. name: "Floatzel",
  15080. image: {
  15081. source: "./media/characters/umiko/floatzel.svg",
  15082. extra: 262 / 248
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Normal",
  15089. height: math.unit(2 + 5 / 12, "feet"),
  15090. default: true
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15096. {
  15097. front: {
  15098. height: math.unit(6 + 2 / 12, "feet"),
  15099. weight: math.unit(146, "lb"),
  15100. name: "Front",
  15101. image: {
  15102. source: "./media/characters/iliac/front.svg",
  15103. extra: 389 / 365,
  15104. bottom: 0.035
  15105. }
  15106. },
  15107. },
  15108. [
  15109. {
  15110. name: "Normal",
  15111. height: math.unit(6 + 2 / 12, "feet"),
  15112. default: true
  15113. },
  15114. ]
  15115. ))
  15116. characterMakers.push(() => makeCharacter(
  15117. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15118. {
  15119. front: {
  15120. height: math.unit(6, "feet"),
  15121. weight: math.unit(170, "lb"),
  15122. name: "Front",
  15123. image: {
  15124. source: "./media/characters/topaz/front.svg",
  15125. extra: 317 / 303,
  15126. bottom: 0.055
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(6, "feet"),
  15134. default: true
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15140. {
  15141. front: {
  15142. height: math.unit(5 + 11 / 12, "feet"),
  15143. weight: math.unit(144, "lb"),
  15144. name: "Front",
  15145. image: {
  15146. source: "./media/characters/gabriel/front.svg",
  15147. extra: 285 / 262,
  15148. bottom: 0.004
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(5 + 11 / 12, "feet"),
  15156. default: true
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15162. {
  15163. side: {
  15164. height: math.unit(6 + 5 / 12, "feet"),
  15165. weight: math.unit(300, "lb"),
  15166. name: "Side",
  15167. image: {
  15168. source: "./media/characters/tempest-suicune/side.svg",
  15169. extra: 195 / 154,
  15170. bottom: 0.04
  15171. }
  15172. },
  15173. },
  15174. [
  15175. {
  15176. name: "Normal",
  15177. height: math.unit(6 + 5 / 12, "feet"),
  15178. default: true
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15184. {
  15185. front: {
  15186. height: math.unit(7 + 2 / 12, "feet"),
  15187. weight: math.unit(322, "lb"),
  15188. name: "Front",
  15189. image: {
  15190. source: "./media/characters/vulcan/front.svg",
  15191. extra: 154 / 147,
  15192. bottom: 0.04
  15193. }
  15194. },
  15195. },
  15196. [
  15197. {
  15198. name: "Normal",
  15199. height: math.unit(7 + 2 / 12, "feet"),
  15200. default: true
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15206. {
  15207. front: {
  15208. height: math.unit(5 + 10 / 12, "feet"),
  15209. weight: math.unit(264, "lb"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/gault/front.svg",
  15213. extra: 161 / 140,
  15214. bottom: 0.028
  15215. }
  15216. },
  15217. },
  15218. [
  15219. {
  15220. name: "Normal",
  15221. height: math.unit(5 + 10 / 12, "feet"),
  15222. default: true
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15228. {
  15229. front: {
  15230. height: math.unit(6, "feet"),
  15231. weight: math.unit(150, "lb"),
  15232. name: "Front",
  15233. image: {
  15234. source: "./media/characters/shard/front.svg",
  15235. extra: 273 / 238,
  15236. bottom: 0.02
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(3 + 6 / 12, "feet"),
  15244. default: true
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(5 + 11 / 12, "feet"),
  15253. weight: math.unit(146, "lb"),
  15254. name: "Front",
  15255. image: {
  15256. source: "./media/characters/ashe/front.svg",
  15257. extra: 400 / 373,
  15258. bottom: 0.01
  15259. }
  15260. },
  15261. },
  15262. [
  15263. {
  15264. name: "Normal",
  15265. height: math.unit(5 + 11 / 12, "feet"),
  15266. default: true
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15272. {
  15273. front: {
  15274. height: math.unit(5 + 5 / 12, "feet"),
  15275. weight: math.unit(135, "lb"),
  15276. name: "Front",
  15277. image: {
  15278. source: "./media/characters/beatrix/front.svg",
  15279. extra: 392 / 379,
  15280. bottom: 0.01
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(6, "feet"),
  15288. default: true
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15294. {
  15295. front: {
  15296. height: math.unit(6, "feet"),
  15297. weight: math.unit(150, "lb"),
  15298. name: "Front",
  15299. image: {
  15300. source: "./media/characters/ignatius/front.svg",
  15301. extra: 245 / 222,
  15302. bottom: 0.01
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Normal",
  15309. height: math.unit(5 + 5 / 12, "feet"),
  15310. default: true
  15311. },
  15312. ]
  15313. ))
  15314. characterMakers.push(() => makeCharacter(
  15315. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15316. {
  15317. front: {
  15318. height: math.unit(6 + 2 / 12, "feet"),
  15319. weight: math.unit(138, "lb"),
  15320. name: "Front",
  15321. image: {
  15322. source: "./media/characters/mei-li/front.svg",
  15323. extra: 237 / 229,
  15324. bottom: 0.03
  15325. }
  15326. },
  15327. },
  15328. [
  15329. {
  15330. name: "Normal",
  15331. height: math.unit(6 + 2 / 12, "feet"),
  15332. default: true
  15333. },
  15334. ]
  15335. ))
  15336. characterMakers.push(() => makeCharacter(
  15337. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15338. {
  15339. front: {
  15340. height: math.unit(2 + 4 / 12, "feet"),
  15341. weight: math.unit(62, "lb"),
  15342. name: "Front",
  15343. image: {
  15344. source: "./media/characters/puru/front.svg",
  15345. extra: 206 / 149,
  15346. bottom: 0.06
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Normal",
  15353. height: math.unit(2 + 4 / 12, "feet"),
  15354. default: true
  15355. },
  15356. ]
  15357. ))
  15358. characterMakers.push(() => makeCharacter(
  15359. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15360. {
  15361. anthro: {
  15362. height: math.unit(5 + 8/12, "feet"),
  15363. weight: math.unit(200, "lb"),
  15364. energyNeed: math.unit(2000, "kcal"),
  15365. name: "Anthro",
  15366. image: {
  15367. source: "./media/characters/kee/anthro.svg",
  15368. extra: 3251/3184,
  15369. bottom: 250/3501
  15370. }
  15371. },
  15372. taur: {
  15373. height: math.unit(11, "feet"),
  15374. weight: math.unit(500, "lb"),
  15375. energyNeed: math.unit(5000, "kcal"),
  15376. name: "Taur",
  15377. image: {
  15378. source: "./media/characters/kee/taur.svg",
  15379. extra: 1362/1320,
  15380. bottom: 83/1445
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(5 + 8/12, "feet"),
  15388. default: true
  15389. },
  15390. {
  15391. name: "Macro",
  15392. height: math.unit(35, "feet")
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15398. {
  15399. anthro: {
  15400. height: math.unit(7, "feet"),
  15401. weight: math.unit(190, "lb"),
  15402. name: "Anthro",
  15403. image: {
  15404. source: "./media/characters/cobalt-dracha/anthro.svg",
  15405. extra: 231 / 225,
  15406. bottom: 0.04
  15407. }
  15408. },
  15409. feral: {
  15410. height: math.unit(9 + 7 / 12, "feet"),
  15411. weight: math.unit(294, "lb"),
  15412. name: "Feral",
  15413. image: {
  15414. source: "./media/characters/cobalt-dracha/feral.svg",
  15415. extra: 692 / 633,
  15416. bottom: 0.05
  15417. }
  15418. },
  15419. },
  15420. [
  15421. {
  15422. name: "Normal",
  15423. height: math.unit(7, "feet"),
  15424. default: true
  15425. },
  15426. ]
  15427. ))
  15428. characterMakers.push(() => makeCharacter(
  15429. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15430. {
  15431. fallen: {
  15432. height: math.unit(11 + 8 / 12, "feet"),
  15433. weight: math.unit(485, "lb"),
  15434. name: "Java (Fallen)",
  15435. rename: true,
  15436. image: {
  15437. source: "./media/characters/java/fallen.svg",
  15438. extra: 226 / 208,
  15439. bottom: 0.005
  15440. }
  15441. },
  15442. godkin: {
  15443. height: math.unit(10 + 6 / 12, "feet"),
  15444. weight: math.unit(328, "lb"),
  15445. name: "Java (Godkin)",
  15446. rename: true,
  15447. image: {
  15448. source: "./media/characters/java/godkin.svg",
  15449. extra: 270 / 262,
  15450. bottom: 0.02
  15451. }
  15452. },
  15453. },
  15454. [
  15455. {
  15456. name: "Normal",
  15457. height: math.unit(11 + 8 / 12, "feet"),
  15458. default: true
  15459. },
  15460. ]
  15461. ))
  15462. characterMakers.push(() => makeCharacter(
  15463. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15464. {
  15465. front: {
  15466. height: math.unit(7 + 8 / 12, "feet"),
  15467. weight: math.unit(320, "lb"),
  15468. name: "Front",
  15469. image: {
  15470. source: "./media/characters/skoll/front.svg",
  15471. extra: 232 / 220,
  15472. bottom: 0.02
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Normal",
  15479. height: math.unit(7 + 8 / 12, "feet"),
  15480. default: true
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15486. {
  15487. front: {
  15488. height: math.unit(5 + 9 / 12, "feet"),
  15489. weight: math.unit(170, "lb"),
  15490. name: "Front",
  15491. image: {
  15492. source: "./media/characters/purna/front.svg",
  15493. extra: 239 / 229,
  15494. bottom: 0.01
  15495. }
  15496. },
  15497. },
  15498. [
  15499. {
  15500. name: "Normal",
  15501. height: math.unit(5 + 9 / 12, "feet"),
  15502. default: true
  15503. },
  15504. ]
  15505. ))
  15506. characterMakers.push(() => makeCharacter(
  15507. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15508. {
  15509. front: {
  15510. height: math.unit(5 + 9 / 12, "feet"),
  15511. weight: math.unit(142, "lb"),
  15512. name: "Front",
  15513. image: {
  15514. source: "./media/characters/kuva/front.svg",
  15515. extra: 281 / 271,
  15516. bottom: 0.006
  15517. }
  15518. },
  15519. },
  15520. [
  15521. {
  15522. name: "Normal",
  15523. height: math.unit(5 + 9 / 12, "feet"),
  15524. default: true
  15525. },
  15526. ]
  15527. ))
  15528. characterMakers.push(() => makeCharacter(
  15529. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15530. {
  15531. anthro: {
  15532. height: math.unit(9 + 2 / 12, "feet"),
  15533. weight: math.unit(270, "lb"),
  15534. name: "Anthro",
  15535. image: {
  15536. source: "./media/characters/embra/anthro.svg",
  15537. extra: 200 / 187,
  15538. bottom: 0.02
  15539. }
  15540. },
  15541. feral: {
  15542. height: math.unit(18 + 8 / 12, "feet"),
  15543. weight: math.unit(576, "lb"),
  15544. name: "Feral",
  15545. image: {
  15546. source: "./media/characters/embra/feral.svg",
  15547. extra: 152 / 137,
  15548. bottom: 0.037
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Normal",
  15555. height: math.unit(9 + 2 / 12, "feet"),
  15556. default: true
  15557. },
  15558. ]
  15559. ))
  15560. characterMakers.push(() => makeCharacter(
  15561. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15562. {
  15563. anthro: {
  15564. height: math.unit(10 + 9 / 12, "feet"),
  15565. weight: math.unit(224, "lb"),
  15566. name: "Anthro",
  15567. image: {
  15568. source: "./media/characters/grottos/anthro.svg",
  15569. extra: 350 / 332,
  15570. bottom: 0.045
  15571. }
  15572. },
  15573. feral: {
  15574. height: math.unit(20 + 7 / 12, "feet"),
  15575. weight: math.unit(629, "lb"),
  15576. name: "Feral",
  15577. image: {
  15578. source: "./media/characters/grottos/feral.svg",
  15579. extra: 207 / 190,
  15580. bottom: 0.05
  15581. }
  15582. },
  15583. },
  15584. [
  15585. {
  15586. name: "Normal",
  15587. height: math.unit(10 + 9 / 12, "feet"),
  15588. default: true
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15594. {
  15595. anthro: {
  15596. height: math.unit(9 + 6 / 12, "feet"),
  15597. weight: math.unit(298, "lb"),
  15598. name: "Anthro",
  15599. image: {
  15600. source: "./media/characters/frifna/anthro.svg",
  15601. extra: 282 / 269,
  15602. bottom: 0.015
  15603. }
  15604. },
  15605. feral: {
  15606. height: math.unit(16 + 2 / 12, "feet"),
  15607. weight: math.unit(624, "lb"),
  15608. name: "Feral",
  15609. image: {
  15610. source: "./media/characters/frifna/feral.svg"
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(9 + 6 / 12, "feet"),
  15618. default: true
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(6 + 2 / 12, "feet"),
  15627. weight: math.unit(168, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/elise/front.svg",
  15631. extra: 276 / 271
  15632. }
  15633. },
  15634. },
  15635. [
  15636. {
  15637. name: "Normal",
  15638. height: math.unit(6 + 2 / 12, "feet"),
  15639. default: true
  15640. },
  15641. ]
  15642. ))
  15643. characterMakers.push(() => makeCharacter(
  15644. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15645. {
  15646. front: {
  15647. height: math.unit(5 + 10 / 12, "feet"),
  15648. weight: math.unit(210, "lb"),
  15649. name: "Front",
  15650. image: {
  15651. source: "./media/characters/glade/front.svg",
  15652. extra: 258 / 247,
  15653. bottom: 0.008
  15654. }
  15655. },
  15656. },
  15657. [
  15658. {
  15659. name: "Normal",
  15660. height: math.unit(5 + 10 / 12, "feet"),
  15661. default: true
  15662. },
  15663. ]
  15664. ))
  15665. characterMakers.push(() => makeCharacter(
  15666. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15667. {
  15668. front: {
  15669. height: math.unit(5 + 10 / 12, "feet"),
  15670. weight: math.unit(129, "lb"),
  15671. name: "Front",
  15672. image: {
  15673. source: "./media/characters/rina/front.svg",
  15674. extra: 266 / 255,
  15675. bottom: 0.005
  15676. }
  15677. },
  15678. },
  15679. [
  15680. {
  15681. name: "Normal",
  15682. height: math.unit(5 + 10 / 12, "feet"),
  15683. default: true
  15684. },
  15685. ]
  15686. ))
  15687. characterMakers.push(() => makeCharacter(
  15688. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15689. {
  15690. front: {
  15691. height: math.unit(6 + 1 / 12, "feet"),
  15692. weight: math.unit(192, "lb"),
  15693. name: "Front",
  15694. image: {
  15695. source: "./media/characters/veronica/front.svg",
  15696. extra: 319 / 309,
  15697. bottom: 0.005
  15698. }
  15699. },
  15700. },
  15701. [
  15702. {
  15703. name: "Normal",
  15704. height: math.unit(6 + 1 / 12, "feet"),
  15705. default: true
  15706. },
  15707. ]
  15708. ))
  15709. characterMakers.push(() => makeCharacter(
  15710. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15711. {
  15712. front: {
  15713. height: math.unit(9 + 3 / 12, "feet"),
  15714. weight: math.unit(1100, "lb"),
  15715. name: "Front",
  15716. image: {
  15717. source: "./media/characters/braxton/front.svg",
  15718. extra: 1057 / 984,
  15719. bottom: 0.05
  15720. }
  15721. },
  15722. },
  15723. [
  15724. {
  15725. name: "Normal",
  15726. height: math.unit(9 + 3 / 12, "feet")
  15727. },
  15728. {
  15729. name: "Giant",
  15730. height: math.unit(300, "feet"),
  15731. default: true
  15732. },
  15733. {
  15734. name: "Macro",
  15735. height: math.unit(700, "feet")
  15736. },
  15737. {
  15738. name: "Megamacro",
  15739. height: math.unit(6000, "feet")
  15740. },
  15741. ]
  15742. ))
  15743. characterMakers.push(() => makeCharacter(
  15744. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15745. {
  15746. front: {
  15747. height: math.unit(6 + 7 / 12, "feet"),
  15748. weight: math.unit(150, "lb"),
  15749. name: "Front",
  15750. image: {
  15751. source: "./media/characters/blue-feyonics/front.svg",
  15752. extra: 1403 / 1306,
  15753. bottom: 0.047
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(6 + 7 / 12, "feet"),
  15761. default: true
  15762. },
  15763. ]
  15764. ))
  15765. characterMakers.push(() => makeCharacter(
  15766. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15767. {
  15768. front: {
  15769. height: math.unit(1.8, "meters"),
  15770. weight: math.unit(60, "kg"),
  15771. name: "Front",
  15772. image: {
  15773. source: "./media/characters/maxwell/front.svg",
  15774. extra: 2060 / 1873
  15775. }
  15776. },
  15777. },
  15778. [
  15779. {
  15780. name: "Micro",
  15781. height: math.unit(1, "mm")
  15782. },
  15783. {
  15784. name: "Normal",
  15785. height: math.unit(1.8, "meter"),
  15786. default: true
  15787. },
  15788. {
  15789. name: "Macro",
  15790. height: math.unit(30, "meters")
  15791. },
  15792. {
  15793. name: "Megamacro",
  15794. height: math.unit(10, "km")
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15800. {
  15801. front: {
  15802. height: math.unit(6, "feet"),
  15803. weight: math.unit(150, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/jack/front.svg",
  15807. extra: 1754 / 1640,
  15808. bottom: 0.01
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(80000, "feet"),
  15816. default: true
  15817. },
  15818. {
  15819. name: "Max size",
  15820. height: math.unit(10, "lightyears")
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15826. {
  15827. urban: {
  15828. height: math.unit(5, "feet"),
  15829. weight: math.unit(240, "lb"),
  15830. name: "Urban",
  15831. image: {
  15832. source: "./media/characters/cafat/urban.svg",
  15833. extra: 1223/1126,
  15834. bottom: 205/1428
  15835. }
  15836. },
  15837. summer: {
  15838. height: math.unit(5, "feet"),
  15839. weight: math.unit(240, "lb"),
  15840. name: "Summer",
  15841. image: {
  15842. source: "./media/characters/cafat/summer.svg",
  15843. extra: 1223/1126,
  15844. bottom: 205/1428
  15845. }
  15846. },
  15847. winter: {
  15848. height: math.unit(5, "feet"),
  15849. weight: math.unit(240, "lb"),
  15850. name: "Winter",
  15851. image: {
  15852. source: "./media/characters/cafat/winter.svg",
  15853. extra: 1223/1126,
  15854. bottom: 205/1428
  15855. }
  15856. },
  15857. lingerie: {
  15858. height: math.unit(5, "feet"),
  15859. weight: math.unit(240, "lb"),
  15860. name: "Lingerie",
  15861. image: {
  15862. source: "./media/characters/cafat/lingerie.svg",
  15863. extra: 1223/1126,
  15864. bottom: 205/1428
  15865. }
  15866. },
  15867. upright: {
  15868. height: math.unit(6.3, "feet"),
  15869. weight: math.unit(240, "lb"),
  15870. name: "Upright",
  15871. image: {
  15872. source: "./media/characters/cafat/upright.svg",
  15873. bottom: 0.01
  15874. }
  15875. },
  15876. uprightFull: {
  15877. height: math.unit(6.3, "feet"),
  15878. weight: math.unit(240, "lb"),
  15879. name: "Upright (Full)",
  15880. image: {
  15881. source: "./media/characters/cafat/upright-full.svg",
  15882. bottom: 0.01
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Small",
  15889. height: math.unit(5, "feet"),
  15890. default: true
  15891. },
  15892. {
  15893. name: "Large",
  15894. height: math.unit(13, "feet")
  15895. },
  15896. ]
  15897. ))
  15898. characterMakers.push(() => makeCharacter(
  15899. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15900. {
  15901. front: {
  15902. height: math.unit(6, "feet"),
  15903. weight: math.unit(150, "lb"),
  15904. name: "Front",
  15905. image: {
  15906. source: "./media/characters/verin-raharra/front.svg",
  15907. extra: 5019 / 4835,
  15908. bottom: 0.023
  15909. }
  15910. },
  15911. },
  15912. [
  15913. {
  15914. name: "Normal",
  15915. height: math.unit(7 + 5 / 12, "feet"),
  15916. default: true
  15917. },
  15918. {
  15919. name: "Upsized",
  15920. height: math.unit(20, "feet")
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(7, "feet"),
  15929. weight: math.unit(230, "lb"),
  15930. name: "Front",
  15931. image: {
  15932. source: "./media/characters/nakata/front.svg",
  15933. extra: 1.005,
  15934. bottom: 0.01
  15935. }
  15936. },
  15937. },
  15938. [
  15939. {
  15940. name: "Normal",
  15941. height: math.unit(7, "feet"),
  15942. default: true
  15943. },
  15944. {
  15945. name: "Big",
  15946. height: math.unit(14, "feet")
  15947. },
  15948. {
  15949. name: "Macro",
  15950. height: math.unit(400, "feet")
  15951. },
  15952. ]
  15953. ))
  15954. characterMakers.push(() => makeCharacter(
  15955. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15956. {
  15957. front: {
  15958. height: math.unit(4.91, "feet"),
  15959. weight: math.unit(100, "lb"),
  15960. name: "Front",
  15961. image: {
  15962. source: "./media/characters/lily/front.svg",
  15963. extra: 1585 / 1415,
  15964. bottom: 0.02
  15965. }
  15966. },
  15967. },
  15968. [
  15969. {
  15970. name: "Normal",
  15971. height: math.unit(4.91, "feet"),
  15972. default: true
  15973. },
  15974. ]
  15975. ))
  15976. characterMakers.push(() => makeCharacter(
  15977. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15978. {
  15979. laying: {
  15980. height: math.unit(4 + 4 / 12, "feet"),
  15981. weight: math.unit(600, "lb"),
  15982. name: "Laying",
  15983. image: {
  15984. source: "./media/characters/sheila/laying.svg",
  15985. extra: 1333 / 1265,
  15986. bottom: 0.16
  15987. }
  15988. },
  15989. },
  15990. [
  15991. {
  15992. name: "Normal",
  15993. height: math.unit(4 + 4 / 12, "feet"),
  15994. default: true
  15995. },
  15996. ]
  15997. ))
  15998. characterMakers.push(() => makeCharacter(
  15999. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16000. {
  16001. front: {
  16002. height: math.unit(6, "feet"),
  16003. weight: math.unit(190, "lb"),
  16004. name: "Front",
  16005. image: {
  16006. source: "./media/characters/sax/front.svg",
  16007. extra: 1187 / 973,
  16008. bottom: 0.042
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Micro",
  16015. height: math.unit(4, "inches"),
  16016. default: true
  16017. },
  16018. ]
  16019. ))
  16020. characterMakers.push(() => makeCharacter(
  16021. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16022. {
  16023. front: {
  16024. height: math.unit(6, "feet"),
  16025. weight: math.unit(150, "lb"),
  16026. name: "Front",
  16027. image: {
  16028. source: "./media/characters/pandora/front.svg",
  16029. extra: 2720 / 2556,
  16030. bottom: 0.015
  16031. }
  16032. },
  16033. back: {
  16034. height: math.unit(6, "feet"),
  16035. weight: math.unit(150, "lb"),
  16036. name: "Back",
  16037. image: {
  16038. source: "./media/characters/pandora/back.svg",
  16039. extra: 2720 / 2556,
  16040. bottom: 0.01
  16041. }
  16042. },
  16043. beans: {
  16044. height: math.unit(6 / 8, "feet"),
  16045. name: "Beans",
  16046. image: {
  16047. source: "./media/characters/pandora/beans.svg"
  16048. }
  16049. },
  16050. collar: {
  16051. height: math.unit(0.31, "feet"),
  16052. name: "Collar",
  16053. image: {
  16054. source: "./media/characters/pandora/collar.svg"
  16055. }
  16056. },
  16057. skirt: {
  16058. height: math.unit(6, "feet"),
  16059. weight: math.unit(150, "lb"),
  16060. name: "Skirt",
  16061. image: {
  16062. source: "./media/characters/pandora/skirt.svg",
  16063. extra: 1622 / 1525,
  16064. bottom: 0.015
  16065. }
  16066. },
  16067. hoodie: {
  16068. height: math.unit(6, "feet"),
  16069. weight: math.unit(150, "lb"),
  16070. name: "Hoodie",
  16071. image: {
  16072. source: "./media/characters/pandora/hoodie.svg",
  16073. extra: 1622 / 1525,
  16074. bottom: 0.015
  16075. }
  16076. },
  16077. casual: {
  16078. height: math.unit(6, "feet"),
  16079. weight: math.unit(150, "lb"),
  16080. name: "Casual",
  16081. image: {
  16082. source: "./media/characters/pandora/casual.svg",
  16083. extra: 1622 / 1525,
  16084. bottom: 0.015
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Normal",
  16091. height: math.unit(6, "feet")
  16092. },
  16093. {
  16094. name: "Big Steppy",
  16095. height: math.unit(1, "km"),
  16096. default: true
  16097. },
  16098. {
  16099. name: "Galactic Steppy",
  16100. height: math.unit(2, "gigameters")
  16101. },
  16102. ]
  16103. ))
  16104. characterMakers.push(() => makeCharacter(
  16105. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16106. {
  16107. side: {
  16108. height: math.unit(10, "feet"),
  16109. weight: math.unit(800, "kg"),
  16110. name: "Side",
  16111. image: {
  16112. source: "./media/characters/venio-darcony/side.svg",
  16113. extra: 1373 / 1003,
  16114. bottom: 0.037
  16115. }
  16116. },
  16117. front: {
  16118. height: math.unit(19, "feet"),
  16119. weight: math.unit(800, "kg"),
  16120. name: "Front",
  16121. image: {
  16122. source: "./media/characters/venio-darcony/front.svg"
  16123. }
  16124. },
  16125. back: {
  16126. height: math.unit(19, "feet"),
  16127. weight: math.unit(800, "kg"),
  16128. name: "Back",
  16129. image: {
  16130. source: "./media/characters/venio-darcony/back.svg"
  16131. }
  16132. },
  16133. sideNsfw: {
  16134. height: math.unit(10, "feet"),
  16135. weight: math.unit(800, "kg"),
  16136. name: "Side (NSFW)",
  16137. image: {
  16138. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16139. extra: 1373 / 1003,
  16140. bottom: 0.037
  16141. }
  16142. },
  16143. frontNsfw: {
  16144. height: math.unit(19, "feet"),
  16145. weight: math.unit(800, "kg"),
  16146. name: "Front (NSFW)",
  16147. image: {
  16148. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16149. }
  16150. },
  16151. backNsfw: {
  16152. height: math.unit(19, "feet"),
  16153. weight: math.unit(800, "kg"),
  16154. name: "Back (NSFW)",
  16155. image: {
  16156. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16157. }
  16158. },
  16159. sideArmored: {
  16160. height: math.unit(10, "feet"),
  16161. weight: math.unit(800, "kg"),
  16162. name: "Side (Armored)",
  16163. image: {
  16164. source: "./media/characters/venio-darcony/side-armored.svg",
  16165. extra: 1373 / 1003,
  16166. bottom: 0.037
  16167. }
  16168. },
  16169. frontArmored: {
  16170. height: math.unit(19, "feet"),
  16171. weight: math.unit(900, "kg"),
  16172. name: "Front (Armored)",
  16173. image: {
  16174. source: "./media/characters/venio-darcony/front-armored.svg"
  16175. }
  16176. },
  16177. backArmored: {
  16178. height: math.unit(19, "feet"),
  16179. weight: math.unit(900, "kg"),
  16180. name: "Back (Armored)",
  16181. image: {
  16182. source: "./media/characters/venio-darcony/back-armored.svg"
  16183. }
  16184. },
  16185. sword: {
  16186. height: math.unit(10, "feet"),
  16187. weight: math.unit(50, "lb"),
  16188. name: "Sword",
  16189. image: {
  16190. source: "./media/characters/venio-darcony/sword.svg"
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Normal",
  16197. height: math.unit(10, "feet")
  16198. },
  16199. {
  16200. name: "Macro",
  16201. height: math.unit(130, "feet"),
  16202. default: true
  16203. },
  16204. {
  16205. name: "Macro+",
  16206. height: math.unit(240, "feet")
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(6, "feet"),
  16215. weight: math.unit(150, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/veski/front.svg",
  16219. extra: 1299 / 1225,
  16220. bottom: 0.04
  16221. }
  16222. },
  16223. back: {
  16224. height: math.unit(6, "feet"),
  16225. weight: math.unit(150, "lb"),
  16226. name: "Back",
  16227. image: {
  16228. source: "./media/characters/veski/back.svg",
  16229. extra: 1299 / 1225,
  16230. bottom: 0.008
  16231. }
  16232. },
  16233. maw: {
  16234. height: math.unit(1.5 * 1.21, "feet"),
  16235. name: "Maw",
  16236. image: {
  16237. source: "./media/characters/veski/maw.svg"
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Macro",
  16244. height: math.unit(2, "km"),
  16245. default: true
  16246. },
  16247. ]
  16248. ))
  16249. characterMakers.push(() => makeCharacter(
  16250. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16251. {
  16252. front: {
  16253. height: math.unit(5 + 7 / 12, "feet"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/isabelle/front.svg",
  16257. extra: 2130 / 1976,
  16258. bottom: 0.05
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Supermicro",
  16265. height: math.unit(10, "micrometers")
  16266. },
  16267. {
  16268. name: "Micro",
  16269. height: math.unit(1, "inch")
  16270. },
  16271. {
  16272. name: "Tiny",
  16273. height: math.unit(5, "inches")
  16274. },
  16275. {
  16276. name: "Standard",
  16277. height: math.unit(5 + 7 / 12, "inches")
  16278. },
  16279. {
  16280. name: "Macro",
  16281. height: math.unit(80, "meters"),
  16282. default: true
  16283. },
  16284. {
  16285. name: "Megamacro",
  16286. height: math.unit(250, "meters")
  16287. },
  16288. {
  16289. name: "Gigamacro",
  16290. height: math.unit(5, "km")
  16291. },
  16292. {
  16293. name: "Cosmic",
  16294. height: math.unit(2.5e6, "miles")
  16295. },
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16300. {
  16301. front: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(150, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/hanzo/front.svg",
  16307. extra: 374 / 344,
  16308. bottom: 0.02
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Normal",
  16315. height: math.unit(8, "feet"),
  16316. default: true
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16322. {
  16323. front: {
  16324. height: math.unit(7, "feet"),
  16325. weight: math.unit(130, "lb"),
  16326. name: "Front",
  16327. image: {
  16328. source: "./media/characters/anna/front.svg",
  16329. extra: 169 / 145,
  16330. bottom: 0.06
  16331. }
  16332. },
  16333. full: {
  16334. height: math.unit(4.96, "feet"),
  16335. weight: math.unit(220, "lb"),
  16336. name: "Full",
  16337. image: {
  16338. source: "./media/characters/anna/full.svg",
  16339. extra: 138 / 114,
  16340. bottom: 0.15
  16341. }
  16342. },
  16343. tongue: {
  16344. height: math.unit(2.53, "feet"),
  16345. name: "Tongue",
  16346. image: {
  16347. source: "./media/characters/anna/tongue.svg"
  16348. }
  16349. },
  16350. },
  16351. [
  16352. {
  16353. name: "Normal",
  16354. height: math.unit(7, "feet"),
  16355. default: true
  16356. },
  16357. ]
  16358. ))
  16359. characterMakers.push(() => makeCharacter(
  16360. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16361. {
  16362. front: {
  16363. height: math.unit(7, "feet"),
  16364. weight: math.unit(150, "lb"),
  16365. name: "Front",
  16366. image: {
  16367. source: "./media/characters/ian-corvid/front.svg",
  16368. extra: 150 / 142,
  16369. bottom: 0.02
  16370. }
  16371. },
  16372. back: {
  16373. height: math.unit(7, "feet"),
  16374. weight: math.unit(150, "lb"),
  16375. name: "Back",
  16376. image: {
  16377. source: "./media/characters/ian-corvid/back.svg",
  16378. extra: 150 / 143,
  16379. bottom: 0.01
  16380. }
  16381. },
  16382. stomping: {
  16383. height: math.unit(7, "feet"),
  16384. weight: math.unit(150, "lb"),
  16385. name: "Stomping",
  16386. image: {
  16387. source: "./media/characters/ian-corvid/stomping.svg",
  16388. extra: 76 / 72
  16389. }
  16390. },
  16391. sitting: {
  16392. height: math.unit(7 / 1.8, "feet"),
  16393. weight: math.unit(150, "lb"),
  16394. name: "Sitting",
  16395. image: {
  16396. source: "./media/characters/ian-corvid/sitting.svg",
  16397. extra: 1400 / 1269,
  16398. bottom: 0.15
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Tiny Microw",
  16405. height: math.unit(1, "inch")
  16406. },
  16407. {
  16408. name: "Microw",
  16409. height: math.unit(6, "inches")
  16410. },
  16411. {
  16412. name: "Crow",
  16413. height: math.unit(7 + 1 / 12, "feet"),
  16414. default: true
  16415. },
  16416. {
  16417. name: "Macrow",
  16418. height: math.unit(176, "feet")
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16424. {
  16425. front: {
  16426. height: math.unit(5 + 7 / 12, "feet"),
  16427. weight: math.unit(147, "lb"),
  16428. name: "Front",
  16429. image: {
  16430. source: "./media/characters/natalie-kellon/front.svg",
  16431. extra: 1214 / 1141,
  16432. bottom: 0.02
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Micro",
  16439. height: math.unit(1 / 16, "inch")
  16440. },
  16441. {
  16442. name: "Tiny",
  16443. height: math.unit(4, "inches")
  16444. },
  16445. {
  16446. name: "Normal",
  16447. height: math.unit(5 + 7 / 12, "feet"),
  16448. default: true
  16449. },
  16450. {
  16451. name: "Amazon",
  16452. height: math.unit(12, "feet")
  16453. },
  16454. {
  16455. name: "Giantess",
  16456. height: math.unit(160, "meters")
  16457. },
  16458. {
  16459. name: "Titaness",
  16460. height: math.unit(800, "meters")
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16466. {
  16467. front: {
  16468. height: math.unit(6, "feet"),
  16469. weight: math.unit(150, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/alluria/front.svg",
  16473. extra: 806 / 738,
  16474. bottom: 0.01
  16475. }
  16476. },
  16477. side: {
  16478. height: math.unit(6, "feet"),
  16479. weight: math.unit(150, "lb"),
  16480. name: "Side",
  16481. image: {
  16482. source: "./media/characters/alluria/side.svg",
  16483. extra: 800 / 750,
  16484. }
  16485. },
  16486. back: {
  16487. height: math.unit(6, "feet"),
  16488. weight: math.unit(150, "lb"),
  16489. name: "Back",
  16490. image: {
  16491. source: "./media/characters/alluria/back.svg",
  16492. extra: 806 / 738,
  16493. }
  16494. },
  16495. frontMaid: {
  16496. height: math.unit(6, "feet"),
  16497. weight: math.unit(150, "lb"),
  16498. name: "Front (Maid)",
  16499. image: {
  16500. source: "./media/characters/alluria/front-maid.svg",
  16501. extra: 806 / 738,
  16502. bottom: 0.01
  16503. }
  16504. },
  16505. sideMaid: {
  16506. height: math.unit(6, "feet"),
  16507. weight: math.unit(150, "lb"),
  16508. name: "Side (Maid)",
  16509. image: {
  16510. source: "./media/characters/alluria/side-maid.svg",
  16511. extra: 800 / 750,
  16512. bottom: 0.005
  16513. }
  16514. },
  16515. backMaid: {
  16516. height: math.unit(6, "feet"),
  16517. weight: math.unit(150, "lb"),
  16518. name: "Back (Maid)",
  16519. image: {
  16520. source: "./media/characters/alluria/back-maid.svg",
  16521. extra: 806 / 738,
  16522. }
  16523. },
  16524. },
  16525. [
  16526. {
  16527. name: "Micro",
  16528. height: math.unit(6, "inches"),
  16529. default: true
  16530. },
  16531. ]
  16532. ))
  16533. characterMakers.push(() => makeCharacter(
  16534. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16535. {
  16536. front: {
  16537. height: math.unit(6, "feet"),
  16538. weight: math.unit(150, "lb"),
  16539. name: "Front",
  16540. image: {
  16541. source: "./media/characters/kyle/front.svg",
  16542. extra: 1069 / 962,
  16543. bottom: 77.228 / 1727.45
  16544. }
  16545. },
  16546. },
  16547. [
  16548. {
  16549. name: "Macro",
  16550. height: math.unit(150, "feet"),
  16551. default: true
  16552. },
  16553. ]
  16554. ))
  16555. characterMakers.push(() => makeCharacter(
  16556. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16557. {
  16558. front: {
  16559. height: math.unit(6, "feet"),
  16560. weight: math.unit(300, "lb"),
  16561. name: "Front",
  16562. image: {
  16563. source: "./media/characters/duncan/front.svg",
  16564. extra: 1650 / 1482,
  16565. bottom: 0.05
  16566. }
  16567. },
  16568. },
  16569. [
  16570. {
  16571. name: "Macro",
  16572. height: math.unit(100, "feet"),
  16573. default: true
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16579. {
  16580. front: {
  16581. height: math.unit(5 + 4 / 12, "feet"),
  16582. weight: math.unit(220, "lb"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/memory/front.svg",
  16586. extra: 3641 / 3545,
  16587. bottom: 0.03
  16588. }
  16589. },
  16590. back: {
  16591. height: math.unit(5 + 4 / 12, "feet"),
  16592. weight: math.unit(220, "lb"),
  16593. name: "Back",
  16594. image: {
  16595. source: "./media/characters/memory/back.svg",
  16596. extra: 3641 / 3545,
  16597. bottom: 0.025
  16598. }
  16599. },
  16600. frontSkirt: {
  16601. height: math.unit(5 + 4 / 12, "feet"),
  16602. weight: math.unit(220, "lb"),
  16603. name: "Front (Skirt)",
  16604. image: {
  16605. source: "./media/characters/memory/front-skirt.svg",
  16606. extra: 3641 / 3545,
  16607. bottom: 0.03
  16608. }
  16609. },
  16610. frontDress: {
  16611. height: math.unit(5 + 4 / 12, "feet"),
  16612. weight: math.unit(220, "lb"),
  16613. name: "Front (Dress)",
  16614. image: {
  16615. source: "./media/characters/memory/front-dress.svg",
  16616. extra: 3641 / 3545,
  16617. bottom: 0.03
  16618. }
  16619. },
  16620. },
  16621. [
  16622. {
  16623. name: "Micro",
  16624. height: math.unit(6, "inches"),
  16625. default: true
  16626. },
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(5 + 4 / 12, "feet")
  16630. },
  16631. ]
  16632. ))
  16633. characterMakers.push(() => makeCharacter(
  16634. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16635. {
  16636. front: {
  16637. height: math.unit(4 + 11 / 12, "feet"),
  16638. weight: math.unit(100, "lb"),
  16639. name: "Front",
  16640. image: {
  16641. source: "./media/characters/luno/front.svg",
  16642. extra: 1535 / 1487,
  16643. bottom: 0.03
  16644. }
  16645. },
  16646. },
  16647. [
  16648. {
  16649. name: "Micro",
  16650. height: math.unit(3, "inches")
  16651. },
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(4 + 11 / 12, "feet"),
  16655. default: true
  16656. },
  16657. {
  16658. name: "Macro",
  16659. height: math.unit(300, "feet")
  16660. },
  16661. {
  16662. name: "Megamacro",
  16663. height: math.unit(700, "miles")
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16669. {
  16670. front: {
  16671. height: math.unit(6 + 2 / 12, "feet"),
  16672. weight: math.unit(170, "lb"),
  16673. name: "Front",
  16674. image: {
  16675. source: "./media/characters/jamesy/front.svg",
  16676. extra: 440 / 382,
  16677. bottom: 0.005
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Micro",
  16684. height: math.unit(3, "inches")
  16685. },
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(6 + 2 / 12, "feet"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Macro",
  16693. height: math.unit(300, "feet")
  16694. },
  16695. {
  16696. name: "Megamacro",
  16697. height: math.unit(700, "miles")
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(6, "feet"),
  16706. weight: math.unit(160, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/mark/front.svg",
  16710. extra: 3300 / 3100,
  16711. bottom: 136.42 / 3440.47
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Macro",
  16718. height: math.unit(120, "meters")
  16719. },
  16720. {
  16721. name: "Bigger Macro",
  16722. height: math.unit(350, "meters")
  16723. },
  16724. {
  16725. name: "Megamacro",
  16726. height: math.unit(8, "km"),
  16727. default: true
  16728. },
  16729. {
  16730. name: "Continental",
  16731. height: math.unit(4550, "km")
  16732. },
  16733. {
  16734. name: "Planetary",
  16735. height: math.unit(65000, "km")
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(6, "feet"),
  16744. weight: math.unit(400, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/mac/front.svg",
  16748. extra: 1048 / 987.7,
  16749. bottom: 60 / 1107.6,
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Macro",
  16756. height: math.unit(500, "feet"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(5 + 2 / 12, "feet"),
  16766. weight: math.unit(190, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/bari/front.svg",
  16770. extra: 3156 / 2880,
  16771. bottom: 0.03
  16772. }
  16773. },
  16774. back: {
  16775. height: math.unit(5 + 2 / 12, "feet"),
  16776. weight: math.unit(190, "lb"),
  16777. name: "Back",
  16778. image: {
  16779. source: "./media/characters/bari/back.svg",
  16780. extra: 3260 / 2834,
  16781. bottom: 0.025
  16782. }
  16783. },
  16784. frontPlush: {
  16785. height: math.unit(5 + 2 / 12, "feet"),
  16786. weight: math.unit(190, "lb"),
  16787. name: "Front (Plush)",
  16788. image: {
  16789. source: "./media/characters/bari/front-plush.svg",
  16790. extra: 1112 / 1061,
  16791. bottom: 0.002
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Micro",
  16798. height: math.unit(3, "inches")
  16799. },
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(5 + 2 / 12, "feet"),
  16803. default: true
  16804. },
  16805. {
  16806. name: "Macro",
  16807. height: math.unit(20, "feet")
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(6 + 1 / 12, "feet"),
  16816. weight: math.unit(275, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/hunter-misha-raven/front.svg"
  16820. }
  16821. },
  16822. },
  16823. [
  16824. {
  16825. name: "Mortal",
  16826. height: math.unit(6 + 1 / 12, "feet")
  16827. },
  16828. {
  16829. name: "Divine",
  16830. height: math.unit(1.12134e34, "parsecs"),
  16831. default: true
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16837. {
  16838. front: {
  16839. height: math.unit(6 + 3 / 12, "feet"),
  16840. weight: math.unit(220, "lb"),
  16841. name: "Front",
  16842. image: {
  16843. source: "./media/characters/max-calore/front.svg",
  16844. extra: 1700 / 1648,
  16845. bottom: 0.01
  16846. }
  16847. },
  16848. back: {
  16849. height: math.unit(6 + 3 / 12, "feet"),
  16850. weight: math.unit(220, "lb"),
  16851. name: "Back",
  16852. image: {
  16853. source: "./media/characters/max-calore/back.svg",
  16854. extra: 1700 / 1648,
  16855. bottom: 0.01
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(6 + 3 / 12, "feet"),
  16863. default: true
  16864. },
  16865. ]
  16866. ))
  16867. characterMakers.push(() => makeCharacter(
  16868. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16869. {
  16870. side: {
  16871. height: math.unit(2 + 8 / 12, "feet"),
  16872. weight: math.unit(99, "lb"),
  16873. name: "Side",
  16874. image: {
  16875. source: "./media/characters/aspen/side.svg",
  16876. extra: 152 / 138,
  16877. bottom: 0.032
  16878. }
  16879. },
  16880. },
  16881. [
  16882. {
  16883. name: "Normal",
  16884. height: math.unit(2 + 8 / 12, "feet"),
  16885. default: true
  16886. },
  16887. ]
  16888. ))
  16889. characterMakers.push(() => makeCharacter(
  16890. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16891. {
  16892. side: {
  16893. height: math.unit(3 + 2 / 12, "feet"),
  16894. weight: math.unit(224, "lb"),
  16895. name: "Side",
  16896. image: {
  16897. source: "./media/characters/sheila-feral-wolf/side.svg",
  16898. extra: 179 / 166,
  16899. bottom: 0.03
  16900. }
  16901. },
  16902. },
  16903. [
  16904. {
  16905. name: "Normal",
  16906. height: math.unit(3 + 2 / 12, "feet"),
  16907. default: true
  16908. },
  16909. ]
  16910. ))
  16911. characterMakers.push(() => makeCharacter(
  16912. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16913. {
  16914. side: {
  16915. height: math.unit(1 + 9 / 12, "feet"),
  16916. weight: math.unit(38, "lb"),
  16917. name: "Side",
  16918. image: {
  16919. source: "./media/characters/michelle/side.svg",
  16920. extra: 147 / 136.7,
  16921. bottom: 0.03
  16922. }
  16923. },
  16924. },
  16925. [
  16926. {
  16927. name: "Normal",
  16928. height: math.unit(1 + 9 / 12, "feet"),
  16929. default: true
  16930. },
  16931. ]
  16932. ))
  16933. characterMakers.push(() => makeCharacter(
  16934. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16935. {
  16936. front: {
  16937. height: math.unit(1 + 1 / 12, "feet"),
  16938. weight: math.unit(18, "lb"),
  16939. name: "Front",
  16940. image: {
  16941. source: "./media/characters/nino/front.svg"
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Normal",
  16948. height: math.unit(1 + 1 / 12, "feet"),
  16949. default: true
  16950. },
  16951. ]
  16952. ))
  16953. characterMakers.push(() => makeCharacter(
  16954. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16955. {
  16956. front: {
  16957. height: math.unit(1, "feet"),
  16958. weight: math.unit(16, "lb"),
  16959. name: "Front",
  16960. image: {
  16961. source: "./media/characters/viola/front.svg"
  16962. }
  16963. },
  16964. },
  16965. [
  16966. {
  16967. name: "Normal",
  16968. height: math.unit(1, "feet"),
  16969. default: true
  16970. },
  16971. ]
  16972. ))
  16973. characterMakers.push(() => makeCharacter(
  16974. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16975. {
  16976. front: {
  16977. height: math.unit(6 + 5 / 12, "feet"),
  16978. weight: math.unit(580, "lb"),
  16979. name: "Front",
  16980. image: {
  16981. source: "./media/characters/atlas/front.svg",
  16982. extra: 298.5 / 290,
  16983. bottom: 0.015
  16984. }
  16985. },
  16986. },
  16987. [
  16988. {
  16989. name: "Normal",
  16990. height: math.unit(6 + 5 / 12, "feet"),
  16991. default: true
  16992. },
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16997. {
  16998. side: {
  16999. height: math.unit(1 + 10 / 12, "feet"),
  17000. weight: math.unit(25, "lb"),
  17001. name: "Side",
  17002. image: {
  17003. source: "./media/characters/davy/side.svg",
  17004. extra: 200 / 170,
  17005. bottom: 0.01
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Normal",
  17012. height: math.unit(1 + 10 / 12, "feet"),
  17013. default: true
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17019. {
  17020. side: {
  17021. height: math.unit(4 + 8 / 12, "feet"),
  17022. weight: math.unit(166, "lb"),
  17023. name: "Side",
  17024. image: {
  17025. source: "./media/characters/fiona/side.svg",
  17026. extra: 232 / 220,
  17027. bottom: 0.03
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Normal",
  17034. height: math.unit(4 + 8 / 12, "feet"),
  17035. default: true
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17041. {
  17042. front: {
  17043. height: math.unit(2, "feet"),
  17044. weight: math.unit(62, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/lyla/front.svg",
  17048. bottom: 0.1
  17049. }
  17050. },
  17051. },
  17052. [
  17053. {
  17054. name: "Normal",
  17055. height: math.unit(2, "feet"),
  17056. default: true
  17057. },
  17058. ]
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17062. {
  17063. side: {
  17064. height: math.unit(1.8, "feet"),
  17065. weight: math.unit(44, "lb"),
  17066. name: "Side",
  17067. image: {
  17068. source: "./media/characters/perseus/side.svg",
  17069. bottom: 0.21
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Normal",
  17076. height: math.unit(1.8, "feet"),
  17077. default: true
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17083. {
  17084. side: {
  17085. height: math.unit(4 + 2 / 12, "feet"),
  17086. weight: math.unit(20, "lb"),
  17087. name: "Side",
  17088. image: {
  17089. source: "./media/characters/remus/side.svg"
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(4 + 2 / 12, "feet"),
  17097. default: true
  17098. },
  17099. ]
  17100. ))
  17101. characterMakers.push(() => makeCharacter(
  17102. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17103. {
  17104. front: {
  17105. height: math.unit(4 + 11 / 12, "feet"),
  17106. weight: math.unit(114, "lb"),
  17107. name: "Front",
  17108. image: {
  17109. source: "./media/characters/raf/front.svg",
  17110. bottom: 20.5 / 1863
  17111. }
  17112. },
  17113. side: {
  17114. height: math.unit(4 + 11 / 12, "feet"),
  17115. weight: math.unit(114, "lb"),
  17116. name: "Side",
  17117. image: {
  17118. source: "./media/characters/raf/side.svg",
  17119. bottom: 22 / 1822
  17120. }
  17121. },
  17122. },
  17123. [
  17124. {
  17125. name: "Micro",
  17126. height: math.unit(2, "inches")
  17127. },
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(4 + 11 / 12, "feet"),
  17131. default: true
  17132. },
  17133. {
  17134. name: "Macro",
  17135. height: math.unit(70, "feet")
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17141. {
  17142. front: {
  17143. height: math.unit(1.5, "meters"),
  17144. weight: math.unit(68, "kg"),
  17145. name: "Front",
  17146. image: {
  17147. source: "./media/characters/liam-einarr/front.svg",
  17148. extra: 2822 / 2666
  17149. }
  17150. },
  17151. back: {
  17152. height: math.unit(1.5, "meters"),
  17153. weight: math.unit(68, "kg"),
  17154. name: "Back",
  17155. image: {
  17156. source: "./media/characters/liam-einarr/back.svg",
  17157. extra: 2822 / 2666,
  17158. bottom: 0.015
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Normal",
  17165. height: math.unit(1.5, "meters"),
  17166. default: true
  17167. },
  17168. {
  17169. name: "Macro",
  17170. height: math.unit(150, "meters")
  17171. },
  17172. {
  17173. name: "Megamacro",
  17174. height: math.unit(35, "km")
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17180. {
  17181. front: {
  17182. height: math.unit(6, "feet"),
  17183. weight: math.unit(75, "kg"),
  17184. name: "Front",
  17185. image: {
  17186. source: "./media/characters/linda/front.svg",
  17187. extra: 930 / 874,
  17188. bottom: 0.004
  17189. }
  17190. },
  17191. },
  17192. [
  17193. {
  17194. name: "Normal",
  17195. height: math.unit(6, "feet"),
  17196. default: true
  17197. },
  17198. ]
  17199. ))
  17200. characterMakers.push(() => makeCharacter(
  17201. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17202. {
  17203. front: {
  17204. height: math.unit(6 + 8 / 12, "feet"),
  17205. weight: math.unit(220, "lb"),
  17206. name: "Front",
  17207. image: {
  17208. source: "./media/characters/caylex/front.svg",
  17209. extra: 821 / 772,
  17210. bottom: 0.07
  17211. }
  17212. },
  17213. back: {
  17214. height: math.unit(6 + 8 / 12, "feet"),
  17215. weight: math.unit(220, "lb"),
  17216. name: "Back",
  17217. image: {
  17218. source: "./media/characters/caylex/back.svg",
  17219. extra: 821 / 772,
  17220. bottom: 0.022
  17221. }
  17222. },
  17223. hand: {
  17224. height: math.unit(1.25, "feet"),
  17225. name: "Hand",
  17226. image: {
  17227. source: "./media/characters/caylex/hand.svg"
  17228. }
  17229. },
  17230. foot: {
  17231. height: math.unit(1.6, "feet"),
  17232. name: "Foot",
  17233. image: {
  17234. source: "./media/characters/caylex/foot.svg"
  17235. }
  17236. },
  17237. armored: {
  17238. height: math.unit(6 + 8 / 12, "feet"),
  17239. weight: math.unit(250, "lb"),
  17240. name: "Armored",
  17241. image: {
  17242. source: "./media/characters/caylex/armored.svg",
  17243. extra: 1420 / 1310,
  17244. bottom: 0.045
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(6 + 8 / 12, "feet"),
  17252. default: true
  17253. },
  17254. {
  17255. name: "Normal+",
  17256. height: math.unit(12, "feet")
  17257. },
  17258. ]
  17259. ))
  17260. characterMakers.push(() => makeCharacter(
  17261. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17262. {
  17263. front: {
  17264. height: math.unit(7 + 6 / 12, "feet"),
  17265. weight: math.unit(288, "lb"),
  17266. name: "Front",
  17267. image: {
  17268. source: "./media/characters/alana/front.svg",
  17269. extra: 679 / 653,
  17270. bottom: 22.5 / 701
  17271. }
  17272. },
  17273. },
  17274. [
  17275. {
  17276. name: "Normal",
  17277. height: math.unit(7 + 6 / 12, "feet")
  17278. },
  17279. {
  17280. name: "Large",
  17281. height: math.unit(50, "feet")
  17282. },
  17283. {
  17284. name: "Macro",
  17285. height: math.unit(100, "feet"),
  17286. default: true
  17287. },
  17288. {
  17289. name: "Macro+",
  17290. height: math.unit(200, "feet")
  17291. },
  17292. ]
  17293. ))
  17294. characterMakers.push(() => makeCharacter(
  17295. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17296. {
  17297. front: {
  17298. height: math.unit(6 + 1 / 12, "feet"),
  17299. weight: math.unit(210, "lb"),
  17300. name: "Front",
  17301. image: {
  17302. source: "./media/characters/hasani/front.svg",
  17303. extra: 244 / 232,
  17304. bottom: 0.01
  17305. }
  17306. },
  17307. back: {
  17308. height: math.unit(6 + 1 / 12, "feet"),
  17309. weight: math.unit(210, "lb"),
  17310. name: "Back",
  17311. image: {
  17312. source: "./media/characters/hasani/back.svg",
  17313. extra: 244 / 232,
  17314. bottom: 0.01
  17315. }
  17316. },
  17317. },
  17318. [
  17319. {
  17320. name: "Normal",
  17321. height: math.unit(6 + 1 / 12, "feet")
  17322. },
  17323. {
  17324. name: "Macro",
  17325. height: math.unit(175, "feet"),
  17326. default: true
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17332. {
  17333. front: {
  17334. height: math.unit(1.82, "meters"),
  17335. weight: math.unit(140, "lb"),
  17336. name: "Front",
  17337. image: {
  17338. source: "./media/characters/nita/front.svg",
  17339. extra: 2473 / 2363,
  17340. bottom: 0.01
  17341. }
  17342. },
  17343. },
  17344. [
  17345. {
  17346. name: "Normal",
  17347. height: math.unit(1.82, "m")
  17348. },
  17349. {
  17350. name: "Macro",
  17351. height: math.unit(300, "m")
  17352. },
  17353. {
  17354. name: "Mistake Canon",
  17355. height: math.unit(0.5, "miles"),
  17356. default: true
  17357. },
  17358. {
  17359. name: "Big Mistake",
  17360. height: math.unit(13, "miles")
  17361. },
  17362. {
  17363. name: "Playing God",
  17364. height: math.unit(2450, "miles")
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17370. {
  17371. front: {
  17372. height: math.unit(4, "feet"),
  17373. weight: math.unit(120, "lb"),
  17374. name: "Front",
  17375. image: {
  17376. source: "./media/characters/shiriko/front.svg",
  17377. extra: 970/934,
  17378. bottom: 5/975
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(4, "feet"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(6, "feet"),
  17395. name: "front",
  17396. image: {
  17397. source: "./media/characters/deja/front.svg",
  17398. extra: 926 / 840,
  17399. bottom: 0.07
  17400. }
  17401. },
  17402. },
  17403. [
  17404. {
  17405. name: "Planck Length",
  17406. height: math.unit(1.6e-35, "meters")
  17407. },
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(30.48, "meters"),
  17411. default: true
  17412. },
  17413. {
  17414. name: "Universal",
  17415. height: math.unit(8.8e26, "meters")
  17416. },
  17417. ]
  17418. ))
  17419. characterMakers.push(() => makeCharacter(
  17420. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17421. {
  17422. side: {
  17423. height: math.unit(8, "feet"),
  17424. weight: math.unit(6300, "lb"),
  17425. name: "Side",
  17426. image: {
  17427. source: "./media/characters/anima/side.svg",
  17428. bottom: 0.035
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(8, "feet"),
  17436. default: true
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17442. {
  17443. front: {
  17444. height: math.unit(8, "feet"),
  17445. weight: math.unit(350, "lb"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/bianca/front.svg",
  17449. extra: 234 / 225,
  17450. bottom: 0.03
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(8, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(6, "feet"),
  17467. weight: math.unit(150, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/adinia/front.svg",
  17471. extra: 1845 / 1672,
  17472. bottom: 0.02
  17473. }
  17474. },
  17475. back: {
  17476. height: math.unit(6, "feet"),
  17477. weight: math.unit(150, "lb"),
  17478. name: "Back",
  17479. image: {
  17480. source: "./media/characters/adinia/back.svg",
  17481. extra: 1845 / 1672,
  17482. bottom: 0.002
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Normal",
  17489. height: math.unit(11 + 5 / 12, "feet"),
  17490. default: true
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17496. {
  17497. front: {
  17498. height: math.unit(3, "meters"),
  17499. weight: math.unit(200, "kg"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/lykasa/front.svg",
  17503. extra: 1076 / 976,
  17504. bottom: 0.06
  17505. }
  17506. },
  17507. },
  17508. [
  17509. {
  17510. name: "Normal",
  17511. height: math.unit(3, "meters")
  17512. },
  17513. {
  17514. name: "Kaiju",
  17515. height: math.unit(120, "meters"),
  17516. default: true
  17517. },
  17518. {
  17519. name: "Mega Kaiju",
  17520. height: math.unit(240, "km")
  17521. },
  17522. {
  17523. name: "Giga Kaiju",
  17524. height: math.unit(400, "megameters")
  17525. },
  17526. {
  17527. name: "Tera Kaiju",
  17528. height: math.unit(800, "gigameters")
  17529. },
  17530. {
  17531. name: "Kaiju Dragon Goddess",
  17532. height: math.unit(26, "zettaparsecs")
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17538. {
  17539. side: {
  17540. height: math.unit(283 / 124 * 6, "feet"),
  17541. weight: math.unit(35000, "lb"),
  17542. name: "Side",
  17543. image: {
  17544. source: "./media/characters/malfaren/side.svg",
  17545. extra: 2500 / 1010,
  17546. bottom: 0.01
  17547. }
  17548. },
  17549. front: {
  17550. height: math.unit(22.36, "feet"),
  17551. weight: math.unit(35000, "lb"),
  17552. name: "Front",
  17553. image: {
  17554. source: "./media/characters/malfaren/front.svg",
  17555. extra: 1631 / 1476,
  17556. bottom: 0.01
  17557. }
  17558. },
  17559. maw: {
  17560. height: math.unit(6.9, "feet"),
  17561. name: "Maw",
  17562. image: {
  17563. source: "./media/characters/malfaren/maw.svg"
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Big",
  17570. height: math.unit(283 / 162 * 6, "feet"),
  17571. },
  17572. {
  17573. name: "Bigger",
  17574. height: math.unit(283 / 124 * 6, "feet")
  17575. },
  17576. {
  17577. name: "Massive",
  17578. height: math.unit(283 / 92 * 6, "feet"),
  17579. default: true
  17580. },
  17581. {
  17582. name: "👀💦",
  17583. height: math.unit(283 / 73 * 6, "feet"),
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(1.7, "m"),
  17592. weight: math.unit(70, "kg"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/kernel/front.svg",
  17596. extra: 222 / 210,
  17597. bottom: 0.007
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Nano",
  17604. height: math.unit(17, "micrometers")
  17605. },
  17606. {
  17607. name: "Micro",
  17608. height: math.unit(1.7, "mm")
  17609. },
  17610. {
  17611. name: "Small",
  17612. height: math.unit(1.7, "cm")
  17613. },
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(1.7, "m"),
  17617. default: true
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17623. {
  17624. front: {
  17625. height: math.unit(1.75, "meters"),
  17626. weight: math.unit(65, "kg"),
  17627. name: "Front",
  17628. image: {
  17629. source: "./media/characters/jayne-folest/front.svg",
  17630. extra: 2115 / 2007,
  17631. bottom: 0.02
  17632. }
  17633. },
  17634. back: {
  17635. height: math.unit(1.75, "meters"),
  17636. weight: math.unit(65, "kg"),
  17637. name: "Back",
  17638. image: {
  17639. source: "./media/characters/jayne-folest/back.svg",
  17640. extra: 2115 / 2007,
  17641. bottom: 0.005
  17642. }
  17643. },
  17644. frontClothed: {
  17645. height: math.unit(1.75, "meters"),
  17646. weight: math.unit(65, "kg"),
  17647. name: "Front (Clothed)",
  17648. image: {
  17649. source: "./media/characters/jayne-folest/front-clothed.svg",
  17650. extra: 2115 / 2007,
  17651. bottom: 0.035
  17652. }
  17653. },
  17654. hand: {
  17655. height: math.unit(1 / 1.260, "feet"),
  17656. name: "Hand",
  17657. image: {
  17658. source: "./media/characters/jayne-folest/hand.svg"
  17659. }
  17660. },
  17661. foot: {
  17662. height: math.unit(1 / 0.918, "feet"),
  17663. name: "Foot",
  17664. image: {
  17665. source: "./media/characters/jayne-folest/foot.svg"
  17666. }
  17667. },
  17668. },
  17669. [
  17670. {
  17671. name: "Micro",
  17672. height: math.unit(4, "cm")
  17673. },
  17674. {
  17675. name: "Normal",
  17676. height: math.unit(1.75, "meters")
  17677. },
  17678. {
  17679. name: "Macro",
  17680. height: math.unit(47.5, "meters"),
  17681. default: true
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17687. {
  17688. front: {
  17689. height: math.unit(180, "cm"),
  17690. weight: math.unit(70, "kg"),
  17691. name: "Front",
  17692. image: {
  17693. source: "./media/characters/algier/front.svg",
  17694. extra: 596 / 572,
  17695. bottom: 0.04
  17696. }
  17697. },
  17698. back: {
  17699. height: math.unit(180, "cm"),
  17700. weight: math.unit(70, "kg"),
  17701. name: "Back",
  17702. image: {
  17703. source: "./media/characters/algier/back.svg",
  17704. extra: 596 / 572,
  17705. bottom: 0.025
  17706. }
  17707. },
  17708. frontdressed: {
  17709. height: math.unit(180, "cm"),
  17710. weight: math.unit(150, "kg"),
  17711. name: "Front-dressed",
  17712. image: {
  17713. source: "./media/characters/algier/front-dressed.svg",
  17714. extra: 596 / 572,
  17715. bottom: 0.038
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Micro",
  17722. height: math.unit(5, "cm")
  17723. },
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(180, "cm"),
  17727. default: true
  17728. },
  17729. {
  17730. name: "Macro",
  17731. height: math.unit(64, "m")
  17732. },
  17733. ]
  17734. ))
  17735. characterMakers.push(() => makeCharacter(
  17736. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17737. {
  17738. upright: {
  17739. height: math.unit(7, "feet"),
  17740. weight: math.unit(300, "lb"),
  17741. name: "Upright",
  17742. image: {
  17743. source: "./media/characters/pretzel/upright.svg",
  17744. extra: 534 / 522,
  17745. bottom: 0.065
  17746. }
  17747. },
  17748. sprawling: {
  17749. height: math.unit(3.75, "feet"),
  17750. weight: math.unit(300, "lb"),
  17751. name: "Sprawling",
  17752. image: {
  17753. source: "./media/characters/pretzel/sprawling.svg",
  17754. extra: 314 / 281,
  17755. bottom: 0.1
  17756. }
  17757. },
  17758. tongue: {
  17759. height: math.unit(2, "feet"),
  17760. name: "Tongue",
  17761. image: {
  17762. source: "./media/characters/pretzel/tongue.svg"
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(7, "feet"),
  17770. default: true
  17771. },
  17772. {
  17773. name: "Oversized",
  17774. height: math.unit(15, "feet")
  17775. },
  17776. {
  17777. name: "Huge",
  17778. height: math.unit(30, "feet")
  17779. },
  17780. {
  17781. name: "Macro",
  17782. height: math.unit(250, "feet")
  17783. },
  17784. ]
  17785. ))
  17786. characterMakers.push(() => makeCharacter(
  17787. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17788. {
  17789. sideFront: {
  17790. height: math.unit(5 + 2 / 12, "feet"),
  17791. weight: math.unit(120, "lb"),
  17792. name: "Front Side",
  17793. image: {
  17794. source: "./media/characters/roxi/side-front.svg",
  17795. extra: 2924 / 2717,
  17796. bottom: 0.08
  17797. }
  17798. },
  17799. sideBack: {
  17800. height: math.unit(5 + 2 / 12, "feet"),
  17801. weight: math.unit(120, "lb"),
  17802. name: "Back Side",
  17803. image: {
  17804. source: "./media/characters/roxi/side-back.svg",
  17805. extra: 2904 / 2693,
  17806. bottom: 0.06
  17807. }
  17808. },
  17809. front: {
  17810. height: math.unit(5 + 2 / 12, "feet"),
  17811. weight: math.unit(120, "lb"),
  17812. name: "Front",
  17813. image: {
  17814. source: "./media/characters/roxi/front.svg",
  17815. extra: 2028 / 1907,
  17816. bottom: 0.01
  17817. }
  17818. },
  17819. frontAlt: {
  17820. height: math.unit(5 + 2 / 12, "feet"),
  17821. weight: math.unit(120, "lb"),
  17822. name: "Front (Alt)",
  17823. image: {
  17824. source: "./media/characters/roxi/front-alt.svg",
  17825. extra: 1828 / 1798,
  17826. bottom: 0.01
  17827. }
  17828. },
  17829. sitting: {
  17830. height: math.unit(2.8, "feet"),
  17831. weight: math.unit(120, "lb"),
  17832. name: "Sitting",
  17833. image: {
  17834. source: "./media/characters/roxi/sitting.svg",
  17835. extra: 2660 / 2462,
  17836. bottom: 0.1
  17837. }
  17838. },
  17839. },
  17840. [
  17841. {
  17842. name: "Normal",
  17843. height: math.unit(5 + 2 / 12, "feet"),
  17844. default: true
  17845. },
  17846. ]
  17847. ))
  17848. characterMakers.push(() => makeCharacter(
  17849. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17850. {
  17851. side: {
  17852. height: math.unit(55, "feet"),
  17853. weight: math.unit(153, "tons"),
  17854. name: "Side",
  17855. image: {
  17856. source: "./media/characters/shadow/side.svg",
  17857. extra: 701 / 628,
  17858. bottom: 0.02
  17859. }
  17860. },
  17861. flying: {
  17862. height: math.unit(145, "feet"),
  17863. weight: math.unit(153, "tons"),
  17864. name: "Flying",
  17865. image: {
  17866. source: "./media/characters/shadow/flying.svg"
  17867. }
  17868. },
  17869. },
  17870. [
  17871. {
  17872. name: "Normal",
  17873. height: math.unit(55, "feet"),
  17874. default: true
  17875. },
  17876. ]
  17877. ))
  17878. characterMakers.push(() => makeCharacter(
  17879. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17880. {
  17881. front: {
  17882. height: math.unit(6, "feet"),
  17883. weight: math.unit(200, "lb"),
  17884. name: "Front",
  17885. image: {
  17886. source: "./media/characters/marcie/front.svg",
  17887. extra: 960 / 876,
  17888. bottom: 58 / 1017.87
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Macro",
  17895. height: math.unit(1, "mile"),
  17896. default: true
  17897. },
  17898. ]
  17899. ))
  17900. characterMakers.push(() => makeCharacter(
  17901. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17902. {
  17903. front: {
  17904. height: math.unit(7, "feet"),
  17905. weight: math.unit(200, "lb"),
  17906. name: "Front",
  17907. image: {
  17908. source: "./media/characters/kachina/front.svg",
  17909. extra: 1290.68 / 1119,
  17910. bottom: 36.5 / 1327.18
  17911. }
  17912. },
  17913. },
  17914. [
  17915. {
  17916. name: "Normal",
  17917. height: math.unit(7, "feet"),
  17918. default: true
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17924. {
  17925. looking: {
  17926. height: math.unit(2, "meters"),
  17927. weight: math.unit(300, "kg"),
  17928. name: "Looking",
  17929. image: {
  17930. source: "./media/characters/kash/looking.svg",
  17931. extra: 474 / 344,
  17932. bottom: 0.03
  17933. }
  17934. },
  17935. side: {
  17936. height: math.unit(2, "meters"),
  17937. weight: math.unit(300, "kg"),
  17938. name: "Side",
  17939. image: {
  17940. source: "./media/characters/kash/side.svg",
  17941. extra: 302 / 251,
  17942. bottom: 0.03
  17943. }
  17944. },
  17945. front: {
  17946. height: math.unit(2, "meters"),
  17947. weight: math.unit(300, "kg"),
  17948. name: "Front",
  17949. image: {
  17950. source: "./media/characters/kash/front.svg",
  17951. extra: 495 / 360,
  17952. bottom: 0.015
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Normal",
  17959. height: math.unit(2, "meters"),
  17960. default: true
  17961. },
  17962. {
  17963. name: "Big",
  17964. height: math.unit(3, "meters")
  17965. },
  17966. {
  17967. name: "Large",
  17968. height: math.unit(5, "meters")
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17974. {
  17975. feeding: {
  17976. height: math.unit(6.7, "feet"),
  17977. weight: math.unit(350, "lb"),
  17978. name: "Feeding",
  17979. image: {
  17980. source: "./media/characters/lalim/feeding.svg",
  17981. }
  17982. },
  17983. },
  17984. [
  17985. {
  17986. name: "Normal",
  17987. height: math.unit(6.7, "feet"),
  17988. default: true
  17989. },
  17990. ]
  17991. ))
  17992. characterMakers.push(() => makeCharacter(
  17993. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17994. {
  17995. front: {
  17996. height: math.unit(9.5, "feet"),
  17997. weight: math.unit(600, "lb"),
  17998. name: "Front",
  17999. image: {
  18000. source: "./media/characters/de'vout/front.svg",
  18001. extra: 1443 / 1328,
  18002. bottom: 0.025
  18003. }
  18004. },
  18005. back: {
  18006. height: math.unit(9.5, "feet"),
  18007. weight: math.unit(600, "lb"),
  18008. name: "Back",
  18009. image: {
  18010. source: "./media/characters/de'vout/back.svg",
  18011. extra: 1443 / 1328
  18012. }
  18013. },
  18014. frontDressed: {
  18015. height: math.unit(9.5, "feet"),
  18016. weight: math.unit(600, "lb"),
  18017. name: "Front (Dressed",
  18018. image: {
  18019. source: "./media/characters/de'vout/front-dressed.svg",
  18020. extra: 1443 / 1328,
  18021. bottom: 0.025
  18022. }
  18023. },
  18024. backDressed: {
  18025. height: math.unit(9.5, "feet"),
  18026. weight: math.unit(600, "lb"),
  18027. name: "Back (Dressed",
  18028. image: {
  18029. source: "./media/characters/de'vout/back-dressed.svg",
  18030. extra: 1443 / 1328
  18031. }
  18032. },
  18033. },
  18034. [
  18035. {
  18036. name: "Normal",
  18037. height: math.unit(9.5, "feet"),
  18038. default: true
  18039. },
  18040. ]
  18041. ))
  18042. characterMakers.push(() => makeCharacter(
  18043. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18044. {
  18045. front: {
  18046. height: math.unit(8, "feet"),
  18047. weight: math.unit(225, "lb"),
  18048. name: "Front",
  18049. image: {
  18050. source: "./media/characters/talana/front.svg",
  18051. extra: 1410 / 1300,
  18052. bottom: 0.015
  18053. }
  18054. },
  18055. frontDressed: {
  18056. height: math.unit(8, "feet"),
  18057. weight: math.unit(225, "lb"),
  18058. name: "Front (Dressed",
  18059. image: {
  18060. source: "./media/characters/talana/front-dressed.svg",
  18061. extra: 1410 / 1300,
  18062. bottom: 0.015
  18063. }
  18064. },
  18065. },
  18066. [
  18067. {
  18068. name: "Normal",
  18069. height: math.unit(8, "feet"),
  18070. default: true
  18071. },
  18072. ]
  18073. ))
  18074. characterMakers.push(() => makeCharacter(
  18075. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18076. {
  18077. side: {
  18078. height: math.unit(7.2, "feet"),
  18079. weight: math.unit(150, "lb"),
  18080. name: "Side",
  18081. image: {
  18082. source: "./media/characters/xeauvok/side.svg",
  18083. extra: 1975 / 1523,
  18084. bottom: 0.07
  18085. }
  18086. },
  18087. },
  18088. [
  18089. {
  18090. name: "Normal",
  18091. height: math.unit(7.2, "feet"),
  18092. default: true
  18093. },
  18094. ]
  18095. ))
  18096. characterMakers.push(() => makeCharacter(
  18097. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18098. {
  18099. side: {
  18100. height: math.unit(10, "feet"),
  18101. weight: math.unit(900, "kg"),
  18102. name: "Side",
  18103. image: {
  18104. source: "./media/characters/zara/side.svg",
  18105. extra: 504 / 498
  18106. }
  18107. },
  18108. },
  18109. [
  18110. {
  18111. name: "Normal",
  18112. height: math.unit(10, "feet"),
  18113. default: true
  18114. },
  18115. ]
  18116. ))
  18117. characterMakers.push(() => makeCharacter(
  18118. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18119. {
  18120. side: {
  18121. height: math.unit(6, "feet"),
  18122. weight: math.unit(150, "lb"),
  18123. name: "Side",
  18124. image: {
  18125. source: "./media/characters/richard-dragon/side.svg",
  18126. extra: 845 / 340,
  18127. bottom: 0.017
  18128. }
  18129. },
  18130. maw: {
  18131. height: math.unit(2.97, "feet"),
  18132. name: "Maw",
  18133. image: {
  18134. source: "./media/characters/richard-dragon/maw.svg"
  18135. }
  18136. },
  18137. },
  18138. [
  18139. ]
  18140. ))
  18141. characterMakers.push(() => makeCharacter(
  18142. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18143. {
  18144. front: {
  18145. height: math.unit(4, "feet"),
  18146. weight: math.unit(100, "lb"),
  18147. name: "Front",
  18148. image: {
  18149. source: "./media/characters/richard-smeargle/front.svg",
  18150. extra: 2952 / 2820,
  18151. bottom: 0.028
  18152. }
  18153. },
  18154. },
  18155. [
  18156. {
  18157. name: "Normal",
  18158. height: math.unit(4, "feet"),
  18159. default: true
  18160. },
  18161. {
  18162. name: "Dynamax",
  18163. height: math.unit(20, "meters")
  18164. },
  18165. ]
  18166. ))
  18167. characterMakers.push(() => makeCharacter(
  18168. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18169. {
  18170. front: {
  18171. height: math.unit(6, "feet"),
  18172. weight: math.unit(110, "lb"),
  18173. name: "Front",
  18174. image: {
  18175. source: "./media/characters/klay/front.svg",
  18176. extra: 962 / 883,
  18177. bottom: 0.04
  18178. }
  18179. },
  18180. back: {
  18181. height: math.unit(6, "feet"),
  18182. weight: math.unit(110, "lb"),
  18183. name: "Back",
  18184. image: {
  18185. source: "./media/characters/klay/back.svg",
  18186. extra: 962 / 883
  18187. }
  18188. },
  18189. beans: {
  18190. height: math.unit(1.15, "feet"),
  18191. name: "Beans",
  18192. image: {
  18193. source: "./media/characters/klay/beans.svg"
  18194. }
  18195. },
  18196. },
  18197. [
  18198. {
  18199. name: "Micro",
  18200. height: math.unit(6, "inches")
  18201. },
  18202. {
  18203. name: "Mini",
  18204. height: math.unit(3, "feet")
  18205. },
  18206. {
  18207. name: "Normal",
  18208. height: math.unit(6, "feet"),
  18209. default: true
  18210. },
  18211. {
  18212. name: "Big",
  18213. height: math.unit(25, "feet")
  18214. },
  18215. {
  18216. name: "Macro",
  18217. height: math.unit(100, "feet")
  18218. },
  18219. {
  18220. name: "Megamacro",
  18221. height: math.unit(400, "feet")
  18222. },
  18223. ]
  18224. ))
  18225. characterMakers.push(() => makeCharacter(
  18226. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18227. {
  18228. front: {
  18229. height: math.unit(6, "feet"),
  18230. weight: math.unit(160, "lb"),
  18231. name: "Front",
  18232. image: {
  18233. source: "./media/characters/marcus/front.svg",
  18234. extra: 734 / 676,
  18235. bottom: 0.03
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Little",
  18242. height: math.unit(6, "feet")
  18243. },
  18244. {
  18245. name: "Normal",
  18246. height: math.unit(110, "feet"),
  18247. default: true
  18248. },
  18249. {
  18250. name: "Macro",
  18251. height: math.unit(250, "feet")
  18252. },
  18253. {
  18254. name: "Megamacro",
  18255. height: math.unit(1000, "feet")
  18256. },
  18257. ]
  18258. ))
  18259. characterMakers.push(() => makeCharacter(
  18260. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18261. {
  18262. front: {
  18263. height: math.unit(7, "feet"),
  18264. weight: math.unit(275, "lb"),
  18265. name: "Front",
  18266. image: {
  18267. source: "./media/characters/claude-delroute/front.svg",
  18268. extra: 230 / 214,
  18269. bottom: 0.007
  18270. }
  18271. },
  18272. side: {
  18273. height: math.unit(7, "feet"),
  18274. weight: math.unit(275, "lb"),
  18275. name: "Side",
  18276. image: {
  18277. source: "./media/characters/claude-delroute/side.svg",
  18278. extra: 222 / 214,
  18279. bottom: 0.01
  18280. }
  18281. },
  18282. back: {
  18283. height: math.unit(7, "feet"),
  18284. weight: math.unit(275, "lb"),
  18285. name: "Back",
  18286. image: {
  18287. source: "./media/characters/claude-delroute/back.svg",
  18288. extra: 230 / 214,
  18289. bottom: 0.015
  18290. }
  18291. },
  18292. maw: {
  18293. height: math.unit(0.6407, "meters"),
  18294. name: "Maw",
  18295. image: {
  18296. source: "./media/characters/claude-delroute/maw.svg"
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(7, "feet"),
  18304. default: true
  18305. },
  18306. {
  18307. name: "Lorge",
  18308. height: math.unit(20, "feet")
  18309. },
  18310. ]
  18311. ))
  18312. characterMakers.push(() => makeCharacter(
  18313. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18314. {
  18315. front: {
  18316. height: math.unit(8 + 4 / 12, "feet"),
  18317. weight: math.unit(600, "lb"),
  18318. name: "Front",
  18319. image: {
  18320. source: "./media/characters/dragonien/front.svg",
  18321. extra: 100 / 94,
  18322. bottom: 3.3 / 103.3445
  18323. }
  18324. },
  18325. back: {
  18326. height: math.unit(8 + 4 / 12, "feet"),
  18327. weight: math.unit(600, "lb"),
  18328. name: "Back",
  18329. image: {
  18330. source: "./media/characters/dragonien/back.svg",
  18331. extra: 776 / 746,
  18332. bottom: 6.4 / 782.0616
  18333. }
  18334. },
  18335. foot: {
  18336. height: math.unit(1.54, "feet"),
  18337. name: "Foot",
  18338. image: {
  18339. source: "./media/characters/dragonien/foot.svg",
  18340. }
  18341. },
  18342. },
  18343. [
  18344. {
  18345. name: "Normal",
  18346. height: math.unit(8 + 4 / 12, "feet"),
  18347. default: true
  18348. },
  18349. {
  18350. name: "Macro",
  18351. height: math.unit(200, "feet")
  18352. },
  18353. {
  18354. name: "Megamacro",
  18355. height: math.unit(1, "mile")
  18356. },
  18357. {
  18358. name: "Gigamacro",
  18359. height: math.unit(1000, "miles")
  18360. },
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18365. {
  18366. front: {
  18367. height: math.unit(5 + 2 / 12, "feet"),
  18368. weight: math.unit(110, "lb"),
  18369. name: "Front",
  18370. image: {
  18371. source: "./media/characters/desta/front.svg",
  18372. extra: 767 / 726,
  18373. bottom: 11.7 / 779
  18374. }
  18375. },
  18376. back: {
  18377. height: math.unit(5 + 2 / 12, "feet"),
  18378. weight: math.unit(110, "lb"),
  18379. name: "Back",
  18380. image: {
  18381. source: "./media/characters/desta/back.svg",
  18382. extra: 777 / 728,
  18383. bottom: 6 / 784
  18384. }
  18385. },
  18386. frontAlt: {
  18387. height: math.unit(5 + 2 / 12, "feet"),
  18388. weight: math.unit(110, "lb"),
  18389. name: "Front",
  18390. image: {
  18391. source: "./media/characters/desta/front-alt.svg",
  18392. extra: 1482 / 1417
  18393. }
  18394. },
  18395. side: {
  18396. height: math.unit(5 + 2 / 12, "feet"),
  18397. weight: math.unit(110, "lb"),
  18398. name: "Side",
  18399. image: {
  18400. source: "./media/characters/desta/side.svg",
  18401. extra: 2579 / 2491,
  18402. bottom: 0.053
  18403. }
  18404. },
  18405. },
  18406. [
  18407. {
  18408. name: "Micro",
  18409. height: math.unit(6, "inches")
  18410. },
  18411. {
  18412. name: "Normal",
  18413. height: math.unit(5 + 2 / 12, "feet"),
  18414. default: true
  18415. },
  18416. {
  18417. name: "Macro",
  18418. height: math.unit(62, "feet")
  18419. },
  18420. {
  18421. name: "Megamacro",
  18422. height: math.unit(1800, "feet")
  18423. },
  18424. ]
  18425. ))
  18426. characterMakers.push(() => makeCharacter(
  18427. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18428. {
  18429. front: {
  18430. height: math.unit(10, "feet"),
  18431. weight: math.unit(700, "lb"),
  18432. name: "Front",
  18433. image: {
  18434. source: "./media/characters/storm-alystar/front.svg",
  18435. extra: 2112 / 1898,
  18436. bottom: 0.034
  18437. }
  18438. },
  18439. },
  18440. [
  18441. {
  18442. name: "Micro",
  18443. height: math.unit(3.5, "inches")
  18444. },
  18445. {
  18446. name: "Normal",
  18447. height: math.unit(10, "feet"),
  18448. default: true
  18449. },
  18450. {
  18451. name: "Macro",
  18452. height: math.unit(400, "feet")
  18453. },
  18454. {
  18455. name: "Deific",
  18456. height: math.unit(60, "miles")
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18462. {
  18463. front: {
  18464. height: math.unit(2.35, "meters"),
  18465. weight: math.unit(119, "kg"),
  18466. name: "Front",
  18467. image: {
  18468. source: "./media/characters/ilia/front.svg",
  18469. extra: 1285 / 1255,
  18470. bottom: 0.06
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Normal",
  18477. height: math.unit(2.35, "meters")
  18478. },
  18479. {
  18480. name: "Macro",
  18481. height: math.unit(140, "meters"),
  18482. default: true
  18483. },
  18484. {
  18485. name: "Megamacro",
  18486. height: math.unit(100, "miles")
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18492. {
  18493. front: {
  18494. height: math.unit(6 + 5 / 12, "feet"),
  18495. weight: math.unit(190, "lb"),
  18496. name: "Front",
  18497. image: {
  18498. source: "./media/characters/kingdead/front.svg",
  18499. extra: 1228 / 1177
  18500. }
  18501. },
  18502. },
  18503. [
  18504. {
  18505. name: "Micro",
  18506. height: math.unit(7, "inches")
  18507. },
  18508. {
  18509. name: "Normal",
  18510. height: math.unit(6 + 5 / 12, "feet")
  18511. },
  18512. {
  18513. name: "Macro",
  18514. height: math.unit(150, "feet"),
  18515. default: true
  18516. },
  18517. {
  18518. name: "Megamacro",
  18519. height: math.unit(200, "miles")
  18520. },
  18521. ]
  18522. ))
  18523. characterMakers.push(() => makeCharacter(
  18524. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18525. {
  18526. front: {
  18527. height: math.unit(8, "feet"),
  18528. weight: math.unit(600, "lb"),
  18529. name: "Front",
  18530. image: {
  18531. source: "./media/characters/kyrehx/front.svg",
  18532. extra: 1195 / 1095,
  18533. bottom: 0.034
  18534. }
  18535. },
  18536. },
  18537. [
  18538. {
  18539. name: "Micro",
  18540. height: math.unit(2, "inches")
  18541. },
  18542. {
  18543. name: "Normal",
  18544. height: math.unit(8, "feet"),
  18545. default: true
  18546. },
  18547. {
  18548. name: "Macro",
  18549. height: math.unit(255, "feet")
  18550. },
  18551. ]
  18552. ))
  18553. characterMakers.push(() => makeCharacter(
  18554. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18555. {
  18556. front: {
  18557. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18558. weight: math.unit(184, "lb"),
  18559. name: "Front",
  18560. image: {
  18561. source: "./media/characters/xang/front.svg",
  18562. extra: 845 / 755
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18570. default: true
  18571. },
  18572. {
  18573. name: "Macro",
  18574. height: math.unit(0.935 * 146, "feet")
  18575. },
  18576. {
  18577. name: "Megamacro",
  18578. height: math.unit(0.935 * 3, "miles")
  18579. },
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18584. {
  18585. frontDressed: {
  18586. height: math.unit(5 + 7 / 12, "feet"),
  18587. weight: math.unit(140, "lb"),
  18588. name: "Front (Dressed)",
  18589. image: {
  18590. source: "./media/characters/doc-weardno/front-dressed.svg",
  18591. extra: 263 / 234
  18592. }
  18593. },
  18594. backDressed: {
  18595. height: math.unit(5 + 7 / 12, "feet"),
  18596. weight: math.unit(140, "lb"),
  18597. name: "Back (Dressed)",
  18598. image: {
  18599. source: "./media/characters/doc-weardno/back-dressed.svg",
  18600. extra: 266 / 238
  18601. }
  18602. },
  18603. front: {
  18604. height: math.unit(5 + 7 / 12, "feet"),
  18605. weight: math.unit(140, "lb"),
  18606. name: "Front",
  18607. image: {
  18608. source: "./media/characters/doc-weardno/front.svg",
  18609. extra: 254 / 233
  18610. }
  18611. },
  18612. },
  18613. [
  18614. {
  18615. name: "Micro",
  18616. height: math.unit(3, "inches")
  18617. },
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(5 + 7 / 12, "feet"),
  18621. default: true
  18622. },
  18623. {
  18624. name: "Macro",
  18625. height: math.unit(25, "feet")
  18626. },
  18627. {
  18628. name: "Megamacro",
  18629. height: math.unit(2, "miles")
  18630. },
  18631. ]
  18632. ))
  18633. characterMakers.push(() => makeCharacter(
  18634. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18635. {
  18636. front: {
  18637. height: math.unit(6 + 2 / 12, "feet"),
  18638. weight: math.unit(153, "lb"),
  18639. name: "Front",
  18640. image: {
  18641. source: "./media/characters/seth-whilst/front.svg",
  18642. bottom: 0.07
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Micro",
  18649. height: math.unit(5, "inches")
  18650. },
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(6 + 2 / 12, "feet"),
  18654. default: true
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18660. {
  18661. front: {
  18662. height: math.unit(3, "inches"),
  18663. weight: math.unit(8, "grams"),
  18664. name: "Front",
  18665. image: {
  18666. source: "./media/characters/pocket-jabari/front.svg",
  18667. extra: 1024 / 974,
  18668. bottom: 0.039
  18669. }
  18670. },
  18671. },
  18672. [
  18673. {
  18674. name: "Minimicro",
  18675. height: math.unit(8, "mm")
  18676. },
  18677. {
  18678. name: "Micro",
  18679. height: math.unit(3, "inches"),
  18680. default: true
  18681. },
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(3, "feet")
  18685. },
  18686. ]
  18687. ))
  18688. characterMakers.push(() => makeCharacter(
  18689. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18690. {
  18691. front: {
  18692. height: math.unit(15, "feet"),
  18693. weight: math.unit(3280, "lb"),
  18694. name: "Front",
  18695. image: {
  18696. source: "./media/characters/sapphy/front.svg",
  18697. extra: 671 / 577,
  18698. bottom: 0.085
  18699. }
  18700. },
  18701. back: {
  18702. height: math.unit(15, "feet"),
  18703. weight: math.unit(3280, "lb"),
  18704. name: "Back",
  18705. image: {
  18706. source: "./media/characters/sapphy/back.svg",
  18707. extra: 631 / 607,
  18708. bottom: 0.045
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Normal",
  18715. height: math.unit(15, "feet")
  18716. },
  18717. {
  18718. name: "Casual Macro",
  18719. height: math.unit(120, "feet")
  18720. },
  18721. {
  18722. name: "Macro",
  18723. height: math.unit(2150, "feet"),
  18724. default: true
  18725. },
  18726. {
  18727. name: "Megamacro",
  18728. height: math.unit(8, "miles")
  18729. },
  18730. {
  18731. name: "Galaxy Mom",
  18732. height: math.unit(6, "megalightyears")
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18738. {
  18739. front: {
  18740. height: math.unit(6, "feet"),
  18741. weight: math.unit(170, "lb"),
  18742. name: "Front",
  18743. image: {
  18744. source: "./media/characters/kiro/front.svg",
  18745. extra: 1064 / 1012,
  18746. bottom: 0.052
  18747. }
  18748. },
  18749. },
  18750. [
  18751. {
  18752. name: "Micro",
  18753. height: math.unit(6, "inches")
  18754. },
  18755. {
  18756. name: "Normal",
  18757. height: math.unit(6, "feet"),
  18758. default: true
  18759. },
  18760. {
  18761. name: "Macro",
  18762. height: math.unit(72, "feet")
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18768. {
  18769. front: {
  18770. height: math.unit(5 + 9 / 12, "feet"),
  18771. weight: math.unit(175, "lb"),
  18772. name: "Front",
  18773. image: {
  18774. source: "./media/characters/irishfox/front.svg",
  18775. extra: 1912 / 1680,
  18776. bottom: 0.02
  18777. }
  18778. },
  18779. },
  18780. [
  18781. {
  18782. name: "Nano",
  18783. height: math.unit(1, "mm")
  18784. },
  18785. {
  18786. name: "Micro",
  18787. height: math.unit(2, "inches")
  18788. },
  18789. {
  18790. name: "Normal",
  18791. height: math.unit(5 + 9 / 12, "feet"),
  18792. default: true
  18793. },
  18794. {
  18795. name: "Macro",
  18796. height: math.unit(45, "feet")
  18797. },
  18798. ]
  18799. ))
  18800. characterMakers.push(() => makeCharacter(
  18801. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18802. {
  18803. front: {
  18804. height: math.unit(6 + 1 / 12, "feet"),
  18805. weight: math.unit(75, "lb"),
  18806. name: "Front",
  18807. image: {
  18808. source: "./media/characters/aronai-sieyes/front.svg",
  18809. extra: 1556 / 1480,
  18810. bottom: 0.015
  18811. }
  18812. },
  18813. side: {
  18814. height: math.unit(6 + 1 / 12, "feet"),
  18815. weight: math.unit(75, "lb"),
  18816. name: "Side",
  18817. image: {
  18818. source: "./media/characters/aronai-sieyes/side.svg",
  18819. extra: 1433 / 1390,
  18820. bottom: 0.0393
  18821. }
  18822. },
  18823. back: {
  18824. height: math.unit(6 + 1 / 12, "feet"),
  18825. weight: math.unit(75, "lb"),
  18826. name: "Back",
  18827. image: {
  18828. source: "./media/characters/aronai-sieyes/back.svg",
  18829. extra: 1544 / 1494,
  18830. bottom: 0.02
  18831. }
  18832. },
  18833. frontClothed: {
  18834. height: math.unit(6 + 1 / 12, "feet"),
  18835. weight: math.unit(75, "lb"),
  18836. name: "Front (Clothed)",
  18837. image: {
  18838. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18839. extra: 1582 / 1527
  18840. }
  18841. },
  18842. feral: {
  18843. height: math.unit(18, "feet"),
  18844. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18845. name: "Feral",
  18846. image: {
  18847. source: "./media/characters/aronai-sieyes/feral.svg",
  18848. extra: 1530 / 1240,
  18849. bottom: 0.035
  18850. }
  18851. },
  18852. },
  18853. [
  18854. {
  18855. name: "Micro",
  18856. height: math.unit(2, "inches")
  18857. },
  18858. {
  18859. name: "Normal",
  18860. height: math.unit(6 + 1 / 12, "feet"),
  18861. default: true
  18862. }
  18863. ]
  18864. ))
  18865. characterMakers.push(() => makeCharacter(
  18866. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18867. {
  18868. front: {
  18869. height: math.unit(12, "feet"),
  18870. weight: math.unit(410, "kg"),
  18871. name: "Front",
  18872. image: {
  18873. source: "./media/characters/xuna/front.svg",
  18874. extra: 2184 / 1980
  18875. }
  18876. },
  18877. side: {
  18878. height: math.unit(12, "feet"),
  18879. weight: math.unit(410, "kg"),
  18880. name: "Side",
  18881. image: {
  18882. source: "./media/characters/xuna/side.svg",
  18883. extra: 2184 / 1980
  18884. }
  18885. },
  18886. back: {
  18887. height: math.unit(12, "feet"),
  18888. weight: math.unit(410, "kg"),
  18889. name: "Back",
  18890. image: {
  18891. source: "./media/characters/xuna/back.svg",
  18892. extra: 2184 / 1980
  18893. }
  18894. },
  18895. },
  18896. [
  18897. {
  18898. name: "Nano glow",
  18899. height: math.unit(10, "nm")
  18900. },
  18901. {
  18902. name: "Micro floof",
  18903. height: math.unit(0.3, "m")
  18904. },
  18905. {
  18906. name: "Huggable softy boi",
  18907. height: math.unit(3.6576, "m"),
  18908. default: true
  18909. },
  18910. {
  18911. name: "Admirable floof",
  18912. height: math.unit(80, "meters")
  18913. },
  18914. {
  18915. name: "Gentle macro",
  18916. height: math.unit(300, "meters")
  18917. },
  18918. {
  18919. name: "Very careful floof",
  18920. height: math.unit(3200, "meters")
  18921. },
  18922. {
  18923. name: "The mega floof",
  18924. height: math.unit(36000, "meters")
  18925. },
  18926. {
  18927. name: "Giga-fur-Wicker",
  18928. height: math.unit(4800000, "meters")
  18929. },
  18930. {
  18931. name: "Licky world",
  18932. height: math.unit(20000000, "meters")
  18933. },
  18934. {
  18935. name: "Floofy cyan sun",
  18936. height: math.unit(1500000000, "meters")
  18937. },
  18938. {
  18939. name: "Milky Wicker",
  18940. height: math.unit(1000000000000000000000, "meters")
  18941. },
  18942. {
  18943. name: "The observing Wicker",
  18944. height: math.unit(999999999999999999999999999, "meters")
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18950. {
  18951. front: {
  18952. height: math.unit(5 + 9 / 12, "feet"),
  18953. weight: math.unit(150, "lb"),
  18954. name: "Front",
  18955. image: {
  18956. source: "./media/characters/arokha-sieyes/front.svg",
  18957. extra: 1425 / 1284,
  18958. bottom: 0.05
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(5 + 9 / 12, "feet")
  18966. },
  18967. {
  18968. name: "Macro",
  18969. height: math.unit(30, "meters"),
  18970. default: true
  18971. },
  18972. ]
  18973. ))
  18974. characterMakers.push(() => makeCharacter(
  18975. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18976. {
  18977. front: {
  18978. height: math.unit(6, "feet"),
  18979. weight: math.unit(180, "lb"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/arokh-sieyes/front.svg",
  18983. extra: 1830 / 1769,
  18984. bottom: 0.01
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(6, "feet")
  18992. },
  18993. {
  18994. name: "Macro",
  18995. height: math.unit(30, "meters"),
  18996. default: true
  18997. },
  18998. ]
  18999. ))
  19000. characterMakers.push(() => makeCharacter(
  19001. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19002. {
  19003. side: {
  19004. height: math.unit(13 + 1 / 12, "feet"),
  19005. weight: math.unit(8.5, "tonnes"),
  19006. name: "Side",
  19007. image: {
  19008. source: "./media/characters/goldeneye/side.svg",
  19009. extra: 1182 / 778,
  19010. bottom: 0.067
  19011. }
  19012. },
  19013. paw: {
  19014. height: math.unit(3.4, "feet"),
  19015. name: "Paw",
  19016. image: {
  19017. source: "./media/characters/goldeneye/paw.svg"
  19018. }
  19019. },
  19020. },
  19021. [
  19022. {
  19023. name: "Normal",
  19024. height: math.unit(13 + 1 / 12, "feet"),
  19025. default: true
  19026. },
  19027. ]
  19028. ))
  19029. characterMakers.push(() => makeCharacter(
  19030. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19031. {
  19032. front: {
  19033. height: math.unit(6 + 1 / 12, "feet"),
  19034. weight: math.unit(210, "lb"),
  19035. name: "Front",
  19036. image: {
  19037. source: "./media/characters/leonardo-lycheborne/front.svg",
  19038. extra: 390 / 365,
  19039. bottom: 0.032
  19040. }
  19041. },
  19042. side: {
  19043. height: math.unit(6 + 1 / 12, "feet"),
  19044. weight: math.unit(210, "lb"),
  19045. name: "Side",
  19046. image: {
  19047. source: "./media/characters/leonardo-lycheborne/side.svg",
  19048. extra: 390 / 365,
  19049. bottom: 0.005
  19050. }
  19051. },
  19052. back: {
  19053. height: math.unit(6 + 1 / 12, "feet"),
  19054. weight: math.unit(210, "lb"),
  19055. name: "Back",
  19056. image: {
  19057. source: "./media/characters/leonardo-lycheborne/back.svg",
  19058. extra: 392 / 366,
  19059. bottom: 0.01
  19060. }
  19061. },
  19062. hand: {
  19063. height: math.unit(1.08, "feet"),
  19064. name: "Hand",
  19065. image: {
  19066. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19067. }
  19068. },
  19069. foot: {
  19070. height: math.unit(1.32, "feet"),
  19071. name: "Foot",
  19072. image: {
  19073. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19074. }
  19075. },
  19076. were: {
  19077. height: math.unit(20, "feet"),
  19078. weight: math.unit(7800, "lb"),
  19079. name: "Were",
  19080. image: {
  19081. source: "./media/characters/leonardo-lycheborne/were.svg",
  19082. extra: 308 / 294,
  19083. bottom: 0.048
  19084. }
  19085. },
  19086. feral: {
  19087. height: math.unit(7.5, "feet"),
  19088. weight: math.unit(600, "lb"),
  19089. name: "Feral",
  19090. image: {
  19091. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19092. extra: 210 / 186,
  19093. bottom: 0.108
  19094. }
  19095. },
  19096. taur: {
  19097. height: math.unit(11, "feet"),
  19098. weight: math.unit(3300, "lb"),
  19099. name: "Taur",
  19100. image: {
  19101. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19102. extra: 320 / 303,
  19103. bottom: 0.025
  19104. }
  19105. },
  19106. barghest: {
  19107. height: math.unit(11, "feet"),
  19108. weight: math.unit(1300, "lb"),
  19109. name: "Barghest",
  19110. image: {
  19111. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19112. extra: 323 / 302,
  19113. bottom: 0.027
  19114. }
  19115. },
  19116. dick: {
  19117. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19118. name: "Dick",
  19119. image: {
  19120. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19121. }
  19122. },
  19123. dickWere: {
  19124. height: math.unit((20) / 3.8, "feet"),
  19125. name: "Dick (Were)",
  19126. image: {
  19127. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19128. }
  19129. },
  19130. },
  19131. [
  19132. {
  19133. name: "Normal",
  19134. height: math.unit(6 + 1 / 12, "feet"),
  19135. default: true
  19136. },
  19137. ]
  19138. ))
  19139. characterMakers.push(() => makeCharacter(
  19140. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19141. {
  19142. front: {
  19143. height: math.unit(10, "feet"),
  19144. weight: math.unit(350, "lb"),
  19145. name: "Front",
  19146. image: {
  19147. source: "./media/characters/jet/front.svg",
  19148. extra: 2050 / 1980,
  19149. bottom: 0.013
  19150. }
  19151. },
  19152. back: {
  19153. height: math.unit(10, "feet"),
  19154. weight: math.unit(350, "lb"),
  19155. name: "Back",
  19156. image: {
  19157. source: "./media/characters/jet/back.svg",
  19158. extra: 2050 / 1980,
  19159. bottom: 0.013
  19160. }
  19161. },
  19162. },
  19163. [
  19164. {
  19165. name: "Micro",
  19166. height: math.unit(6, "inches")
  19167. },
  19168. {
  19169. name: "Normal",
  19170. height: math.unit(10, "feet"),
  19171. default: true
  19172. },
  19173. {
  19174. name: "Macro",
  19175. height: math.unit(100, "feet")
  19176. },
  19177. ]
  19178. ))
  19179. characterMakers.push(() => makeCharacter(
  19180. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19181. {
  19182. front: {
  19183. height: math.unit(15, "feet"),
  19184. weight: math.unit(2800, "lb"),
  19185. name: "Front",
  19186. image: {
  19187. source: "./media/characters/tanarath/front.svg",
  19188. extra: 2392 / 2220,
  19189. bottom: 0.03
  19190. }
  19191. },
  19192. back: {
  19193. height: math.unit(15, "feet"),
  19194. weight: math.unit(2800, "lb"),
  19195. name: "Back",
  19196. image: {
  19197. source: "./media/characters/tanarath/back.svg",
  19198. extra: 2392 / 2220,
  19199. bottom: 0.03
  19200. }
  19201. },
  19202. },
  19203. [
  19204. {
  19205. name: "Normal",
  19206. height: math.unit(15, "feet"),
  19207. default: true
  19208. },
  19209. ]
  19210. ))
  19211. characterMakers.push(() => makeCharacter(
  19212. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19213. {
  19214. front: {
  19215. height: math.unit(7 + 1 / 12, "feet"),
  19216. weight: math.unit(175, "lb"),
  19217. name: "Front",
  19218. image: {
  19219. source: "./media/characters/patty-cattybatty/front.svg",
  19220. extra: 908 / 874,
  19221. bottom: 0.025
  19222. }
  19223. },
  19224. },
  19225. [
  19226. {
  19227. name: "Micro",
  19228. height: math.unit(1, "inch")
  19229. },
  19230. {
  19231. name: "Normal",
  19232. height: math.unit(7 + 1 / 12, "feet")
  19233. },
  19234. {
  19235. name: "Mini Macro",
  19236. height: math.unit(155, "feet")
  19237. },
  19238. {
  19239. name: "Macro",
  19240. height: math.unit(1077, "feet")
  19241. },
  19242. {
  19243. name: "Mega Macro",
  19244. height: math.unit(47650, "feet"),
  19245. default: true
  19246. },
  19247. {
  19248. name: "Giga Macro",
  19249. height: math.unit(440, "miles")
  19250. },
  19251. {
  19252. name: "Tera Macro",
  19253. height: math.unit(8700, "miles")
  19254. },
  19255. {
  19256. name: "Planetary Macro",
  19257. height: math.unit(32700, "miles")
  19258. },
  19259. {
  19260. name: "Solar Macro",
  19261. height: math.unit(550000, "miles")
  19262. },
  19263. {
  19264. name: "Celestial Macro",
  19265. height: math.unit(2.5, "AU")
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19271. {
  19272. front: {
  19273. height: math.unit(4 + 5 / 12, "feet"),
  19274. weight: math.unit(90, "lb"),
  19275. name: "Front",
  19276. image: {
  19277. source: "./media/characters/cappu/front.svg",
  19278. extra: 1247 / 1152,
  19279. bottom: 0.012
  19280. }
  19281. },
  19282. },
  19283. [
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(4 + 5 / 12, "feet"),
  19287. default: true
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19293. {
  19294. frontDressed: {
  19295. height: math.unit(70, "cm"),
  19296. weight: math.unit(6, "kg"),
  19297. name: "Front (Dressed)",
  19298. image: {
  19299. source: "./media/characters/sebi/front-dressed.svg",
  19300. extra: 713.5 / 686.5,
  19301. bottom: 0.003
  19302. }
  19303. },
  19304. front: {
  19305. height: math.unit(70, "cm"),
  19306. weight: math.unit(5, "kg"),
  19307. name: "Front",
  19308. image: {
  19309. source: "./media/characters/sebi/front.svg",
  19310. extra: 713.5 / 686.5,
  19311. bottom: 0.003
  19312. }
  19313. }
  19314. },
  19315. [
  19316. {
  19317. name: "Normal",
  19318. height: math.unit(70, "cm"),
  19319. default: true
  19320. },
  19321. {
  19322. name: "Macro",
  19323. height: math.unit(8, "meters")
  19324. },
  19325. ]
  19326. ))
  19327. characterMakers.push(() => makeCharacter(
  19328. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19329. {
  19330. front: {
  19331. height: math.unit(6, "feet"),
  19332. weight: math.unit(150, "lb"),
  19333. name: "Front",
  19334. image: {
  19335. source: "./media/characters/typhek/front.svg",
  19336. extra: 1948 / 1929,
  19337. bottom: 0.025
  19338. }
  19339. },
  19340. side: {
  19341. height: math.unit(6, "feet"),
  19342. weight: math.unit(150, "lb"),
  19343. name: "Side",
  19344. image: {
  19345. source: "./media/characters/typhek/side.svg",
  19346. extra: 2034 / 2010,
  19347. bottom: 0.003
  19348. }
  19349. },
  19350. back: {
  19351. height: math.unit(6, "feet"),
  19352. weight: math.unit(150, "lb"),
  19353. name: "Back",
  19354. image: {
  19355. source: "./media/characters/typhek/back.svg",
  19356. extra: 2005 / 1978,
  19357. bottom: 0.004
  19358. }
  19359. },
  19360. palm: {
  19361. height: math.unit(1.2, "feet"),
  19362. name: "Palm",
  19363. image: {
  19364. source: "./media/characters/typhek/palm.svg"
  19365. }
  19366. },
  19367. fist: {
  19368. height: math.unit(1.1, "feet"),
  19369. name: "Fist",
  19370. image: {
  19371. source: "./media/characters/typhek/fist.svg"
  19372. }
  19373. },
  19374. foot: {
  19375. height: math.unit(1.57, "feet"),
  19376. name: "Foot",
  19377. image: {
  19378. source: "./media/characters/typhek/foot.svg"
  19379. }
  19380. },
  19381. sole: {
  19382. height: math.unit(2.05, "feet"),
  19383. name: "Sole",
  19384. image: {
  19385. source: "./media/characters/typhek/sole.svg"
  19386. }
  19387. },
  19388. },
  19389. [
  19390. {
  19391. name: "Macro",
  19392. height: math.unit(40, "stories"),
  19393. default: true
  19394. },
  19395. {
  19396. name: "Megamacro",
  19397. height: math.unit(1, "mile")
  19398. },
  19399. {
  19400. name: "Gigamacro",
  19401. height: math.unit(4000, "solarradii")
  19402. },
  19403. {
  19404. name: "Universal",
  19405. height: math.unit(1.1, "universes")
  19406. }
  19407. ]
  19408. ))
  19409. characterMakers.push(() => makeCharacter(
  19410. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19411. {
  19412. side: {
  19413. height: math.unit(5 + 7 / 12, "feet"),
  19414. weight: math.unit(150, "lb"),
  19415. name: "Side",
  19416. image: {
  19417. source: "./media/characters/kassy/side.svg",
  19418. extra: 1280 / 1225,
  19419. bottom: 0.002
  19420. }
  19421. },
  19422. front: {
  19423. height: math.unit(5 + 7 / 12, "feet"),
  19424. weight: math.unit(150, "lb"),
  19425. name: "Front",
  19426. image: {
  19427. source: "./media/characters/kassy/front.svg",
  19428. extra: 1280 / 1225,
  19429. bottom: 0.025
  19430. }
  19431. },
  19432. back: {
  19433. height: math.unit(5 + 7 / 12, "feet"),
  19434. weight: math.unit(150, "lb"),
  19435. name: "Back",
  19436. image: {
  19437. source: "./media/characters/kassy/back.svg",
  19438. extra: 1280 / 1225,
  19439. bottom: 0.002
  19440. }
  19441. },
  19442. foot: {
  19443. height: math.unit(1.266, "feet"),
  19444. name: "Foot",
  19445. image: {
  19446. source: "./media/characters/kassy/foot.svg"
  19447. }
  19448. },
  19449. },
  19450. [
  19451. {
  19452. name: "Normal",
  19453. height: math.unit(5 + 7 / 12, "feet")
  19454. },
  19455. {
  19456. name: "Macro",
  19457. height: math.unit(137, "feet"),
  19458. default: true
  19459. },
  19460. {
  19461. name: "Megamacro",
  19462. height: math.unit(1, "mile")
  19463. },
  19464. ]
  19465. ))
  19466. characterMakers.push(() => makeCharacter(
  19467. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19468. {
  19469. front: {
  19470. height: math.unit(6 + 1 / 12, "feet"),
  19471. weight: math.unit(200, "lb"),
  19472. name: "Front",
  19473. image: {
  19474. source: "./media/characters/neil/front.svg",
  19475. extra: 1326 / 1250,
  19476. bottom: 0.023
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Normal",
  19483. height: math.unit(6 + 1 / 12, "feet"),
  19484. default: true
  19485. },
  19486. {
  19487. name: "Macro",
  19488. height: math.unit(200, "feet")
  19489. },
  19490. ]
  19491. ))
  19492. characterMakers.push(() => makeCharacter(
  19493. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19494. {
  19495. front: {
  19496. height: math.unit(5 + 9 / 12, "feet"),
  19497. weight: math.unit(190, "lb"),
  19498. name: "Front",
  19499. image: {
  19500. source: "./media/characters/atticus/front.svg",
  19501. extra: 2934 / 2785,
  19502. bottom: 0.025
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Normal",
  19509. height: math.unit(5 + 9 / 12, "feet"),
  19510. default: true
  19511. },
  19512. {
  19513. name: "Macro",
  19514. height: math.unit(180, "feet")
  19515. },
  19516. ]
  19517. ))
  19518. characterMakers.push(() => makeCharacter(
  19519. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19520. {
  19521. side: {
  19522. height: math.unit(9, "feet"),
  19523. weight: math.unit(650, "lb"),
  19524. name: "Side",
  19525. image: {
  19526. source: "./media/characters/milo/side.svg",
  19527. extra: 2644 / 2310,
  19528. bottom: 0.032
  19529. }
  19530. },
  19531. },
  19532. [
  19533. {
  19534. name: "Normal",
  19535. height: math.unit(9, "feet"),
  19536. default: true
  19537. },
  19538. {
  19539. name: "Macro",
  19540. height: math.unit(300, "feet")
  19541. },
  19542. ]
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19546. {
  19547. side: {
  19548. height: math.unit(8, "meters"),
  19549. weight: math.unit(90000, "kg"),
  19550. name: "Side",
  19551. image: {
  19552. source: "./media/characters/ijzer/side.svg",
  19553. extra: 2756 / 1600,
  19554. bottom: 0.01
  19555. }
  19556. },
  19557. },
  19558. [
  19559. {
  19560. name: "Small",
  19561. height: math.unit(3, "meters")
  19562. },
  19563. {
  19564. name: "Normal",
  19565. height: math.unit(8, "meters"),
  19566. default: true
  19567. },
  19568. {
  19569. name: "Normal+",
  19570. height: math.unit(10, "meters")
  19571. },
  19572. {
  19573. name: "Bigger",
  19574. height: math.unit(24, "meters")
  19575. },
  19576. {
  19577. name: "Huge",
  19578. height: math.unit(80, "meters")
  19579. },
  19580. ]
  19581. ))
  19582. characterMakers.push(() => makeCharacter(
  19583. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19584. {
  19585. front: {
  19586. height: math.unit(6 + 2 / 12, "feet"),
  19587. weight: math.unit(153, "lb"),
  19588. name: "Front",
  19589. image: {
  19590. source: "./media/characters/luca-cervicum/front.svg",
  19591. extra: 370 / 327,
  19592. bottom: 0.015
  19593. }
  19594. },
  19595. back: {
  19596. height: math.unit(6 + 2 / 12, "feet"),
  19597. weight: math.unit(153, "lb"),
  19598. name: "Back",
  19599. image: {
  19600. source: "./media/characters/luca-cervicum/back.svg",
  19601. extra: 367 / 333,
  19602. bottom: 0.005
  19603. }
  19604. },
  19605. frontGear: {
  19606. height: math.unit(6 + 2 / 12, "feet"),
  19607. weight: math.unit(173, "lb"),
  19608. name: "Front (Gear)",
  19609. image: {
  19610. source: "./media/characters/luca-cervicum/front-gear.svg",
  19611. extra: 377 / 333,
  19612. bottom: 0.006
  19613. }
  19614. },
  19615. },
  19616. [
  19617. {
  19618. name: "Normal",
  19619. height: math.unit(6 + 2 / 12, "feet"),
  19620. default: true
  19621. },
  19622. ]
  19623. ))
  19624. characterMakers.push(() => makeCharacter(
  19625. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19626. {
  19627. front: {
  19628. height: math.unit(6 + 1 / 12, "feet"),
  19629. weight: math.unit(304, "lb"),
  19630. name: "Front",
  19631. image: {
  19632. source: "./media/characters/oliver/front.svg",
  19633. extra: 157 / 143,
  19634. bottom: 0.08
  19635. }
  19636. },
  19637. },
  19638. [
  19639. {
  19640. name: "Normal",
  19641. height: math.unit(6 + 1 / 12, "feet"),
  19642. default: true
  19643. },
  19644. ]
  19645. ))
  19646. characterMakers.push(() => makeCharacter(
  19647. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19648. {
  19649. front: {
  19650. height: math.unit(5 + 7 / 12, "feet"),
  19651. weight: math.unit(140, "lb"),
  19652. name: "Front",
  19653. image: {
  19654. source: "./media/characters/shane/front.svg",
  19655. extra: 304 / 289,
  19656. bottom: 0.005
  19657. }
  19658. },
  19659. },
  19660. [
  19661. {
  19662. name: "Normal",
  19663. height: math.unit(5 + 7 / 12, "feet"),
  19664. default: true
  19665. },
  19666. ]
  19667. ))
  19668. characterMakers.push(() => makeCharacter(
  19669. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19670. {
  19671. front: {
  19672. height: math.unit(5 + 9 / 12, "feet"),
  19673. weight: math.unit(178, "lb"),
  19674. name: "Front",
  19675. image: {
  19676. source: "./media/characters/shin/front.svg",
  19677. extra: 159 / 151,
  19678. bottom: 0.015
  19679. }
  19680. },
  19681. },
  19682. [
  19683. {
  19684. name: "Normal",
  19685. height: math.unit(5 + 9 / 12, "feet"),
  19686. default: true
  19687. },
  19688. ]
  19689. ))
  19690. characterMakers.push(() => makeCharacter(
  19691. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19692. {
  19693. front: {
  19694. height: math.unit(5 + 10 / 12, "feet"),
  19695. weight: math.unit(168, "lb"),
  19696. name: "Front",
  19697. image: {
  19698. source: "./media/characters/xerxes/front.svg",
  19699. extra: 282 / 260,
  19700. bottom: 0.045
  19701. }
  19702. },
  19703. },
  19704. [
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(5 + 10 / 12, "feet"),
  19708. default: true
  19709. },
  19710. ]
  19711. ))
  19712. characterMakers.push(() => makeCharacter(
  19713. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19714. {
  19715. front: {
  19716. height: math.unit(6 + 7 / 12, "feet"),
  19717. weight: math.unit(208, "lb"),
  19718. name: "Front",
  19719. image: {
  19720. source: "./media/characters/chaska/front.svg",
  19721. extra: 332 / 319,
  19722. bottom: 0.015
  19723. }
  19724. },
  19725. },
  19726. [
  19727. {
  19728. name: "Normal",
  19729. height: math.unit(6 + 7 / 12, "feet"),
  19730. default: true
  19731. },
  19732. ]
  19733. ))
  19734. characterMakers.push(() => makeCharacter(
  19735. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19736. {
  19737. front: {
  19738. height: math.unit(5 + 8 / 12, "feet"),
  19739. weight: math.unit(208, "lb"),
  19740. name: "Front",
  19741. image: {
  19742. source: "./media/characters/enuk/front.svg",
  19743. extra: 437 / 406,
  19744. bottom: 0.02
  19745. }
  19746. },
  19747. },
  19748. [
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(5 + 8 / 12, "feet"),
  19752. default: true
  19753. },
  19754. ]
  19755. ))
  19756. characterMakers.push(() => makeCharacter(
  19757. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19758. {
  19759. front: {
  19760. height: math.unit(5 + 10 / 12, "feet"),
  19761. weight: math.unit(252, "lb"),
  19762. name: "Front",
  19763. image: {
  19764. source: "./media/characters/bruun/front.svg",
  19765. extra: 197 / 187,
  19766. bottom: 0.012
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(5 + 10 / 12, "feet"),
  19774. default: true
  19775. },
  19776. ]
  19777. ))
  19778. characterMakers.push(() => makeCharacter(
  19779. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19780. {
  19781. front: {
  19782. height: math.unit(6 + 10 / 12, "feet"),
  19783. weight: math.unit(255, "lb"),
  19784. name: "Front",
  19785. image: {
  19786. source: "./media/characters/alexeev/front.svg",
  19787. extra: 213 / 200,
  19788. bottom: 0.05
  19789. }
  19790. },
  19791. },
  19792. [
  19793. {
  19794. name: "Normal",
  19795. height: math.unit(6 + 10 / 12, "feet"),
  19796. default: true
  19797. },
  19798. ]
  19799. ))
  19800. characterMakers.push(() => makeCharacter(
  19801. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19802. {
  19803. front: {
  19804. height: math.unit(2 + 8 / 12, "feet"),
  19805. weight: math.unit(22, "lb"),
  19806. name: "Front",
  19807. image: {
  19808. source: "./media/characters/evelyn/front.svg",
  19809. extra: 208 / 180
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(2 + 8 / 12, "feet"),
  19817. default: true
  19818. },
  19819. ]
  19820. ))
  19821. characterMakers.push(() => makeCharacter(
  19822. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19823. {
  19824. front: {
  19825. height: math.unit(5 + 9 / 12, "feet"),
  19826. weight: math.unit(139, "lb"),
  19827. name: "Front",
  19828. image: {
  19829. source: "./media/characters/inca/front.svg",
  19830. extra: 294 / 291,
  19831. bottom: 0.03
  19832. }
  19833. },
  19834. },
  19835. [
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(5 + 9 / 12, "feet"),
  19839. default: true
  19840. },
  19841. ]
  19842. ))
  19843. characterMakers.push(() => makeCharacter(
  19844. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19845. {
  19846. front: {
  19847. height: math.unit(5 + 1 / 12, "feet"),
  19848. weight: math.unit(84, "lb"),
  19849. name: "Front",
  19850. image: {
  19851. source: "./media/characters/magdalene/front.svg",
  19852. extra: 293 / 273
  19853. }
  19854. },
  19855. },
  19856. [
  19857. {
  19858. name: "Normal",
  19859. height: math.unit(5 + 1 / 12, "feet"),
  19860. default: true
  19861. },
  19862. ]
  19863. ))
  19864. characterMakers.push(() => makeCharacter(
  19865. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19866. {
  19867. front: {
  19868. height: math.unit(6 + 3 / 12, "feet"),
  19869. weight: math.unit(185, "lb"),
  19870. name: "Front",
  19871. image: {
  19872. source: "./media/characters/mera/front.svg",
  19873. extra: 291 / 277,
  19874. bottom: 0.03
  19875. }
  19876. },
  19877. },
  19878. [
  19879. {
  19880. name: "Normal",
  19881. height: math.unit(6 + 3 / 12, "feet"),
  19882. default: true
  19883. },
  19884. ]
  19885. ))
  19886. characterMakers.push(() => makeCharacter(
  19887. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19888. {
  19889. front: {
  19890. height: math.unit(6 + 7 / 12, "feet"),
  19891. weight: math.unit(160, "lb"),
  19892. name: "Front",
  19893. image: {
  19894. source: "./media/characters/ceres/front.svg",
  19895. extra: 1023 / 950,
  19896. bottom: 0.027
  19897. }
  19898. },
  19899. back: {
  19900. height: math.unit(6 + 7 / 12, "feet"),
  19901. weight: math.unit(160, "lb"),
  19902. name: "Back",
  19903. image: {
  19904. source: "./media/characters/ceres/back.svg",
  19905. extra: 1023 / 950
  19906. }
  19907. },
  19908. },
  19909. [
  19910. {
  19911. name: "Normal",
  19912. height: math.unit(6 + 7 / 12, "feet"),
  19913. default: true
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19919. {
  19920. front: {
  19921. height: math.unit(5 + 10 / 12, "feet"),
  19922. weight: math.unit(150, "lb"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/kris/front.svg",
  19926. extra: 885 / 803,
  19927. bottom: 0.03
  19928. }
  19929. },
  19930. },
  19931. [
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(5 + 10 / 12, "feet"),
  19935. default: true
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19941. {
  19942. front: {
  19943. height: math.unit(7, "feet"),
  19944. weight: math.unit(120, "kg"),
  19945. name: "Front",
  19946. image: {
  19947. source: "./media/characters/taluthus/front.svg",
  19948. extra: 903 / 833,
  19949. bottom: 0.015
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(7, "feet"),
  19957. default: true
  19958. },
  19959. {
  19960. name: "Macro",
  19961. height: math.unit(300, "feet")
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19967. {
  19968. front: {
  19969. height: math.unit(5 + 9 / 12, "feet"),
  19970. weight: math.unit(145, "lb"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/dawn/front.svg",
  19974. extra: 2094 / 2016,
  19975. bottom: 0.025
  19976. }
  19977. },
  19978. back: {
  19979. height: math.unit(5 + 9 / 12, "feet"),
  19980. weight: math.unit(160, "lb"),
  19981. name: "Back",
  19982. image: {
  19983. source: "./media/characters/dawn/back.svg",
  19984. extra: 2112 / 2080,
  19985. bottom: 0.005
  19986. }
  19987. },
  19988. },
  19989. [
  19990. {
  19991. name: "Normal",
  19992. height: math.unit(6 + 7 / 12, "feet"),
  19993. default: true
  19994. },
  19995. ]
  19996. ))
  19997. characterMakers.push(() => makeCharacter(
  19998. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19999. {
  20000. anthro: {
  20001. height: math.unit(8 + 3 / 12, "feet"),
  20002. weight: math.unit(450, "lb"),
  20003. name: "Anthro",
  20004. image: {
  20005. source: "./media/characters/arador/anthro.svg",
  20006. extra: 1835 / 1718,
  20007. bottom: 0.025
  20008. }
  20009. },
  20010. feral: {
  20011. height: math.unit(4, "feet"),
  20012. weight: math.unit(200, "lb"),
  20013. name: "Feral",
  20014. image: {
  20015. source: "./media/characters/arador/feral.svg",
  20016. extra: 1683 / 1514,
  20017. bottom: 0.07
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(8 + 3 / 12, "feet")
  20025. },
  20026. {
  20027. name: "Macro",
  20028. height: math.unit(82.5, "feet"),
  20029. default: true
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(5 + 10 / 12, "feet"),
  20038. weight: math.unit(125, "lb"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/dharsi/front.svg",
  20042. extra: 716 / 630,
  20043. bottom: 0.035
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Nano",
  20050. height: math.unit(100, "nm")
  20051. },
  20052. {
  20053. name: "Micro",
  20054. height: math.unit(2, "inches")
  20055. },
  20056. {
  20057. name: "Normal",
  20058. height: math.unit(5 + 10 / 12, "feet"),
  20059. default: true
  20060. },
  20061. {
  20062. name: "Macro",
  20063. height: math.unit(1000, "feet")
  20064. },
  20065. {
  20066. name: "Megamacro",
  20067. height: math.unit(10, "miles")
  20068. },
  20069. {
  20070. name: "Gigamacro",
  20071. height: math.unit(3000, "miles")
  20072. },
  20073. {
  20074. name: "Teramacro",
  20075. height: math.unit(500000, "miles")
  20076. },
  20077. {
  20078. name: "Teramacro+",
  20079. height: math.unit(30, "galaxies")
  20080. },
  20081. ]
  20082. ))
  20083. characterMakers.push(() => makeCharacter(
  20084. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20085. {
  20086. front: {
  20087. height: math.unit(6, "feet"),
  20088. weight: math.unit(150, "lb"),
  20089. name: "Front",
  20090. image: {
  20091. source: "./media/characters/deathy/front.svg",
  20092. extra: 1552 / 1463,
  20093. bottom: 0.025
  20094. }
  20095. },
  20096. side: {
  20097. height: math.unit(6, "feet"),
  20098. weight: math.unit(150, "lb"),
  20099. name: "Side",
  20100. image: {
  20101. source: "./media/characters/deathy/side.svg",
  20102. extra: 1604 / 1455,
  20103. bottom: 0.025
  20104. }
  20105. },
  20106. back: {
  20107. height: math.unit(6, "feet"),
  20108. weight: math.unit(150, "lb"),
  20109. name: "Back",
  20110. image: {
  20111. source: "./media/characters/deathy/back.svg",
  20112. extra: 1580 / 1463,
  20113. bottom: 0.005
  20114. }
  20115. },
  20116. },
  20117. [
  20118. {
  20119. name: "Micro",
  20120. height: math.unit(5, "millimeters")
  20121. },
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(6 + 5 / 12, "feet"),
  20125. default: true
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20131. {
  20132. front: {
  20133. height: math.unit(16, "feet"),
  20134. weight: math.unit(4000, "lb"),
  20135. name: "Front",
  20136. image: {
  20137. source: "./media/characters/juniper/front.svg",
  20138. bottom: 0.04
  20139. }
  20140. },
  20141. },
  20142. [
  20143. {
  20144. name: "Normal",
  20145. height: math.unit(16, "feet"),
  20146. default: true
  20147. },
  20148. ]
  20149. ))
  20150. characterMakers.push(() => makeCharacter(
  20151. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20152. {
  20153. front: {
  20154. height: math.unit(6, "feet"),
  20155. weight: math.unit(150, "lb"),
  20156. name: "Front",
  20157. image: {
  20158. source: "./media/characters/hipster/front.svg",
  20159. extra: 1312 / 1209,
  20160. bottom: 0.025
  20161. }
  20162. },
  20163. back: {
  20164. height: math.unit(6, "feet"),
  20165. weight: math.unit(150, "lb"),
  20166. name: "Back",
  20167. image: {
  20168. source: "./media/characters/hipster/back.svg",
  20169. extra: 1281 / 1196,
  20170. bottom: 0.01
  20171. }
  20172. },
  20173. },
  20174. [
  20175. {
  20176. name: "Micro",
  20177. height: math.unit(1, "mm")
  20178. },
  20179. {
  20180. name: "Normal",
  20181. height: math.unit(4, "inches"),
  20182. default: true
  20183. },
  20184. {
  20185. name: "Macro",
  20186. height: math.unit(500, "feet")
  20187. },
  20188. {
  20189. name: "Megamacro",
  20190. height: math.unit(1000, "miles")
  20191. },
  20192. ]
  20193. ))
  20194. characterMakers.push(() => makeCharacter(
  20195. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20196. {
  20197. front: {
  20198. height: math.unit(6, "feet"),
  20199. weight: math.unit(150, "lb"),
  20200. name: "Front",
  20201. image: {
  20202. source: "./media/characters/tendirmuldr/front.svg",
  20203. extra: 1878 / 1772,
  20204. bottom: 0.015
  20205. }
  20206. },
  20207. },
  20208. [
  20209. {
  20210. name: "Megamacro",
  20211. height: math.unit(1500, "miles"),
  20212. default: true
  20213. },
  20214. ]
  20215. ))
  20216. characterMakers.push(() => makeCharacter(
  20217. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20218. {
  20219. front: {
  20220. height: math.unit(14, "feet"),
  20221. weight: math.unit(12000, "lb"),
  20222. name: "Front",
  20223. image: {
  20224. source: "./media/characters/mort/front.svg",
  20225. extra: 365 / 318,
  20226. bottom: 0.01
  20227. }
  20228. },
  20229. side: {
  20230. height: math.unit(14, "feet"),
  20231. weight: math.unit(12000, "lb"),
  20232. name: "Side",
  20233. image: {
  20234. source: "./media/characters/mort/side.svg",
  20235. extra: 365 / 318,
  20236. bottom: 0.052
  20237. },
  20238. default: true
  20239. },
  20240. back: {
  20241. height: math.unit(14, "feet"),
  20242. weight: math.unit(12000, "lb"),
  20243. name: "Back",
  20244. image: {
  20245. source: "./media/characters/mort/back.svg",
  20246. extra: 371 / 332,
  20247. bottom: 0.18
  20248. }
  20249. },
  20250. },
  20251. [
  20252. {
  20253. name: "Normal",
  20254. height: math.unit(14, "feet"),
  20255. default: true
  20256. },
  20257. ]
  20258. ))
  20259. characterMakers.push(() => makeCharacter(
  20260. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20261. {
  20262. front: {
  20263. height: math.unit(8, "feet"),
  20264. weight: math.unit(1, "ton"),
  20265. name: "Front",
  20266. image: {
  20267. source: "./media/characters/lycoa/front.svg",
  20268. extra: 1875 / 1789,
  20269. bottom: 0.022
  20270. }
  20271. },
  20272. back: {
  20273. height: math.unit(8, "feet"),
  20274. weight: math.unit(1, "ton"),
  20275. name: "Back",
  20276. image: {
  20277. source: "./media/characters/lycoa/back.svg",
  20278. extra: 1835 / 1781,
  20279. bottom: 0.03
  20280. }
  20281. },
  20282. head: {
  20283. height: math.unit(2.1, "feet"),
  20284. name: "Head",
  20285. image: {
  20286. source: "./media/characters/lycoa/head.svg"
  20287. }
  20288. },
  20289. tailmaw: {
  20290. height: math.unit(1.9, "feet"),
  20291. name: "Tailmaw",
  20292. image: {
  20293. source: "./media/characters/lycoa/tailmaw.svg"
  20294. }
  20295. },
  20296. tentacles: {
  20297. height: math.unit(2.1, "feet"),
  20298. name: "Tentacles",
  20299. image: {
  20300. source: "./media/characters/lycoa/tentacles.svg"
  20301. }
  20302. },
  20303. dick: {
  20304. height: math.unit(1.73, "feet"),
  20305. name: "Dick",
  20306. image: {
  20307. source: "./media/characters/lycoa/dick.svg"
  20308. }
  20309. },
  20310. },
  20311. [
  20312. {
  20313. name: "Normal",
  20314. height: math.unit(8, "feet"),
  20315. default: true
  20316. },
  20317. {
  20318. name: "Macro",
  20319. height: math.unit(30, "feet")
  20320. },
  20321. ]
  20322. ))
  20323. characterMakers.push(() => makeCharacter(
  20324. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20325. {
  20326. front: {
  20327. height: math.unit(4 + 2 / 12, "feet"),
  20328. weight: math.unit(70, "lb"),
  20329. name: "Front",
  20330. image: {
  20331. source: "./media/characters/naldara/front.svg",
  20332. extra: 841 / 720,
  20333. bottom: 0.04
  20334. }
  20335. },
  20336. naga: {
  20337. height: math.unit(23, "feet"),
  20338. weight: math.unit(15000, "kg"),
  20339. name: "Naga",
  20340. image: {
  20341. source: "./media/characters/naldara/naga.svg",
  20342. extra: 3290 / 2959,
  20343. bottom: 124 / 3432
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(4 + 2 / 12, "feet"),
  20351. default: true
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20357. {
  20358. front: {
  20359. height: math.unit(13 + 7 / 12, "feet"),
  20360. weight: math.unit(1500, "lb"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/briar/front.svg",
  20364. extra: 626 / 596,
  20365. bottom: 0.08
  20366. }
  20367. },
  20368. },
  20369. [
  20370. {
  20371. name: "Normal",
  20372. height: math.unit(13 + 7 / 12, "feet"),
  20373. default: true
  20374. },
  20375. ]
  20376. ))
  20377. characterMakers.push(() => makeCharacter(
  20378. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20379. {
  20380. side: {
  20381. height: math.unit(10, "feet"),
  20382. weight: math.unit(500, "lb"),
  20383. name: "Side",
  20384. image: {
  20385. source: "./media/characters/vanguard/side.svg",
  20386. extra: 502 / 425,
  20387. bottom: 0.087
  20388. }
  20389. },
  20390. },
  20391. [
  20392. {
  20393. name: "Normal",
  20394. height: math.unit(10, "feet"),
  20395. default: true
  20396. },
  20397. ]
  20398. ))
  20399. characterMakers.push(() => makeCharacter(
  20400. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20401. {
  20402. front: {
  20403. height: math.unit(7.5, "feet"),
  20404. weight: math.unit(2, "lb"),
  20405. name: "Front",
  20406. image: {
  20407. source: "./media/characters/artemis/front.svg",
  20408. extra: 1192 / 1075,
  20409. bottom: 0.07
  20410. }
  20411. },
  20412. frontNsfw: {
  20413. height: math.unit(7.5, "feet"),
  20414. weight: math.unit(2, "lb"),
  20415. name: "Front (NSFW)",
  20416. image: {
  20417. source: "./media/characters/artemis/front-nsfw.svg",
  20418. extra: 1192 / 1075,
  20419. bottom: 0.07
  20420. }
  20421. },
  20422. frontNsfwer: {
  20423. height: math.unit(7.5, "feet"),
  20424. weight: math.unit(2, "lb"),
  20425. name: "Front (NSFW-er)",
  20426. image: {
  20427. source: "./media/characters/artemis/front-nsfwer.svg",
  20428. extra: 1192 / 1075,
  20429. bottom: 0.07
  20430. }
  20431. },
  20432. side: {
  20433. height: math.unit(7.5, "feet"),
  20434. weight: math.unit(2, "lb"),
  20435. name: "Side",
  20436. image: {
  20437. source: "./media/characters/artemis/side.svg",
  20438. extra: 1192 / 1075,
  20439. bottom: 0.07
  20440. }
  20441. },
  20442. sideNsfw: {
  20443. height: math.unit(7.5, "feet"),
  20444. weight: math.unit(2, "lb"),
  20445. name: "Side (NSFW)",
  20446. image: {
  20447. source: "./media/characters/artemis/side-nsfw.svg",
  20448. extra: 1192 / 1075,
  20449. bottom: 0.07
  20450. }
  20451. },
  20452. sideNsfwer: {
  20453. height: math.unit(7.5, "feet"),
  20454. weight: math.unit(2, "lb"),
  20455. name: "Side (NSFW-er)",
  20456. image: {
  20457. source: "./media/characters/artemis/side-nsfwer.svg",
  20458. extra: 1192 / 1075,
  20459. bottom: 0.07
  20460. }
  20461. },
  20462. maw: {
  20463. height: math.unit(1.1, "feet"),
  20464. name: "Maw",
  20465. image: {
  20466. source: "./media/characters/artemis/maw.svg"
  20467. }
  20468. },
  20469. stomach: {
  20470. height: math.unit(0.95, "feet"),
  20471. name: "Stomach",
  20472. image: {
  20473. source: "./media/characters/artemis/stomach.svg"
  20474. }
  20475. },
  20476. dickCanine: {
  20477. height: math.unit(1, "feet"),
  20478. name: "Dick (Canine)",
  20479. image: {
  20480. source: "./media/characters/artemis/dick-canine.svg"
  20481. }
  20482. },
  20483. dickEquine: {
  20484. height: math.unit(0.85, "feet"),
  20485. name: "Dick (Equine)",
  20486. image: {
  20487. source: "./media/characters/artemis/dick-equine.svg"
  20488. }
  20489. },
  20490. dickExotic: {
  20491. height: math.unit(0.85, "feet"),
  20492. name: "Dick (Exotic)",
  20493. image: {
  20494. source: "./media/characters/artemis/dick-exotic.svg"
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(7.5, "feet"),
  20502. default: true
  20503. },
  20504. {
  20505. name: "Enlarged",
  20506. height: math.unit(12, "feet")
  20507. },
  20508. ]
  20509. ))
  20510. characterMakers.push(() => makeCharacter(
  20511. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20512. {
  20513. front: {
  20514. height: math.unit(5 + 3 / 12, "feet"),
  20515. weight: math.unit(160, "lb"),
  20516. name: "Front",
  20517. image: {
  20518. source: "./media/characters/kira/front.svg",
  20519. extra: 906 / 786,
  20520. bottom: 0.01
  20521. }
  20522. },
  20523. back: {
  20524. height: math.unit(5 + 3 / 12, "feet"),
  20525. weight: math.unit(160, "lb"),
  20526. name: "Back",
  20527. image: {
  20528. source: "./media/characters/kira/back.svg",
  20529. extra: 882 / 757,
  20530. bottom: 0.005
  20531. }
  20532. },
  20533. frontDressed: {
  20534. height: math.unit(5 + 3 / 12, "feet"),
  20535. weight: math.unit(160, "lb"),
  20536. name: "Front (Dressed)",
  20537. image: {
  20538. source: "./media/characters/kira/front-dressed.svg",
  20539. extra: 906 / 786,
  20540. bottom: 0.01
  20541. }
  20542. },
  20543. beans: {
  20544. height: math.unit(0.92, "feet"),
  20545. name: "Beans",
  20546. image: {
  20547. source: "./media/characters/kira/beans.svg"
  20548. }
  20549. },
  20550. },
  20551. [
  20552. {
  20553. name: "Normal",
  20554. height: math.unit(5 + 3 / 12, "feet"),
  20555. default: true
  20556. },
  20557. ]
  20558. ))
  20559. characterMakers.push(() => makeCharacter(
  20560. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20561. {
  20562. front: {
  20563. height: math.unit(5 + 4 / 12, "feet"),
  20564. weight: math.unit(145, "lb"),
  20565. name: "Front",
  20566. image: {
  20567. source: "./media/characters/scramble/front.svg",
  20568. extra: 763 / 727,
  20569. bottom: 0.05
  20570. }
  20571. },
  20572. back: {
  20573. height: math.unit(5 + 4 / 12, "feet"),
  20574. weight: math.unit(145, "lb"),
  20575. name: "Back",
  20576. image: {
  20577. source: "./media/characters/scramble/back.svg",
  20578. extra: 826 / 737,
  20579. bottom: 0.002
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Normal",
  20586. height: math.unit(5 + 4 / 12, "feet"),
  20587. default: true
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20593. {
  20594. side: {
  20595. height: math.unit(6 + 2 / 12, "feet"),
  20596. weight: math.unit(190, "lb"),
  20597. name: "Side",
  20598. image: {
  20599. source: "./media/characters/biscuit/side.svg",
  20600. extra: 858 / 791,
  20601. bottom: 0.044
  20602. }
  20603. },
  20604. },
  20605. [
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(6 + 2 / 12, "feet"),
  20609. default: true
  20610. },
  20611. ]
  20612. ))
  20613. characterMakers.push(() => makeCharacter(
  20614. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20615. {
  20616. front: {
  20617. height: math.unit(5 + 2 / 12, "feet"),
  20618. weight: math.unit(120, "lb"),
  20619. name: "Front",
  20620. image: {
  20621. source: "./media/characters/poffin/front.svg",
  20622. extra: 786 / 680,
  20623. bottom: 0.005
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(5 + 2 / 12, "feet"),
  20631. default: true
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20637. {
  20638. front: {
  20639. height: math.unit(6 + 3 / 12, "feet"),
  20640. weight: math.unit(519, "lb"),
  20641. name: "Front",
  20642. image: {
  20643. source: "./media/characters/dhari/front.svg",
  20644. extra: 1048 / 946,
  20645. bottom: 0.015
  20646. }
  20647. },
  20648. back: {
  20649. height: math.unit(6 + 3 / 12, "feet"),
  20650. weight: math.unit(519, "lb"),
  20651. name: "Back",
  20652. image: {
  20653. source: "./media/characters/dhari/back.svg",
  20654. extra: 1048 / 931,
  20655. bottom: 0.005
  20656. }
  20657. },
  20658. frontDressed: {
  20659. height: math.unit(6 + 3 / 12, "feet"),
  20660. weight: math.unit(519, "lb"),
  20661. name: "Front (Dressed)",
  20662. image: {
  20663. source: "./media/characters/dhari/front-dressed.svg",
  20664. extra: 1713 / 1546,
  20665. bottom: 0.02
  20666. }
  20667. },
  20668. backDressed: {
  20669. height: math.unit(6 + 3 / 12, "feet"),
  20670. weight: math.unit(519, "lb"),
  20671. name: "Back (Dressed)",
  20672. image: {
  20673. source: "./media/characters/dhari/back-dressed.svg",
  20674. extra: 1699 / 1537,
  20675. bottom: 0.01
  20676. }
  20677. },
  20678. maw: {
  20679. height: math.unit(0.95, "feet"),
  20680. name: "Maw",
  20681. image: {
  20682. source: "./media/characters/dhari/maw.svg"
  20683. }
  20684. },
  20685. wereFront: {
  20686. height: math.unit(12 + 8 / 12, "feet"),
  20687. weight: math.unit(4000, "lb"),
  20688. name: "Front (Were)",
  20689. image: {
  20690. source: "./media/characters/dhari/were-front.svg",
  20691. extra: 1065 / 969,
  20692. bottom: 0.015
  20693. }
  20694. },
  20695. wereBack: {
  20696. height: math.unit(12 + 8 / 12, "feet"),
  20697. weight: math.unit(4000, "lb"),
  20698. name: "Back (Were)",
  20699. image: {
  20700. source: "./media/characters/dhari/were-back.svg",
  20701. extra: 1065 / 969,
  20702. bottom: 0.012
  20703. }
  20704. },
  20705. wereMaw: {
  20706. height: math.unit(0.625, "meters"),
  20707. name: "Maw (Were)",
  20708. image: {
  20709. source: "./media/characters/dhari/were-maw.svg"
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Normal",
  20716. height: math.unit(6 + 3 / 12, "feet"),
  20717. default: true
  20718. },
  20719. ]
  20720. ))
  20721. characterMakers.push(() => makeCharacter(
  20722. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20723. {
  20724. anthro: {
  20725. height: math.unit(5 + 7 / 12, "feet"),
  20726. weight: math.unit(175, "lb"),
  20727. name: "Anthro",
  20728. image: {
  20729. source: "./media/characters/rena-dyne/anthro.svg",
  20730. extra: 1849 / 1785,
  20731. bottom: 0.005
  20732. }
  20733. },
  20734. taur: {
  20735. height: math.unit(15 + 6 / 12, "feet"),
  20736. weight: math.unit(8000, "lb"),
  20737. name: "Taur",
  20738. image: {
  20739. source: "./media/characters/rena-dyne/taur.svg",
  20740. extra: 2315 / 2234,
  20741. bottom: 0.033
  20742. }
  20743. },
  20744. },
  20745. [
  20746. {
  20747. name: "Normal",
  20748. height: math.unit(5 + 7 / 12, "feet"),
  20749. default: true
  20750. },
  20751. ]
  20752. ))
  20753. characterMakers.push(() => makeCharacter(
  20754. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20755. {
  20756. front: {
  20757. height: math.unit(8, "feet"),
  20758. weight: math.unit(600, "lb"),
  20759. name: "Front",
  20760. image: {
  20761. source: "./media/characters/weremeep/front.svg",
  20762. extra: 967 / 862,
  20763. bottom: 0.01
  20764. }
  20765. },
  20766. },
  20767. [
  20768. {
  20769. name: "Normal",
  20770. height: math.unit(8, "feet"),
  20771. default: true
  20772. },
  20773. {
  20774. name: "Lorg",
  20775. height: math.unit(12, "feet")
  20776. },
  20777. {
  20778. name: "Oh Lawd She Comin'",
  20779. height: math.unit(20, "feet")
  20780. },
  20781. ]
  20782. ))
  20783. characterMakers.push(() => makeCharacter(
  20784. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20785. {
  20786. front: {
  20787. height: math.unit(4, "feet"),
  20788. weight: math.unit(90, "lb"),
  20789. name: "Front",
  20790. image: {
  20791. source: "./media/characters/reza/front.svg",
  20792. extra: 1183 / 1111,
  20793. bottom: 0.017
  20794. }
  20795. },
  20796. back: {
  20797. height: math.unit(4, "feet"),
  20798. weight: math.unit(90, "lb"),
  20799. name: "Back",
  20800. image: {
  20801. source: "./media/characters/reza/back.svg",
  20802. extra: 1183 / 1111,
  20803. bottom: 0.01
  20804. }
  20805. },
  20806. drake: {
  20807. height: math.unit(30, "feet"),
  20808. weight: math.unit(246960, "lb"),
  20809. name: "Drake",
  20810. image: {
  20811. source: "./media/characters/reza/drake.svg",
  20812. extra: 2350 / 2024,
  20813. bottom: 60.7 / 2403
  20814. }
  20815. },
  20816. },
  20817. [
  20818. {
  20819. name: "Normal",
  20820. height: math.unit(4, "feet"),
  20821. default: true
  20822. },
  20823. ]
  20824. ))
  20825. characterMakers.push(() => makeCharacter(
  20826. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20827. {
  20828. side: {
  20829. height: math.unit(15, "feet"),
  20830. weight: math.unit(14, "tons"),
  20831. name: "Side",
  20832. image: {
  20833. source: "./media/characters/athea/side.svg",
  20834. extra: 960 / 540,
  20835. bottom: 0.003
  20836. }
  20837. },
  20838. sitting: {
  20839. height: math.unit(6 * 2.85, "feet"),
  20840. weight: math.unit(14, "tons"),
  20841. name: "Sitting",
  20842. image: {
  20843. source: "./media/characters/athea/sitting.svg",
  20844. extra: 621 / 581,
  20845. bottom: 0.075
  20846. }
  20847. },
  20848. maw: {
  20849. height: math.unit(7.59498031496063, "feet"),
  20850. name: "Maw",
  20851. image: {
  20852. source: "./media/characters/athea/maw.svg"
  20853. }
  20854. },
  20855. },
  20856. [
  20857. {
  20858. name: "Lap Cat",
  20859. height: math.unit(2.5, "feet")
  20860. },
  20861. {
  20862. name: "Minimacro",
  20863. height: math.unit(15, "feet"),
  20864. default: true
  20865. },
  20866. {
  20867. name: "Macro",
  20868. height: math.unit(120, "feet")
  20869. },
  20870. {
  20871. name: "Macro+",
  20872. height: math.unit(640, "feet")
  20873. },
  20874. {
  20875. name: "Colossus",
  20876. height: math.unit(2.2, "miles")
  20877. },
  20878. ]
  20879. ))
  20880. characterMakers.push(() => makeCharacter(
  20881. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20882. {
  20883. front: {
  20884. height: math.unit(8 + 8 / 12, "feet"),
  20885. weight: math.unit(130, "kg"),
  20886. name: "Front",
  20887. image: {
  20888. source: "./media/characters/seroko/front.svg",
  20889. extra: 1385 / 1280,
  20890. bottom: 0.025
  20891. }
  20892. },
  20893. back: {
  20894. height: math.unit(8 + 8 / 12, "feet"),
  20895. weight: math.unit(130, "kg"),
  20896. name: "Back",
  20897. image: {
  20898. source: "./media/characters/seroko/back.svg",
  20899. extra: 1369 / 1238,
  20900. bottom: 0.018
  20901. }
  20902. },
  20903. frontDressed: {
  20904. height: math.unit(8 + 8 / 12, "feet"),
  20905. weight: math.unit(130, "kg"),
  20906. name: "Front (Dressed)",
  20907. image: {
  20908. source: "./media/characters/seroko/front-dressed.svg",
  20909. extra: 1366 / 1275,
  20910. bottom: 0.03
  20911. }
  20912. },
  20913. },
  20914. [
  20915. {
  20916. name: "Normal",
  20917. height: math.unit(8 + 8 / 12, "feet"),
  20918. default: true
  20919. },
  20920. ]
  20921. ))
  20922. characterMakers.push(() => makeCharacter(
  20923. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20924. {
  20925. front: {
  20926. height: math.unit(5.5, "feet"),
  20927. weight: math.unit(160, "lb"),
  20928. name: "Front",
  20929. image: {
  20930. source: "./media/characters/quatzi/front.svg",
  20931. extra: 2346 / 2242,
  20932. bottom: 0.015
  20933. }
  20934. },
  20935. },
  20936. [
  20937. {
  20938. name: "Normal",
  20939. height: math.unit(5.5, "feet"),
  20940. default: true
  20941. },
  20942. {
  20943. name: "Big",
  20944. height: math.unit(7.7, "feet")
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20950. {
  20951. front: {
  20952. height: math.unit(5 + 11 / 12, "feet"),
  20953. weight: math.unit(180, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/sen/front.svg",
  20957. extra: 1321 / 1254,
  20958. bottom: 0.015
  20959. }
  20960. },
  20961. side: {
  20962. height: math.unit(5 + 11 / 12, "feet"),
  20963. weight: math.unit(180, "lb"),
  20964. name: "Side",
  20965. image: {
  20966. source: "./media/characters/sen/side.svg",
  20967. extra: 1321 / 1254,
  20968. bottom: 0.007
  20969. }
  20970. },
  20971. back: {
  20972. height: math.unit(5 + 11 / 12, "feet"),
  20973. weight: math.unit(180, "lb"),
  20974. name: "Back",
  20975. image: {
  20976. source: "./media/characters/sen/back.svg",
  20977. extra: 1321 / 1254
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(5 + 11 / 12, "feet"),
  20985. default: true
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20991. {
  20992. front: {
  20993. height: math.unit(166.6, "cm"),
  20994. weight: math.unit(66.6, "kg"),
  20995. name: "Front",
  20996. image: {
  20997. source: "./media/characters/fruity/front.svg",
  20998. extra: 1510 / 1386,
  20999. bottom: 0.04
  21000. }
  21001. },
  21002. back: {
  21003. height: math.unit(166.6, "cm"),
  21004. weight: math.unit(66.6, "lb"),
  21005. name: "Back",
  21006. image: {
  21007. source: "./media/characters/fruity/back.svg",
  21008. extra: 1563 / 1435,
  21009. bottom: 0.005
  21010. }
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Normal",
  21016. height: math.unit(166.6, "cm"),
  21017. default: true
  21018. },
  21019. {
  21020. name: "Demonic",
  21021. height: math.unit(166.6, "feet")
  21022. },
  21023. ]
  21024. ))
  21025. characterMakers.push(() => makeCharacter(
  21026. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21027. {
  21028. side: {
  21029. height: math.unit(10, "feet"),
  21030. weight: math.unit(500, "lb"),
  21031. name: "Side",
  21032. image: {
  21033. source: "./media/characters/zost/side.svg",
  21034. extra: 966 / 880,
  21035. bottom: 0.075
  21036. }
  21037. },
  21038. mawFront: {
  21039. height: math.unit(1.08, "meters"),
  21040. name: "Maw (Front)",
  21041. image: {
  21042. source: "./media/characters/zost/maw-front.svg"
  21043. }
  21044. },
  21045. mawSide: {
  21046. height: math.unit(2.66, "feet"),
  21047. name: "Maw (Side)",
  21048. image: {
  21049. source: "./media/characters/zost/maw-side.svg"
  21050. }
  21051. },
  21052. },
  21053. [
  21054. {
  21055. name: "Normal",
  21056. height: math.unit(10, "feet"),
  21057. default: true
  21058. },
  21059. ]
  21060. ))
  21061. characterMakers.push(() => makeCharacter(
  21062. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21063. {
  21064. front: {
  21065. height: math.unit(5 + 4 / 12, "feet"),
  21066. weight: math.unit(120, "lb"),
  21067. name: "Front",
  21068. image: {
  21069. source: "./media/characters/luci/front.svg",
  21070. extra: 1985 / 1884,
  21071. bottom: 0.04
  21072. }
  21073. },
  21074. back: {
  21075. height: math.unit(5 + 4 / 12, "feet"),
  21076. weight: math.unit(120, "lb"),
  21077. name: "Back",
  21078. image: {
  21079. source: "./media/characters/luci/back.svg",
  21080. extra: 1892 / 1791,
  21081. bottom: 0.002
  21082. }
  21083. },
  21084. },
  21085. [
  21086. {
  21087. name: "Normal",
  21088. height: math.unit(5 + 4 / 12, "feet"),
  21089. default: true
  21090. },
  21091. ]
  21092. ))
  21093. characterMakers.push(() => makeCharacter(
  21094. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21095. {
  21096. front: {
  21097. height: math.unit(1500, "feet"),
  21098. weight: math.unit(3.8e6, "tons"),
  21099. name: "Front",
  21100. image: {
  21101. source: "./media/characters/2th/front.svg",
  21102. extra: 3489 / 3350,
  21103. bottom: 0.1
  21104. }
  21105. },
  21106. foot: {
  21107. height: math.unit(461, "feet"),
  21108. name: "Foot",
  21109. image: {
  21110. source: "./media/characters/2th/foot.svg"
  21111. }
  21112. },
  21113. },
  21114. [
  21115. {
  21116. name: "\"Micro\"",
  21117. height: math.unit(15 + 7 / 12, "feet")
  21118. },
  21119. {
  21120. name: "Normal",
  21121. height: math.unit(1500, "feet"),
  21122. default: true
  21123. },
  21124. {
  21125. name: "Macro",
  21126. height: math.unit(5000, "feet")
  21127. },
  21128. {
  21129. name: "Megamacro",
  21130. height: math.unit(15, "miles")
  21131. },
  21132. {
  21133. name: "Gigamacro",
  21134. height: math.unit(4000, "miles")
  21135. },
  21136. {
  21137. name: "Galactic",
  21138. height: math.unit(50, "AU")
  21139. },
  21140. ]
  21141. ))
  21142. characterMakers.push(() => makeCharacter(
  21143. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21144. {
  21145. front: {
  21146. height: math.unit(5 + 6 / 12, "feet"),
  21147. weight: math.unit(220, "lb"),
  21148. name: "Front",
  21149. image: {
  21150. source: "./media/characters/amethyst/front.svg",
  21151. extra: 2078 / 2040,
  21152. bottom: 0.045
  21153. }
  21154. },
  21155. back: {
  21156. height: math.unit(5 + 6 / 12, "feet"),
  21157. weight: math.unit(220, "lb"),
  21158. name: "Back",
  21159. image: {
  21160. source: "./media/characters/amethyst/back.svg",
  21161. extra: 2021 / 1989,
  21162. bottom: 0.02
  21163. }
  21164. },
  21165. },
  21166. [
  21167. {
  21168. name: "Normal",
  21169. height: math.unit(5 + 6 / 12, "feet"),
  21170. default: true
  21171. },
  21172. ]
  21173. ))
  21174. characterMakers.push(() => makeCharacter(
  21175. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21176. {
  21177. front: {
  21178. height: math.unit(4 + 11 / 12, "feet"),
  21179. weight: math.unit(120, "lb"),
  21180. name: "Front",
  21181. image: {
  21182. source: "./media/characters/yumi-akiyama/front.svg",
  21183. extra: 1327 / 1235,
  21184. bottom: 0.02
  21185. }
  21186. },
  21187. back: {
  21188. height: math.unit(4 + 11 / 12, "feet"),
  21189. weight: math.unit(120, "lb"),
  21190. name: "Back",
  21191. image: {
  21192. source: "./media/characters/yumi-akiyama/back.svg",
  21193. extra: 1287 / 1245,
  21194. bottom: 0.002
  21195. }
  21196. },
  21197. },
  21198. [
  21199. {
  21200. name: "Galactic",
  21201. height: math.unit(50, "galaxies"),
  21202. default: true
  21203. },
  21204. {
  21205. name: "Universal",
  21206. height: math.unit(100, "universes")
  21207. },
  21208. ]
  21209. ))
  21210. characterMakers.push(() => makeCharacter(
  21211. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21212. {
  21213. front: {
  21214. height: math.unit(8, "feet"),
  21215. weight: math.unit(500, "lb"),
  21216. name: "Front",
  21217. image: {
  21218. source: "./media/characters/rifter-yrmori/front.svg",
  21219. extra: 1180 / 1125,
  21220. bottom: 0.02
  21221. }
  21222. },
  21223. back: {
  21224. height: math.unit(8, "feet"),
  21225. weight: math.unit(500, "lb"),
  21226. name: "Back",
  21227. image: {
  21228. source: "./media/characters/rifter-yrmori/back.svg",
  21229. extra: 1190 / 1145,
  21230. bottom: 0.001
  21231. }
  21232. },
  21233. wings: {
  21234. height: math.unit(7.75, "feet"),
  21235. weight: math.unit(500, "lb"),
  21236. name: "Wings",
  21237. image: {
  21238. source: "./media/characters/rifter-yrmori/wings.svg",
  21239. extra: 1357 / 1285
  21240. }
  21241. },
  21242. maw: {
  21243. height: math.unit(0.8, "feet"),
  21244. name: "Maw",
  21245. image: {
  21246. source: "./media/characters/rifter-yrmori/maw.svg"
  21247. }
  21248. },
  21249. mawfront: {
  21250. height: math.unit(1.45, "feet"),
  21251. name: "Maw (Front)",
  21252. image: {
  21253. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21254. }
  21255. },
  21256. },
  21257. [
  21258. {
  21259. name: "Normal",
  21260. height: math.unit(8, "feet"),
  21261. default: true
  21262. },
  21263. {
  21264. name: "Macro",
  21265. height: math.unit(42, "meters")
  21266. },
  21267. ]
  21268. ))
  21269. characterMakers.push(() => makeCharacter(
  21270. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21271. {
  21272. were: {
  21273. height: math.unit(25 + 6 / 12, "feet"),
  21274. weight: math.unit(10000, "lb"),
  21275. name: "Were",
  21276. image: {
  21277. source: "./media/characters/tahajin/were.svg",
  21278. extra: 801 / 770,
  21279. bottom: 0.042
  21280. }
  21281. },
  21282. aquatic: {
  21283. height: math.unit(6 + 4 / 12, "feet"),
  21284. weight: math.unit(160, "lb"),
  21285. name: "Aquatic",
  21286. image: {
  21287. source: "./media/characters/tahajin/aquatic.svg",
  21288. extra: 572 / 542,
  21289. bottom: 0.04
  21290. }
  21291. },
  21292. chow: {
  21293. height: math.unit(8 + 11 / 12, "feet"),
  21294. weight: math.unit(450, "lb"),
  21295. name: "Chow",
  21296. image: {
  21297. source: "./media/characters/tahajin/chow.svg",
  21298. extra: 660 / 640,
  21299. bottom: 0.015
  21300. }
  21301. },
  21302. demiNaga: {
  21303. height: math.unit(6 + 8 / 12, "feet"),
  21304. weight: math.unit(300, "lb"),
  21305. name: "Demi Naga",
  21306. image: {
  21307. source: "./media/characters/tahajin/demi-naga.svg",
  21308. extra: 643 / 615,
  21309. bottom: 0.1
  21310. }
  21311. },
  21312. data: {
  21313. height: math.unit(5, "inches"),
  21314. weight: math.unit(0.1, "lb"),
  21315. name: "Data",
  21316. image: {
  21317. source: "./media/characters/tahajin/data.svg"
  21318. }
  21319. },
  21320. fluu: {
  21321. height: math.unit(5 + 7 / 12, "feet"),
  21322. weight: math.unit(140, "lb"),
  21323. name: "Fluu",
  21324. image: {
  21325. source: "./media/characters/tahajin/fluu.svg",
  21326. extra: 628 / 592,
  21327. bottom: 0.02
  21328. }
  21329. },
  21330. starWarrior: {
  21331. height: math.unit(4 + 5 / 12, "feet"),
  21332. weight: math.unit(50, "lb"),
  21333. name: "Star Warrior",
  21334. image: {
  21335. source: "./media/characters/tahajin/star-warrior.svg"
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Normal",
  21342. height: math.unit(25 + 6 / 12, "feet"),
  21343. default: true
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21349. {
  21350. front: {
  21351. height: math.unit(8, "feet"),
  21352. weight: math.unit(350, "lb"),
  21353. name: "Front",
  21354. image: {
  21355. source: "./media/characters/gabira/front.svg",
  21356. extra: 608 / 580,
  21357. bottom: 0.03
  21358. }
  21359. },
  21360. back: {
  21361. height: math.unit(8, "feet"),
  21362. weight: math.unit(350, "lb"),
  21363. name: "Back",
  21364. image: {
  21365. source: "./media/characters/gabira/back.svg",
  21366. extra: 608 / 580,
  21367. bottom: 0.03
  21368. }
  21369. },
  21370. },
  21371. [
  21372. {
  21373. name: "Normal",
  21374. height: math.unit(8, "feet"),
  21375. default: true
  21376. },
  21377. ]
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21381. {
  21382. front: {
  21383. height: math.unit(5 + 3 / 12, "feet"),
  21384. weight: math.unit(137, "lb"),
  21385. name: "Front",
  21386. image: {
  21387. source: "./media/characters/sasha-katraine/front.svg",
  21388. bottom: 0.045
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Micro",
  21395. height: math.unit(5, "inches")
  21396. },
  21397. {
  21398. name: "Normal",
  21399. height: math.unit(5 + 3 / 12, "feet"),
  21400. default: true
  21401. },
  21402. ]
  21403. ))
  21404. characterMakers.push(() => makeCharacter(
  21405. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21406. {
  21407. side: {
  21408. height: math.unit(4, "inches"),
  21409. weight: math.unit(200, "grams"),
  21410. name: "Side",
  21411. image: {
  21412. source: "./media/characters/der/side.svg",
  21413. extra: 719 / 400,
  21414. bottom: 30.6 / 749.9187
  21415. }
  21416. },
  21417. },
  21418. [
  21419. {
  21420. name: "Micro",
  21421. height: math.unit(4, "inches"),
  21422. default: true
  21423. },
  21424. ]
  21425. ))
  21426. characterMakers.push(() => makeCharacter(
  21427. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21428. {
  21429. side: {
  21430. height: math.unit(30, "meters"),
  21431. weight: math.unit(700, "tonnes"),
  21432. name: "Side",
  21433. image: {
  21434. source: "./media/characters/fixerdragon/side.svg",
  21435. extra: (1293.0514 - 116.03) / 1106.86,
  21436. bottom: 116.03 / 1293.0514
  21437. }
  21438. },
  21439. },
  21440. [
  21441. {
  21442. name: "Planck",
  21443. height: math.unit(1.6e-35, "meters")
  21444. },
  21445. {
  21446. name: "Micro",
  21447. height: math.unit(0.4, "meters")
  21448. },
  21449. {
  21450. name: "Normal",
  21451. height: math.unit(30, "meters"),
  21452. default: true
  21453. },
  21454. {
  21455. name: "Megamacro",
  21456. height: math.unit(1.2, "megameters")
  21457. },
  21458. {
  21459. name: "Teramacro",
  21460. height: math.unit(130, "terameters")
  21461. },
  21462. {
  21463. name: "Yottamacro",
  21464. height: math.unit(6200, "yottameters")
  21465. },
  21466. ]
  21467. ));
  21468. characterMakers.push(() => makeCharacter(
  21469. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21470. {
  21471. front: {
  21472. height: math.unit(8, "feet"),
  21473. weight: math.unit(250, "lb"),
  21474. name: "Front",
  21475. image: {
  21476. source: "./media/characters/kite/front.svg",
  21477. extra: 2796 / 2659,
  21478. bottom: 0.002
  21479. }
  21480. },
  21481. },
  21482. [
  21483. {
  21484. name: "Normal",
  21485. height: math.unit(8, "feet"),
  21486. default: true
  21487. },
  21488. {
  21489. name: "Macro",
  21490. height: math.unit(360, "feet")
  21491. },
  21492. {
  21493. name: "Megamacro",
  21494. height: math.unit(1500, "feet")
  21495. },
  21496. ]
  21497. ))
  21498. characterMakers.push(() => makeCharacter(
  21499. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21500. {
  21501. front: {
  21502. height: math.unit(5 + 10 / 12, "feet"),
  21503. weight: math.unit(150, "lb"),
  21504. name: "Front",
  21505. image: {
  21506. source: "./media/characters/poojawa-vynar/front.svg",
  21507. extra: (1506.1547 - 55) / 1356.6,
  21508. bottom: 55 / 1506.1547
  21509. }
  21510. },
  21511. frontTailless: {
  21512. height: math.unit(5 + 10 / 12, "feet"),
  21513. weight: math.unit(150, "lb"),
  21514. name: "Front (Tailless)",
  21515. image: {
  21516. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21517. extra: (1506.1547 - 55) / 1356.6,
  21518. bottom: 55 / 1506.1547
  21519. }
  21520. },
  21521. },
  21522. [
  21523. {
  21524. name: "Normal",
  21525. height: math.unit(5 + 10 / 12, "feet"),
  21526. default: true
  21527. },
  21528. ]
  21529. ))
  21530. characterMakers.push(() => makeCharacter(
  21531. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21532. {
  21533. front: {
  21534. height: math.unit(293, "meters"),
  21535. weight: math.unit(70400, "tons"),
  21536. name: "Front",
  21537. image: {
  21538. source: "./media/characters/violette/front.svg",
  21539. extra: 1227 / 1180,
  21540. bottom: 0.005
  21541. }
  21542. },
  21543. back: {
  21544. height: math.unit(293, "meters"),
  21545. weight: math.unit(70400, "tons"),
  21546. name: "Back",
  21547. image: {
  21548. source: "./media/characters/violette/back.svg",
  21549. extra: 1227 / 1180,
  21550. bottom: 0.005
  21551. }
  21552. },
  21553. },
  21554. [
  21555. {
  21556. name: "Macro",
  21557. height: math.unit(293, "meters"),
  21558. default: true
  21559. },
  21560. ]
  21561. ))
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21564. {
  21565. front: {
  21566. height: math.unit(1050, "feet"),
  21567. weight: math.unit(200000, "tons"),
  21568. name: "Front",
  21569. image: {
  21570. source: "./media/characters/alessandra/front.svg",
  21571. extra: 960 / 912,
  21572. bottom: 0.06
  21573. }
  21574. },
  21575. },
  21576. [
  21577. {
  21578. name: "Macro",
  21579. height: math.unit(1050, "feet")
  21580. },
  21581. {
  21582. name: "Macro+",
  21583. height: math.unit(900, "meters"),
  21584. default: true
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21590. {
  21591. front: {
  21592. height: math.unit(5, "feet"),
  21593. weight: math.unit(187, "lb"),
  21594. name: "Front",
  21595. image: {
  21596. source: "./media/characters/person/front.svg",
  21597. extra: 3087 / 2945,
  21598. bottom: 91 / 3181
  21599. }
  21600. },
  21601. },
  21602. [
  21603. {
  21604. name: "Micro",
  21605. height: math.unit(3, "inches")
  21606. },
  21607. {
  21608. name: "Normal",
  21609. height: math.unit(5, "feet"),
  21610. default: true
  21611. },
  21612. {
  21613. name: "Macro",
  21614. height: math.unit(90, "feet")
  21615. },
  21616. {
  21617. name: "Max Size",
  21618. height: math.unit(280, "feet")
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21624. {
  21625. front: {
  21626. height: math.unit(4.5, "meters"),
  21627. weight: math.unit(3200, "lb"),
  21628. name: "Front",
  21629. image: {
  21630. source: "./media/characters/ty/front.svg",
  21631. extra: 1038 / 960,
  21632. bottom: 31.156 / 1068
  21633. }
  21634. },
  21635. back: {
  21636. height: math.unit(4.5, "meters"),
  21637. weight: math.unit(3200, "lb"),
  21638. name: "Back",
  21639. image: {
  21640. source: "./media/characters/ty/back.svg",
  21641. extra: 1044 / 966,
  21642. bottom: 7.48 / 1049
  21643. }
  21644. },
  21645. },
  21646. [
  21647. {
  21648. name: "Normal",
  21649. height: math.unit(4.5, "meters"),
  21650. default: true
  21651. },
  21652. ]
  21653. ))
  21654. characterMakers.push(() => makeCharacter(
  21655. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21656. {
  21657. front: {
  21658. height: math.unit(5 + 4 / 12, "feet"),
  21659. weight: math.unit(115, "lb"),
  21660. name: "Front",
  21661. image: {
  21662. source: "./media/characters/rocky/front.svg",
  21663. extra: 1012 / 975,
  21664. bottom: 54 / 1066
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Normal",
  21671. height: math.unit(5 + 4 / 12, "feet"),
  21672. default: true
  21673. },
  21674. ]
  21675. ))
  21676. characterMakers.push(() => makeCharacter(
  21677. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21678. {
  21679. upright: {
  21680. height: math.unit(6, "meters"),
  21681. weight: math.unit(4000, "kg"),
  21682. name: "Upright",
  21683. image: {
  21684. source: "./media/characters/ruin/upright.svg",
  21685. extra: 668 / 661,
  21686. bottom: 42 / 799.8396
  21687. }
  21688. },
  21689. },
  21690. [
  21691. {
  21692. name: "Normal",
  21693. height: math.unit(6, "meters"),
  21694. default: true
  21695. },
  21696. ]
  21697. ))
  21698. characterMakers.push(() => makeCharacter(
  21699. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21700. {
  21701. front: {
  21702. height: math.unit(5, "feet"),
  21703. weight: math.unit(106, "lb"),
  21704. name: "Front",
  21705. image: {
  21706. source: "./media/characters/robin/front.svg",
  21707. extra: 862 / 799,
  21708. bottom: 42.4 / 914.8856
  21709. }
  21710. },
  21711. },
  21712. [
  21713. {
  21714. name: "Normal",
  21715. height: math.unit(5, "feet"),
  21716. default: true
  21717. },
  21718. ]
  21719. ))
  21720. characterMakers.push(() => makeCharacter(
  21721. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21722. {
  21723. side: {
  21724. height: math.unit(3, "feet"),
  21725. weight: math.unit(225, "lb"),
  21726. name: "Side",
  21727. image: {
  21728. source: "./media/characters/saian/side.svg",
  21729. extra: 566 / 356,
  21730. bottom: 79.7 / 643
  21731. }
  21732. },
  21733. maw: {
  21734. height: math.unit(2.85, "feet"),
  21735. name: "Maw",
  21736. image: {
  21737. source: "./media/characters/saian/maw.svg"
  21738. }
  21739. },
  21740. },
  21741. [
  21742. {
  21743. name: "Normal",
  21744. height: math.unit(3, "feet"),
  21745. default: true
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21751. {
  21752. side: {
  21753. height: math.unit(8, "feet"),
  21754. weight: math.unit(300, "lb"),
  21755. name: "Side",
  21756. image: {
  21757. source: "./media/characters/equus-silvermane/side.svg",
  21758. extra: 2176 / 2050,
  21759. bottom: 65.7 / 2245
  21760. }
  21761. },
  21762. front: {
  21763. height: math.unit(8, "feet"),
  21764. weight: math.unit(300, "lb"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/equus-silvermane/front.svg",
  21768. extra: 4633 / 4400,
  21769. bottom: 71.3 / 4706.915
  21770. }
  21771. },
  21772. sideStepping: {
  21773. height: math.unit(8, "feet"),
  21774. weight: math.unit(300, "lb"),
  21775. name: "Side (Stepping)",
  21776. image: {
  21777. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21778. extra: 1968 / 1860,
  21779. bottom: 16.4 / 1989
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Normal",
  21786. height: math.unit(8, "feet")
  21787. },
  21788. {
  21789. name: "Minimacro",
  21790. height: math.unit(75, "feet"),
  21791. default: true
  21792. },
  21793. {
  21794. name: "Macro",
  21795. height: math.unit(150, "feet")
  21796. },
  21797. {
  21798. name: "Macro+",
  21799. height: math.unit(1000, "feet")
  21800. },
  21801. {
  21802. name: "Megamacro",
  21803. height: math.unit(1, "mile")
  21804. },
  21805. ]
  21806. ))
  21807. characterMakers.push(() => makeCharacter(
  21808. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21809. {
  21810. side: {
  21811. height: math.unit(20, "feet"),
  21812. weight: math.unit(30000, "kg"),
  21813. name: "Side",
  21814. image: {
  21815. source: "./media/characters/windar/side.svg",
  21816. extra: 1491 / 1248,
  21817. bottom: 82.56 / 1568
  21818. }
  21819. },
  21820. },
  21821. [
  21822. {
  21823. name: "Normal",
  21824. height: math.unit(20, "feet"),
  21825. default: true
  21826. },
  21827. ]
  21828. ))
  21829. characterMakers.push(() => makeCharacter(
  21830. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21831. {
  21832. side: {
  21833. height: math.unit(15.66, "feet"),
  21834. weight: math.unit(150, "lb"),
  21835. name: "Side",
  21836. image: {
  21837. source: "./media/characters/melody/side.svg",
  21838. extra: 1097 / 944,
  21839. bottom: 11.8 / 1109
  21840. }
  21841. },
  21842. sideOutfit: {
  21843. height: math.unit(15.66, "feet"),
  21844. weight: math.unit(150, "lb"),
  21845. name: "Side (Outfit)",
  21846. image: {
  21847. source: "./media/characters/melody/side-outfit.svg",
  21848. extra: 1097 / 944,
  21849. bottom: 11.8 / 1109
  21850. }
  21851. },
  21852. },
  21853. [
  21854. {
  21855. name: "Normal",
  21856. height: math.unit(15.66, "feet"),
  21857. default: true
  21858. },
  21859. ]
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21863. {
  21864. front: {
  21865. height: math.unit(8, "feet"),
  21866. weight: math.unit(325, "lb"),
  21867. name: "Front",
  21868. image: {
  21869. source: "./media/characters/windera/front.svg",
  21870. extra: 3180 / 2845,
  21871. bottom: 178 / 3365
  21872. }
  21873. },
  21874. },
  21875. [
  21876. {
  21877. name: "Normal",
  21878. height: math.unit(8, "feet"),
  21879. default: true
  21880. },
  21881. ]
  21882. ))
  21883. characterMakers.push(() => makeCharacter(
  21884. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21885. {
  21886. front: {
  21887. height: math.unit(28.75, "feet"),
  21888. weight: math.unit(2000, "kg"),
  21889. name: "Front",
  21890. image: {
  21891. source: "./media/characters/sonear/front.svg",
  21892. extra: 1041.1 / 964.9,
  21893. bottom: 53.7 / 1096.6
  21894. }
  21895. },
  21896. },
  21897. [
  21898. {
  21899. name: "Normal",
  21900. height: math.unit(28.75, "feet"),
  21901. default: true
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21907. {
  21908. side: {
  21909. height: math.unit(25.5, "feet"),
  21910. weight: math.unit(23000, "kg"),
  21911. name: "Side",
  21912. image: {
  21913. source: "./media/characters/kanara/side.svg"
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Normal",
  21920. height: math.unit(25.5, "feet"),
  21921. default: true
  21922. },
  21923. ]
  21924. ))
  21925. characterMakers.push(() => makeCharacter(
  21926. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21927. {
  21928. side: {
  21929. height: math.unit(10, "feet"),
  21930. weight: math.unit(1000, "kg"),
  21931. name: "Side",
  21932. image: {
  21933. source: "./media/characters/ereus/side.svg",
  21934. extra: 1157 / 959,
  21935. bottom: 153 / 1312.5
  21936. }
  21937. },
  21938. },
  21939. [
  21940. {
  21941. name: "Normal",
  21942. height: math.unit(10, "feet"),
  21943. default: true
  21944. },
  21945. ]
  21946. ))
  21947. characterMakers.push(() => makeCharacter(
  21948. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21949. {
  21950. side: {
  21951. height: math.unit(4.5, "feet"),
  21952. weight: math.unit(500, "lb"),
  21953. name: "Side",
  21954. image: {
  21955. source: "./media/characters/e-ter/side.svg",
  21956. extra: 1550 / 1248,
  21957. bottom: 146 / 1694
  21958. }
  21959. },
  21960. },
  21961. [
  21962. {
  21963. name: "Normal",
  21964. height: math.unit(4.5, "feet"),
  21965. default: true
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21971. {
  21972. side: {
  21973. height: math.unit(9.7, "feet"),
  21974. weight: math.unit(4000, "kg"),
  21975. name: "Side",
  21976. image: {
  21977. source: "./media/characters/yamie/side.svg"
  21978. }
  21979. },
  21980. },
  21981. [
  21982. {
  21983. name: "Normal",
  21984. height: math.unit(9.7, "feet"),
  21985. default: true
  21986. },
  21987. ]
  21988. ))
  21989. characterMakers.push(() => makeCharacter(
  21990. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21991. {
  21992. front: {
  21993. height: math.unit(50, "feet"),
  21994. weight: math.unit(50000, "kg"),
  21995. name: "Front",
  21996. image: {
  21997. source: "./media/characters/anders/front.svg",
  21998. extra: 570 / 539,
  21999. bottom: 14.7 / 586.7
  22000. }
  22001. },
  22002. },
  22003. [
  22004. {
  22005. name: "Large",
  22006. height: math.unit(50, "feet")
  22007. },
  22008. {
  22009. name: "Macro",
  22010. height: math.unit(2000, "feet"),
  22011. default: true
  22012. },
  22013. {
  22014. name: "Megamacro",
  22015. height: math.unit(12, "miles")
  22016. },
  22017. ]
  22018. ))
  22019. characterMakers.push(() => makeCharacter(
  22020. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22021. {
  22022. front: {
  22023. height: math.unit(7 + 2 / 12, "feet"),
  22024. weight: math.unit(300, "lb"),
  22025. name: "Front",
  22026. image: {
  22027. source: "./media/characters/reban/front.svg",
  22028. extra: 516 / 487,
  22029. bottom: 42.82 / 558.356
  22030. }
  22031. },
  22032. dick: {
  22033. height: math.unit(7 / 5, "feet"),
  22034. name: "Dick",
  22035. image: {
  22036. source: "./media/characters/reban/dick.svg"
  22037. }
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Natural Height",
  22043. height: math.unit(7 + 2 / 12, "feet")
  22044. },
  22045. {
  22046. name: "Macro",
  22047. height: math.unit(500, "feet"),
  22048. default: true
  22049. },
  22050. {
  22051. name: "Canon Height",
  22052. height: math.unit(50, "AU")
  22053. },
  22054. ]
  22055. ))
  22056. characterMakers.push(() => makeCharacter(
  22057. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22058. {
  22059. front: {
  22060. height: math.unit(6, "feet"),
  22061. weight: math.unit(150, "lb"),
  22062. name: "Front",
  22063. image: {
  22064. source: "./media/characters/terrance-keayes/front.svg",
  22065. extra: 1.005,
  22066. bottom: 151 / 1615
  22067. }
  22068. },
  22069. side: {
  22070. height: math.unit(6, "feet"),
  22071. weight: math.unit(150, "lb"),
  22072. name: "Side",
  22073. image: {
  22074. source: "./media/characters/terrance-keayes/side.svg",
  22075. extra: 1.005,
  22076. bottom: 129.4 / 1544
  22077. }
  22078. },
  22079. back: {
  22080. height: math.unit(6, "feet"),
  22081. weight: math.unit(150, "lb"),
  22082. name: "Back",
  22083. image: {
  22084. source: "./media/characters/terrance-keayes/back.svg",
  22085. extra: 1.005,
  22086. bottom: 58.4 / 1557.3
  22087. }
  22088. },
  22089. dick: {
  22090. height: math.unit(6 * 0.208, "feet"),
  22091. name: "Dick",
  22092. image: {
  22093. source: "./media/characters/terrance-keayes/dick.svg"
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Canon Height",
  22100. height: math.unit(35, "miles"),
  22101. default: true
  22102. },
  22103. ]
  22104. ))
  22105. characterMakers.push(() => makeCharacter(
  22106. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22107. {
  22108. front: {
  22109. height: math.unit(6, "feet"),
  22110. weight: math.unit(150, "lb"),
  22111. name: "Front",
  22112. image: {
  22113. source: "./media/characters/ofelia/front.svg",
  22114. extra: 546 / 541,
  22115. bottom: 39 / 583
  22116. }
  22117. },
  22118. back: {
  22119. height: math.unit(6, "feet"),
  22120. weight: math.unit(150, "lb"),
  22121. name: "Back",
  22122. image: {
  22123. source: "./media/characters/ofelia/back.svg",
  22124. extra: 564 / 559.5,
  22125. bottom: 8.69 / 573.02
  22126. }
  22127. },
  22128. maw: {
  22129. height: math.unit(1, "feet"),
  22130. name: "Maw",
  22131. image: {
  22132. source: "./media/characters/ofelia/maw.svg"
  22133. }
  22134. },
  22135. foot: {
  22136. height: math.unit(1.949, "feet"),
  22137. name: "Foot",
  22138. image: {
  22139. source: "./media/characters/ofelia/foot.svg"
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Canon Height",
  22146. height: math.unit(2000, "miles"),
  22147. default: true
  22148. },
  22149. ]
  22150. ))
  22151. characterMakers.push(() => makeCharacter(
  22152. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22153. {
  22154. front: {
  22155. height: math.unit(6, "feet"),
  22156. weight: math.unit(150, "lb"),
  22157. name: "Front",
  22158. image: {
  22159. source: "./media/characters/samuel/front.svg",
  22160. extra: 265 / 258,
  22161. bottom: 2 / 266.1566
  22162. }
  22163. },
  22164. },
  22165. [
  22166. {
  22167. name: "Macro",
  22168. height: math.unit(100, "feet"),
  22169. default: true
  22170. },
  22171. {
  22172. name: "Full Size",
  22173. height: math.unit(1000, "miles")
  22174. },
  22175. ]
  22176. ))
  22177. characterMakers.push(() => makeCharacter(
  22178. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22179. {
  22180. front: {
  22181. height: math.unit(6, "feet"),
  22182. weight: math.unit(300, "lb"),
  22183. name: "Front",
  22184. image: {
  22185. source: "./media/characters/beishir-kiel/front.svg",
  22186. extra: 569 / 547,
  22187. bottom: 41.9 / 609
  22188. }
  22189. },
  22190. maw: {
  22191. height: math.unit(6 * 0.202, "feet"),
  22192. name: "Maw",
  22193. image: {
  22194. source: "./media/characters/beishir-kiel/maw.svg"
  22195. }
  22196. },
  22197. },
  22198. [
  22199. {
  22200. name: "Macro",
  22201. height: math.unit(300, "feet"),
  22202. default: true
  22203. },
  22204. ]
  22205. ))
  22206. characterMakers.push(() => makeCharacter(
  22207. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22208. {
  22209. front: {
  22210. height: math.unit(5 + 7/12, "feet"),
  22211. weight: math.unit(120, "lb"),
  22212. name: "Front",
  22213. image: {
  22214. source: "./media/characters/logan-grey/front.svg",
  22215. extra: 1836/1738,
  22216. bottom: 108/1944
  22217. }
  22218. },
  22219. back: {
  22220. height: math.unit(5 + 7/12, "feet"),
  22221. weight: math.unit(120, "lb"),
  22222. name: "Back",
  22223. image: {
  22224. source: "./media/characters/logan-grey/back.svg",
  22225. extra: 1880/1794,
  22226. bottom: 24/1904
  22227. }
  22228. },
  22229. frontSfw: {
  22230. height: math.unit(5 + 7/12, "feet"),
  22231. weight: math.unit(120, "lb"),
  22232. name: "Front (SFW)",
  22233. image: {
  22234. source: "./media/characters/logan-grey/front-sfw.svg",
  22235. extra: 1836/1738,
  22236. bottom: 108/1944
  22237. }
  22238. },
  22239. backSfw: {
  22240. height: math.unit(5 + 7/12, "feet"),
  22241. weight: math.unit(120, "lb"),
  22242. name: "Back (SFW)",
  22243. image: {
  22244. source: "./media/characters/logan-grey/back-sfw.svg",
  22245. extra: 1880/1794,
  22246. bottom: 24/1904
  22247. }
  22248. },
  22249. hands: {
  22250. height: math.unit(0.84, "feet"),
  22251. name: "Hands",
  22252. image: {
  22253. source: "./media/characters/logan-grey/hands.svg"
  22254. }
  22255. },
  22256. paws: {
  22257. height: math.unit(0.72, "feet"),
  22258. name: "Paws",
  22259. image: {
  22260. source: "./media/characters/logan-grey/paws.svg"
  22261. }
  22262. },
  22263. cock: {
  22264. height: math.unit(1.45, "feet"),
  22265. name: "Cock",
  22266. image: {
  22267. source: "./media/characters/logan-grey/cock.svg"
  22268. }
  22269. },
  22270. cockAlt: {
  22271. height: math.unit(1.437, "feet"),
  22272. name: "Cock (alt)",
  22273. image: {
  22274. source: "./media/characters/logan-grey/cock-alt.svg"
  22275. }
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Normal",
  22281. height: math.unit(5 + 8 / 12, "feet")
  22282. },
  22283. {
  22284. name: "The 500 Foot Femboy",
  22285. height: math.unit(500, "feet"),
  22286. default: true
  22287. },
  22288. {
  22289. name: "Megmacro",
  22290. height: math.unit(20, "miles")
  22291. },
  22292. ]
  22293. ))
  22294. characterMakers.push(() => makeCharacter(
  22295. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22296. {
  22297. front: {
  22298. height: math.unit(8 + 2 / 12, "feet"),
  22299. weight: math.unit(275, "lb"),
  22300. name: "Front",
  22301. image: {
  22302. source: "./media/characters/draganta/front.svg",
  22303. extra: 1177 / 1135,
  22304. bottom: 33.46 / 1212.1
  22305. }
  22306. },
  22307. },
  22308. [
  22309. {
  22310. name: "Normal",
  22311. height: math.unit(8 + 6 / 12, "feet"),
  22312. default: true
  22313. },
  22314. {
  22315. name: "Macro",
  22316. height: math.unit(150, "feet")
  22317. },
  22318. {
  22319. name: "Megamacro",
  22320. height: math.unit(1000, "miles")
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22326. {
  22327. front: {
  22328. height: math.unit(1.72, "m"),
  22329. weight: math.unit(80, "lb"),
  22330. name: "Front",
  22331. image: {
  22332. source: "./media/characters/voski/front.svg",
  22333. extra: 2076.22 / 2022.4,
  22334. bottom: 102.7 / 2177.3866
  22335. }
  22336. },
  22337. frontNsfw: {
  22338. height: math.unit(1.72, "m"),
  22339. weight: math.unit(80, "lb"),
  22340. name: "Front (NSFW)",
  22341. image: {
  22342. source: "./media/characters/voski/front-nsfw.svg",
  22343. extra: 2076.22 / 2022.4,
  22344. bottom: 102.7 / 2177.3866
  22345. }
  22346. },
  22347. back: {
  22348. height: math.unit(1.72, "m"),
  22349. weight: math.unit(80, "lb"),
  22350. name: "Back",
  22351. image: {
  22352. source: "./media/characters/voski/back.svg",
  22353. extra: 2104 / 2051,
  22354. bottom: 10.45 / 2113.63
  22355. }
  22356. },
  22357. },
  22358. [
  22359. {
  22360. name: "Normal",
  22361. height: math.unit(1.72, "m")
  22362. },
  22363. {
  22364. name: "Macro",
  22365. height: math.unit(55, "m"),
  22366. default: true
  22367. },
  22368. {
  22369. name: "Macro+",
  22370. height: math.unit(300, "m")
  22371. },
  22372. {
  22373. name: "Macro++",
  22374. height: math.unit(700, "m")
  22375. },
  22376. {
  22377. name: "Macro+++",
  22378. height: math.unit(4500, "m")
  22379. },
  22380. {
  22381. name: "Macro++++",
  22382. height: math.unit(45, "km")
  22383. },
  22384. {
  22385. name: "Macro+++++",
  22386. height: math.unit(1220, "km")
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22392. {
  22393. front: {
  22394. height: math.unit(2.3, "m"),
  22395. weight: math.unit(304, "kg"),
  22396. name: "Front",
  22397. image: {
  22398. source: "./media/characters/icowom-lee/front.svg",
  22399. extra: 985 / 955,
  22400. bottom: 25.4 / 1012
  22401. }
  22402. },
  22403. fronttentacles: {
  22404. height: math.unit(2.3, "m"),
  22405. weight: math.unit(304, "kg"),
  22406. name: "Front-tentacles",
  22407. image: {
  22408. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22409. extra: 985 / 955,
  22410. bottom: 25.4 / 1012
  22411. }
  22412. },
  22413. back: {
  22414. height: math.unit(2.3, "m"),
  22415. weight: math.unit(304, "kg"),
  22416. name: "Back",
  22417. image: {
  22418. source: "./media/characters/icowom-lee/back.svg",
  22419. extra: 975 / 954,
  22420. bottom: 9.5 / 985
  22421. }
  22422. },
  22423. backtentacles: {
  22424. height: math.unit(2.3, "m"),
  22425. weight: math.unit(304, "kg"),
  22426. name: "Back-tentacles",
  22427. image: {
  22428. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22429. extra: 975 / 954,
  22430. bottom: 9.5 / 985
  22431. }
  22432. },
  22433. frontDressed: {
  22434. height: math.unit(2.3, "m"),
  22435. weight: math.unit(304, "kg"),
  22436. name: "Front (Dressed)",
  22437. image: {
  22438. source: "./media/characters/icowom-lee/front-dressed.svg",
  22439. extra: 3076 / 2933,
  22440. bottom: 51.4 / 3125.1889
  22441. }
  22442. },
  22443. rump: {
  22444. height: math.unit(0.776, "meters"),
  22445. name: "Rump",
  22446. image: {
  22447. source: "./media/characters/icowom-lee/rump.svg"
  22448. }
  22449. },
  22450. genitals: {
  22451. height: math.unit(0.78, "meters"),
  22452. name: "Genitals",
  22453. image: {
  22454. source: "./media/characters/icowom-lee/genitals.svg"
  22455. }
  22456. },
  22457. },
  22458. [
  22459. {
  22460. name: "Normal",
  22461. height: math.unit(2.3, "meters"),
  22462. default: true
  22463. },
  22464. {
  22465. name: "Macro",
  22466. height: math.unit(94, "meters"),
  22467. default: true
  22468. },
  22469. ]
  22470. ))
  22471. characterMakers.push(() => makeCharacter(
  22472. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22473. {
  22474. front: {
  22475. height: math.unit(22, "meters"),
  22476. weight: math.unit(21000, "kg"),
  22477. name: "Front",
  22478. image: {
  22479. source: "./media/characters/shock-diamond/front.svg",
  22480. extra: 2204 / 2053,
  22481. bottom: 65 / 2239.47
  22482. }
  22483. },
  22484. frontNude: {
  22485. height: math.unit(22, "meters"),
  22486. weight: math.unit(21000, "kg"),
  22487. name: "Front (Nude)",
  22488. image: {
  22489. source: "./media/characters/shock-diamond/front-nude.svg",
  22490. extra: 2514 / 2285,
  22491. bottom: 13 / 2527.56
  22492. }
  22493. },
  22494. },
  22495. [
  22496. {
  22497. name: "Normal",
  22498. height: math.unit(3, "meters")
  22499. },
  22500. {
  22501. name: "Macro",
  22502. height: math.unit(22, "meters"),
  22503. default: true
  22504. },
  22505. ]
  22506. ))
  22507. characterMakers.push(() => makeCharacter(
  22508. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22509. {
  22510. front: {
  22511. height: math.unit(5 + 4 / 12, "feet"),
  22512. weight: math.unit(120, "lb"),
  22513. name: "Front",
  22514. image: {
  22515. source: "./media/characters/rory/front.svg",
  22516. extra: 1318/1241,
  22517. bottom: 42/1360
  22518. }
  22519. },
  22520. back: {
  22521. height: math.unit(5 + 4 / 12, "feet"),
  22522. weight: math.unit(120, "lb"),
  22523. name: "Back",
  22524. image: {
  22525. source: "./media/characters/rory/back.svg",
  22526. extra: 1318/1241,
  22527. bottom: 42/1360
  22528. }
  22529. },
  22530. butt: {
  22531. height: math.unit(1.74, "feet"),
  22532. name: "Butt",
  22533. image: {
  22534. source: "./media/characters/rory/butt.svg"
  22535. }
  22536. },
  22537. dick: {
  22538. height: math.unit(1.02, "feet"),
  22539. name: "Dick",
  22540. image: {
  22541. source: "./media/characters/rory/dick.svg"
  22542. }
  22543. },
  22544. paws: {
  22545. height: math.unit(1, "feet"),
  22546. name: "Paws",
  22547. image: {
  22548. source: "./media/characters/rory/paws.svg"
  22549. }
  22550. },
  22551. frontAlt: {
  22552. height: math.unit(5 + 4 / 12, "feet"),
  22553. weight: math.unit(120, "lb"),
  22554. name: "Front (Alt)",
  22555. image: {
  22556. source: "./media/characters/rory/front-alt.svg",
  22557. extra: 589 / 556,
  22558. bottom: 45.7 / 635.76
  22559. }
  22560. },
  22561. frontAltNude: {
  22562. height: math.unit(5 + 4 / 12, "feet"),
  22563. weight: math.unit(120, "lb"),
  22564. name: "Front (Alt, Nude)",
  22565. image: {
  22566. source: "./media/characters/rory/front-alt-nude.svg",
  22567. extra: 589 / 556,
  22568. bottom: 45.7 / 635.76
  22569. }
  22570. },
  22571. side: {
  22572. height: math.unit(5 + 4 / 12, "feet"),
  22573. weight: math.unit(120, "lb"),
  22574. name: "Side",
  22575. image: {
  22576. source: "./media/characters/rory/side.svg",
  22577. extra: 597 / 564,
  22578. bottom: 55 / 653
  22579. }
  22580. },
  22581. backAlt: {
  22582. height: math.unit(5 + 4 / 12, "feet"),
  22583. weight: math.unit(120, "lb"),
  22584. name: "Back (Alt)",
  22585. image: {
  22586. source: "./media/characters/rory/back-alt.svg",
  22587. extra: 620 / 585,
  22588. bottom: 8.86 / 630.43
  22589. }
  22590. },
  22591. dickAlt: {
  22592. height: math.unit(0.86, "feet"),
  22593. name: "Dick (Alt)",
  22594. image: {
  22595. source: "./media/characters/rory/dick-alt.svg"
  22596. }
  22597. },
  22598. },
  22599. [
  22600. {
  22601. name: "Normal",
  22602. height: math.unit(5 + 4 / 12, "feet"),
  22603. default: true
  22604. },
  22605. {
  22606. name: "Macro",
  22607. height: math.unit(100, "feet")
  22608. },
  22609. {
  22610. name: "Macro+",
  22611. height: math.unit(140, "feet")
  22612. },
  22613. {
  22614. name: "Macro++",
  22615. height: math.unit(300, "feet")
  22616. },
  22617. ]
  22618. ))
  22619. characterMakers.push(() => makeCharacter(
  22620. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22621. {
  22622. front: {
  22623. height: math.unit(5 + 9 / 12, "feet"),
  22624. weight: math.unit(190, "lb"),
  22625. name: "Front",
  22626. image: {
  22627. source: "./media/characters/sprisk/front.svg",
  22628. extra: 1225 / 1180,
  22629. bottom: 42.7 / 1266.4
  22630. }
  22631. },
  22632. frontNsfw: {
  22633. height: math.unit(5 + 9 / 12, "feet"),
  22634. weight: math.unit(190, "lb"),
  22635. name: "Front (NSFW)",
  22636. image: {
  22637. source: "./media/characters/sprisk/front-nsfw.svg",
  22638. extra: 1225 / 1180,
  22639. bottom: 42.7 / 1266.4
  22640. }
  22641. },
  22642. back: {
  22643. height: math.unit(5 + 9 / 12, "feet"),
  22644. weight: math.unit(190, "lb"),
  22645. name: "Back",
  22646. image: {
  22647. source: "./media/characters/sprisk/back.svg",
  22648. extra: 1247 / 1200,
  22649. bottom: 5.6 / 1253.04
  22650. }
  22651. },
  22652. },
  22653. [
  22654. {
  22655. name: "Tiny",
  22656. height: math.unit(2, "inches")
  22657. },
  22658. {
  22659. name: "Normal",
  22660. height: math.unit(5 + 9 / 12, "feet"),
  22661. default: true
  22662. },
  22663. {
  22664. name: "Mini Macro",
  22665. height: math.unit(18, "feet")
  22666. },
  22667. {
  22668. name: "Macro",
  22669. height: math.unit(100, "feet")
  22670. },
  22671. {
  22672. name: "MACRO",
  22673. height: math.unit(50, "miles")
  22674. },
  22675. {
  22676. name: "M A C R O",
  22677. height: math.unit(300, "miles")
  22678. },
  22679. ]
  22680. ))
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22683. {
  22684. side: {
  22685. height: math.unit(15.6, "meters"),
  22686. weight: math.unit(700000, "kg"),
  22687. name: "Side",
  22688. image: {
  22689. source: "./media/characters/bunsen/side.svg",
  22690. extra: 1644 / 358
  22691. }
  22692. },
  22693. foot: {
  22694. height: math.unit(1.611 * 1644 / 358, "meter"),
  22695. name: "Foot",
  22696. image: {
  22697. source: "./media/characters/bunsen/foot.svg"
  22698. }
  22699. },
  22700. },
  22701. [
  22702. {
  22703. name: "Small",
  22704. height: math.unit(10, "feet")
  22705. },
  22706. {
  22707. name: "Normal",
  22708. height: math.unit(15.6, "meters"),
  22709. default: true
  22710. },
  22711. ]
  22712. ))
  22713. characterMakers.push(() => makeCharacter(
  22714. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22715. {
  22716. front: {
  22717. height: math.unit(4 + 11 / 12, "feet"),
  22718. weight: math.unit(140, "lb"),
  22719. name: "Front",
  22720. image: {
  22721. source: "./media/characters/sesh/front.svg",
  22722. extra: 3420 / 3231,
  22723. bottom: 72 / 3949.5
  22724. }
  22725. },
  22726. },
  22727. [
  22728. {
  22729. name: "Normal",
  22730. height: math.unit(4 + 11 / 12, "feet")
  22731. },
  22732. {
  22733. name: "Grown",
  22734. height: math.unit(15, "feet"),
  22735. default: true
  22736. },
  22737. {
  22738. name: "Macro",
  22739. height: math.unit(1500, "feet")
  22740. },
  22741. {
  22742. name: "Megamacro",
  22743. height: math.unit(30, "miles")
  22744. },
  22745. {
  22746. name: "Continental",
  22747. height: math.unit(3000, "miles")
  22748. },
  22749. {
  22750. name: "Gravity Mass",
  22751. height: math.unit(300000, "miles")
  22752. },
  22753. {
  22754. name: "Planet Buster",
  22755. height: math.unit(30000000, "miles")
  22756. },
  22757. {
  22758. name: "Big",
  22759. height: math.unit(3000000000, "miles")
  22760. },
  22761. ]
  22762. ))
  22763. characterMakers.push(() => makeCharacter(
  22764. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22765. {
  22766. front: {
  22767. height: math.unit(9, "feet"),
  22768. weight: math.unit(350, "lb"),
  22769. name: "Front",
  22770. image: {
  22771. source: "./media/characters/pepper/front.svg",
  22772. extra: 1448 / 1312,
  22773. bottom: 9.4 / 1457.88
  22774. }
  22775. },
  22776. back: {
  22777. height: math.unit(9, "feet"),
  22778. weight: math.unit(350, "lb"),
  22779. name: "Back",
  22780. image: {
  22781. source: "./media/characters/pepper/back.svg",
  22782. extra: 1423 / 1300,
  22783. bottom: 4.6 / 1429
  22784. }
  22785. },
  22786. maw: {
  22787. height: math.unit(0.932, "feet"),
  22788. name: "Maw",
  22789. image: {
  22790. source: "./media/characters/pepper/maw.svg"
  22791. }
  22792. },
  22793. },
  22794. [
  22795. {
  22796. name: "Normal",
  22797. height: math.unit(9, "feet"),
  22798. default: true
  22799. },
  22800. ]
  22801. ))
  22802. characterMakers.push(() => makeCharacter(
  22803. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22804. {
  22805. front: {
  22806. height: math.unit(6, "feet"),
  22807. weight: math.unit(150, "lb"),
  22808. name: "Front",
  22809. image: {
  22810. source: "./media/characters/maelstrom/front.svg",
  22811. extra: 2100 / 1883,
  22812. bottom: 94 / 2196.7
  22813. }
  22814. },
  22815. },
  22816. [
  22817. {
  22818. name: "Less Kaiju",
  22819. height: math.unit(200, "feet")
  22820. },
  22821. {
  22822. name: "Kaiju",
  22823. height: math.unit(400, "feet"),
  22824. default: true
  22825. },
  22826. {
  22827. name: "Kaiju-er",
  22828. height: math.unit(600, "feet")
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22834. {
  22835. front: {
  22836. height: math.unit(6 + 5 / 12, "feet"),
  22837. weight: math.unit(180, "lb"),
  22838. name: "Front",
  22839. image: {
  22840. source: "./media/characters/lexir/front.svg",
  22841. extra: 180 / 172,
  22842. bottom: 12 / 192
  22843. }
  22844. },
  22845. back: {
  22846. height: math.unit(6 + 5 / 12, "feet"),
  22847. weight: math.unit(180, "lb"),
  22848. name: "Back",
  22849. image: {
  22850. source: "./media/characters/lexir/back.svg",
  22851. extra: 183.84 / 175.5,
  22852. bottom: 3.1 / 187
  22853. }
  22854. },
  22855. },
  22856. [
  22857. {
  22858. name: "Very Smal",
  22859. height: math.unit(1, "nm")
  22860. },
  22861. {
  22862. name: "Normal",
  22863. height: math.unit(6 + 5 / 12, "feet"),
  22864. default: true
  22865. },
  22866. {
  22867. name: "Macro",
  22868. height: math.unit(1, "mile")
  22869. },
  22870. {
  22871. name: "Megamacro",
  22872. height: math.unit(50, "miles")
  22873. },
  22874. ]
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22878. {
  22879. front: {
  22880. height: math.unit(1.5, "meters"),
  22881. weight: math.unit(100, "lb"),
  22882. name: "Front",
  22883. image: {
  22884. source: "./media/characters/maksio/front.svg",
  22885. extra: 1549 / 1531,
  22886. bottom: 123.7 / 1674.5429
  22887. }
  22888. },
  22889. back: {
  22890. height: math.unit(1.5, "meters"),
  22891. weight: math.unit(100, "lb"),
  22892. name: "Back",
  22893. image: {
  22894. source: "./media/characters/maksio/back.svg",
  22895. extra: 1541 / 1509,
  22896. bottom: 97 / 1639
  22897. }
  22898. },
  22899. hand: {
  22900. height: math.unit(0.621, "feet"),
  22901. name: "Hand",
  22902. image: {
  22903. source: "./media/characters/maksio/hand.svg"
  22904. }
  22905. },
  22906. foot: {
  22907. height: math.unit(1.611, "feet"),
  22908. name: "Foot",
  22909. image: {
  22910. source: "./media/characters/maksio/foot.svg"
  22911. }
  22912. },
  22913. },
  22914. [
  22915. {
  22916. name: "Shrunken",
  22917. height: math.unit(10, "cm")
  22918. },
  22919. {
  22920. name: "Normal",
  22921. height: math.unit(150, "cm"),
  22922. default: true
  22923. },
  22924. ]
  22925. ))
  22926. characterMakers.push(() => makeCharacter(
  22927. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22928. {
  22929. front: {
  22930. height: math.unit(100, "feet"),
  22931. name: "Front",
  22932. image: {
  22933. source: "./media/characters/erza-bear/front.svg",
  22934. extra: 2449 / 2390,
  22935. bottom: 46 / 2494
  22936. }
  22937. },
  22938. back: {
  22939. height: math.unit(100, "feet"),
  22940. name: "Back",
  22941. image: {
  22942. source: "./media/characters/erza-bear/back.svg",
  22943. extra: 2489 / 2430,
  22944. bottom: 85.4 / 2480
  22945. }
  22946. },
  22947. tail: {
  22948. height: math.unit(42, "feet"),
  22949. name: "Tail",
  22950. image: {
  22951. source: "./media/characters/erza-bear/tail.svg"
  22952. }
  22953. },
  22954. tongue: {
  22955. height: math.unit(8, "feet"),
  22956. name: "Tongue",
  22957. image: {
  22958. source: "./media/characters/erza-bear/tongue.svg"
  22959. }
  22960. },
  22961. dick: {
  22962. height: math.unit(10.5, "feet"),
  22963. name: "Dick",
  22964. image: {
  22965. source: "./media/characters/erza-bear/dick.svg"
  22966. }
  22967. },
  22968. dickVertical: {
  22969. height: math.unit(16.9, "feet"),
  22970. name: "Dick (Vertical)",
  22971. image: {
  22972. source: "./media/characters/erza-bear/dick-vertical.svg"
  22973. }
  22974. },
  22975. },
  22976. [
  22977. {
  22978. name: "Macro",
  22979. height: math.unit(100, "feet"),
  22980. default: true
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22986. {
  22987. front: {
  22988. height: math.unit(172, "cm"),
  22989. weight: math.unit(73, "kg"),
  22990. name: "Front",
  22991. image: {
  22992. source: "./media/characters/violet-flor/front.svg",
  22993. extra: 1530 / 1442,
  22994. bottom: 61.9 / 1588.8
  22995. }
  22996. },
  22997. back: {
  22998. height: math.unit(180, "cm"),
  22999. weight: math.unit(73, "kg"),
  23000. name: "Back",
  23001. image: {
  23002. source: "./media/characters/violet-flor/back.svg",
  23003. extra: 1692 / 1630,
  23004. bottom: 20 / 1712
  23005. }
  23006. },
  23007. },
  23008. [
  23009. {
  23010. name: "Normal",
  23011. height: math.unit(172, "cm"),
  23012. default: true
  23013. },
  23014. ]
  23015. ))
  23016. characterMakers.push(() => makeCharacter(
  23017. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23018. {
  23019. front: {
  23020. height: math.unit(6, "feet"),
  23021. weight: math.unit(220, "lb"),
  23022. name: "Front",
  23023. image: {
  23024. source: "./media/characters/lynn-rhea/front.svg",
  23025. extra: 310 / 273
  23026. }
  23027. },
  23028. back: {
  23029. height: math.unit(6, "feet"),
  23030. weight: math.unit(220, "lb"),
  23031. name: "Back",
  23032. image: {
  23033. source: "./media/characters/lynn-rhea/back.svg",
  23034. extra: 310 / 273
  23035. }
  23036. },
  23037. dicks: {
  23038. height: math.unit(0.9, "feet"),
  23039. name: "Dicks",
  23040. image: {
  23041. source: "./media/characters/lynn-rhea/dicks.svg"
  23042. }
  23043. },
  23044. slit: {
  23045. height: math.unit(0.4, "feet"),
  23046. name: "Slit",
  23047. image: {
  23048. source: "./media/characters/lynn-rhea/slit.svg"
  23049. }
  23050. },
  23051. },
  23052. [
  23053. {
  23054. name: "Micro",
  23055. height: math.unit(1, "inch")
  23056. },
  23057. {
  23058. name: "Macro",
  23059. height: math.unit(60, "feet"),
  23060. default: true
  23061. },
  23062. {
  23063. name: "Megamacro",
  23064. height: math.unit(2, "miles")
  23065. },
  23066. {
  23067. name: "Gigamacro",
  23068. height: math.unit(3, "earths")
  23069. },
  23070. {
  23071. name: "Galactic",
  23072. height: math.unit(0.8, "galaxies")
  23073. },
  23074. ]
  23075. ))
  23076. characterMakers.push(() => makeCharacter(
  23077. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23078. {
  23079. front: {
  23080. height: math.unit(1600, "feet"),
  23081. weight: math.unit(85758785169, "kg"),
  23082. name: "Front",
  23083. image: {
  23084. source: "./media/characters/valathos/front.svg",
  23085. extra: 1451 / 1339
  23086. }
  23087. },
  23088. },
  23089. [
  23090. {
  23091. name: "Macro",
  23092. height: math.unit(1600, "feet"),
  23093. default: true
  23094. },
  23095. ]
  23096. ))
  23097. characterMakers.push(() => makeCharacter(
  23098. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23099. {
  23100. front: {
  23101. height: math.unit(7 + 5 / 12, "feet"),
  23102. weight: math.unit(300, "lb"),
  23103. name: "Front",
  23104. image: {
  23105. source: "./media/characters/azula/front.svg",
  23106. extra: 3208 / 2880,
  23107. bottom: 80.2 / 3277
  23108. }
  23109. },
  23110. back: {
  23111. height: math.unit(7 + 5 / 12, "feet"),
  23112. weight: math.unit(300, "lb"),
  23113. name: "Back",
  23114. image: {
  23115. source: "./media/characters/azula/back.svg",
  23116. extra: 3169 / 2822,
  23117. bottom: 150.6 / 3321
  23118. }
  23119. },
  23120. },
  23121. [
  23122. {
  23123. name: "Normal",
  23124. height: math.unit(7 + 5 / 12, "feet"),
  23125. default: true
  23126. },
  23127. {
  23128. name: "Big",
  23129. height: math.unit(20, "feet")
  23130. },
  23131. ]
  23132. ))
  23133. characterMakers.push(() => makeCharacter(
  23134. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23135. {
  23136. front: {
  23137. height: math.unit(5 + 1 / 12, "feet"),
  23138. weight: math.unit(110, "lb"),
  23139. name: "Front",
  23140. image: {
  23141. source: "./media/characters/rupert/front.svg",
  23142. extra: 1549 / 1495,
  23143. bottom: 54.2 / 1604.4
  23144. }
  23145. },
  23146. },
  23147. [
  23148. {
  23149. name: "Normal",
  23150. height: math.unit(5 + 1 / 12, "feet"),
  23151. default: true
  23152. },
  23153. ]
  23154. ))
  23155. characterMakers.push(() => makeCharacter(
  23156. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23157. {
  23158. front: {
  23159. height: math.unit(8 + 4 / 12, "feet"),
  23160. weight: math.unit(350, "lb"),
  23161. name: "Front",
  23162. image: {
  23163. source: "./media/characters/sheera-castellar/front.svg",
  23164. extra: 1957 / 1894,
  23165. bottom: 26.97 / 1975.017
  23166. }
  23167. },
  23168. side: {
  23169. height: math.unit(8 + 4 / 12, "feet"),
  23170. weight: math.unit(350, "lb"),
  23171. name: "Side",
  23172. image: {
  23173. source: "./media/characters/sheera-castellar/side.svg",
  23174. extra: 1957 / 1894
  23175. }
  23176. },
  23177. back: {
  23178. height: math.unit(8 + 4 / 12, "feet"),
  23179. weight: math.unit(350, "lb"),
  23180. name: "Back",
  23181. image: {
  23182. source: "./media/characters/sheera-castellar/back.svg",
  23183. extra: 1957 / 1894
  23184. }
  23185. },
  23186. angled: {
  23187. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23188. weight: math.unit(350, "lb"),
  23189. name: "Angled",
  23190. image: {
  23191. source: "./media/characters/sheera-castellar/angled.svg",
  23192. extra: 1807 / 1707,
  23193. bottom: 68 / 1875
  23194. }
  23195. },
  23196. genitals: {
  23197. height: math.unit(2.2, "feet"),
  23198. name: "Genitals",
  23199. image: {
  23200. source: "./media/characters/sheera-castellar/genitals.svg"
  23201. }
  23202. },
  23203. taur: {
  23204. height: math.unit(10 + 6/12, "feet"),
  23205. name: "Taur",
  23206. image: {
  23207. source: "./media/characters/sheera-castellar/taur.svg",
  23208. extra: 2017/1909,
  23209. bottom: 185/2202
  23210. }
  23211. },
  23212. },
  23213. [
  23214. {
  23215. name: "Normal",
  23216. height: math.unit(8 + 4 / 12, "feet")
  23217. },
  23218. {
  23219. name: "Macro",
  23220. height: math.unit(150, "feet"),
  23221. default: true
  23222. },
  23223. {
  23224. name: "Macro+",
  23225. height: math.unit(800, "feet")
  23226. },
  23227. ]
  23228. ))
  23229. characterMakers.push(() => makeCharacter(
  23230. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23231. {
  23232. front: {
  23233. height: math.unit(6, "feet"),
  23234. weight: math.unit(150, "lb"),
  23235. name: "Front",
  23236. image: {
  23237. source: "./media/characters/jaipur/front.svg",
  23238. extra: 3860 / 3731,
  23239. bottom: 287 / 4140
  23240. }
  23241. },
  23242. back: {
  23243. height: math.unit(6, "feet"),
  23244. weight: math.unit(150, "lb"),
  23245. name: "Back",
  23246. image: {
  23247. source: "./media/characters/jaipur/back.svg",
  23248. extra: 4060 / 3930,
  23249. bottom: 151 / 4200
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Normal",
  23256. height: math.unit(1.85, "meters"),
  23257. default: true
  23258. },
  23259. {
  23260. name: "Macro",
  23261. height: math.unit(150, "meters")
  23262. },
  23263. {
  23264. name: "Macro+",
  23265. height: math.unit(0.5, "miles")
  23266. },
  23267. {
  23268. name: "Macro++",
  23269. height: math.unit(2.5, "miles")
  23270. },
  23271. {
  23272. name: "Macro+++",
  23273. height: math.unit(12, "miles")
  23274. },
  23275. {
  23276. name: "Macro++++",
  23277. height: math.unit(120, "miles")
  23278. },
  23279. {
  23280. name: "Macro+++++",
  23281. height: math.unit(1200, "miles")
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23287. {
  23288. front: {
  23289. height: math.unit(6, "feet"),
  23290. weight: math.unit(150, "lb"),
  23291. name: "Front",
  23292. image: {
  23293. source: "./media/characters/sheila-wolf/front.svg",
  23294. extra: 1931 / 1808,
  23295. bottom: 29.5 / 1960
  23296. }
  23297. },
  23298. dick: {
  23299. height: math.unit(1.464, "feet"),
  23300. name: "Dick",
  23301. image: {
  23302. source: "./media/characters/sheila-wolf/dick.svg"
  23303. }
  23304. },
  23305. muzzle: {
  23306. height: math.unit(0.513, "feet"),
  23307. name: "Muzzle",
  23308. image: {
  23309. source: "./media/characters/sheila-wolf/muzzle.svg"
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "Macro",
  23316. height: math.unit(70, "feet"),
  23317. default: true
  23318. },
  23319. ]
  23320. ))
  23321. characterMakers.push(() => makeCharacter(
  23322. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23323. {
  23324. front: {
  23325. height: math.unit(32, "meters"),
  23326. weight: math.unit(300000, "kg"),
  23327. name: "Front",
  23328. image: {
  23329. source: "./media/characters/almor/front.svg",
  23330. extra: 1408 / 1322,
  23331. bottom: 94.6 / 1506.5
  23332. }
  23333. },
  23334. },
  23335. [
  23336. {
  23337. name: "Macro",
  23338. height: math.unit(32, "meters"),
  23339. default: true
  23340. },
  23341. ]
  23342. ))
  23343. characterMakers.push(() => makeCharacter(
  23344. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23345. {
  23346. front: {
  23347. height: math.unit(7, "feet"),
  23348. weight: math.unit(200, "lb"),
  23349. name: "Front",
  23350. image: {
  23351. source: "./media/characters/silver/front.svg",
  23352. extra: 472.1 / 450.5,
  23353. bottom: 26.5 / 499.424
  23354. }
  23355. },
  23356. },
  23357. [
  23358. {
  23359. name: "Normal",
  23360. height: math.unit(7, "feet"),
  23361. default: true
  23362. },
  23363. {
  23364. name: "Macro",
  23365. height: math.unit(800, "feet")
  23366. },
  23367. {
  23368. name: "Megamacro",
  23369. height: math.unit(250, "miles")
  23370. },
  23371. ]
  23372. ))
  23373. characterMakers.push(() => makeCharacter(
  23374. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23375. {
  23376. front: {
  23377. height: math.unit(6, "feet"),
  23378. weight: math.unit(150, "lb"),
  23379. name: "Front",
  23380. image: {
  23381. source: "./media/characters/pliskin/front.svg",
  23382. extra: 1469 / 1359,
  23383. bottom: 70 / 1540
  23384. }
  23385. },
  23386. },
  23387. [
  23388. {
  23389. name: "Micro",
  23390. height: math.unit(3, "inches")
  23391. },
  23392. {
  23393. name: "Normal",
  23394. height: math.unit(5 + 11 / 12, "feet"),
  23395. default: true
  23396. },
  23397. {
  23398. name: "Macro",
  23399. height: math.unit(120, "feet")
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23405. {
  23406. front: {
  23407. height: math.unit(6, "feet"),
  23408. weight: math.unit(150, "lb"),
  23409. name: "Front",
  23410. image: {
  23411. source: "./media/characters/sammy/front.svg",
  23412. extra: 1193 / 1089,
  23413. bottom: 30.5 / 1226
  23414. }
  23415. },
  23416. },
  23417. [
  23418. {
  23419. name: "Macro",
  23420. height: math.unit(1700, "feet"),
  23421. default: true
  23422. },
  23423. {
  23424. name: "Examacro",
  23425. height: math.unit(2.5e9, "lightyears")
  23426. },
  23427. ]
  23428. ))
  23429. characterMakers.push(() => makeCharacter(
  23430. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23431. {
  23432. front: {
  23433. height: math.unit(21, "meters"),
  23434. weight: math.unit(12, "tonnes"),
  23435. name: "Front",
  23436. image: {
  23437. source: "./media/characters/kuru/front.svg",
  23438. extra: 4301 / 3785,
  23439. bottom: 371.3 / 4691
  23440. }
  23441. },
  23442. },
  23443. [
  23444. {
  23445. name: "Macro",
  23446. height: math.unit(21, "meters"),
  23447. default: true
  23448. },
  23449. ]
  23450. ))
  23451. characterMakers.push(() => makeCharacter(
  23452. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23453. {
  23454. front: {
  23455. height: math.unit(23, "meters"),
  23456. weight: math.unit(12.2, "tonnes"),
  23457. name: "Front",
  23458. image: {
  23459. source: "./media/characters/rakka/front.svg",
  23460. extra: 4670 / 4169,
  23461. bottom: 301 / 4968.7
  23462. }
  23463. },
  23464. },
  23465. [
  23466. {
  23467. name: "Macro",
  23468. height: math.unit(23, "meters"),
  23469. default: true
  23470. },
  23471. ]
  23472. ))
  23473. characterMakers.push(() => makeCharacter(
  23474. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23475. {
  23476. front: {
  23477. height: math.unit(6, "feet"),
  23478. weight: math.unit(150, "lb"),
  23479. name: "Front",
  23480. image: {
  23481. source: "./media/characters/rhys-feline/front.svg",
  23482. extra: 2488 / 2308,
  23483. bottom: 35.67 / 2519.19
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "Really Small",
  23490. height: math.unit(1, "nm")
  23491. },
  23492. {
  23493. name: "Micro",
  23494. height: math.unit(4, "inches")
  23495. },
  23496. {
  23497. name: "Normal",
  23498. height: math.unit(4 + 10 / 12, "feet"),
  23499. default: true
  23500. },
  23501. {
  23502. name: "Macro",
  23503. height: math.unit(100, "feet")
  23504. },
  23505. {
  23506. name: "Megamacto",
  23507. height: math.unit(50, "miles")
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23513. {
  23514. side: {
  23515. height: math.unit(30, "feet"),
  23516. weight: math.unit(35000, "kg"),
  23517. name: "Side",
  23518. image: {
  23519. source: "./media/characters/alydar/side.svg",
  23520. extra: 234 / 222,
  23521. bottom: 6.5 / 241
  23522. }
  23523. },
  23524. front: {
  23525. height: math.unit(30, "feet"),
  23526. weight: math.unit(35000, "kg"),
  23527. name: "Front",
  23528. image: {
  23529. source: "./media/characters/alydar/front.svg",
  23530. extra: 223.37 / 210.2,
  23531. bottom: 22.3 / 246.76
  23532. }
  23533. },
  23534. top: {
  23535. height: math.unit(64.54, "feet"),
  23536. weight: math.unit(35000, "kg"),
  23537. name: "Top",
  23538. image: {
  23539. source: "./media/characters/alydar/top.svg"
  23540. }
  23541. },
  23542. anthro: {
  23543. height: math.unit(30, "feet"),
  23544. weight: math.unit(9000, "kg"),
  23545. name: "Anthro",
  23546. image: {
  23547. source: "./media/characters/alydar/anthro.svg",
  23548. extra: 432 / 421,
  23549. bottom: 7.18 / 440
  23550. }
  23551. },
  23552. maw: {
  23553. height: math.unit(11.693, "feet"),
  23554. name: "Maw",
  23555. image: {
  23556. source: "./media/characters/alydar/maw.svg"
  23557. }
  23558. },
  23559. head: {
  23560. height: math.unit(11.693, "feet"),
  23561. name: "Head",
  23562. image: {
  23563. source: "./media/characters/alydar/head.svg"
  23564. }
  23565. },
  23566. headAlt: {
  23567. height: math.unit(12.861, "feet"),
  23568. name: "Head (Alt)",
  23569. image: {
  23570. source: "./media/characters/alydar/head-alt.svg"
  23571. }
  23572. },
  23573. wing: {
  23574. height: math.unit(20.712, "feet"),
  23575. name: "Wing",
  23576. image: {
  23577. source: "./media/characters/alydar/wing.svg"
  23578. }
  23579. },
  23580. wingFeather: {
  23581. height: math.unit(9.662, "feet"),
  23582. name: "Wing Feather",
  23583. image: {
  23584. source: "./media/characters/alydar/wing-feather.svg"
  23585. }
  23586. },
  23587. countourFeather: {
  23588. height: math.unit(4.154, "feet"),
  23589. name: "Contour Feather",
  23590. image: {
  23591. source: "./media/characters/alydar/contour-feather.svg"
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Diplomatic",
  23598. height: math.unit(13, "feet"),
  23599. default: true
  23600. },
  23601. {
  23602. name: "Small",
  23603. height: math.unit(30, "feet")
  23604. },
  23605. {
  23606. name: "Normal",
  23607. height: math.unit(95, "feet"),
  23608. default: true
  23609. },
  23610. {
  23611. name: "Large",
  23612. height: math.unit(285, "feet")
  23613. },
  23614. {
  23615. name: "Incomprehensible",
  23616. height: math.unit(450, "megameters")
  23617. },
  23618. ]
  23619. ))
  23620. characterMakers.push(() => makeCharacter(
  23621. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23622. {
  23623. side: {
  23624. height: math.unit(11, "feet"),
  23625. weight: math.unit(1750, "kg"),
  23626. name: "Side",
  23627. image: {
  23628. source: "./media/characters/selicia/side.svg",
  23629. extra: 440 / 396,
  23630. bottom: 24.8 / 465.979
  23631. }
  23632. },
  23633. maw: {
  23634. height: math.unit(4.665, "feet"),
  23635. name: "Maw",
  23636. image: {
  23637. source: "./media/characters/selicia/maw.svg"
  23638. }
  23639. },
  23640. },
  23641. [
  23642. {
  23643. name: "Normal",
  23644. height: math.unit(11, "feet"),
  23645. default: true
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23651. {
  23652. side: {
  23653. height: math.unit(2 + 6 / 12, "feet"),
  23654. weight: math.unit(30, "lb"),
  23655. name: "Side",
  23656. image: {
  23657. source: "./media/characters/layla/side.svg",
  23658. extra: 244 / 188,
  23659. bottom: 18.2 / 262.1
  23660. }
  23661. },
  23662. back: {
  23663. height: math.unit(2 + 6 / 12, "feet"),
  23664. weight: math.unit(30, "lb"),
  23665. name: "Back",
  23666. image: {
  23667. source: "./media/characters/layla/back.svg",
  23668. extra: 308 / 241.5,
  23669. bottom: 8.9 / 316.8
  23670. }
  23671. },
  23672. cumming: {
  23673. height: math.unit(2 + 6 / 12, "feet"),
  23674. weight: math.unit(30, "lb"),
  23675. name: "Cumming",
  23676. image: {
  23677. source: "./media/characters/layla/cumming.svg",
  23678. extra: 342 / 279,
  23679. bottom: 595 / 938
  23680. }
  23681. },
  23682. dickFlaccid: {
  23683. height: math.unit(2.595, "feet"),
  23684. name: "Flaccid Genitals",
  23685. image: {
  23686. source: "./media/characters/layla/dick-flaccid.svg"
  23687. }
  23688. },
  23689. dickErect: {
  23690. height: math.unit(2.359, "feet"),
  23691. name: "Erect Genitals",
  23692. image: {
  23693. source: "./media/characters/layla/dick-erect.svg"
  23694. }
  23695. },
  23696. dragon: {
  23697. height: math.unit(40, "feet"),
  23698. name: "Dragon",
  23699. image: {
  23700. source: "./media/characters/layla/dragon.svg",
  23701. extra: 610/535,
  23702. bottom: 367/977
  23703. }
  23704. },
  23705. taur: {
  23706. height: math.unit(30, "feet"),
  23707. name: "Taur",
  23708. image: {
  23709. source: "./media/characters/layla/taur.svg",
  23710. extra: 1268/1199,
  23711. bottom: 112/1380
  23712. }
  23713. },
  23714. },
  23715. [
  23716. {
  23717. name: "Micro",
  23718. height: math.unit(1, "inch")
  23719. },
  23720. {
  23721. name: "Small",
  23722. height: math.unit(1, "foot")
  23723. },
  23724. {
  23725. name: "Normal",
  23726. height: math.unit(2 + 6 / 12, "feet"),
  23727. default: true
  23728. },
  23729. {
  23730. name: "Macro",
  23731. height: math.unit(200, "feet")
  23732. },
  23733. {
  23734. name: "Megamacro",
  23735. height: math.unit(1000, "miles")
  23736. },
  23737. {
  23738. name: "Planetary",
  23739. height: math.unit(8000, "miles")
  23740. },
  23741. {
  23742. name: "True Layla",
  23743. height: math.unit(200000 * 7, "multiverses")
  23744. },
  23745. ]
  23746. ))
  23747. characterMakers.push(() => makeCharacter(
  23748. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23749. {
  23750. back: {
  23751. height: math.unit(10.5, "feet"),
  23752. weight: math.unit(800, "lb"),
  23753. name: "Back",
  23754. image: {
  23755. source: "./media/characters/knox/back.svg",
  23756. extra: 1486 / 1089,
  23757. bottom: 107 / 1601.4
  23758. }
  23759. },
  23760. side: {
  23761. height: math.unit(10.5, "feet"),
  23762. weight: math.unit(800, "lb"),
  23763. name: "Side",
  23764. image: {
  23765. source: "./media/characters/knox/side.svg",
  23766. extra: 244 / 218,
  23767. bottom: 14 / 260
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "Compact",
  23774. height: math.unit(10.5, "feet"),
  23775. default: true
  23776. },
  23777. {
  23778. name: "Dynamax",
  23779. height: math.unit(210, "feet")
  23780. },
  23781. {
  23782. name: "Full Macro",
  23783. height: math.unit(850, "feet")
  23784. },
  23785. ]
  23786. ))
  23787. characterMakers.push(() => makeCharacter(
  23788. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23789. {
  23790. front: {
  23791. height: math.unit(28, "feet"),
  23792. weight: math.unit(10500, "lb"),
  23793. name: "Front",
  23794. image: {
  23795. source: "./media/characters/kayda/front.svg",
  23796. extra: 1536 / 1428,
  23797. bottom: 68.7 / 1603
  23798. }
  23799. },
  23800. back: {
  23801. height: math.unit(28, "feet"),
  23802. weight: math.unit(10500, "lb"),
  23803. name: "Back",
  23804. image: {
  23805. source: "./media/characters/kayda/back.svg",
  23806. extra: 1557 / 1464,
  23807. bottom: 39.5 / 1597.49
  23808. }
  23809. },
  23810. dick: {
  23811. height: math.unit(3.858, "feet"),
  23812. name: "Dick",
  23813. image: {
  23814. source: "./media/characters/kayda/dick.svg"
  23815. }
  23816. },
  23817. },
  23818. [
  23819. {
  23820. name: "Macro",
  23821. height: math.unit(28, "feet"),
  23822. default: true
  23823. },
  23824. ]
  23825. ))
  23826. characterMakers.push(() => makeCharacter(
  23827. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23828. {
  23829. front: {
  23830. height: math.unit(10 + 11 / 12, "feet"),
  23831. weight: math.unit(1400, "lb"),
  23832. name: "Front",
  23833. image: {
  23834. source: "./media/characters/brian/front.svg",
  23835. extra: 737 / 692,
  23836. bottom: 55.4 / 785
  23837. }
  23838. },
  23839. },
  23840. [
  23841. {
  23842. name: "Normal",
  23843. height: math.unit(10 + 11 / 12, "feet"),
  23844. default: true
  23845. },
  23846. ]
  23847. ))
  23848. characterMakers.push(() => makeCharacter(
  23849. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23850. {
  23851. front: {
  23852. height: math.unit(5 + 8 / 12, "feet"),
  23853. weight: math.unit(140, "lb"),
  23854. name: "Front",
  23855. image: {
  23856. source: "./media/characters/khemri/front.svg",
  23857. extra: 4780 / 4059,
  23858. bottom: 80.1 / 4859.25
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Micro",
  23865. height: math.unit(6, "inches")
  23866. },
  23867. {
  23868. name: "Normal",
  23869. height: math.unit(5 + 8 / 12, "feet"),
  23870. default: true
  23871. },
  23872. ]
  23873. ))
  23874. characterMakers.push(() => makeCharacter(
  23875. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23876. {
  23877. front: {
  23878. height: math.unit(13, "feet"),
  23879. weight: math.unit(1700, "lb"),
  23880. name: "Front",
  23881. image: {
  23882. source: "./media/characters/felix-braveheart/front.svg",
  23883. extra: 1222 / 1157,
  23884. bottom: 53.2 / 1280
  23885. }
  23886. },
  23887. back: {
  23888. height: math.unit(13, "feet"),
  23889. weight: math.unit(1700, "lb"),
  23890. name: "Back",
  23891. image: {
  23892. source: "./media/characters/felix-braveheart/back.svg",
  23893. extra: 1277 / 1203,
  23894. bottom: 50.2 / 1327
  23895. }
  23896. },
  23897. feral: {
  23898. height: math.unit(6, "feet"),
  23899. weight: math.unit(400, "lb"),
  23900. name: "Feral",
  23901. image: {
  23902. source: "./media/characters/felix-braveheart/feral.svg",
  23903. extra: 682 / 625,
  23904. bottom: 6.9 / 688
  23905. }
  23906. },
  23907. },
  23908. [
  23909. {
  23910. name: "Normal",
  23911. height: math.unit(13, "feet"),
  23912. default: true
  23913. },
  23914. ]
  23915. ))
  23916. characterMakers.push(() => makeCharacter(
  23917. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23918. {
  23919. side: {
  23920. height: math.unit(5 + 11 / 12, "feet"),
  23921. weight: math.unit(1400, "lb"),
  23922. name: "Side",
  23923. image: {
  23924. source: "./media/characters/shadow-blade/side.svg",
  23925. extra: 1726 / 1267,
  23926. bottom: 58.4 / 1785
  23927. }
  23928. },
  23929. },
  23930. [
  23931. {
  23932. name: "Normal",
  23933. height: math.unit(5 + 11 / 12, "feet"),
  23934. default: true
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23940. {
  23941. front: {
  23942. height: math.unit(1 + 6 / 12, "feet"),
  23943. weight: math.unit(25, "lb"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/karla-halldor/front.svg",
  23947. extra: 1459 / 1383,
  23948. bottom: 12 / 1472
  23949. }
  23950. },
  23951. },
  23952. [
  23953. {
  23954. name: "Normal",
  23955. height: math.unit(1 + 6 / 12, "feet"),
  23956. default: true
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23962. {
  23963. front: {
  23964. height: math.unit(6 + 2 / 12, "feet"),
  23965. weight: math.unit(160, "lb"),
  23966. name: "Front",
  23967. image: {
  23968. source: "./media/characters/ariam/front.svg",
  23969. extra: 714 / 617,
  23970. bottom: 23.4 / 737,
  23971. }
  23972. },
  23973. squatting: {
  23974. height: math.unit(4.1, "feet"),
  23975. weight: math.unit(160, "lb"),
  23976. name: "Squatting",
  23977. image: {
  23978. source: "./media/characters/ariam/squatting.svg",
  23979. extra: 2617 / 2112,
  23980. bottom: 61.2 / 2681,
  23981. }
  23982. },
  23983. },
  23984. [
  23985. {
  23986. name: "Normal",
  23987. height: math.unit(6 + 2 / 12, "feet"),
  23988. default: true
  23989. },
  23990. {
  23991. name: "Normal+",
  23992. height: math.unit(4, "meters")
  23993. },
  23994. {
  23995. name: "Macro",
  23996. height: math.unit(50, "meters")
  23997. },
  23998. {
  23999. name: "Macro+",
  24000. height: math.unit(100, "meters")
  24001. },
  24002. {
  24003. name: "Megamacro",
  24004. height: math.unit(20, "km")
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24010. {
  24011. front: {
  24012. height: math.unit(1.67, "meters"),
  24013. weight: math.unit(140, "lb"),
  24014. name: "Front",
  24015. image: {
  24016. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24017. extra: 438 / 410,
  24018. bottom: 0.75 / 439
  24019. }
  24020. },
  24021. },
  24022. [
  24023. {
  24024. name: "Shrunken",
  24025. height: math.unit(7.6, "cm")
  24026. },
  24027. {
  24028. name: "Human Scale",
  24029. height: math.unit(1.67, "meters")
  24030. },
  24031. {
  24032. name: "Wolxi Scale",
  24033. height: math.unit(36.7, "meters"),
  24034. default: true
  24035. },
  24036. ]
  24037. ))
  24038. characterMakers.push(() => makeCharacter(
  24039. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24040. {
  24041. front: {
  24042. height: math.unit(1.73, "meters"),
  24043. weight: math.unit(240, "lb"),
  24044. name: "Front",
  24045. image: {
  24046. source: "./media/characters/izue-two-mothers/front.svg",
  24047. extra: 469 / 437,
  24048. bottom: 1.24 / 470.6
  24049. }
  24050. },
  24051. },
  24052. [
  24053. {
  24054. name: "Shrunken",
  24055. height: math.unit(7.86, "cm")
  24056. },
  24057. {
  24058. name: "Human Scale",
  24059. height: math.unit(1.73, "meters")
  24060. },
  24061. {
  24062. name: "Wolxi Scale",
  24063. height: math.unit(38, "meters"),
  24064. default: true
  24065. },
  24066. ]
  24067. ))
  24068. characterMakers.push(() => makeCharacter(
  24069. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24070. {
  24071. front: {
  24072. height: math.unit(1.55, "meters"),
  24073. weight: math.unit(120, "lb"),
  24074. name: "Front",
  24075. image: {
  24076. source: "./media/characters/teeku-love-shack/front.svg",
  24077. extra: 387 / 362,
  24078. bottom: 1.51 / 388
  24079. }
  24080. },
  24081. },
  24082. [
  24083. {
  24084. name: "Shrunken",
  24085. height: math.unit(7, "cm")
  24086. },
  24087. {
  24088. name: "Human Scale",
  24089. height: math.unit(1.55, "meters")
  24090. },
  24091. {
  24092. name: "Wolxi Scale",
  24093. height: math.unit(34.1, "meters"),
  24094. default: true
  24095. },
  24096. ]
  24097. ))
  24098. characterMakers.push(() => makeCharacter(
  24099. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24100. {
  24101. front: {
  24102. height: math.unit(1.83, "meters"),
  24103. weight: math.unit(135, "lb"),
  24104. name: "Front",
  24105. image: {
  24106. source: "./media/characters/dejma-the-red/front.svg",
  24107. extra: 480 / 458,
  24108. bottom: 1.8 / 482
  24109. }
  24110. },
  24111. },
  24112. [
  24113. {
  24114. name: "Shrunken",
  24115. height: math.unit(8.3, "cm")
  24116. },
  24117. {
  24118. name: "Human Scale",
  24119. height: math.unit(1.83, "meters")
  24120. },
  24121. {
  24122. name: "Wolxi Scale",
  24123. height: math.unit(40, "meters"),
  24124. default: true
  24125. },
  24126. ]
  24127. ))
  24128. characterMakers.push(() => makeCharacter(
  24129. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24130. {
  24131. front: {
  24132. height: math.unit(1.78, "meters"),
  24133. weight: math.unit(65, "kg"),
  24134. name: "Front",
  24135. image: {
  24136. source: "./media/characters/aki/front.svg",
  24137. extra: 452 / 415
  24138. }
  24139. },
  24140. frontNsfw: {
  24141. height: math.unit(1.78, "meters"),
  24142. weight: math.unit(65, "kg"),
  24143. name: "Front (NSFW)",
  24144. image: {
  24145. source: "./media/characters/aki/front-nsfw.svg",
  24146. extra: 452 / 415
  24147. }
  24148. },
  24149. back: {
  24150. height: math.unit(1.78, "meters"),
  24151. weight: math.unit(65, "kg"),
  24152. name: "Back",
  24153. image: {
  24154. source: "./media/characters/aki/back.svg",
  24155. extra: 452 / 415
  24156. }
  24157. },
  24158. rump: {
  24159. height: math.unit(2.05, "feet"),
  24160. name: "Rump",
  24161. image: {
  24162. source: "./media/characters/aki/rump.svg"
  24163. }
  24164. },
  24165. dick: {
  24166. height: math.unit(0.95, "feet"),
  24167. name: "Dick",
  24168. image: {
  24169. source: "./media/characters/aki/dick.svg"
  24170. }
  24171. },
  24172. },
  24173. [
  24174. {
  24175. name: "Micro",
  24176. height: math.unit(15, "cm")
  24177. },
  24178. {
  24179. name: "Normal",
  24180. height: math.unit(178, "cm"),
  24181. default: true
  24182. },
  24183. {
  24184. name: "Macro",
  24185. height: math.unit(214, "m")
  24186. },
  24187. {
  24188. name: "Macro+",
  24189. height: math.unit(534, "m")
  24190. },
  24191. ]
  24192. ))
  24193. characterMakers.push(() => makeCharacter(
  24194. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24195. {
  24196. front: {
  24197. height: math.unit(5 + 5 / 12, "feet"),
  24198. weight: math.unit(120, "lb"),
  24199. name: "Front",
  24200. image: {
  24201. source: "./media/characters/ari/front.svg",
  24202. extra: 714.5 / 682,
  24203. bottom: 8 / 722.5
  24204. }
  24205. },
  24206. },
  24207. [
  24208. {
  24209. name: "Normal",
  24210. height: math.unit(5 + 5 / 12, "feet")
  24211. },
  24212. {
  24213. name: "Macro",
  24214. height: math.unit(100, "feet"),
  24215. default: true
  24216. },
  24217. {
  24218. name: "Megamacro",
  24219. height: math.unit(100, "miles")
  24220. },
  24221. {
  24222. name: "Gigamacro",
  24223. height: math.unit(80000, "miles")
  24224. },
  24225. ]
  24226. ))
  24227. characterMakers.push(() => makeCharacter(
  24228. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24229. {
  24230. side: {
  24231. height: math.unit(9, "feet"),
  24232. weight: math.unit(400, "kg"),
  24233. name: "Side",
  24234. image: {
  24235. source: "./media/characters/bolt/side.svg",
  24236. extra: 1126 / 896,
  24237. bottom: 60 / 1187.3,
  24238. }
  24239. },
  24240. },
  24241. [
  24242. {
  24243. name: "Micro",
  24244. height: math.unit(5, "inches")
  24245. },
  24246. {
  24247. name: "Normal",
  24248. height: math.unit(9, "feet"),
  24249. default: true
  24250. },
  24251. {
  24252. name: "Macro",
  24253. height: math.unit(700, "feet")
  24254. },
  24255. {
  24256. name: "Max Size",
  24257. height: math.unit(1.52e22, "yottameters")
  24258. },
  24259. ]
  24260. ))
  24261. characterMakers.push(() => makeCharacter(
  24262. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24263. {
  24264. front: {
  24265. height: math.unit(4.53, "meters"),
  24266. weight: math.unit(3, "tons"),
  24267. name: "Front",
  24268. image: {
  24269. source: "./media/characters/draekon-sylviar/front.svg",
  24270. extra: 1228 / 1068,
  24271. bottom: 41 / 1270
  24272. }
  24273. },
  24274. tail: {
  24275. height: math.unit(1.772, "meter"),
  24276. name: "Tail",
  24277. image: {
  24278. source: "./media/characters/draekon-sylviar/tail.svg"
  24279. }
  24280. },
  24281. head: {
  24282. height: math.unit(1.331, "meter"),
  24283. name: "Head",
  24284. image: {
  24285. source: "./media/characters/draekon-sylviar/head.svg"
  24286. }
  24287. },
  24288. hand: {
  24289. height: math.unit(0.564, "meter"),
  24290. name: "Hand",
  24291. image: {
  24292. source: "./media/characters/draekon-sylviar/hand.svg"
  24293. }
  24294. },
  24295. foot: {
  24296. height: math.unit(0.621, "meter"),
  24297. name: "Foot",
  24298. image: {
  24299. source: "./media/characters/draekon-sylviar/foot.svg",
  24300. bottom: 32 / 324
  24301. }
  24302. },
  24303. dick: {
  24304. height: math.unit(61, "cm"),
  24305. name: "Dick",
  24306. image: {
  24307. source: "./media/characters/draekon-sylviar/dick.svg"
  24308. }
  24309. },
  24310. dickseparated: {
  24311. height: math.unit(61, "cm"),
  24312. name: "Dick-separated",
  24313. image: {
  24314. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24315. }
  24316. },
  24317. },
  24318. [
  24319. {
  24320. name: "Small",
  24321. height: math.unit(4.53 / 2, "meters"),
  24322. default: true
  24323. },
  24324. {
  24325. name: "Normal",
  24326. height: math.unit(4.53, "meters"),
  24327. default: true
  24328. },
  24329. {
  24330. name: "Large",
  24331. height: math.unit(4.53 * 2, "meters"),
  24332. },
  24333. ]
  24334. ))
  24335. characterMakers.push(() => makeCharacter(
  24336. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24337. {
  24338. front: {
  24339. height: math.unit(6 + 2 / 12, "feet"),
  24340. weight: math.unit(180, "lb"),
  24341. name: "Front",
  24342. image: {
  24343. source: "./media/characters/brawler/front.svg",
  24344. extra: 3301 / 3027,
  24345. bottom: 138 / 3439
  24346. }
  24347. },
  24348. },
  24349. [
  24350. {
  24351. name: "Normal",
  24352. height: math.unit(6 + 2 / 12, "feet"),
  24353. default: true
  24354. },
  24355. ]
  24356. ))
  24357. characterMakers.push(() => makeCharacter(
  24358. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24359. {
  24360. front: {
  24361. height: math.unit(11, "feet"),
  24362. weight: math.unit(1000, "lb"),
  24363. name: "Front",
  24364. image: {
  24365. source: "./media/characters/alex/front.svg",
  24366. bottom: 44.5 / 620
  24367. }
  24368. },
  24369. },
  24370. [
  24371. {
  24372. name: "Micro",
  24373. height: math.unit(5, "inches")
  24374. },
  24375. {
  24376. name: "Normal",
  24377. height: math.unit(11, "feet"),
  24378. default: true
  24379. },
  24380. {
  24381. name: "Macro",
  24382. height: math.unit(9.5e9, "feet")
  24383. },
  24384. {
  24385. name: "Max Size",
  24386. height: math.unit(1.4e283, "yottameters")
  24387. },
  24388. ]
  24389. ))
  24390. characterMakers.push(() => makeCharacter(
  24391. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24392. {
  24393. female: {
  24394. height: math.unit(29.9, "m"),
  24395. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24396. name: "Female",
  24397. image: {
  24398. source: "./media/characters/zenari/female.svg",
  24399. extra: 3281.6 / 3217,
  24400. bottom: 72.2 / 3353
  24401. }
  24402. },
  24403. male: {
  24404. height: math.unit(27.7, "m"),
  24405. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24406. name: "Male",
  24407. image: {
  24408. source: "./media/characters/zenari/male.svg",
  24409. extra: 3008 / 2991,
  24410. bottom: 54.6 / 3069
  24411. }
  24412. },
  24413. },
  24414. [
  24415. {
  24416. name: "Macro",
  24417. height: math.unit(29.7, "meters"),
  24418. default: true
  24419. },
  24420. ]
  24421. ))
  24422. characterMakers.push(() => makeCharacter(
  24423. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24424. {
  24425. female: {
  24426. height: math.unit(23.8, "m"),
  24427. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24428. name: "Female",
  24429. image: {
  24430. source: "./media/characters/mactarian/female.svg",
  24431. extra: 2662 / 2569,
  24432. bottom: 73 / 2736
  24433. }
  24434. },
  24435. male: {
  24436. height: math.unit(23.8, "m"),
  24437. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24438. name: "Male",
  24439. image: {
  24440. source: "./media/characters/mactarian/male.svg",
  24441. extra: 2673 / 2600,
  24442. bottom: 76 / 2750
  24443. }
  24444. },
  24445. },
  24446. [
  24447. {
  24448. name: "Macro",
  24449. height: math.unit(23.8, "meters"),
  24450. default: true
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24456. {
  24457. female: {
  24458. height: math.unit(19.3, "m"),
  24459. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24460. name: "Female",
  24461. image: {
  24462. source: "./media/characters/umok/female.svg",
  24463. extra: 2186 / 2078,
  24464. bottom: 87 / 2277
  24465. }
  24466. },
  24467. male: {
  24468. height: math.unit(19.5, "m"),
  24469. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24470. name: "Male",
  24471. image: {
  24472. source: "./media/characters/umok/male.svg",
  24473. extra: 2233 / 2140,
  24474. bottom: 24.4 / 2258
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Macro",
  24481. height: math.unit(19.3, "meters"),
  24482. default: true
  24483. },
  24484. ]
  24485. ))
  24486. characterMakers.push(() => makeCharacter(
  24487. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24488. {
  24489. female: {
  24490. height: math.unit(26.15, "m"),
  24491. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24492. name: "Female",
  24493. image: {
  24494. source: "./media/characters/joraxian/female.svg",
  24495. extra: 2912 / 2824,
  24496. bottom: 36 / 2956
  24497. }
  24498. },
  24499. male: {
  24500. height: math.unit(25.4, "m"),
  24501. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24502. name: "Male",
  24503. image: {
  24504. source: "./media/characters/joraxian/male.svg",
  24505. extra: 2877 / 2721,
  24506. bottom: 82 / 2967
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Macro",
  24513. height: math.unit(26.15, "meters"),
  24514. default: true
  24515. },
  24516. ]
  24517. ))
  24518. characterMakers.push(() => makeCharacter(
  24519. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24520. {
  24521. female: {
  24522. height: math.unit(21.6, "m"),
  24523. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24524. name: "Female",
  24525. image: {
  24526. source: "./media/characters/sthara/female.svg",
  24527. extra: 2516 / 2347,
  24528. bottom: 21.5 / 2537
  24529. }
  24530. },
  24531. male: {
  24532. height: math.unit(24, "m"),
  24533. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24534. name: "Male",
  24535. image: {
  24536. source: "./media/characters/sthara/male.svg",
  24537. extra: 2732 / 2607,
  24538. bottom: 23 / 2732
  24539. }
  24540. },
  24541. },
  24542. [
  24543. {
  24544. name: "Macro",
  24545. height: math.unit(21.6, "meters"),
  24546. default: true
  24547. },
  24548. ]
  24549. ))
  24550. characterMakers.push(() => makeCharacter(
  24551. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24552. {
  24553. front: {
  24554. height: math.unit(6 + 4 / 12, "feet"),
  24555. weight: math.unit(175, "lb"),
  24556. name: "Front",
  24557. image: {
  24558. source: "./media/characters/luka-bryzant/front.svg",
  24559. extra: 311 / 289,
  24560. bottom: 4 / 315
  24561. }
  24562. },
  24563. back: {
  24564. height: math.unit(6 + 4 / 12, "feet"),
  24565. weight: math.unit(175, "lb"),
  24566. name: "Back",
  24567. image: {
  24568. source: "./media/characters/luka-bryzant/back.svg",
  24569. extra: 311 / 289,
  24570. bottom: 3.8 / 313.7
  24571. }
  24572. },
  24573. },
  24574. [
  24575. {
  24576. name: "Micro",
  24577. height: math.unit(10, "inches")
  24578. },
  24579. {
  24580. name: "Normal",
  24581. height: math.unit(6 + 4 / 12, "feet"),
  24582. default: true
  24583. },
  24584. {
  24585. name: "Large",
  24586. height: math.unit(12, "feet")
  24587. },
  24588. ]
  24589. ))
  24590. characterMakers.push(() => makeCharacter(
  24591. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24592. {
  24593. front: {
  24594. height: math.unit(5 + 7 / 12, "feet"),
  24595. weight: math.unit(185, "lb"),
  24596. name: "Front",
  24597. image: {
  24598. source: "./media/characters/aman-aquila/front.svg",
  24599. extra: 1013 / 976,
  24600. bottom: 45.6 / 1057
  24601. }
  24602. },
  24603. side: {
  24604. height: math.unit(5 + 7 / 12, "feet"),
  24605. weight: math.unit(185, "lb"),
  24606. name: "Side",
  24607. image: {
  24608. source: "./media/characters/aman-aquila/side.svg",
  24609. extra: 1054 / 1011,
  24610. bottom: 15 / 1070
  24611. }
  24612. },
  24613. back: {
  24614. height: math.unit(5 + 7 / 12, "feet"),
  24615. weight: math.unit(185, "lb"),
  24616. name: "Back",
  24617. image: {
  24618. source: "./media/characters/aman-aquila/back.svg",
  24619. extra: 1026 / 970,
  24620. bottom: 12 / 1039
  24621. }
  24622. },
  24623. head: {
  24624. height: math.unit(1.211, "feet"),
  24625. name: "Head",
  24626. image: {
  24627. source: "./media/characters/aman-aquila/head.svg",
  24628. }
  24629. },
  24630. },
  24631. [
  24632. {
  24633. name: "Minimicro",
  24634. height: math.unit(0.057, "inches")
  24635. },
  24636. {
  24637. name: "Micro",
  24638. height: math.unit(7, "inches")
  24639. },
  24640. {
  24641. name: "Mini",
  24642. height: math.unit(3 + 7 / 12, "feet")
  24643. },
  24644. {
  24645. name: "Normal",
  24646. height: math.unit(5 + 7 / 12, "feet"),
  24647. default: true
  24648. },
  24649. {
  24650. name: "Macro",
  24651. height: math.unit(157 + 7 / 12, "feet")
  24652. },
  24653. {
  24654. name: "Megamacro",
  24655. height: math.unit(1557 + 7 / 12, "feet")
  24656. },
  24657. {
  24658. name: "Gigamacro",
  24659. height: math.unit(15557 + 7 / 12, "feet")
  24660. },
  24661. ]
  24662. ))
  24663. characterMakers.push(() => makeCharacter(
  24664. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24665. {
  24666. front: {
  24667. height: math.unit(3 + 2 / 12, "inches"),
  24668. weight: math.unit(0.3, "ounces"),
  24669. name: "Front",
  24670. image: {
  24671. source: "./media/characters/hiphae/front.svg",
  24672. extra: 1931 / 1683,
  24673. bottom: 24 / 1955
  24674. }
  24675. },
  24676. },
  24677. [
  24678. {
  24679. name: "Normal",
  24680. height: math.unit(3 + 1 / 2, "inches"),
  24681. default: true
  24682. },
  24683. ]
  24684. ))
  24685. characterMakers.push(() => makeCharacter(
  24686. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24687. {
  24688. front: {
  24689. height: math.unit(5 + 10 / 12, "feet"),
  24690. weight: math.unit(165, "lb"),
  24691. name: "Front",
  24692. image: {
  24693. source: "./media/characters/nicky/front.svg",
  24694. extra: 3144 / 2886,
  24695. bottom: 45.6 / 3192
  24696. }
  24697. },
  24698. back: {
  24699. height: math.unit(5 + 10 / 12, "feet"),
  24700. weight: math.unit(165, "lb"),
  24701. name: "Back",
  24702. image: {
  24703. source: "./media/characters/nicky/back.svg",
  24704. extra: 3055 / 2804,
  24705. bottom: 28.4 / 3087
  24706. }
  24707. },
  24708. frontclothed: {
  24709. height: math.unit(5 + 10 / 12, "feet"),
  24710. weight: math.unit(165, "lb"),
  24711. name: "Front-clothed",
  24712. image: {
  24713. source: "./media/characters/nicky/front-clothed.svg",
  24714. extra: 3184.9 / 2926.9,
  24715. bottom: 86.5 / 3239.9
  24716. }
  24717. },
  24718. foot: {
  24719. height: math.unit(1.16, "feet"),
  24720. name: "Foot",
  24721. image: {
  24722. source: "./media/characters/nicky/foot.svg"
  24723. }
  24724. },
  24725. feet: {
  24726. height: math.unit(1.34, "feet"),
  24727. name: "Feet",
  24728. image: {
  24729. source: "./media/characters/nicky/feet.svg"
  24730. }
  24731. },
  24732. maw: {
  24733. height: math.unit(0.9, "feet"),
  24734. name: "Maw",
  24735. image: {
  24736. source: "./media/characters/nicky/maw.svg"
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(5 + 10 / 12, "feet"),
  24744. default: true
  24745. },
  24746. {
  24747. name: "Macro",
  24748. height: math.unit(60, "feet")
  24749. },
  24750. {
  24751. name: "Megamacro",
  24752. height: math.unit(1, "mile")
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24758. {
  24759. side: {
  24760. height: math.unit(10, "feet"),
  24761. weight: math.unit(600, "lb"),
  24762. name: "Side",
  24763. image: {
  24764. source: "./media/characters/blair/side.svg",
  24765. bottom: 16.6 / 475,
  24766. extra: 458 / 431
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Micro",
  24773. height: math.unit(8, "inches")
  24774. },
  24775. {
  24776. name: "Normal",
  24777. height: math.unit(10, "feet"),
  24778. default: true
  24779. },
  24780. {
  24781. name: "Macro",
  24782. height: math.unit(180, "feet")
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24788. {
  24789. front: {
  24790. height: math.unit(5 + 4 / 12, "feet"),
  24791. weight: math.unit(125, "lb"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/fisher/front.svg",
  24795. extra: 444 / 390,
  24796. bottom: 2 / 444.8
  24797. }
  24798. },
  24799. },
  24800. [
  24801. {
  24802. name: "Micro",
  24803. height: math.unit(4, "inches")
  24804. },
  24805. {
  24806. name: "Normal",
  24807. height: math.unit(5 + 4 / 12, "feet"),
  24808. default: true
  24809. },
  24810. {
  24811. name: "Macro",
  24812. height: math.unit(100, "feet")
  24813. },
  24814. ]
  24815. ))
  24816. characterMakers.push(() => makeCharacter(
  24817. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24818. {
  24819. front: {
  24820. height: math.unit(6.71, "feet"),
  24821. weight: math.unit(200, "lb"),
  24822. capacity: math.unit(1000000, "people"),
  24823. name: "Front",
  24824. image: {
  24825. source: "./media/characters/gliss/front.svg",
  24826. extra: 2347 / 2231,
  24827. bottom: 113 / 2462
  24828. }
  24829. },
  24830. hammerspaceSize: {
  24831. height: math.unit(6.71 * 717, "feet"),
  24832. weight: math.unit(200, "lb"),
  24833. capacity: math.unit(1000000, "people"),
  24834. name: "Hammerspace Size",
  24835. image: {
  24836. source: "./media/characters/gliss/front.svg",
  24837. extra: 2347 / 2231,
  24838. bottom: 113 / 2462
  24839. }
  24840. },
  24841. },
  24842. [
  24843. {
  24844. name: "Normal",
  24845. height: math.unit(6.71, "feet"),
  24846. default: true
  24847. },
  24848. ]
  24849. ))
  24850. characterMakers.push(() => makeCharacter(
  24851. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24852. {
  24853. side: {
  24854. height: math.unit(1.44, "m"),
  24855. weight: math.unit(80, "kg"),
  24856. name: "Side",
  24857. image: {
  24858. source: "./media/characters/dune-anderson/side.svg",
  24859. bottom: 49 / 1426
  24860. }
  24861. },
  24862. },
  24863. [
  24864. {
  24865. name: "Wolf-sized",
  24866. height: math.unit(1.44, "meters")
  24867. },
  24868. {
  24869. name: "Normal",
  24870. height: math.unit(5.05, "meters"),
  24871. default: true
  24872. },
  24873. {
  24874. name: "Big",
  24875. height: math.unit(14.4, "meters")
  24876. },
  24877. {
  24878. name: "Huge",
  24879. height: math.unit(144, "meters")
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24885. {
  24886. front: {
  24887. height: math.unit(7, "feet"),
  24888. weight: math.unit(425, "lb"),
  24889. name: "Front",
  24890. image: {
  24891. source: "./media/characters/hind/front.svg",
  24892. extra: 2091 / 1860,
  24893. bottom: 129 / 2220
  24894. }
  24895. },
  24896. back: {
  24897. height: math.unit(7, "feet"),
  24898. weight: math.unit(425, "lb"),
  24899. name: "Back",
  24900. image: {
  24901. source: "./media/characters/hind/back.svg",
  24902. extra: 2091 / 1860,
  24903. bottom: 24.6 / 2309
  24904. }
  24905. },
  24906. tail: {
  24907. height: math.unit(2.8, "feet"),
  24908. name: "Tail",
  24909. image: {
  24910. source: "./media/characters/hind/tail.svg"
  24911. }
  24912. },
  24913. head: {
  24914. height: math.unit(2.55, "feet"),
  24915. name: "Head",
  24916. image: {
  24917. source: "./media/characters/hind/head.svg"
  24918. }
  24919. },
  24920. },
  24921. [
  24922. {
  24923. name: "XS",
  24924. height: math.unit(0.7, "feet")
  24925. },
  24926. {
  24927. name: "Normal",
  24928. height: math.unit(7, "feet"),
  24929. default: true
  24930. },
  24931. {
  24932. name: "XL",
  24933. height: math.unit(70, "feet")
  24934. },
  24935. ]
  24936. ))
  24937. characterMakers.push(() => makeCharacter(
  24938. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24939. {
  24940. front: {
  24941. height: math.unit(2.1, "meters"),
  24942. weight: math.unit(150, "lb"),
  24943. name: "Front",
  24944. image: {
  24945. source: "./media/characters/tharquench-sizestealer/front.svg",
  24946. extra: 1605/1470,
  24947. bottom: 36/1641
  24948. }
  24949. },
  24950. frontAlt: {
  24951. height: math.unit(2.1, "meters"),
  24952. weight: math.unit(150, "lb"),
  24953. name: "Front (Alt)",
  24954. image: {
  24955. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24956. extra: 2318 / 2063,
  24957. bottom: 93.4 / 2410
  24958. }
  24959. },
  24960. },
  24961. [
  24962. {
  24963. name: "Nano",
  24964. height: math.unit(1, "mm")
  24965. },
  24966. {
  24967. name: "Micro",
  24968. height: math.unit(1, "cm")
  24969. },
  24970. {
  24971. name: "Normal",
  24972. height: math.unit(2.1, "meters"),
  24973. default: true
  24974. },
  24975. ]
  24976. ))
  24977. characterMakers.push(() => makeCharacter(
  24978. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24979. {
  24980. front: {
  24981. height: math.unit(7 + 5 / 12, "feet"),
  24982. weight: math.unit(357, "lb"),
  24983. name: "Front",
  24984. image: {
  24985. source: "./media/characters/solex-draconov/front.svg",
  24986. extra: 1993 / 1865,
  24987. bottom: 117 / 2111
  24988. }
  24989. },
  24990. },
  24991. [
  24992. {
  24993. name: "Natural Height",
  24994. height: math.unit(7 + 5 / 12, "feet"),
  24995. default: true
  24996. },
  24997. {
  24998. name: "Macro",
  24999. height: math.unit(350, "feet")
  25000. },
  25001. {
  25002. name: "Macro+",
  25003. height: math.unit(1000, "feet")
  25004. },
  25005. {
  25006. name: "Megamacro",
  25007. height: math.unit(20, "km")
  25008. },
  25009. {
  25010. name: "Megamacro+",
  25011. height: math.unit(1000, "km")
  25012. },
  25013. {
  25014. name: "Gigamacro",
  25015. height: math.unit(2.5, "Gm")
  25016. },
  25017. {
  25018. name: "Teramacro",
  25019. height: math.unit(15, "Tm")
  25020. },
  25021. {
  25022. name: "Galactic",
  25023. height: math.unit(30, "Zm")
  25024. },
  25025. {
  25026. name: "Universal",
  25027. height: math.unit(21000, "Ym")
  25028. },
  25029. {
  25030. name: "Omniversal",
  25031. height: math.unit(9.861e50, "Ym")
  25032. },
  25033. {
  25034. name: "Existential",
  25035. height: math.unit(1e300, "meters")
  25036. },
  25037. ]
  25038. ))
  25039. characterMakers.push(() => makeCharacter(
  25040. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25041. {
  25042. side: {
  25043. height: math.unit(25, "feet"),
  25044. weight: math.unit(90000, "lb"),
  25045. name: "Side",
  25046. image: {
  25047. source: "./media/characters/mandarax/side.svg",
  25048. extra: 614 / 332,
  25049. bottom: 55 / 630
  25050. }
  25051. },
  25052. head: {
  25053. height: math.unit(11.4, "feet"),
  25054. name: "Head",
  25055. image: {
  25056. source: "./media/characters/mandarax/head.svg"
  25057. }
  25058. },
  25059. belly: {
  25060. height: math.unit(33, "feet"),
  25061. name: "Belly",
  25062. capacity: math.unit(500, "people"),
  25063. image: {
  25064. source: "./media/characters/mandarax/belly.svg"
  25065. }
  25066. },
  25067. dick: {
  25068. height: math.unit(8.46, "feet"),
  25069. name: "Dick",
  25070. image: {
  25071. source: "./media/characters/mandarax/dick.svg"
  25072. }
  25073. },
  25074. top: {
  25075. height: math.unit(28, "meters"),
  25076. name: "Top",
  25077. image: {
  25078. source: "./media/characters/mandarax/top.svg"
  25079. }
  25080. },
  25081. },
  25082. [
  25083. {
  25084. name: "Normal",
  25085. height: math.unit(25, "feet"),
  25086. default: true
  25087. },
  25088. ]
  25089. ))
  25090. characterMakers.push(() => makeCharacter(
  25091. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25092. {
  25093. front: {
  25094. height: math.unit(5, "feet"),
  25095. weight: math.unit(90, "lb"),
  25096. name: "Front",
  25097. image: {
  25098. source: "./media/characters/pixil/front.svg",
  25099. extra: 2000 / 1618,
  25100. bottom: 12.3 / 2011
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Normal",
  25107. height: math.unit(5, "feet"),
  25108. default: true
  25109. },
  25110. {
  25111. name: "Megamacro",
  25112. height: math.unit(10, "miles"),
  25113. },
  25114. ]
  25115. ))
  25116. characterMakers.push(() => makeCharacter(
  25117. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25118. {
  25119. front: {
  25120. height: math.unit(7 + 2 / 12, "feet"),
  25121. weight: math.unit(200, "lb"),
  25122. name: "Front",
  25123. image: {
  25124. source: "./media/characters/angel/front.svg",
  25125. extra: 1830 / 1737,
  25126. bottom: 22.6 / 1854,
  25127. }
  25128. },
  25129. },
  25130. [
  25131. {
  25132. name: "Normal",
  25133. height: math.unit(7 + 2 / 12, "feet"),
  25134. default: true
  25135. },
  25136. {
  25137. name: "Macro",
  25138. height: math.unit(1000, "feet")
  25139. },
  25140. {
  25141. name: "Megamacro",
  25142. height: math.unit(2, "miles")
  25143. },
  25144. {
  25145. name: "Gigamacro",
  25146. height: math.unit(20, "earths")
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25152. {
  25153. front: {
  25154. height: math.unit(5, "feet"),
  25155. weight: math.unit(180, "lb"),
  25156. name: "Front",
  25157. image: {
  25158. source: "./media/characters/mekana/front.svg",
  25159. extra: 1671 / 1605,
  25160. bottom: 3.5 / 1691
  25161. }
  25162. },
  25163. side: {
  25164. height: math.unit(5, "feet"),
  25165. weight: math.unit(180, "lb"),
  25166. name: "Side",
  25167. image: {
  25168. source: "./media/characters/mekana/side.svg",
  25169. extra: 1671 / 1605,
  25170. bottom: 3.5 / 1691
  25171. }
  25172. },
  25173. back: {
  25174. height: math.unit(5, "feet"),
  25175. weight: math.unit(180, "lb"),
  25176. name: "Back",
  25177. image: {
  25178. source: "./media/characters/mekana/back.svg",
  25179. extra: 1671 / 1605,
  25180. bottom: 3.5 / 1691
  25181. }
  25182. },
  25183. },
  25184. [
  25185. {
  25186. name: "Normal",
  25187. height: math.unit(5, "feet"),
  25188. default: true
  25189. },
  25190. ]
  25191. ))
  25192. characterMakers.push(() => makeCharacter(
  25193. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25194. {
  25195. front: {
  25196. height: math.unit(4 + 6 / 12, "feet"),
  25197. weight: math.unit(80, "lb"),
  25198. name: "Front",
  25199. image: {
  25200. source: "./media/characters/pixie/front.svg",
  25201. extra: 1924 / 1825,
  25202. bottom: 22.4 / 1946
  25203. }
  25204. },
  25205. },
  25206. [
  25207. {
  25208. name: "Normal",
  25209. height: math.unit(4 + 6 / 12, "feet"),
  25210. default: true
  25211. },
  25212. {
  25213. name: "Macro",
  25214. height: math.unit(40, "feet")
  25215. },
  25216. ]
  25217. ))
  25218. characterMakers.push(() => makeCharacter(
  25219. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25220. {
  25221. front: {
  25222. height: math.unit(2.1, "meters"),
  25223. weight: math.unit(200, "lb"),
  25224. name: "Front",
  25225. image: {
  25226. source: "./media/characters/the-lascivious/front.svg",
  25227. extra: 1 / 0.893,
  25228. bottom: 3.5 / 573.7
  25229. }
  25230. },
  25231. },
  25232. [
  25233. {
  25234. name: "Human Scale",
  25235. height: math.unit(2.1, "meters")
  25236. },
  25237. {
  25238. name: "Wolxi Scale",
  25239. height: math.unit(46.2, "m"),
  25240. default: true
  25241. },
  25242. {
  25243. name: "Boinker of Buildings",
  25244. height: math.unit(10, "km")
  25245. },
  25246. {
  25247. name: "Shagger of Skyscrapers",
  25248. height: math.unit(40, "km")
  25249. },
  25250. {
  25251. name: "Banger of Boroughs",
  25252. height: math.unit(4000, "km")
  25253. },
  25254. {
  25255. name: "Screwer of States",
  25256. height: math.unit(100000, "km")
  25257. },
  25258. {
  25259. name: "Pounder of Planets",
  25260. height: math.unit(2000000, "km")
  25261. },
  25262. ]
  25263. ))
  25264. characterMakers.push(() => makeCharacter(
  25265. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25266. {
  25267. front: {
  25268. height: math.unit(6, "feet"),
  25269. weight: math.unit(150, "lb"),
  25270. name: "Front",
  25271. image: {
  25272. source: "./media/characters/aj/front.svg",
  25273. extra: 2039 / 1562,
  25274. bottom: 40 / 2079
  25275. }
  25276. },
  25277. },
  25278. [
  25279. {
  25280. name: "Normal",
  25281. height: math.unit(11 + 6 / 12, "feet"),
  25282. default: true
  25283. },
  25284. {
  25285. name: "Megamacro",
  25286. height: math.unit(60, "megameters")
  25287. },
  25288. ]
  25289. ))
  25290. characterMakers.push(() => makeCharacter(
  25291. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25292. {
  25293. side: {
  25294. height: math.unit(31 + 8 / 12, "feet"),
  25295. weight: math.unit(75000, "kg"),
  25296. name: "Side",
  25297. image: {
  25298. source: "./media/characters/koros/side.svg",
  25299. extra: 1442 / 1297,
  25300. bottom: 122.7 / 1562
  25301. }
  25302. },
  25303. dicksKingsCrown: {
  25304. height: math.unit(6, "feet"),
  25305. name: "Dicks (King's Crown)",
  25306. image: {
  25307. source: "./media/characters/koros/dicks-kings-crown.svg"
  25308. }
  25309. },
  25310. dicksTailSet: {
  25311. height: math.unit(3, "feet"),
  25312. name: "Dicks (Tail Set)",
  25313. image: {
  25314. source: "./media/characters/koros/dicks-tail-set.svg"
  25315. }
  25316. },
  25317. dickCumming: {
  25318. height: math.unit(7.98, "feet"),
  25319. name: "Dick (Cumming)",
  25320. image: {
  25321. source: "./media/characters/koros/dick-cumming.svg"
  25322. }
  25323. },
  25324. dicksBack: {
  25325. height: math.unit(5.9, "feet"),
  25326. name: "Dicks (Back)",
  25327. image: {
  25328. source: "./media/characters/koros/dicks-back.svg"
  25329. }
  25330. },
  25331. dicksFront: {
  25332. height: math.unit(3.72, "feet"),
  25333. name: "Dicks (Front)",
  25334. image: {
  25335. source: "./media/characters/koros/dicks-front.svg"
  25336. }
  25337. },
  25338. dicksPeeking: {
  25339. height: math.unit(3.0, "feet"),
  25340. name: "Dicks (Peeking)",
  25341. image: {
  25342. source: "./media/characters/koros/dicks-peeking.svg"
  25343. }
  25344. },
  25345. eye: {
  25346. height: math.unit(1.7, "feet"),
  25347. name: "Eye",
  25348. image: {
  25349. source: "./media/characters/koros/eye.svg"
  25350. }
  25351. },
  25352. headFront: {
  25353. height: math.unit(11.69, "feet"),
  25354. name: "Head (Front)",
  25355. image: {
  25356. source: "./media/characters/koros/head-front.svg"
  25357. }
  25358. },
  25359. headSide: {
  25360. height: math.unit(14, "feet"),
  25361. name: "Head (Side)",
  25362. image: {
  25363. source: "./media/characters/koros/head-side.svg"
  25364. }
  25365. },
  25366. leg: {
  25367. height: math.unit(17, "feet"),
  25368. name: "Leg",
  25369. image: {
  25370. source: "./media/characters/koros/leg.svg"
  25371. }
  25372. },
  25373. mawSide: {
  25374. height: math.unit(12.8, "feet"),
  25375. name: "Maw (Side)",
  25376. image: {
  25377. source: "./media/characters/koros/maw-side.svg"
  25378. }
  25379. },
  25380. mawSpitting: {
  25381. height: math.unit(17, "feet"),
  25382. name: "Maw (Spitting)",
  25383. image: {
  25384. source: "./media/characters/koros/maw-spitting.svg"
  25385. }
  25386. },
  25387. slit: {
  25388. height: math.unit(2.8, "feet"),
  25389. name: "Slit",
  25390. image: {
  25391. source: "./media/characters/koros/slit.svg"
  25392. }
  25393. },
  25394. stomach: {
  25395. height: math.unit(6.8, "feet"),
  25396. capacity: math.unit(20, "people"),
  25397. name: "Stomach",
  25398. image: {
  25399. source: "./media/characters/koros/stomach.svg"
  25400. }
  25401. },
  25402. wingspanBottom: {
  25403. height: math.unit(114, "feet"),
  25404. name: "Wingspan (Bottom)",
  25405. image: {
  25406. source: "./media/characters/koros/wingspan-bottom.svg"
  25407. }
  25408. },
  25409. wingspanTop: {
  25410. height: math.unit(104, "feet"),
  25411. name: "Wingspan (Top)",
  25412. image: {
  25413. source: "./media/characters/koros/wingspan-top.svg"
  25414. }
  25415. },
  25416. },
  25417. [
  25418. {
  25419. name: "Normal",
  25420. height: math.unit(31 + 8 / 12, "feet"),
  25421. default: true
  25422. },
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25427. {
  25428. front: {
  25429. height: math.unit(18 + 5 / 12, "feet"),
  25430. weight: math.unit(3750, "kg"),
  25431. name: "Front",
  25432. image: {
  25433. source: "./media/characters/vexx/front.svg",
  25434. extra: 426 / 396,
  25435. bottom: 31.5 / 458
  25436. }
  25437. },
  25438. maw: {
  25439. height: math.unit(6, "feet"),
  25440. name: "Maw",
  25441. image: {
  25442. source: "./media/characters/vexx/maw.svg"
  25443. }
  25444. },
  25445. },
  25446. [
  25447. {
  25448. name: "Normal",
  25449. height: math.unit(18 + 5 / 12, "feet"),
  25450. default: true
  25451. },
  25452. ]
  25453. ))
  25454. characterMakers.push(() => makeCharacter(
  25455. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25456. {
  25457. front: {
  25458. height: math.unit(17 + 6 / 12, "feet"),
  25459. weight: math.unit(150, "lb"),
  25460. name: "Front",
  25461. image: {
  25462. source: "./media/characters/baadra/front.svg",
  25463. extra: 3137 / 2890,
  25464. bottom: 168.4 / 3305
  25465. }
  25466. },
  25467. back: {
  25468. height: math.unit(17 + 6 / 12, "feet"),
  25469. weight: math.unit(150, "lb"),
  25470. name: "Back",
  25471. image: {
  25472. source: "./media/characters/baadra/back.svg",
  25473. extra: 3142 / 2890,
  25474. bottom: 220 / 3371
  25475. }
  25476. },
  25477. head: {
  25478. height: math.unit(5.45, "feet"),
  25479. name: "Head",
  25480. image: {
  25481. source: "./media/characters/baadra/head.svg"
  25482. }
  25483. },
  25484. headAngry: {
  25485. height: math.unit(4.95, "feet"),
  25486. name: "Head (Angry)",
  25487. image: {
  25488. source: "./media/characters/baadra/head-angry.svg"
  25489. }
  25490. },
  25491. headOpen: {
  25492. height: math.unit(6, "feet"),
  25493. name: "Head (Open)",
  25494. image: {
  25495. source: "./media/characters/baadra/head-open.svg"
  25496. }
  25497. },
  25498. },
  25499. [
  25500. {
  25501. name: "Normal",
  25502. height: math.unit(17 + 6 / 12, "feet"),
  25503. default: true
  25504. },
  25505. ]
  25506. ))
  25507. characterMakers.push(() => makeCharacter(
  25508. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25509. {
  25510. front: {
  25511. height: math.unit(7 + 3 / 12, "feet"),
  25512. weight: math.unit(180, "lb"),
  25513. name: "Front",
  25514. image: {
  25515. source: "./media/characters/juri/front.svg",
  25516. extra: 1401 / 1237,
  25517. bottom: 18.5 / 1418
  25518. }
  25519. },
  25520. side: {
  25521. height: math.unit(7 + 3 / 12, "feet"),
  25522. weight: math.unit(180, "lb"),
  25523. name: "Side",
  25524. image: {
  25525. source: "./media/characters/juri/side.svg",
  25526. extra: 1424 / 1242,
  25527. bottom: 18.5 / 1447
  25528. }
  25529. },
  25530. sitting: {
  25531. height: math.unit(6, "feet"),
  25532. weight: math.unit(180, "lb"),
  25533. name: "Sitting",
  25534. image: {
  25535. source: "./media/characters/juri/sitting.svg",
  25536. extra: 1270 / 1143,
  25537. bottom: 100 / 1343
  25538. }
  25539. },
  25540. back: {
  25541. height: math.unit(7 + 3 / 12, "feet"),
  25542. weight: math.unit(180, "lb"),
  25543. name: "Back",
  25544. image: {
  25545. source: "./media/characters/juri/back.svg",
  25546. extra: 1377 / 1240,
  25547. bottom: 23.7 / 1405
  25548. }
  25549. },
  25550. maw: {
  25551. height: math.unit(2.8, "feet"),
  25552. name: "Maw",
  25553. image: {
  25554. source: "./media/characters/juri/maw.svg"
  25555. }
  25556. },
  25557. stomach: {
  25558. height: math.unit(0.89, "feet"),
  25559. capacity: math.unit(4, "liters"),
  25560. name: "Stomach",
  25561. image: {
  25562. source: "./media/characters/juri/stomach.svg"
  25563. }
  25564. },
  25565. },
  25566. [
  25567. {
  25568. name: "Normal",
  25569. height: math.unit(7 + 3 / 12, "feet"),
  25570. default: true
  25571. },
  25572. ]
  25573. ))
  25574. characterMakers.push(() => makeCharacter(
  25575. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25576. {
  25577. fox: {
  25578. height: math.unit(5 + 6 / 12, "feet"),
  25579. weight: math.unit(140, "lb"),
  25580. name: "Fox",
  25581. image: {
  25582. source: "./media/characters/maxene-sita/fox.svg",
  25583. extra: 146 / 138,
  25584. bottom: 2.1 / 148.19
  25585. }
  25586. },
  25587. foxLaying: {
  25588. height: math.unit(1.70, "feet"),
  25589. weight: math.unit(140, "lb"),
  25590. name: "Fox (Laying)",
  25591. image: {
  25592. source: "./media/characters/maxene-sita/fox-laying.svg",
  25593. extra: 910 / 572,
  25594. bottom: 71 / 981
  25595. }
  25596. },
  25597. kitsune: {
  25598. height: math.unit(10, "feet"),
  25599. weight: math.unit(800, "lb"),
  25600. name: "Kitsune",
  25601. image: {
  25602. source: "./media/characters/maxene-sita/kitsune.svg",
  25603. extra: 185 / 176,
  25604. bottom: 4.7 / 189.9
  25605. }
  25606. },
  25607. hellhound: {
  25608. height: math.unit(10, "feet"),
  25609. weight: math.unit(700, "lb"),
  25610. name: "Hellhound",
  25611. image: {
  25612. source: "./media/characters/maxene-sita/hellhound.svg",
  25613. extra: 1600 / 1545,
  25614. bottom: 81 / 1681
  25615. }
  25616. },
  25617. },
  25618. [
  25619. {
  25620. name: "Normal",
  25621. height: math.unit(5 + 6 / 12, "feet"),
  25622. default: true
  25623. },
  25624. ]
  25625. ))
  25626. characterMakers.push(() => makeCharacter(
  25627. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25628. {
  25629. front: {
  25630. height: math.unit(3 + 4 / 12, "feet"),
  25631. weight: math.unit(70, "lb"),
  25632. name: "Front",
  25633. image: {
  25634. source: "./media/characters/maia/front.svg",
  25635. extra: 227 / 219.5,
  25636. bottom: 40 / 267
  25637. }
  25638. },
  25639. back: {
  25640. height: math.unit(3 + 4 / 12, "feet"),
  25641. weight: math.unit(70, "lb"),
  25642. name: "Back",
  25643. image: {
  25644. source: "./media/characters/maia/back.svg",
  25645. extra: 237 / 225
  25646. }
  25647. },
  25648. },
  25649. [
  25650. {
  25651. name: "Normal",
  25652. height: math.unit(3 + 4 / 12, "feet"),
  25653. default: true
  25654. },
  25655. ]
  25656. ))
  25657. characterMakers.push(() => makeCharacter(
  25658. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25659. {
  25660. front: {
  25661. height: math.unit(5 + 10 / 12, "feet"),
  25662. weight: math.unit(197, "lb"),
  25663. name: "Front",
  25664. image: {
  25665. source: "./media/characters/jabaro/front.svg",
  25666. extra: 225 / 216,
  25667. bottom: 5.06 / 230
  25668. }
  25669. },
  25670. back: {
  25671. height: math.unit(5 + 10 / 12, "feet"),
  25672. weight: math.unit(197, "lb"),
  25673. name: "Back",
  25674. image: {
  25675. source: "./media/characters/jabaro/back.svg",
  25676. extra: 225 / 219,
  25677. bottom: 1.9 / 227
  25678. }
  25679. },
  25680. },
  25681. [
  25682. {
  25683. name: "Normal",
  25684. height: math.unit(5 + 10 / 12, "feet"),
  25685. default: true
  25686. },
  25687. ]
  25688. ))
  25689. characterMakers.push(() => makeCharacter(
  25690. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25691. {
  25692. front: {
  25693. height: math.unit(5 + 8 / 12, "feet"),
  25694. weight: math.unit(139, "lb"),
  25695. name: "Front",
  25696. image: {
  25697. source: "./media/characters/risa/front.svg",
  25698. extra: 270 / 260,
  25699. bottom: 11.2 / 282
  25700. }
  25701. },
  25702. back: {
  25703. height: math.unit(5 + 8 / 12, "feet"),
  25704. weight: math.unit(139, "lb"),
  25705. name: "Back",
  25706. image: {
  25707. source: "./media/characters/risa/back.svg",
  25708. extra: 264 / 255,
  25709. bottom: 4 / 268
  25710. }
  25711. },
  25712. },
  25713. [
  25714. {
  25715. name: "Normal",
  25716. height: math.unit(5 + 8 / 12, "feet"),
  25717. default: true
  25718. },
  25719. ]
  25720. ))
  25721. characterMakers.push(() => makeCharacter(
  25722. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25723. {
  25724. front: {
  25725. height: math.unit(2 + 11 / 12, "feet"),
  25726. weight: math.unit(30, "lb"),
  25727. name: "Front",
  25728. image: {
  25729. source: "./media/characters/weatley/front.svg",
  25730. bottom: 10.7 / 414,
  25731. extra: 403.5 / 362
  25732. }
  25733. },
  25734. back: {
  25735. height: math.unit(2 + 11 / 12, "feet"),
  25736. weight: math.unit(30, "lb"),
  25737. name: "Back",
  25738. image: {
  25739. source: "./media/characters/weatley/back.svg",
  25740. bottom: 10.7 / 414,
  25741. extra: 403.5 / 362
  25742. }
  25743. },
  25744. },
  25745. [
  25746. {
  25747. name: "Normal",
  25748. height: math.unit(2 + 11 / 12, "feet"),
  25749. default: true
  25750. },
  25751. ]
  25752. ))
  25753. characterMakers.push(() => makeCharacter(
  25754. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25755. {
  25756. front: {
  25757. height: math.unit(5 + 2 / 12, "feet"),
  25758. weight: math.unit(50, "kg"),
  25759. name: "Front",
  25760. image: {
  25761. source: "./media/characters/mercury-crescent/front.svg",
  25762. extra: 1088 / 1033,
  25763. bottom: 18.9 / 1109
  25764. }
  25765. },
  25766. },
  25767. [
  25768. {
  25769. name: "Normal",
  25770. height: math.unit(5 + 2 / 12, "feet"),
  25771. default: true
  25772. },
  25773. ]
  25774. ))
  25775. characterMakers.push(() => makeCharacter(
  25776. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25777. {
  25778. front: {
  25779. height: math.unit(2, "feet"),
  25780. weight: math.unit(15, "kg"),
  25781. name: "Front",
  25782. image: {
  25783. source: "./media/characters/diamond-jones/front.svg",
  25784. extra: 727/723,
  25785. bottom: 46/773
  25786. }
  25787. },
  25788. },
  25789. [
  25790. {
  25791. name: "Normal",
  25792. height: math.unit(2, "feet"),
  25793. default: true
  25794. },
  25795. ]
  25796. ))
  25797. characterMakers.push(() => makeCharacter(
  25798. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25799. {
  25800. front: {
  25801. height: math.unit(3, "feet"),
  25802. weight: math.unit(30, "kg"),
  25803. name: "Front",
  25804. image: {
  25805. source: "./media/characters/sweet-bit/front.svg",
  25806. extra: 675 / 567,
  25807. bottom: 27.7 / 703
  25808. }
  25809. },
  25810. },
  25811. [
  25812. {
  25813. name: "Normal",
  25814. height: math.unit(3, "feet"),
  25815. default: true
  25816. },
  25817. ]
  25818. ))
  25819. characterMakers.push(() => makeCharacter(
  25820. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25821. {
  25822. side: {
  25823. height: math.unit(9.178, "feet"),
  25824. weight: math.unit(500, "lb"),
  25825. name: "Side",
  25826. image: {
  25827. source: "./media/characters/umbrazen/side.svg",
  25828. extra: 1730 / 1473,
  25829. bottom: 34.6 / 1765
  25830. }
  25831. },
  25832. },
  25833. [
  25834. {
  25835. name: "Normal",
  25836. height: math.unit(9.178, "feet"),
  25837. default: true
  25838. },
  25839. ]
  25840. ))
  25841. characterMakers.push(() => makeCharacter(
  25842. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25843. {
  25844. front: {
  25845. height: math.unit(10, "feet"),
  25846. weight: math.unit(750, "lb"),
  25847. name: "Front",
  25848. image: {
  25849. source: "./media/characters/arlist/front.svg",
  25850. extra: 961 / 778,
  25851. bottom: 6.2 / 986
  25852. }
  25853. },
  25854. },
  25855. [
  25856. {
  25857. name: "Normal",
  25858. height: math.unit(10, "feet"),
  25859. default: true
  25860. },
  25861. ]
  25862. ))
  25863. characterMakers.push(() => makeCharacter(
  25864. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25865. {
  25866. front: {
  25867. height: math.unit(5 + 1 / 12, "feet"),
  25868. weight: math.unit(110, "lb"),
  25869. name: "Front",
  25870. image: {
  25871. source: "./media/characters/aradel/front.svg",
  25872. extra: 324 / 303,
  25873. bottom: 3.6 / 329.4
  25874. }
  25875. },
  25876. },
  25877. [
  25878. {
  25879. name: "Normal",
  25880. height: math.unit(5 + 1 / 12, "feet"),
  25881. default: true
  25882. },
  25883. ]
  25884. ))
  25885. characterMakers.push(() => makeCharacter(
  25886. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25887. {
  25888. front: {
  25889. height: math.unit(3 + 8 / 12, "feet"),
  25890. weight: math.unit(50, "lb"),
  25891. name: "Front",
  25892. image: {
  25893. source: "./media/characters/serryn/front.svg",
  25894. extra: 1792 / 1656,
  25895. bottom: 43.5 / 1840
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Normal",
  25902. height: math.unit(3 + 8 / 12, "feet"),
  25903. default: true
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25909. {
  25910. front: {
  25911. height: math.unit(7 + 10 / 12, "feet"),
  25912. weight: math.unit(255, "lb"),
  25913. name: "Front",
  25914. image: {
  25915. source: "./media/characters/xavier-thyme/front.svg",
  25916. extra: 3733 / 3642,
  25917. bottom: 131 / 3869
  25918. }
  25919. },
  25920. frontRaven: {
  25921. height: math.unit(7 + 10 / 12, "feet"),
  25922. weight: math.unit(255, "lb"),
  25923. name: "Front (Raven)",
  25924. image: {
  25925. source: "./media/characters/xavier-thyme/front-raven.svg",
  25926. extra: 4385 / 3642,
  25927. bottom: 131 / 4517
  25928. }
  25929. },
  25930. },
  25931. [
  25932. {
  25933. name: "Normal",
  25934. height: math.unit(7 + 10 / 12, "feet"),
  25935. default: true
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25941. {
  25942. front: {
  25943. height: math.unit(1.6, "m"),
  25944. weight: math.unit(50, "kg"),
  25945. name: "Front",
  25946. image: {
  25947. source: "./media/characters/kiki/front.svg",
  25948. extra: 4682 / 3610,
  25949. bottom: 115 / 4777
  25950. }
  25951. },
  25952. },
  25953. [
  25954. {
  25955. name: "Normal",
  25956. height: math.unit(1.6, "meters"),
  25957. default: true
  25958. },
  25959. ]
  25960. ))
  25961. characterMakers.push(() => makeCharacter(
  25962. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25963. {
  25964. front: {
  25965. height: math.unit(50, "m"),
  25966. weight: math.unit(500, "tonnes"),
  25967. name: "Front",
  25968. image: {
  25969. source: "./media/characters/ryoko/front.svg",
  25970. extra: 4632 / 3926,
  25971. bottom: 193 / 4823
  25972. }
  25973. },
  25974. },
  25975. [
  25976. {
  25977. name: "Normal",
  25978. height: math.unit(50, "meters"),
  25979. default: true
  25980. },
  25981. ]
  25982. ))
  25983. characterMakers.push(() => makeCharacter(
  25984. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25985. {
  25986. front: {
  25987. height: math.unit(30, "m"),
  25988. weight: math.unit(22, "tonnes"),
  25989. name: "Front",
  25990. image: {
  25991. source: "./media/characters/elio/front.svg",
  25992. extra: 4582 / 3720,
  25993. bottom: 236 / 4828
  25994. }
  25995. },
  25996. },
  25997. [
  25998. {
  25999. name: "Normal",
  26000. height: math.unit(30, "meters"),
  26001. default: true
  26002. },
  26003. ]
  26004. ))
  26005. characterMakers.push(() => makeCharacter(
  26006. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26007. {
  26008. front: {
  26009. height: math.unit(6 + 3 / 12, "feet"),
  26010. weight: math.unit(120, "lb"),
  26011. name: "Front",
  26012. image: {
  26013. source: "./media/characters/azura/front.svg",
  26014. extra: 1149 / 1135,
  26015. bottom: 45 / 1194
  26016. }
  26017. },
  26018. frontClothed: {
  26019. height: math.unit(6 + 3 / 12, "feet"),
  26020. weight: math.unit(120, "lb"),
  26021. name: "Front (Clothed)",
  26022. image: {
  26023. source: "./media/characters/azura/front-clothed.svg",
  26024. extra: 1149 / 1135,
  26025. bottom: 45 / 1194
  26026. }
  26027. },
  26028. },
  26029. [
  26030. {
  26031. name: "Normal",
  26032. height: math.unit(6 + 3 / 12, "feet"),
  26033. default: true
  26034. },
  26035. {
  26036. name: "Macro",
  26037. height: math.unit(20 + 6 / 12, "feet")
  26038. },
  26039. {
  26040. name: "Megamacro",
  26041. height: math.unit(12, "miles")
  26042. },
  26043. {
  26044. name: "Gigamacro",
  26045. height: math.unit(10000, "miles")
  26046. },
  26047. {
  26048. name: "Teramacro",
  26049. height: math.unit(900000, "miles")
  26050. },
  26051. ]
  26052. ))
  26053. characterMakers.push(() => makeCharacter(
  26054. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26055. {
  26056. front: {
  26057. height: math.unit(12, "feet"),
  26058. weight: math.unit(1, "ton"),
  26059. capacity: math.unit(660000, "gallons"),
  26060. name: "Front",
  26061. image: {
  26062. source: "./media/characters/zeus/front.svg",
  26063. extra: 5005 / 4717,
  26064. bottom: 363 / 5388
  26065. }
  26066. },
  26067. },
  26068. [
  26069. {
  26070. name: "Normal",
  26071. height: math.unit(12, "feet")
  26072. },
  26073. {
  26074. name: "Preferred Size",
  26075. height: math.unit(0.5, "miles"),
  26076. default: true
  26077. },
  26078. {
  26079. name: "Giga Horse",
  26080. height: math.unit(300, "miles")
  26081. },
  26082. {
  26083. name: "Riding Planets",
  26084. height: math.unit(30, "megameters")
  26085. },
  26086. {
  26087. name: "Cosmic Giant",
  26088. height: math.unit(3, "zettameters")
  26089. },
  26090. {
  26091. name: "Breeding God",
  26092. height: math.unit(9.92e22, "yottameters")
  26093. },
  26094. ]
  26095. ))
  26096. characterMakers.push(() => makeCharacter(
  26097. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26098. {
  26099. side: {
  26100. height: math.unit(9, "feet"),
  26101. weight: math.unit(1500, "kg"),
  26102. name: "Side",
  26103. image: {
  26104. source: "./media/characters/fang/side.svg",
  26105. extra: 924 / 866,
  26106. bottom: 47.5 / 972.3
  26107. }
  26108. },
  26109. },
  26110. [
  26111. {
  26112. name: "Normal",
  26113. height: math.unit(9, "feet"),
  26114. default: true
  26115. },
  26116. {
  26117. name: "Macro",
  26118. height: math.unit(75 + 6 / 12, "feet")
  26119. },
  26120. {
  26121. name: "Teramacro",
  26122. height: math.unit(50000, "miles")
  26123. },
  26124. ]
  26125. ))
  26126. characterMakers.push(() => makeCharacter(
  26127. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26128. {
  26129. front: {
  26130. height: math.unit(10, "feet"),
  26131. weight: math.unit(2, "tons"),
  26132. name: "Front",
  26133. image: {
  26134. source: "./media/characters/rekhit/front.svg",
  26135. extra: 2796 / 2590,
  26136. bottom: 225 / 3022
  26137. }
  26138. },
  26139. },
  26140. [
  26141. {
  26142. name: "Normal",
  26143. height: math.unit(10, "feet"),
  26144. default: true
  26145. },
  26146. {
  26147. name: "Macro",
  26148. height: math.unit(500, "feet")
  26149. },
  26150. ]
  26151. ))
  26152. characterMakers.push(() => makeCharacter(
  26153. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26154. {
  26155. front: {
  26156. height: math.unit(7 + 6.451 / 12, "feet"),
  26157. weight: math.unit(310, "lb"),
  26158. name: "Front",
  26159. image: {
  26160. source: "./media/characters/dahlia-verrick/front.svg",
  26161. extra: 1488 / 1365,
  26162. bottom: 6.2 / 1495
  26163. }
  26164. },
  26165. back: {
  26166. height: math.unit(7 + 6.451 / 12, "feet"),
  26167. weight: math.unit(310, "lb"),
  26168. name: "Back",
  26169. image: {
  26170. source: "./media/characters/dahlia-verrick/back.svg",
  26171. extra: 1472 / 1351,
  26172. bottom: 5.28 / 1477
  26173. }
  26174. },
  26175. frontBusiness: {
  26176. height: math.unit(7 + 6.451 / 12, "feet"),
  26177. weight: math.unit(200, "lb"),
  26178. name: "Front (Business)",
  26179. image: {
  26180. source: "./media/characters/dahlia-verrick/front-business.svg",
  26181. extra: 1478 / 1381,
  26182. bottom: 5.5 / 1484
  26183. }
  26184. },
  26185. frontCasual: {
  26186. height: math.unit(7 + 6.451 / 12, "feet"),
  26187. weight: math.unit(200, "lb"),
  26188. name: "Front (Casual)",
  26189. image: {
  26190. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26191. extra: 1478 / 1381,
  26192. bottom: 5.5 / 1484
  26193. }
  26194. },
  26195. },
  26196. [
  26197. {
  26198. name: "Travel-Sized",
  26199. height: math.unit(7.45, "inches")
  26200. },
  26201. {
  26202. name: "Normal",
  26203. height: math.unit(7 + 6.451 / 12, "feet"),
  26204. default: true
  26205. },
  26206. {
  26207. name: "Hitting the Town",
  26208. height: math.unit(37 + 8 / 12, "feet")
  26209. },
  26210. {
  26211. name: "Stomp in the Suburbs",
  26212. height: math.unit(964 + 9.728 / 12, "feet")
  26213. },
  26214. {
  26215. name: "Sit on the City",
  26216. height: math.unit(61747 + 10.592 / 12, "feet")
  26217. },
  26218. {
  26219. name: "Glomp the Globe",
  26220. height: math.unit(252919327 + 4.832 / 12, "feet")
  26221. },
  26222. ]
  26223. ))
  26224. characterMakers.push(() => makeCharacter(
  26225. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26226. {
  26227. front: {
  26228. height: math.unit(6 + 4 / 12, "feet"),
  26229. weight: math.unit(320, "lb"),
  26230. name: "Front",
  26231. image: {
  26232. source: "./media/characters/balina-mahigan/front.svg",
  26233. extra: 447 / 428,
  26234. bottom: 18 / 466
  26235. }
  26236. },
  26237. back: {
  26238. height: math.unit(6 + 4 / 12, "feet"),
  26239. weight: math.unit(320, "lb"),
  26240. name: "Back",
  26241. image: {
  26242. source: "./media/characters/balina-mahigan/back.svg",
  26243. extra: 445 / 428,
  26244. bottom: 4.07 / 448
  26245. }
  26246. },
  26247. arm: {
  26248. height: math.unit(1.88, "feet"),
  26249. name: "Arm",
  26250. image: {
  26251. source: "./media/characters/balina-mahigan/arm.svg"
  26252. }
  26253. },
  26254. backPort: {
  26255. height: math.unit(0.685, "feet"),
  26256. name: "Back Port",
  26257. image: {
  26258. source: "./media/characters/balina-mahigan/back-port.svg"
  26259. }
  26260. },
  26261. hoofpaw: {
  26262. height: math.unit(1.41, "feet"),
  26263. name: "Hoofpaw",
  26264. image: {
  26265. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26266. }
  26267. },
  26268. leftHandBack: {
  26269. height: math.unit(0.938, "feet"),
  26270. name: "Left Hand (Back)",
  26271. image: {
  26272. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26273. }
  26274. },
  26275. leftHandFront: {
  26276. height: math.unit(0.938, "feet"),
  26277. name: "Left Hand (Front)",
  26278. image: {
  26279. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26280. }
  26281. },
  26282. rightHandBack: {
  26283. height: math.unit(0.95, "feet"),
  26284. name: "Right Hand (Back)",
  26285. image: {
  26286. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26287. }
  26288. },
  26289. rightHandFront: {
  26290. height: math.unit(0.95, "feet"),
  26291. name: "Right Hand (Front)",
  26292. image: {
  26293. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26294. }
  26295. },
  26296. },
  26297. [
  26298. {
  26299. name: "Normal",
  26300. height: math.unit(6 + 4 / 12, "feet"),
  26301. default: true
  26302. },
  26303. ]
  26304. ))
  26305. characterMakers.push(() => makeCharacter(
  26306. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26307. {
  26308. front: {
  26309. height: math.unit(6, "feet"),
  26310. weight: math.unit(320, "lb"),
  26311. name: "Front",
  26312. image: {
  26313. source: "./media/characters/balina-mejeri/front.svg",
  26314. extra: 517 / 488,
  26315. bottom: 44.2 / 561
  26316. }
  26317. },
  26318. },
  26319. [
  26320. {
  26321. name: "Normal",
  26322. height: math.unit(6 + 4 / 12, "feet")
  26323. },
  26324. {
  26325. name: "Business",
  26326. height: math.unit(155, "feet"),
  26327. default: true
  26328. },
  26329. ]
  26330. ))
  26331. characterMakers.push(() => makeCharacter(
  26332. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26333. {
  26334. kneeling: {
  26335. height: math.unit(6 + 4 / 12, "feet"),
  26336. weight: math.unit(300 * 20, "lb"),
  26337. name: "Kneeling",
  26338. image: {
  26339. source: "./media/characters/balbarian/kneeling.svg",
  26340. extra: 922 / 862,
  26341. bottom: 42.4 / 965
  26342. }
  26343. },
  26344. },
  26345. [
  26346. {
  26347. name: "Normal",
  26348. height: math.unit(6 + 4 / 12, "feet")
  26349. },
  26350. {
  26351. name: "Treasured",
  26352. height: math.unit(18 + 9 / 12, "feet"),
  26353. default: true
  26354. },
  26355. {
  26356. name: "Macro",
  26357. height: math.unit(900, "feet")
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(6 + 4 / 12, "feet"),
  26366. weight: math.unit(325, "lb"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/balina-amarini/front.svg",
  26370. extra: 415 / 403,
  26371. bottom: 19 / 433.4
  26372. }
  26373. },
  26374. back: {
  26375. height: math.unit(6 + 4 / 12, "feet"),
  26376. weight: math.unit(325, "lb"),
  26377. name: "Back",
  26378. image: {
  26379. source: "./media/characters/balina-amarini/back.svg",
  26380. extra: 415 / 403,
  26381. bottom: 13.5 / 432
  26382. }
  26383. },
  26384. overdrive: {
  26385. height: math.unit(6 + 4 / 12, "feet"),
  26386. weight: math.unit(400, "lb"),
  26387. name: "Overdrive",
  26388. image: {
  26389. source: "./media/characters/balina-amarini/overdrive.svg",
  26390. extra: 269 / 259,
  26391. bottom: 12 / 282
  26392. }
  26393. },
  26394. },
  26395. [
  26396. {
  26397. name: "Boom",
  26398. height: math.unit(9 + 10 / 12, "feet"),
  26399. default: true
  26400. },
  26401. {
  26402. name: "Macro",
  26403. height: math.unit(280, "feet")
  26404. },
  26405. ]
  26406. ))
  26407. characterMakers.push(() => makeCharacter(
  26408. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26409. {
  26410. goddess: {
  26411. height: math.unit(600, "feet"),
  26412. weight: math.unit(2000000, "tons"),
  26413. name: "Goddess",
  26414. image: {
  26415. source: "./media/characters/lady-kubwa/goddess.svg",
  26416. extra: 1240.5 / 1223,
  26417. bottom: 22 / 1263
  26418. }
  26419. },
  26420. goddesser: {
  26421. height: math.unit(900, "feet"),
  26422. weight: math.unit(20000000, "lb"),
  26423. name: "Goddess-er",
  26424. image: {
  26425. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26426. extra: 899 / 888,
  26427. bottom: 12.6 / 912
  26428. }
  26429. },
  26430. },
  26431. [
  26432. {
  26433. name: "Macro",
  26434. height: math.unit(600, "feet"),
  26435. default: true
  26436. },
  26437. {
  26438. name: "Megamacro",
  26439. height: math.unit(250, "miles")
  26440. },
  26441. ]
  26442. ))
  26443. characterMakers.push(() => makeCharacter(
  26444. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26445. {
  26446. front: {
  26447. height: math.unit(7 + 7 / 12, "feet"),
  26448. weight: math.unit(250, "lb"),
  26449. name: "Front",
  26450. image: {
  26451. source: "./media/characters/tala-grovehorn/front.svg",
  26452. extra: 2636 / 2525,
  26453. bottom: 147 / 2781
  26454. }
  26455. },
  26456. back: {
  26457. height: math.unit(7 + 7 / 12, "feet"),
  26458. weight: math.unit(250, "lb"),
  26459. name: "Back",
  26460. image: {
  26461. source: "./media/characters/tala-grovehorn/back.svg",
  26462. extra: 2635 / 2539,
  26463. bottom: 100 / 2732.8
  26464. }
  26465. },
  26466. mouth: {
  26467. height: math.unit(1.15, "feet"),
  26468. name: "Mouth",
  26469. image: {
  26470. source: "./media/characters/tala-grovehorn/mouth.svg"
  26471. }
  26472. },
  26473. dick: {
  26474. height: math.unit(2.36, "feet"),
  26475. name: "Dick",
  26476. image: {
  26477. source: "./media/characters/tala-grovehorn/dick.svg"
  26478. }
  26479. },
  26480. slit: {
  26481. height: math.unit(0.61, "feet"),
  26482. name: "Slit",
  26483. image: {
  26484. source: "./media/characters/tala-grovehorn/slit.svg"
  26485. }
  26486. },
  26487. },
  26488. [
  26489. ]
  26490. ))
  26491. characterMakers.push(() => makeCharacter(
  26492. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26493. {
  26494. front: {
  26495. height: math.unit(7 + 7 / 12, "feet"),
  26496. weight: math.unit(225, "lb"),
  26497. name: "Front",
  26498. image: {
  26499. source: "./media/characters/epona/front.svg",
  26500. extra: 2445 / 2290,
  26501. bottom: 251 / 2696
  26502. }
  26503. },
  26504. back: {
  26505. height: math.unit(7 + 7 / 12, "feet"),
  26506. weight: math.unit(225, "lb"),
  26507. name: "Back",
  26508. image: {
  26509. source: "./media/characters/epona/back.svg",
  26510. extra: 2546 / 2408,
  26511. bottom: 44 / 2589
  26512. }
  26513. },
  26514. genitals: {
  26515. height: math.unit(1.5, "feet"),
  26516. name: "Genitals",
  26517. image: {
  26518. source: "./media/characters/epona/genitals.svg"
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(7 + 7 / 12, "feet"),
  26526. default: true
  26527. },
  26528. ]
  26529. ))
  26530. characterMakers.push(() => makeCharacter(
  26531. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26532. {
  26533. front: {
  26534. height: math.unit(7, "feet"),
  26535. weight: math.unit(518, "lb"),
  26536. name: "Front",
  26537. image: {
  26538. source: "./media/characters/avia-bloodbourn/front.svg",
  26539. extra: 1466 / 1350,
  26540. bottom: 65 / 1527
  26541. }
  26542. },
  26543. },
  26544. [
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26549. {
  26550. front: {
  26551. height: math.unit(9.35, "feet"),
  26552. weight: math.unit(600, "lb"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/amera/front.svg",
  26556. extra: 891 / 818,
  26557. bottom: 30 / 922.7
  26558. }
  26559. },
  26560. back: {
  26561. height: math.unit(9.35, "feet"),
  26562. weight: math.unit(600, "lb"),
  26563. name: "Back",
  26564. image: {
  26565. source: "./media/characters/amera/back.svg",
  26566. extra: 876 / 824,
  26567. bottom: 6.8 / 884
  26568. }
  26569. },
  26570. dick: {
  26571. height: math.unit(2.14, "feet"),
  26572. name: "Dick",
  26573. image: {
  26574. source: "./media/characters/amera/dick.svg"
  26575. }
  26576. },
  26577. },
  26578. [
  26579. {
  26580. name: "Normal",
  26581. height: math.unit(9.35, "feet"),
  26582. default: true
  26583. },
  26584. ]
  26585. ))
  26586. characterMakers.push(() => makeCharacter(
  26587. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26588. {
  26589. kneeling: {
  26590. height: math.unit(3 + 4 / 12, "feet"),
  26591. weight: math.unit(90, "lb"),
  26592. name: "Kneeling",
  26593. image: {
  26594. source: "./media/characters/rosewen/kneeling.svg",
  26595. extra: 1835 / 1571,
  26596. bottom: 27.7 / 1862
  26597. }
  26598. },
  26599. },
  26600. [
  26601. {
  26602. name: "Normal",
  26603. height: math.unit(3 + 4 / 12, "feet"),
  26604. default: true
  26605. },
  26606. ]
  26607. ))
  26608. characterMakers.push(() => makeCharacter(
  26609. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26610. {
  26611. front: {
  26612. height: math.unit(5 + 10 / 12, "feet"),
  26613. weight: math.unit(200, "lb"),
  26614. name: "Front",
  26615. image: {
  26616. source: "./media/characters/sabah/front.svg",
  26617. extra: 849 / 763,
  26618. bottom: 33.9 / 881
  26619. }
  26620. },
  26621. },
  26622. [
  26623. {
  26624. name: "Normal",
  26625. height: math.unit(5 + 10 / 12, "feet"),
  26626. default: true
  26627. },
  26628. ]
  26629. ))
  26630. characterMakers.push(() => makeCharacter(
  26631. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26632. {
  26633. front: {
  26634. height: math.unit(3 + 5 / 12, "feet"),
  26635. weight: math.unit(40, "kg"),
  26636. name: "Front",
  26637. image: {
  26638. source: "./media/characters/purple-flame/front.svg",
  26639. extra: 1577 / 1412,
  26640. bottom: 97 / 1694
  26641. }
  26642. },
  26643. frontDressed: {
  26644. height: math.unit(3 + 5 / 12, "feet"),
  26645. weight: math.unit(40, "kg"),
  26646. name: "Front (Dressed)",
  26647. image: {
  26648. source: "./media/characters/purple-flame/front-dressed.svg",
  26649. extra: 1577 / 1412,
  26650. bottom: 97 / 1694
  26651. }
  26652. },
  26653. headphones: {
  26654. height: math.unit(0.85, "feet"),
  26655. name: "Headphones",
  26656. image: {
  26657. source: "./media/characters/purple-flame/headphones.svg"
  26658. }
  26659. },
  26660. },
  26661. [
  26662. {
  26663. name: "Really Small",
  26664. height: math.unit(5, "cm")
  26665. },
  26666. {
  26667. name: "Micro",
  26668. height: math.unit(1 + 5 / 12, "feet")
  26669. },
  26670. {
  26671. name: "Normal",
  26672. height: math.unit(3 + 5 / 12, "feet"),
  26673. default: true
  26674. },
  26675. {
  26676. name: "Minimacro",
  26677. height: math.unit(125, "feet")
  26678. },
  26679. {
  26680. name: "Macro",
  26681. height: math.unit(0.5, "miles")
  26682. },
  26683. {
  26684. name: "Megamacro",
  26685. height: math.unit(50, "miles")
  26686. },
  26687. {
  26688. name: "Gigantic",
  26689. height: math.unit(750, "miles")
  26690. },
  26691. {
  26692. name: "Planetary",
  26693. height: math.unit(15000, "miles")
  26694. },
  26695. ]
  26696. ))
  26697. characterMakers.push(() => makeCharacter(
  26698. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26699. {
  26700. front: {
  26701. height: math.unit(14, "feet"),
  26702. weight: math.unit(959, "lb"),
  26703. name: "Front",
  26704. image: {
  26705. source: "./media/characters/arsenal/front.svg",
  26706. extra: 2357 / 2157,
  26707. bottom: 93 / 2458
  26708. }
  26709. },
  26710. },
  26711. [
  26712. {
  26713. name: "Normal",
  26714. height: math.unit(14, "feet"),
  26715. default: true
  26716. },
  26717. ]
  26718. ))
  26719. characterMakers.push(() => makeCharacter(
  26720. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26721. {
  26722. front: {
  26723. height: math.unit(6, "feet"),
  26724. weight: math.unit(150, "lb"),
  26725. name: "Front",
  26726. image: {
  26727. source: "./media/characters/adira/front.svg",
  26728. extra: 1078 / 1029,
  26729. bottom: 87 / 1166
  26730. }
  26731. },
  26732. },
  26733. [
  26734. {
  26735. name: "Micro",
  26736. height: math.unit(4, "inches"),
  26737. default: true
  26738. },
  26739. {
  26740. name: "Macro",
  26741. height: math.unit(50, "feet")
  26742. },
  26743. ]
  26744. ))
  26745. characterMakers.push(() => makeCharacter(
  26746. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26747. {
  26748. front: {
  26749. height: math.unit(16, "feet"),
  26750. weight: math.unit(1000, "lb"),
  26751. name: "Front",
  26752. image: {
  26753. source: "./media/characters/grim/front.svg",
  26754. extra: 622 / 614,
  26755. bottom: 18.1 / 642
  26756. }
  26757. },
  26758. back: {
  26759. height: math.unit(16, "feet"),
  26760. weight: math.unit(1000, "lb"),
  26761. name: "Back",
  26762. image: {
  26763. source: "./media/characters/grim/back.svg",
  26764. extra: 610.6 / 602,
  26765. bottom: 40.8 / 652
  26766. }
  26767. },
  26768. hunched: {
  26769. height: math.unit(9.75, "feet"),
  26770. weight: math.unit(1000, "lb"),
  26771. name: "Hunched",
  26772. image: {
  26773. source: "./media/characters/grim/hunched.svg",
  26774. extra: 304 / 297,
  26775. bottom: 35.4 / 394
  26776. }
  26777. },
  26778. },
  26779. [
  26780. {
  26781. name: "Normal",
  26782. height: math.unit(16, "feet"),
  26783. default: true
  26784. },
  26785. ]
  26786. ))
  26787. characterMakers.push(() => makeCharacter(
  26788. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26789. {
  26790. front: {
  26791. height: math.unit(2.3, "meters"),
  26792. weight: math.unit(300, "lb"),
  26793. name: "Front",
  26794. image: {
  26795. source: "./media/characters/sinja/front-sfw.svg",
  26796. extra: 1393 / 1294,
  26797. bottom: 70 / 1463
  26798. }
  26799. },
  26800. frontNsfw: {
  26801. height: math.unit(2.3, "meters"),
  26802. weight: math.unit(300, "lb"),
  26803. name: "Front (NSFW)",
  26804. image: {
  26805. source: "./media/characters/sinja/front-nsfw.svg",
  26806. extra: 1393 / 1294,
  26807. bottom: 70 / 1463
  26808. }
  26809. },
  26810. back: {
  26811. height: math.unit(2.3, "meters"),
  26812. weight: math.unit(300, "lb"),
  26813. name: "Back",
  26814. image: {
  26815. source: "./media/characters/sinja/back.svg",
  26816. extra: 1393 / 1294,
  26817. bottom: 70 / 1463
  26818. }
  26819. },
  26820. head: {
  26821. height: math.unit(1.771, "feet"),
  26822. name: "Head",
  26823. image: {
  26824. source: "./media/characters/sinja/head.svg"
  26825. }
  26826. },
  26827. slit: {
  26828. height: math.unit(0.8, "feet"),
  26829. name: "Slit",
  26830. image: {
  26831. source: "./media/characters/sinja/slit.svg"
  26832. }
  26833. },
  26834. },
  26835. [
  26836. {
  26837. name: "Normal",
  26838. height: math.unit(2.3, "meters")
  26839. },
  26840. {
  26841. name: "Macro",
  26842. height: math.unit(91, "meters"),
  26843. default: true
  26844. },
  26845. {
  26846. name: "Megamacro",
  26847. height: math.unit(91440, "meters")
  26848. },
  26849. {
  26850. name: "Gigamacro",
  26851. height: math.unit(60960000, "meters")
  26852. },
  26853. {
  26854. name: "Teramacro",
  26855. height: math.unit(9144000000, "meters")
  26856. },
  26857. ]
  26858. ))
  26859. characterMakers.push(() => makeCharacter(
  26860. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26861. {
  26862. front: {
  26863. height: math.unit(1.7, "meters"),
  26864. weight: math.unit(130, "lb"),
  26865. name: "Front",
  26866. image: {
  26867. source: "./media/characters/kyu/front.svg",
  26868. extra: 415 / 395,
  26869. bottom: 5 / 420
  26870. }
  26871. },
  26872. head: {
  26873. height: math.unit(1.75, "feet"),
  26874. name: "Head",
  26875. image: {
  26876. source: "./media/characters/kyu/head.svg"
  26877. }
  26878. },
  26879. foot: {
  26880. height: math.unit(0.81, "feet"),
  26881. name: "Foot",
  26882. image: {
  26883. source: "./media/characters/kyu/foot.svg"
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(1.7, "meters")
  26891. },
  26892. {
  26893. name: "Macro",
  26894. height: math.unit(131, "feet"),
  26895. default: true
  26896. },
  26897. {
  26898. name: "Megamacro",
  26899. height: math.unit(91440, "meters")
  26900. },
  26901. {
  26902. name: "Gigamacro",
  26903. height: math.unit(60960000, "meters")
  26904. },
  26905. {
  26906. name: "Teramacro",
  26907. height: math.unit(9144000000, "meters")
  26908. },
  26909. ]
  26910. ))
  26911. characterMakers.push(() => makeCharacter(
  26912. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26913. {
  26914. front: {
  26915. height: math.unit(7 + 1 / 12, "feet"),
  26916. weight: math.unit(250, "lb"),
  26917. name: "Front",
  26918. image: {
  26919. source: "./media/characters/joey/front.svg",
  26920. extra: 1791 / 1537,
  26921. bottom: 28 / 1816
  26922. }
  26923. },
  26924. },
  26925. [
  26926. {
  26927. name: "Micro",
  26928. height: math.unit(3, "inches")
  26929. },
  26930. {
  26931. name: "Normal",
  26932. height: math.unit(7 + 1 / 12, "feet"),
  26933. default: true
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26939. {
  26940. front: {
  26941. height: math.unit(165, "cm"),
  26942. weight: math.unit(140, "lb"),
  26943. name: "Front",
  26944. image: {
  26945. source: "./media/characters/sam-evans/front.svg",
  26946. extra: 3417 / 3230,
  26947. bottom: 41.3 / 3417
  26948. }
  26949. },
  26950. frontSixTails: {
  26951. height: math.unit(165, "cm"),
  26952. weight: math.unit(140, "lb"),
  26953. name: "Front-six-tails",
  26954. image: {
  26955. source: "./media/characters/sam-evans/front-six-tails.svg",
  26956. extra: 3417 / 3230,
  26957. bottom: 41.3 / 3417
  26958. }
  26959. },
  26960. back: {
  26961. height: math.unit(165, "cm"),
  26962. weight: math.unit(140, "lb"),
  26963. name: "Back",
  26964. image: {
  26965. source: "./media/characters/sam-evans/back.svg",
  26966. extra: 3227 / 3032,
  26967. bottom: 6.8 / 3234
  26968. }
  26969. },
  26970. face: {
  26971. height: math.unit(0.68, "feet"),
  26972. name: "Face",
  26973. image: {
  26974. source: "./media/characters/sam-evans/face.svg"
  26975. }
  26976. },
  26977. },
  26978. [
  26979. {
  26980. name: "Normal",
  26981. height: math.unit(165, "cm"),
  26982. default: true
  26983. },
  26984. {
  26985. name: "Macro",
  26986. height: math.unit(100, "meters")
  26987. },
  26988. {
  26989. name: "Macro+",
  26990. height: math.unit(800, "meters")
  26991. },
  26992. {
  26993. name: "Macro++",
  26994. height: math.unit(3, "km")
  26995. },
  26996. {
  26997. name: "Macro+++",
  26998. height: math.unit(30, "km")
  26999. },
  27000. ]
  27001. ))
  27002. characterMakers.push(() => makeCharacter(
  27003. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27004. {
  27005. front: {
  27006. height: math.unit(10, "feet"),
  27007. weight: math.unit(750, "lb"),
  27008. name: "Front",
  27009. image: {
  27010. source: "./media/characters/juliet-a/front.svg",
  27011. extra: 1766 / 1720,
  27012. bottom: 43 / 1809
  27013. }
  27014. },
  27015. back: {
  27016. height: math.unit(10, "feet"),
  27017. weight: math.unit(750, "lb"),
  27018. name: "Back",
  27019. image: {
  27020. source: "./media/characters/juliet-a/back.svg",
  27021. extra: 1781 / 1734,
  27022. bottom: 35 / 1810,
  27023. }
  27024. },
  27025. },
  27026. [
  27027. {
  27028. name: "Normal",
  27029. height: math.unit(10, "feet"),
  27030. default: true
  27031. },
  27032. {
  27033. name: "Dragon Form",
  27034. height: math.unit(250, "feet")
  27035. },
  27036. {
  27037. name: "Macro",
  27038. height: math.unit(1000, "feet")
  27039. },
  27040. {
  27041. name: "Megamacro",
  27042. height: math.unit(10000, "feet")
  27043. }
  27044. ]
  27045. ))
  27046. characterMakers.push(() => makeCharacter(
  27047. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27048. {
  27049. regular: {
  27050. height: math.unit(7 + 3 / 12, "feet"),
  27051. weight: math.unit(260, "lb"),
  27052. name: "Regular",
  27053. image: {
  27054. source: "./media/characters/wild/regular.svg",
  27055. extra: 97.45 / 92,
  27056. bottom: 6.8 / 104.3
  27057. }
  27058. },
  27059. biggums: {
  27060. height: math.unit(8 + 6 / 12, "feet"),
  27061. weight: math.unit(425, "lb"),
  27062. name: "Biggums",
  27063. image: {
  27064. source: "./media/characters/wild/biggums.svg",
  27065. extra: 97.45 / 92,
  27066. bottom: 7.5 / 132.34
  27067. }
  27068. },
  27069. mawRegular: {
  27070. height: math.unit(1.24, "feet"),
  27071. name: "Maw (Regular)",
  27072. image: {
  27073. source: "./media/characters/wild/maw.svg"
  27074. }
  27075. },
  27076. mawBiggums: {
  27077. height: math.unit(1.47, "feet"),
  27078. name: "Maw (Biggums)",
  27079. image: {
  27080. source: "./media/characters/wild/maw.svg"
  27081. }
  27082. },
  27083. },
  27084. [
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(7 + 3 / 12, "feet"),
  27088. default: true
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27094. {
  27095. front: {
  27096. height: math.unit(2.5, "meters"),
  27097. weight: math.unit(200, "kg"),
  27098. name: "Front",
  27099. image: {
  27100. source: "./media/characters/vidar/front.svg",
  27101. extra: 2994 / 2795,
  27102. bottom: 56 / 3061
  27103. }
  27104. },
  27105. back: {
  27106. height: math.unit(2.5, "meters"),
  27107. weight: math.unit(200, "kg"),
  27108. name: "Back",
  27109. image: {
  27110. source: "./media/characters/vidar/back.svg",
  27111. extra: 3131 / 2928,
  27112. bottom: 13.5 / 3141.5
  27113. }
  27114. },
  27115. feral: {
  27116. height: math.unit(2.5, "meters"),
  27117. weight: math.unit(2000, "kg"),
  27118. name: "Feral",
  27119. image: {
  27120. source: "./media/characters/vidar/feral.svg",
  27121. extra: 2790 / 1765,
  27122. bottom: 6 / 2796
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Normal",
  27129. height: math.unit(2.5, "meters"),
  27130. default: true
  27131. },
  27132. {
  27133. name: "Macro",
  27134. height: math.unit(100, "meters")
  27135. },
  27136. ]
  27137. ))
  27138. characterMakers.push(() => makeCharacter(
  27139. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27140. {
  27141. front: {
  27142. height: math.unit(5 + 9 / 12, "feet"),
  27143. weight: math.unit(120, "lb"),
  27144. name: "Front",
  27145. image: {
  27146. source: "./media/characters/ash/front.svg",
  27147. extra: 2189 / 1961,
  27148. bottom: 5.2 / 2194
  27149. }
  27150. },
  27151. },
  27152. [
  27153. {
  27154. name: "Normal",
  27155. height: math.unit(5 + 9 / 12, "feet"),
  27156. default: true
  27157. },
  27158. ]
  27159. ))
  27160. characterMakers.push(() => makeCharacter(
  27161. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27162. {
  27163. front: {
  27164. height: math.unit(9, "feet"),
  27165. weight: math.unit(10000, "lb"),
  27166. name: "Front",
  27167. image: {
  27168. source: "./media/characters/gygabite/front.svg",
  27169. bottom: 31.7 / 537.8,
  27170. extra: 505 / 370
  27171. }
  27172. },
  27173. },
  27174. [
  27175. {
  27176. name: "Normal",
  27177. height: math.unit(9, "feet"),
  27178. default: true
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27184. {
  27185. front: {
  27186. height: math.unit(12, "feet"),
  27187. weight: math.unit(35000, "lb"),
  27188. name: "Front",
  27189. image: {
  27190. source: "./media/characters/p0tat0/front.svg",
  27191. extra: 1065 / 921,
  27192. bottom: 55.7 / 1121.25
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(12, "feet"),
  27200. default: true
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27206. {
  27207. side: {
  27208. height: math.unit(6.5, "feet"),
  27209. weight: math.unit(800, "lb"),
  27210. name: "Side",
  27211. image: {
  27212. source: "./media/characters/dusk/side.svg",
  27213. extra: 615 / 373,
  27214. bottom: 53 / 664
  27215. }
  27216. },
  27217. sitting: {
  27218. height: math.unit(7, "feet"),
  27219. weight: math.unit(800, "lb"),
  27220. name: "Sitting",
  27221. image: {
  27222. source: "./media/characters/dusk/sitting.svg",
  27223. extra: 753 / 425,
  27224. bottom: 33 / 774
  27225. }
  27226. },
  27227. head: {
  27228. height: math.unit(6.1, "feet"),
  27229. name: "Head",
  27230. image: {
  27231. source: "./media/characters/dusk/head.svg"
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Normal",
  27238. height: math.unit(7, "feet"),
  27239. default: true
  27240. },
  27241. ]
  27242. ))
  27243. characterMakers.push(() => makeCharacter(
  27244. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27245. {
  27246. front: {
  27247. height: math.unit(15, "feet"),
  27248. weight: math.unit(7000, "lb"),
  27249. name: "Front",
  27250. image: {
  27251. source: "./media/characters/jay-direwolf/front.svg",
  27252. extra: 1810 / 1732,
  27253. bottom: 66 / 1892
  27254. }
  27255. },
  27256. },
  27257. [
  27258. {
  27259. name: "Normal",
  27260. height: math.unit(15, "feet"),
  27261. default: true
  27262. },
  27263. ]
  27264. ))
  27265. characterMakers.push(() => makeCharacter(
  27266. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27267. {
  27268. front: {
  27269. height: math.unit(4 + 9 / 12, "feet"),
  27270. weight: math.unit(130, "lb"),
  27271. name: "Front",
  27272. image: {
  27273. source: "./media/characters/anchovie/front.svg",
  27274. extra: 382 / 350,
  27275. bottom: 25 / 409
  27276. }
  27277. },
  27278. back: {
  27279. height: math.unit(4 + 9 / 12, "feet"),
  27280. weight: math.unit(130, "lb"),
  27281. name: "Back",
  27282. image: {
  27283. source: "./media/characters/anchovie/back.svg",
  27284. extra: 385 / 352,
  27285. bottom: 16.6 / 402
  27286. }
  27287. },
  27288. frontDressed: {
  27289. height: math.unit(4 + 9 / 12, "feet"),
  27290. weight: math.unit(130, "lb"),
  27291. name: "Front (Dressed)",
  27292. image: {
  27293. source: "./media/characters/anchovie/front-dressed.svg",
  27294. extra: 382 / 350,
  27295. bottom: 25 / 409
  27296. }
  27297. },
  27298. backDressed: {
  27299. height: math.unit(4 + 9 / 12, "feet"),
  27300. weight: math.unit(130, "lb"),
  27301. name: "Back (Dressed)",
  27302. image: {
  27303. source: "./media/characters/anchovie/back-dressed.svg",
  27304. extra: 385 / 352,
  27305. bottom: 16.6 / 402
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Micro",
  27312. height: math.unit(6.4, "inches")
  27313. },
  27314. {
  27315. name: "Normal",
  27316. height: math.unit(4 + 9 / 12, "feet"),
  27317. default: true
  27318. },
  27319. ]
  27320. ))
  27321. characterMakers.push(() => makeCharacter(
  27322. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27323. {
  27324. front: {
  27325. height: math.unit(2, "meters"),
  27326. weight: math.unit(180, "lb"),
  27327. name: "Front",
  27328. image: {
  27329. source: "./media/characters/acidrenamon/front.svg",
  27330. extra: 987 / 890,
  27331. bottom: 22.8 / 1009
  27332. }
  27333. },
  27334. back: {
  27335. height: math.unit(2, "meters"),
  27336. weight: math.unit(180, "lb"),
  27337. name: "Back",
  27338. image: {
  27339. source: "./media/characters/acidrenamon/back.svg",
  27340. extra: 983 / 891,
  27341. bottom: 8.4 / 992
  27342. }
  27343. },
  27344. head: {
  27345. height: math.unit(1.92, "feet"),
  27346. name: "Head",
  27347. image: {
  27348. source: "./media/characters/acidrenamon/head.svg"
  27349. }
  27350. },
  27351. rump: {
  27352. height: math.unit(1.72, "feet"),
  27353. name: "Rump",
  27354. image: {
  27355. source: "./media/characters/acidrenamon/rump.svg"
  27356. }
  27357. },
  27358. tail: {
  27359. height: math.unit(4.2, "feet"),
  27360. name: "Tail",
  27361. image: {
  27362. source: "./media/characters/acidrenamon/tail.svg"
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "Normal",
  27369. height: math.unit(2, "meters"),
  27370. default: true
  27371. },
  27372. {
  27373. name: "Minimacro",
  27374. height: math.unit(7, "meters")
  27375. },
  27376. {
  27377. name: "Macro",
  27378. height: math.unit(200, "meters")
  27379. },
  27380. {
  27381. name: "Gigamacro",
  27382. height: math.unit(0.2, "earths")
  27383. },
  27384. ]
  27385. ))
  27386. characterMakers.push(() => makeCharacter(
  27387. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27388. {
  27389. front: {
  27390. height: math.unit(6, "feet"),
  27391. weight: math.unit(150, "lb"),
  27392. name: "Front",
  27393. image: {
  27394. source: "./media/characters/kenzie-lee/front.svg",
  27395. extra: 1525 / 1465,
  27396. bottom: 45 / 1570
  27397. }
  27398. },
  27399. side: {
  27400. height: math.unit(6, "feet"),
  27401. weight: math.unit(150, "lb"),
  27402. name: "Side",
  27403. image: {
  27404. source: "./media/characters/kenzie-lee/side.svg",
  27405. extra: 5505 / 5383,
  27406. bottom: 60 / 5573
  27407. }
  27408. },
  27409. paw: {
  27410. height: math.unit(0.57, "feet"),
  27411. name: "Paw",
  27412. image: {
  27413. source: "./media/characters/kenzie-lee/paw.svg"
  27414. }
  27415. },
  27416. },
  27417. [
  27418. {
  27419. name: "Normal",
  27420. height: math.unit(152, "feet"),
  27421. default: true
  27422. },
  27423. {
  27424. name: "Megamacro",
  27425. height: math.unit(7, "miles")
  27426. },
  27427. {
  27428. name: "Gigamacro",
  27429. height: math.unit(8000, "miles")
  27430. },
  27431. ]
  27432. ))
  27433. characterMakers.push(() => makeCharacter(
  27434. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27435. {
  27436. side: {
  27437. height: math.unit(6, "feet"),
  27438. weight: math.unit(150, "lb"),
  27439. name: "Side",
  27440. image: {
  27441. source: "./media/characters/withers/side.svg",
  27442. extra: 1830 / 1728,
  27443. bottom: 96 / 1927
  27444. }
  27445. },
  27446. front: {
  27447. height: math.unit(6, "feet"),
  27448. weight: math.unit(150, "lb"),
  27449. name: "Front",
  27450. image: {
  27451. source: "./media/characters/withers/front.svg",
  27452. extra: 1514 / 1438,
  27453. bottom: 118 / 1632
  27454. }
  27455. },
  27456. },
  27457. [
  27458. {
  27459. name: "Macro",
  27460. height: math.unit(168, "feet"),
  27461. default: true
  27462. },
  27463. {
  27464. name: "Megamacro",
  27465. height: math.unit(15, "miles")
  27466. }
  27467. ]
  27468. ))
  27469. characterMakers.push(() => makeCharacter(
  27470. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27471. {
  27472. front: {
  27473. height: math.unit(6 + 7 / 12, "feet"),
  27474. weight: math.unit(250, "lb"),
  27475. name: "Front",
  27476. image: {
  27477. source: "./media/characters/nemoskii/front.svg",
  27478. extra: 2270 / 1734,
  27479. bottom: 86 / 2354
  27480. }
  27481. },
  27482. back: {
  27483. height: math.unit(6 + 7 / 12, "feet"),
  27484. weight: math.unit(250, "lb"),
  27485. name: "Back",
  27486. image: {
  27487. source: "./media/characters/nemoskii/back.svg",
  27488. extra: 1845 / 1788,
  27489. bottom: 10.5 / 1852
  27490. }
  27491. },
  27492. head: {
  27493. height: math.unit(1.31, "feet"),
  27494. name: "Head",
  27495. image: {
  27496. source: "./media/characters/nemoskii/head.svg"
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Micro",
  27503. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27504. },
  27505. {
  27506. name: "Normal",
  27507. height: math.unit(6 + 7 / 12, "feet"),
  27508. default: true
  27509. },
  27510. {
  27511. name: "Macro",
  27512. height: math.unit((6 + 7 / 12) * 150, "feet")
  27513. },
  27514. {
  27515. name: "Macro+",
  27516. height: math.unit((6 + 7 / 12) * 500, "feet")
  27517. },
  27518. {
  27519. name: "Megamacro",
  27520. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27521. },
  27522. ]
  27523. ))
  27524. characterMakers.push(() => makeCharacter(
  27525. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27526. {
  27527. front: {
  27528. height: math.unit(1, "mile"),
  27529. weight: math.unit(265261.9, "lb"),
  27530. name: "Front",
  27531. image: {
  27532. source: "./media/characters/shui/front.svg",
  27533. extra: 1633 / 1564,
  27534. bottom: 91.5 / 1726
  27535. }
  27536. },
  27537. },
  27538. [
  27539. {
  27540. name: "Macro",
  27541. height: math.unit(1, "mile"),
  27542. default: true
  27543. },
  27544. ]
  27545. ))
  27546. characterMakers.push(() => makeCharacter(
  27547. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27548. {
  27549. front: {
  27550. height: math.unit(12 + 6 / 12, "feet"),
  27551. weight: math.unit(1342, "lb"),
  27552. name: "Front",
  27553. image: {
  27554. source: "./media/characters/arokh-takakura/front.svg",
  27555. extra: 1089 / 1043,
  27556. bottom: 77.4 / 1176.7
  27557. }
  27558. },
  27559. back: {
  27560. height: math.unit(12 + 6 / 12, "feet"),
  27561. weight: math.unit(1342, "lb"),
  27562. name: "Back",
  27563. image: {
  27564. source: "./media/characters/arokh-takakura/back.svg",
  27565. extra: 1046 / 1019,
  27566. bottom: 102 / 1150
  27567. }
  27568. },
  27569. },
  27570. [
  27571. {
  27572. name: "Big",
  27573. height: math.unit(12 + 6 / 12, "feet"),
  27574. default: true
  27575. },
  27576. ]
  27577. ))
  27578. characterMakers.push(() => makeCharacter(
  27579. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27580. {
  27581. front: {
  27582. height: math.unit(5 + 6 / 12, "feet"),
  27583. weight: math.unit(150, "lb"),
  27584. name: "Front",
  27585. image: {
  27586. source: "./media/characters/theo/front.svg",
  27587. extra: 1184 / 1131,
  27588. bottom: 7.4 / 1191
  27589. }
  27590. },
  27591. },
  27592. [
  27593. {
  27594. name: "Micro",
  27595. height: math.unit(5, "inches")
  27596. },
  27597. {
  27598. name: "Normal",
  27599. height: math.unit(5 + 6 / 12, "feet"),
  27600. default: true
  27601. },
  27602. ]
  27603. ))
  27604. characterMakers.push(() => makeCharacter(
  27605. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27606. {
  27607. front: {
  27608. height: math.unit(5 + 9 / 12, "feet"),
  27609. weight: math.unit(130, "lb"),
  27610. name: "Front",
  27611. image: {
  27612. source: "./media/characters/cecelia-swift/front.svg",
  27613. extra: 502 / 484,
  27614. bottom: 23 / 523
  27615. }
  27616. },
  27617. back: {
  27618. height: math.unit(5 + 9 / 12, "feet"),
  27619. weight: math.unit(130, "lb"),
  27620. name: "Back",
  27621. image: {
  27622. source: "./media/characters/cecelia-swift/back.svg",
  27623. extra: 499 / 485,
  27624. bottom: 12 / 511
  27625. }
  27626. },
  27627. head: {
  27628. height: math.unit(0.90, "feet"),
  27629. name: "Head",
  27630. image: {
  27631. source: "./media/characters/cecelia-swift/head.svg"
  27632. }
  27633. },
  27634. rump: {
  27635. height: math.unit(1.75, "feet"),
  27636. name: "Rump",
  27637. image: {
  27638. source: "./media/characters/cecelia-swift/rump.svg"
  27639. }
  27640. },
  27641. },
  27642. [
  27643. {
  27644. name: "Normal",
  27645. height: math.unit(5 + 9 / 12, "feet"),
  27646. default: true
  27647. },
  27648. {
  27649. name: "Big",
  27650. height: math.unit(50, "feet")
  27651. },
  27652. {
  27653. name: "Macro",
  27654. height: math.unit(100, "feet")
  27655. },
  27656. {
  27657. name: "Macro+",
  27658. height: math.unit(500, "feet")
  27659. },
  27660. {
  27661. name: "Macro++",
  27662. height: math.unit(1000, "feet")
  27663. },
  27664. ]
  27665. ))
  27666. characterMakers.push(() => makeCharacter(
  27667. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27668. {
  27669. front: {
  27670. height: math.unit(6, "feet"),
  27671. weight: math.unit(150, "lb"),
  27672. name: "Front",
  27673. image: {
  27674. source: "./media/characters/kaunan/front.svg",
  27675. extra: 2890 / 2523,
  27676. bottom: 49 / 2939
  27677. }
  27678. },
  27679. },
  27680. [
  27681. {
  27682. name: "Macro",
  27683. height: math.unit(150, "feet"),
  27684. default: true
  27685. },
  27686. ]
  27687. ))
  27688. characterMakers.push(() => makeCharacter(
  27689. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27690. {
  27691. front: {
  27692. height: math.unit(175, "cm"),
  27693. weight: math.unit(60, "kg"),
  27694. name: "Front",
  27695. image: {
  27696. source: "./media/characters/fei/front.svg",
  27697. extra: 1873/1723,
  27698. bottom: 53/1926
  27699. }
  27700. },
  27701. },
  27702. [
  27703. {
  27704. name: "Mortal",
  27705. height: math.unit(175, "cm")
  27706. },
  27707. {
  27708. name: "Normal",
  27709. height: math.unit(3500, "m"),
  27710. default: true
  27711. },
  27712. {
  27713. name: "Stroll",
  27714. height: math.unit(17.5, "km")
  27715. },
  27716. {
  27717. name: "Showoff",
  27718. height: math.unit(175, "km")
  27719. },
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(7, "feet"),
  27727. weight: math.unit(1000, "kg"),
  27728. name: "Front",
  27729. image: {
  27730. source: "./media/characters/edrax/front.svg",
  27731. extra: 2838 / 2550,
  27732. bottom: 130 / 2968
  27733. }
  27734. },
  27735. },
  27736. [
  27737. {
  27738. name: "Small",
  27739. height: math.unit(7, "feet")
  27740. },
  27741. {
  27742. name: "Normal",
  27743. height: math.unit(1500, "meters")
  27744. },
  27745. {
  27746. name: "Mega",
  27747. height: math.unit(12000000, "km"),
  27748. default: true
  27749. },
  27750. {
  27751. name: "Megamacro",
  27752. height: math.unit(10600000, "lightyears")
  27753. },
  27754. {
  27755. name: "Hypermacro",
  27756. height: math.unit(256, "yottameters")
  27757. },
  27758. ]
  27759. ))
  27760. characterMakers.push(() => makeCharacter(
  27761. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27762. {
  27763. front: {
  27764. height: math.unit(10, "feet"),
  27765. weight: math.unit(750, "lb"),
  27766. name: "Front",
  27767. image: {
  27768. source: "./media/characters/clove/front.svg",
  27769. extra: 2031 / 1860,
  27770. bottom: 47.8 / 2080
  27771. }
  27772. },
  27773. back: {
  27774. height: math.unit(10, "feet"),
  27775. weight: math.unit(750, "lb"),
  27776. name: "Back",
  27777. image: {
  27778. source: "./media/characters/clove/back.svg",
  27779. extra: 2025 / 1859,
  27780. bottom: 46 / 2071
  27781. }
  27782. },
  27783. },
  27784. [
  27785. {
  27786. name: "Normal",
  27787. height: math.unit(10, "feet"),
  27788. default: true
  27789. },
  27790. ]
  27791. ))
  27792. characterMakers.push(() => makeCharacter(
  27793. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27794. {
  27795. front: {
  27796. height: math.unit(4, "feet"),
  27797. weight: math.unit(50, "lb"),
  27798. name: "Front",
  27799. image: {
  27800. source: "./media/characters/alex-rabbit/front.svg",
  27801. extra: 507 / 458,
  27802. bottom: 18.5 / 527
  27803. }
  27804. },
  27805. back: {
  27806. height: math.unit(4, "feet"),
  27807. weight: math.unit(50, "lb"),
  27808. name: "Back",
  27809. image: {
  27810. source: "./media/characters/alex-rabbit/back.svg",
  27811. extra: 502 / 460,
  27812. bottom: 18.9 / 521
  27813. }
  27814. },
  27815. },
  27816. [
  27817. {
  27818. name: "Normal",
  27819. height: math.unit(4, "feet"),
  27820. default: true
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(1 + 3 / 12, "feet"),
  27829. weight: math.unit(80, "lb"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/zander-rose/front.svg",
  27833. extra: 916 / 797,
  27834. bottom: 17 / 933
  27835. }
  27836. },
  27837. back: {
  27838. height: math.unit(1 + 3 / 12, "feet"),
  27839. weight: math.unit(80, "lb"),
  27840. name: "Back",
  27841. image: {
  27842. source: "./media/characters/zander-rose/back.svg",
  27843. extra: 903 / 779,
  27844. bottom: 31 / 934
  27845. }
  27846. },
  27847. },
  27848. [
  27849. {
  27850. name: "Normal",
  27851. height: math.unit(1 + 3 / 12, "feet"),
  27852. default: true
  27853. },
  27854. ]
  27855. ))
  27856. characterMakers.push(() => makeCharacter(
  27857. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27858. {
  27859. anthro: {
  27860. height: math.unit(6, "feet"),
  27861. weight: math.unit(150, "lb"),
  27862. name: "Anthro",
  27863. image: {
  27864. source: "./media/characters/razz/anthro.svg",
  27865. extra: 1437 / 1343,
  27866. bottom: 48 / 1485
  27867. }
  27868. },
  27869. feral: {
  27870. height: math.unit(6, "feet"),
  27871. weight: math.unit(150, "lb"),
  27872. name: "Feral",
  27873. image: {
  27874. source: "./media/characters/razz/feral.svg",
  27875. extra: 2569 / 1385,
  27876. bottom: 95 / 2664
  27877. }
  27878. },
  27879. },
  27880. [
  27881. {
  27882. name: "Normal",
  27883. height: math.unit(6, "feet"),
  27884. default: true
  27885. },
  27886. ]
  27887. ))
  27888. characterMakers.push(() => makeCharacter(
  27889. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27890. {
  27891. front: {
  27892. height: math.unit(9 + 4 / 12, "feet"),
  27893. weight: math.unit(500, "lb"),
  27894. name: "Front",
  27895. image: {
  27896. source: "./media/characters/morrigan/front.svg",
  27897. extra: 2707 / 2579,
  27898. bottom: 156 / 2863
  27899. }
  27900. },
  27901. },
  27902. [
  27903. {
  27904. name: "Normal",
  27905. height: math.unit(9 + 4 / 12, "feet"),
  27906. default: true
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27912. {
  27913. front: {
  27914. height: math.unit(5, "stories"),
  27915. weight: math.unit(4000, "lb"),
  27916. name: "Front",
  27917. image: {
  27918. source: "./media/characters/jenene/front.svg",
  27919. extra: 1780 / 1710,
  27920. bottom: 57 / 1837
  27921. }
  27922. },
  27923. },
  27924. [
  27925. {
  27926. name: "Normal",
  27927. height: math.unit(5, "stories"),
  27928. default: true
  27929. },
  27930. ]
  27931. ))
  27932. characterMakers.push(() => makeCharacter(
  27933. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27934. {
  27935. taurSfw: {
  27936. height: math.unit(10, "meters"),
  27937. weight: math.unit(17500, "kg"),
  27938. name: "Taur",
  27939. image: {
  27940. source: "./media/characters/faey/taur-sfw.svg",
  27941. extra: 1200 / 968,
  27942. bottom: 41 / 1241
  27943. }
  27944. },
  27945. chestmaw: {
  27946. height: math.unit(2.01, "meters"),
  27947. name: "Chestmaw",
  27948. image: {
  27949. source: "./media/characters/faey/chestmaw.svg"
  27950. }
  27951. },
  27952. foot: {
  27953. height: math.unit(2.43, "meters"),
  27954. name: "Foot",
  27955. image: {
  27956. source: "./media/characters/faey/foot.svg"
  27957. }
  27958. },
  27959. jaws: {
  27960. height: math.unit(1.66, "meters"),
  27961. name: "Jaws",
  27962. image: {
  27963. source: "./media/characters/faey/jaws.svg"
  27964. }
  27965. },
  27966. tongues: {
  27967. height: math.unit(2.01, "meters"),
  27968. name: "Tongues",
  27969. image: {
  27970. source: "./media/characters/faey/tongues.svg"
  27971. }
  27972. },
  27973. },
  27974. [
  27975. {
  27976. name: "Small",
  27977. height: math.unit(10, "meters"),
  27978. default: true
  27979. },
  27980. {
  27981. name: "Big",
  27982. height: math.unit(500000, "km")
  27983. },
  27984. ]
  27985. ))
  27986. characterMakers.push(() => makeCharacter(
  27987. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27988. {
  27989. front: {
  27990. height: math.unit(7, "feet"),
  27991. weight: math.unit(275, "lb"),
  27992. name: "Front",
  27993. image: {
  27994. source: "./media/characters/roku/front.svg",
  27995. extra: 903 / 878,
  27996. bottom: 37 / 940
  27997. }
  27998. },
  27999. },
  28000. [
  28001. {
  28002. name: "Normal",
  28003. height: math.unit(7, "feet"),
  28004. default: true
  28005. },
  28006. {
  28007. name: "Macro",
  28008. height: math.unit(500, "feet")
  28009. },
  28010. {
  28011. name: "Megamacro",
  28012. height: math.unit(200, "miles")
  28013. },
  28014. ]
  28015. ))
  28016. characterMakers.push(() => makeCharacter(
  28017. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28018. {
  28019. front: {
  28020. height: math.unit(6 + 2 / 12, "feet"),
  28021. weight: math.unit(150, "lb"),
  28022. name: "Front",
  28023. image: {
  28024. source: "./media/characters/lira/front.svg",
  28025. extra: 1727 / 1605,
  28026. bottom: 26 / 1753
  28027. }
  28028. },
  28029. back: {
  28030. height: math.unit(6 + 2 / 12, "feet"),
  28031. weight: math.unit(150, "lb"),
  28032. name: "Back",
  28033. image: {
  28034. source: "./media/characters/lira/back.svg",
  28035. extra: 1713/1621,
  28036. bottom: 20/1733
  28037. }
  28038. },
  28039. hand: {
  28040. height: math.unit(0.75, "feet"),
  28041. name: "Hand",
  28042. image: {
  28043. source: "./media/characters/lira/hand.svg"
  28044. }
  28045. },
  28046. maw: {
  28047. height: math.unit(0.65, "feet"),
  28048. name: "Maw",
  28049. image: {
  28050. source: "./media/characters/lira/maw.svg"
  28051. }
  28052. },
  28053. pawDigi: {
  28054. height: math.unit(1.6, "feet"),
  28055. name: "Paw Digi",
  28056. image: {
  28057. source: "./media/characters/lira/paw-digi.svg"
  28058. }
  28059. },
  28060. pawPlanti: {
  28061. height: math.unit(1.4, "feet"),
  28062. name: "Paw Planti",
  28063. image: {
  28064. source: "./media/characters/lira/paw-planti.svg"
  28065. }
  28066. },
  28067. },
  28068. [
  28069. {
  28070. name: "Normal",
  28071. height: math.unit(6 + 2 / 12, "feet"),
  28072. default: true
  28073. },
  28074. {
  28075. name: "Macro",
  28076. height: math.unit(100, "feet")
  28077. },
  28078. {
  28079. name: "Macro²",
  28080. height: math.unit(1600, "feet")
  28081. },
  28082. {
  28083. name: "Planetary",
  28084. height: math.unit(20, "earths")
  28085. },
  28086. ]
  28087. ))
  28088. characterMakers.push(() => makeCharacter(
  28089. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28090. {
  28091. front: {
  28092. height: math.unit(6, "feet"),
  28093. weight: math.unit(150, "lb"),
  28094. name: "Front",
  28095. image: {
  28096. source: "./media/characters/hadjet/front.svg",
  28097. extra: 1480 / 1346,
  28098. bottom: 26 / 1506
  28099. }
  28100. },
  28101. frontNsfw: {
  28102. height: math.unit(6, "feet"),
  28103. weight: math.unit(150, "lb"),
  28104. name: "Front (NSFW)",
  28105. image: {
  28106. source: "./media/characters/hadjet/front-nsfw.svg",
  28107. extra: 1440 / 1358,
  28108. bottom: 52 / 1492
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Macro",
  28115. height: math.unit(10, "stories"),
  28116. default: true
  28117. },
  28118. {
  28119. name: "Megamacro",
  28120. height: math.unit(1.5, "miles")
  28121. },
  28122. {
  28123. name: "Megamacro+",
  28124. height: math.unit(5, "miles")
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28130. {
  28131. side: {
  28132. height: math.unit(106, "feet"),
  28133. weight: math.unit(500, "tonnes"),
  28134. name: "Side",
  28135. image: {
  28136. source: "./media/characters/kodran/side.svg",
  28137. extra: 553 / 480,
  28138. bottom: 33 / 586
  28139. }
  28140. },
  28141. front: {
  28142. height: math.unit(132, "feet"),
  28143. weight: math.unit(500, "tonnes"),
  28144. name: "Front",
  28145. image: {
  28146. source: "./media/characters/kodran/front.svg",
  28147. extra: 667 / 643,
  28148. bottom: 42 / 709
  28149. }
  28150. },
  28151. flying: {
  28152. height: math.unit(350, "feet"),
  28153. weight: math.unit(500, "tonnes"),
  28154. name: "Flying",
  28155. image: {
  28156. source: "./media/characters/kodran/flying.svg"
  28157. }
  28158. },
  28159. foot: {
  28160. height: math.unit(33, "feet"),
  28161. name: "Foot",
  28162. image: {
  28163. source: "./media/characters/kodran/foot.svg"
  28164. }
  28165. },
  28166. footFront: {
  28167. height: math.unit(19, "feet"),
  28168. name: "Foot (Front)",
  28169. image: {
  28170. source: "./media/characters/kodran/foot-front.svg",
  28171. extra: 261 / 261,
  28172. bottom: 91 / 352
  28173. }
  28174. },
  28175. headFront: {
  28176. height: math.unit(53, "feet"),
  28177. name: "Head (Front)",
  28178. image: {
  28179. source: "./media/characters/kodran/head-front.svg"
  28180. }
  28181. },
  28182. headSide: {
  28183. height: math.unit(65, "feet"),
  28184. name: "Head (Side)",
  28185. image: {
  28186. source: "./media/characters/kodran/head-side.svg"
  28187. }
  28188. },
  28189. throat: {
  28190. height: math.unit(79, "feet"),
  28191. name: "Throat",
  28192. image: {
  28193. source: "./media/characters/kodran/throat.svg"
  28194. }
  28195. },
  28196. },
  28197. [
  28198. {
  28199. name: "Large",
  28200. height: math.unit(106, "feet"),
  28201. default: true
  28202. },
  28203. ]
  28204. ))
  28205. characterMakers.push(() => makeCharacter(
  28206. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28207. {
  28208. side: {
  28209. height: math.unit(11, "feet"),
  28210. weight: math.unit(150, "lb"),
  28211. name: "Side",
  28212. image: {
  28213. source: "./media/characters/pyxaron/side.svg",
  28214. extra: 305 / 195,
  28215. bottom: 17 / 322
  28216. }
  28217. },
  28218. },
  28219. [
  28220. {
  28221. name: "Normal",
  28222. height: math.unit(11, "feet"),
  28223. default: true
  28224. },
  28225. ]
  28226. ))
  28227. characterMakers.push(() => makeCharacter(
  28228. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28229. {
  28230. front: {
  28231. height: math.unit(6, "feet"),
  28232. weight: math.unit(150, "lb"),
  28233. name: "Front",
  28234. image: {
  28235. source: "./media/characters/meep/front.svg",
  28236. extra: 88 / 80,
  28237. bottom: 6 / 94
  28238. }
  28239. },
  28240. },
  28241. [
  28242. {
  28243. name: "Fun Sized",
  28244. height: math.unit(2, "inches"),
  28245. default: true
  28246. },
  28247. {
  28248. name: "Friend Sized",
  28249. height: math.unit(8, "inches")
  28250. },
  28251. ]
  28252. ))
  28253. characterMakers.push(() => makeCharacter(
  28254. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28255. {
  28256. front: {
  28257. height: math.unit(15, "feet"),
  28258. weight: math.unit(2500, "lb"),
  28259. name: "Front",
  28260. image: {
  28261. source: "./media/characters/holly-rabbit/front.svg",
  28262. extra: 1433 / 1233,
  28263. bottom: 125 / 1558
  28264. }
  28265. },
  28266. dick: {
  28267. height: math.unit(4.6, "feet"),
  28268. name: "Dick",
  28269. image: {
  28270. source: "./media/characters/holly-rabbit/dick.svg"
  28271. }
  28272. },
  28273. },
  28274. [
  28275. {
  28276. name: "Normal",
  28277. height: math.unit(15, "feet"),
  28278. default: true
  28279. },
  28280. {
  28281. name: "Macro",
  28282. height: math.unit(250, "feet")
  28283. },
  28284. {
  28285. name: "Macro+",
  28286. height: math.unit(2500, "feet")
  28287. },
  28288. ]
  28289. ))
  28290. characterMakers.push(() => makeCharacter(
  28291. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28292. {
  28293. front: {
  28294. height: math.unit(3.02, "meters"),
  28295. weight: math.unit(500, "kg"),
  28296. name: "Front",
  28297. image: {
  28298. source: "./media/characters/drena/front.svg",
  28299. extra: 282 / 243,
  28300. bottom: 8 / 290
  28301. }
  28302. },
  28303. side: {
  28304. height: math.unit(3.02, "meters"),
  28305. weight: math.unit(500, "kg"),
  28306. name: "Side",
  28307. image: {
  28308. source: "./media/characters/drena/side.svg",
  28309. extra: 280 / 245,
  28310. bottom: 10 / 290
  28311. }
  28312. },
  28313. back: {
  28314. height: math.unit(3.02, "meters"),
  28315. weight: math.unit(500, "kg"),
  28316. name: "Back",
  28317. image: {
  28318. source: "./media/characters/drena/back.svg",
  28319. extra: 278 / 243,
  28320. bottom: 2 / 280
  28321. }
  28322. },
  28323. foot: {
  28324. height: math.unit(0.75, "meters"),
  28325. name: "Foot",
  28326. image: {
  28327. source: "./media/characters/drena/foot.svg"
  28328. }
  28329. },
  28330. maw: {
  28331. height: math.unit(0.82, "meters"),
  28332. name: "Maw",
  28333. image: {
  28334. source: "./media/characters/drena/maw.svg"
  28335. }
  28336. },
  28337. rump: {
  28338. height: math.unit(0.93, "meters"),
  28339. name: "Rump",
  28340. image: {
  28341. source: "./media/characters/drena/rump.svg"
  28342. }
  28343. },
  28344. },
  28345. [
  28346. {
  28347. name: "Normal",
  28348. height: math.unit(3.02, "meters"),
  28349. default: true
  28350. },
  28351. ]
  28352. ))
  28353. characterMakers.push(() => makeCharacter(
  28354. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28355. {
  28356. front: {
  28357. height: math.unit(6 + 4 / 12, "feet"),
  28358. weight: math.unit(250, "lb"),
  28359. name: "Front",
  28360. image: {
  28361. source: "./media/characters/remmyzilla/front.svg",
  28362. extra: 4033 / 3588,
  28363. bottom: 123 / 4156
  28364. }
  28365. },
  28366. back: {
  28367. height: math.unit(6 + 4 / 12, "feet"),
  28368. weight: math.unit(250, "lb"),
  28369. name: "Back",
  28370. image: {
  28371. source: "./media/characters/remmyzilla/back.svg",
  28372. extra: 2687 / 2555,
  28373. bottom: 48 / 2735
  28374. }
  28375. },
  28376. paw: {
  28377. height: math.unit(1.73, "feet"),
  28378. name: "Paw",
  28379. image: {
  28380. source: "./media/characters/remmyzilla/paw.svg"
  28381. }
  28382. },
  28383. maw: {
  28384. height: math.unit(1.73, "feet"),
  28385. name: "Maw",
  28386. image: {
  28387. source: "./media/characters/remmyzilla/maw.svg"
  28388. }
  28389. },
  28390. },
  28391. [
  28392. {
  28393. name: "Normal",
  28394. height: math.unit(6 + 4 / 12, "feet")
  28395. },
  28396. {
  28397. name: "Minimacro",
  28398. height: math.unit(12 + 8 / 12, "feet")
  28399. },
  28400. {
  28401. name: "Normal",
  28402. height: math.unit(640, "feet"),
  28403. default: true
  28404. },
  28405. {
  28406. name: "Megamacro",
  28407. height: math.unit(6400, "feet")
  28408. },
  28409. {
  28410. name: "Gigamacro",
  28411. height: math.unit(64000, "miles")
  28412. },
  28413. ]
  28414. ))
  28415. characterMakers.push(() => makeCharacter(
  28416. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28417. {
  28418. front: {
  28419. height: math.unit(2.5, "meters"),
  28420. weight: math.unit(300, "lb"),
  28421. name: "Front",
  28422. image: {
  28423. source: "./media/characters/lawrence/front.svg",
  28424. extra: 357 / 335,
  28425. bottom: 30 / 387
  28426. }
  28427. },
  28428. back: {
  28429. height: math.unit(2.5, "meters"),
  28430. weight: math.unit(300, "lb"),
  28431. name: "Back",
  28432. image: {
  28433. source: "./media/characters/lawrence/back.svg",
  28434. extra: 357 / 338,
  28435. bottom: 16 / 373
  28436. }
  28437. },
  28438. head: {
  28439. height: math.unit(0.9, "meter"),
  28440. name: "Head",
  28441. image: {
  28442. source: "./media/characters/lawrence/head.svg"
  28443. }
  28444. },
  28445. maw: {
  28446. height: math.unit(0.7, "meter"),
  28447. name: "Maw",
  28448. image: {
  28449. source: "./media/characters/lawrence/maw.svg"
  28450. }
  28451. },
  28452. footBottom: {
  28453. height: math.unit(0.5, "meter"),
  28454. name: "Foot (Bottom)",
  28455. image: {
  28456. source: "./media/characters/lawrence/foot-bottom.svg"
  28457. }
  28458. },
  28459. footTop: {
  28460. height: math.unit(0.5, "meter"),
  28461. name: "Foot (Top)",
  28462. image: {
  28463. source: "./media/characters/lawrence/foot-top.svg"
  28464. }
  28465. },
  28466. },
  28467. [
  28468. {
  28469. name: "Normal",
  28470. height: math.unit(2.5, "meters"),
  28471. default: true
  28472. },
  28473. {
  28474. name: "Macro",
  28475. height: math.unit(95, "meters")
  28476. },
  28477. {
  28478. name: "Megamacro",
  28479. height: math.unit(150, "km")
  28480. },
  28481. ]
  28482. ))
  28483. characterMakers.push(() => makeCharacter(
  28484. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28485. {
  28486. front: {
  28487. height: math.unit(4.2, "meters"),
  28488. name: "Front",
  28489. image: {
  28490. source: "./media/characters/sydney/front.svg",
  28491. extra: 1323 / 1277,
  28492. bottom: 111 / 1434
  28493. }
  28494. },
  28495. },
  28496. [
  28497. {
  28498. name: "Normal",
  28499. height: math.unit(4.2, "meters"),
  28500. default: true
  28501. },
  28502. ]
  28503. ))
  28504. characterMakers.push(() => makeCharacter(
  28505. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28506. {
  28507. back: {
  28508. height: math.unit(201, "feet"),
  28509. name: "Back",
  28510. image: {
  28511. source: "./media/characters/jessica/back.svg",
  28512. extra: 273 / 259,
  28513. bottom: 7 / 280
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Normal",
  28520. height: math.unit(201, "feet"),
  28521. default: true
  28522. },
  28523. {
  28524. name: "Megamacro",
  28525. height: math.unit(8, "miles")
  28526. },
  28527. ]
  28528. ))
  28529. characterMakers.push(() => makeCharacter(
  28530. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28531. {
  28532. side: {
  28533. height: math.unit(320, "cm"),
  28534. name: "Side",
  28535. image: {
  28536. source: "./media/characters/victoria/side.svg",
  28537. extra: 778 / 346,
  28538. bottom: 56 / 834
  28539. }
  28540. },
  28541. maw: {
  28542. height: math.unit(5.9, "feet"),
  28543. name: "Maw",
  28544. image: {
  28545. source: "./media/characters/victoria/maw.svg"
  28546. }
  28547. },
  28548. },
  28549. [
  28550. {
  28551. name: "Normal",
  28552. height: math.unit(320, "cm"),
  28553. default: true
  28554. },
  28555. ]
  28556. ))
  28557. characterMakers.push(() => makeCharacter(
  28558. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28559. {
  28560. front: {
  28561. height: math.unit(5 + 6 / 12, "feet"),
  28562. name: "Front",
  28563. image: {
  28564. source: "./media/characters/cat/front.svg",
  28565. extra: 1449/1295,
  28566. bottom: 34/1483
  28567. }
  28568. },
  28569. back: {
  28570. height: math.unit(5 + 6 / 12, "feet"),
  28571. name: "Back",
  28572. image: {
  28573. source: "./media/characters/cat/back.svg",
  28574. extra: 1466/1301,
  28575. bottom: 19/1485
  28576. }
  28577. },
  28578. taur: {
  28579. height: math.unit(7, "feet"),
  28580. name: "Taur",
  28581. image: {
  28582. source: "./media/characters/cat/taur.svg",
  28583. extra: 1389/1233,
  28584. bottom: 83/1472
  28585. }
  28586. },
  28587. lucarioFront: {
  28588. height: math.unit(4, "feet"),
  28589. name: "Lucario (Front)",
  28590. image: {
  28591. source: "./media/characters/cat/lucario-front.svg",
  28592. extra: 1149/1019,
  28593. bottom: 84/1233
  28594. }
  28595. },
  28596. lucarioBack: {
  28597. height: math.unit(4, "feet"),
  28598. name: "Lucario (Back)",
  28599. image: {
  28600. source: "./media/characters/cat/lucario-back.svg",
  28601. extra: 1190/1059,
  28602. bottom: 33/1223
  28603. }
  28604. },
  28605. megaLucario: {
  28606. height: math.unit(4, "feet"),
  28607. name: "Mega Lucario",
  28608. image: {
  28609. source: "./media/characters/cat/mega-lucario.svg",
  28610. extra: 1515 / 1319,
  28611. bottom: 63 / 1578
  28612. }
  28613. },
  28614. nickit: {
  28615. height: math.unit(2, "feet"),
  28616. name: "Nickit",
  28617. image: {
  28618. source: "./media/characters/cat/nickit.svg",
  28619. extra: 1980 / 1585,
  28620. bottom: 102 / 2082
  28621. }
  28622. },
  28623. lopunnyFront: {
  28624. height: math.unit(5, "feet"),
  28625. name: "Lopunny (Front)",
  28626. image: {
  28627. source: "./media/characters/cat/lopunny-front.svg",
  28628. extra: 1782 / 1469,
  28629. bottom: 38 / 1820
  28630. }
  28631. },
  28632. lopunnyBack: {
  28633. height: math.unit(5, "feet"),
  28634. name: "Lopunny (Back)",
  28635. image: {
  28636. source: "./media/characters/cat/lopunny-back.svg",
  28637. extra: 1660 / 1490,
  28638. bottom: 25 / 1685
  28639. }
  28640. },
  28641. },
  28642. [
  28643. {
  28644. name: "Really small",
  28645. height: math.unit(1, "nm")
  28646. },
  28647. {
  28648. name: "Micro",
  28649. height: math.unit(5, "inches")
  28650. },
  28651. {
  28652. name: "Normal",
  28653. height: math.unit(5 + 6 / 12, "feet"),
  28654. default: true
  28655. },
  28656. {
  28657. name: "Macro",
  28658. height: math.unit(50, "feet")
  28659. },
  28660. {
  28661. name: "Macro+",
  28662. height: math.unit(150, "feet")
  28663. },
  28664. {
  28665. name: "Megamacro",
  28666. height: math.unit(100, "miles")
  28667. },
  28668. ]
  28669. ))
  28670. characterMakers.push(() => makeCharacter(
  28671. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28672. {
  28673. front: {
  28674. height: math.unit(63.4, "meters"),
  28675. weight: math.unit(3.28349e+6, "kilograms"),
  28676. name: "Front",
  28677. image: {
  28678. source: "./media/characters/kirina-violet/front.svg",
  28679. extra: 2812 / 2725,
  28680. bottom: 0 / 2812
  28681. }
  28682. },
  28683. back: {
  28684. height: math.unit(63.4, "meters"),
  28685. weight: math.unit(3.28349e+6, "kilograms"),
  28686. name: "Back",
  28687. image: {
  28688. source: "./media/characters/kirina-violet/back.svg",
  28689. extra: 2812 / 2725,
  28690. bottom: 0 / 2812
  28691. }
  28692. },
  28693. mouth: {
  28694. height: math.unit(4.35, "meters"),
  28695. name: "Mouth",
  28696. image: {
  28697. source: "./media/characters/kirina-violet/mouth.svg"
  28698. }
  28699. },
  28700. paw: {
  28701. height: math.unit(5.6, "meters"),
  28702. name: "Paw",
  28703. image: {
  28704. source: "./media/characters/kirina-violet/paw.svg"
  28705. }
  28706. },
  28707. tail: {
  28708. height: math.unit(18, "meters"),
  28709. name: "Tail",
  28710. image: {
  28711. source: "./media/characters/kirina-violet/tail.svg"
  28712. }
  28713. },
  28714. },
  28715. [
  28716. {
  28717. name: "Macro",
  28718. height: math.unit(63.4, "meters"),
  28719. default: true
  28720. },
  28721. ]
  28722. ))
  28723. characterMakers.push(() => makeCharacter(
  28724. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28725. {
  28726. front: {
  28727. height: math.unit(75, "feet"),
  28728. name: "Front",
  28729. image: {
  28730. source: "./media/characters/cat-gigachu/front.svg",
  28731. extra: 1239/1027,
  28732. bottom: 32/1271
  28733. }
  28734. },
  28735. back: {
  28736. height: math.unit(75, "feet"),
  28737. name: "Back",
  28738. image: {
  28739. source: "./media/characters/cat-gigachu/back.svg",
  28740. extra: 1229/1030,
  28741. bottom: 9/1238
  28742. }
  28743. },
  28744. },
  28745. [
  28746. {
  28747. name: "Dynamax",
  28748. height: math.unit(75, "feet"),
  28749. default: true
  28750. },
  28751. ]
  28752. ))
  28753. characterMakers.push(() => makeCharacter(
  28754. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28755. {
  28756. front: {
  28757. height: math.unit(6, "feet"),
  28758. weight: math.unit(150, "lb"),
  28759. name: "Front",
  28760. image: {
  28761. source: "./media/characters/sfaiyan/front.svg",
  28762. extra: 999 / 978,
  28763. bottom: 5 / 1004
  28764. }
  28765. },
  28766. },
  28767. [
  28768. {
  28769. name: "Normal",
  28770. height: math.unit(1.82, "meters")
  28771. },
  28772. {
  28773. name: "Giant",
  28774. height: math.unit(2.27, "km"),
  28775. default: true
  28776. },
  28777. ]
  28778. ))
  28779. characterMakers.push(() => makeCharacter(
  28780. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28781. {
  28782. front: {
  28783. height: math.unit(179, "cm"),
  28784. weight: math.unit(100, "kg"),
  28785. name: "Front",
  28786. image: {
  28787. source: "./media/characters/raunehkeli/front.svg",
  28788. extra: 1934 / 1926,
  28789. bottom: 0 / 1934
  28790. }
  28791. },
  28792. },
  28793. [
  28794. {
  28795. name: "Normal",
  28796. height: math.unit(179, "cm")
  28797. },
  28798. {
  28799. name: "Maximum",
  28800. height: math.unit(575, "meters"),
  28801. default: true
  28802. },
  28803. ]
  28804. ))
  28805. characterMakers.push(() => makeCharacter(
  28806. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28807. {
  28808. front: {
  28809. height: math.unit(6, "feet"),
  28810. weight: math.unit(150, "lb"),
  28811. name: "Front",
  28812. image: {
  28813. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28814. extra: 2625 / 2518,
  28815. bottom: 60 / 2685
  28816. }
  28817. },
  28818. },
  28819. [
  28820. {
  28821. name: "Normal",
  28822. height: math.unit(6 + 2 / 12, "feet")
  28823. },
  28824. {
  28825. name: "Macro",
  28826. height: math.unit(1180, "feet"),
  28827. default: true
  28828. },
  28829. ]
  28830. ))
  28831. characterMakers.push(() => makeCharacter(
  28832. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28833. {
  28834. front: {
  28835. height: math.unit(5 + 6 / 12, "feet"),
  28836. weight: math.unit(108, "lb"),
  28837. name: "Front",
  28838. image: {
  28839. source: "./media/characters/lilith-zott/front.svg",
  28840. extra: 2510 / 2238,
  28841. bottom: 100 / 2610
  28842. }
  28843. },
  28844. frontDressed: {
  28845. height: math.unit(5 + 6 / 12, "feet"),
  28846. weight: math.unit(108, "lb"),
  28847. name: "Front (Dressed)",
  28848. image: {
  28849. source: "./media/characters/lilith-zott/front-dressed.svg",
  28850. extra: 2510 / 2238,
  28851. bottom: 100 / 2610
  28852. }
  28853. },
  28854. },
  28855. [
  28856. {
  28857. name: "Normal",
  28858. height: math.unit(5 + 6 / 12, "feet")
  28859. },
  28860. {
  28861. name: "Macro",
  28862. height: math.unit(1030, "feet"),
  28863. default: true
  28864. },
  28865. ]
  28866. ))
  28867. characterMakers.push(() => makeCharacter(
  28868. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28869. {
  28870. front: {
  28871. height: math.unit(6, "feet"),
  28872. weight: math.unit(150, "lb"),
  28873. name: "Front",
  28874. image: {
  28875. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28876. extra: 2567 / 2435,
  28877. bottom: 39 / 2606
  28878. }
  28879. },
  28880. frontSuper: {
  28881. height: math.unit(6, "feet"),
  28882. name: "Front (Super)",
  28883. image: {
  28884. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28885. extra: 2567 / 2435,
  28886. bottom: 39 / 2606
  28887. }
  28888. },
  28889. },
  28890. [
  28891. {
  28892. name: "Normal",
  28893. height: math.unit(5 + 10 / 12, "feet")
  28894. },
  28895. {
  28896. name: "Macro",
  28897. height: math.unit(1100, "feet"),
  28898. default: true
  28899. },
  28900. ]
  28901. ))
  28902. characterMakers.push(() => makeCharacter(
  28903. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28904. {
  28905. front: {
  28906. height: math.unit(100, "miles"),
  28907. name: "Front",
  28908. image: {
  28909. source: "./media/characters/sona/front.svg",
  28910. extra: 2433 / 2201,
  28911. bottom: 53 / 2486
  28912. }
  28913. },
  28914. foot: {
  28915. height: math.unit(16.1, "miles"),
  28916. name: "Foot",
  28917. image: {
  28918. source: "./media/characters/sona/foot.svg"
  28919. }
  28920. },
  28921. },
  28922. [
  28923. {
  28924. name: "Macro",
  28925. height: math.unit(100, "miles"),
  28926. default: true
  28927. },
  28928. ]
  28929. ))
  28930. characterMakers.push(() => makeCharacter(
  28931. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28932. {
  28933. front: {
  28934. height: math.unit(6, "feet"),
  28935. weight: math.unit(150, "lb"),
  28936. name: "Front",
  28937. image: {
  28938. source: "./media/characters/bailey/front.svg",
  28939. extra: 1778 / 1724,
  28940. bottom: 30 / 1808
  28941. }
  28942. },
  28943. },
  28944. [
  28945. {
  28946. name: "Micro",
  28947. height: math.unit(4, "inches")
  28948. },
  28949. {
  28950. name: "Normal",
  28951. height: math.unit(5 + 5 / 12, "feet"),
  28952. default: true
  28953. },
  28954. {
  28955. name: "Macro",
  28956. height: math.unit(250, "feet")
  28957. },
  28958. {
  28959. name: "Megamacro",
  28960. height: math.unit(100, "miles")
  28961. },
  28962. ]
  28963. ))
  28964. characterMakers.push(() => makeCharacter(
  28965. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28966. {
  28967. front: {
  28968. height: math.unit(5 + 2 / 12, "feet"),
  28969. weight: math.unit(120, "lb"),
  28970. name: "Front",
  28971. image: {
  28972. source: "./media/characters/snaps/front.svg",
  28973. extra: 2370 / 2177,
  28974. bottom: 48 / 2418
  28975. }
  28976. },
  28977. back: {
  28978. height: math.unit(5 + 2 / 12, "feet"),
  28979. weight: math.unit(120, "lb"),
  28980. name: "Back",
  28981. image: {
  28982. source: "./media/characters/snaps/back.svg",
  28983. extra: 2408 / 2258,
  28984. bottom: 15 / 2423
  28985. }
  28986. },
  28987. },
  28988. [
  28989. {
  28990. name: "Micro",
  28991. height: math.unit(9, "inches")
  28992. },
  28993. {
  28994. name: "Normal",
  28995. height: math.unit(5 + 2 / 12, "feet"),
  28996. default: true
  28997. },
  28998. {
  28999. name: "Mini Macro",
  29000. height: math.unit(10, "feet")
  29001. },
  29002. ]
  29003. ))
  29004. characterMakers.push(() => makeCharacter(
  29005. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29006. {
  29007. front: {
  29008. height: math.unit(1.8, "meters"),
  29009. weight: math.unit(85, "kg"),
  29010. name: "Front",
  29011. image: {
  29012. source: "./media/characters/azteck/front.svg",
  29013. extra: 2815 / 2625,
  29014. bottom: 89 / 2904
  29015. }
  29016. },
  29017. back: {
  29018. height: math.unit(1.8, "meters"),
  29019. weight: math.unit(85, "kg"),
  29020. name: "Back",
  29021. image: {
  29022. source: "./media/characters/azteck/back.svg",
  29023. extra: 2856 / 2648,
  29024. bottom: 85 / 2941
  29025. }
  29026. },
  29027. frontDressed: {
  29028. height: math.unit(1.8, "meters"),
  29029. weight: math.unit(85, "kg"),
  29030. name: "Front (Dressed)",
  29031. image: {
  29032. source: "./media/characters/azteck/front-dressed.svg",
  29033. extra: 2147 / 2003,
  29034. bottom: 68 / 2215
  29035. }
  29036. },
  29037. head: {
  29038. height: math.unit(0.47, "meters"),
  29039. weight: math.unit(85, "kg"),
  29040. name: "Head",
  29041. image: {
  29042. source: "./media/characters/azteck/head.svg"
  29043. }
  29044. },
  29045. },
  29046. [
  29047. {
  29048. name: "Bite sized",
  29049. height: math.unit(16, "cm")
  29050. },
  29051. {
  29052. name: "Normal",
  29053. height: math.unit(1.8, "meters"),
  29054. default: true
  29055. },
  29056. ]
  29057. ))
  29058. characterMakers.push(() => makeCharacter(
  29059. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29060. {
  29061. front: {
  29062. height: math.unit(6, "feet"),
  29063. weight: math.unit(150, "lb"),
  29064. name: "Front",
  29065. image: {
  29066. source: "./media/characters/pidge/front.svg",
  29067. extra: 620 / 588,
  29068. bottom: 9 / 629
  29069. }
  29070. },
  29071. back: {
  29072. height: math.unit(6, "feet"),
  29073. weight: math.unit(150, "lb"),
  29074. name: "Back",
  29075. image: {
  29076. source: "./media/characters/pidge/back.svg",
  29077. extra: 620 / 588,
  29078. bottom: 9 / 629
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Macro",
  29085. height: math.unit(1, "mile"),
  29086. default: true
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29092. {
  29093. front: {
  29094. height: math.unit(6, "feet"),
  29095. weight: math.unit(150, "lb"),
  29096. name: "Front",
  29097. image: {
  29098. source: "./media/characters/en/front.svg",
  29099. extra: 1697 / 1563,
  29100. bottom: 103 / 1800
  29101. }
  29102. },
  29103. back: {
  29104. height: math.unit(6, "feet"),
  29105. weight: math.unit(150, "lb"),
  29106. name: "Back",
  29107. image: {
  29108. source: "./media/characters/en/back.svg",
  29109. extra: 1700 / 1570,
  29110. bottom: 51 / 1751
  29111. }
  29112. },
  29113. frontDressed: {
  29114. height: math.unit(6, "feet"),
  29115. weight: math.unit(150, "lb"),
  29116. name: "Front (Dressed)",
  29117. image: {
  29118. source: "./media/characters/en/front-dressed.svg",
  29119. extra: 1697 / 1563,
  29120. bottom: 103 / 1800
  29121. }
  29122. },
  29123. backDressed: {
  29124. height: math.unit(6, "feet"),
  29125. weight: math.unit(150, "lb"),
  29126. name: "Back (Dressed)",
  29127. image: {
  29128. source: "./media/characters/en/back-dressed.svg",
  29129. extra: 1700 / 1570,
  29130. bottom: 51 / 1751
  29131. }
  29132. },
  29133. },
  29134. [
  29135. {
  29136. name: "Macro",
  29137. height: math.unit(210, "feet"),
  29138. default: true
  29139. },
  29140. ]
  29141. ))
  29142. characterMakers.push(() => makeCharacter(
  29143. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29144. {
  29145. front: {
  29146. height: math.unit(6, "feet"),
  29147. weight: math.unit(150, "lb"),
  29148. name: "Front",
  29149. image: {
  29150. source: "./media/characters/haze-orris/front.svg",
  29151. extra: 3975 / 3525,
  29152. bottom: 137 / 4112
  29153. }
  29154. },
  29155. },
  29156. [
  29157. {
  29158. name: "Micro",
  29159. height: math.unit(150, "mm"),
  29160. default: true
  29161. },
  29162. ]
  29163. ))
  29164. characterMakers.push(() => makeCharacter(
  29165. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29166. {
  29167. front: {
  29168. height: math.unit(6, "feet"),
  29169. weight: math.unit(150, "lb"),
  29170. name: "Front",
  29171. image: {
  29172. source: "./media/characters/casselene-yaro/front.svg",
  29173. extra: 4721 / 4541,
  29174. bottom: 82 / 4803
  29175. }
  29176. },
  29177. back: {
  29178. height: math.unit(6, "feet"),
  29179. weight: math.unit(150, "lb"),
  29180. name: "Back",
  29181. image: {
  29182. source: "./media/characters/casselene-yaro/back.svg",
  29183. extra: 4569 / 4377,
  29184. bottom: 69 / 4638
  29185. }
  29186. },
  29187. frontDressed: {
  29188. height: math.unit(6, "feet"),
  29189. weight: math.unit(150, "lb"),
  29190. name: "Front-dressed",
  29191. image: {
  29192. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29193. extra: 4721 / 4541,
  29194. bottom: 82 / 4803
  29195. }
  29196. },
  29197. },
  29198. [
  29199. {
  29200. name: "Macro",
  29201. height: math.unit(190, "feet"),
  29202. default: true
  29203. },
  29204. ]
  29205. ))
  29206. characterMakers.push(() => makeCharacter(
  29207. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29208. {
  29209. front: {
  29210. height: math.unit(6, "feet"),
  29211. weight: math.unit(150, "lb"),
  29212. name: "Front",
  29213. image: {
  29214. source: "./media/characters/myra-rue-delore/front.svg",
  29215. extra: 1340 / 1308,
  29216. bottom: 67 / 1407
  29217. }
  29218. },
  29219. back: {
  29220. height: math.unit(6, "feet"),
  29221. weight: math.unit(150, "lb"),
  29222. name: "Back",
  29223. image: {
  29224. source: "./media/characters/myra-rue-delore/back.svg",
  29225. extra: 1341 / 1310,
  29226. bottom: 40 / 1381
  29227. }
  29228. },
  29229. frontDressed: {
  29230. height: math.unit(6, "feet"),
  29231. weight: math.unit(150, "lb"),
  29232. name: "Front (Dressed)",
  29233. image: {
  29234. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29235. extra: 1340 / 1308,
  29236. bottom: 67 / 1407
  29237. }
  29238. },
  29239. },
  29240. [
  29241. {
  29242. name: "Macro",
  29243. height: math.unit(150, "feet"),
  29244. default: true
  29245. },
  29246. ]
  29247. ))
  29248. characterMakers.push(() => makeCharacter(
  29249. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29250. {
  29251. front: {
  29252. height: math.unit(10, "feet"),
  29253. weight: math.unit(15015, "lb"),
  29254. name: "Front",
  29255. image: {
  29256. source: "./media/characters/fem!plat/front.svg",
  29257. extra: 2799 / 2604,
  29258. bottom: 149 / 2948
  29259. }
  29260. },
  29261. },
  29262. [
  29263. {
  29264. name: "Normal",
  29265. height: math.unit(10, "feet"),
  29266. default: true
  29267. },
  29268. {
  29269. name: "Macro",
  29270. height: math.unit(100, "feet")
  29271. },
  29272. {
  29273. name: "Megamacro",
  29274. height: math.unit(1000, "feet")
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(15 + 5 / 12, "feet"),
  29283. weight: math.unit(4600, "lb"),
  29284. name: "Front",
  29285. image: {
  29286. source: "./media/characters/neapolitan-ananassa/front.svg",
  29287. extra: 2903 / 2736,
  29288. bottom: 0 / 2903
  29289. }
  29290. },
  29291. side: {
  29292. height: math.unit(15 + 5 / 12, "feet"),
  29293. weight: math.unit(4600, "lb"),
  29294. name: "Side",
  29295. image: {
  29296. source: "./media/characters/neapolitan-ananassa/side.svg",
  29297. extra: 2925 / 2719,
  29298. bottom: 0 / 2925
  29299. }
  29300. },
  29301. back: {
  29302. height: math.unit(15 + 5 / 12, "feet"),
  29303. weight: math.unit(4600, "lb"),
  29304. name: "Back",
  29305. image: {
  29306. source: "./media/characters/neapolitan-ananassa/back.svg",
  29307. extra: 2903 / 2736,
  29308. bottom: 0 / 2903
  29309. }
  29310. },
  29311. },
  29312. [
  29313. {
  29314. name: "Normal",
  29315. height: math.unit(15 + 5 / 12, "feet"),
  29316. default: true
  29317. },
  29318. {
  29319. name: "Post-Millenium",
  29320. height: math.unit(35 + 5 / 12, "feet")
  29321. },
  29322. {
  29323. name: "Post-Era",
  29324. height: math.unit(450 + 5 / 12, "feet")
  29325. },
  29326. ]
  29327. ))
  29328. characterMakers.push(() => makeCharacter(
  29329. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29330. {
  29331. front: {
  29332. height: math.unit(300, "meters"),
  29333. weight: math.unit(125000, "tonnes"),
  29334. name: "Front",
  29335. image: {
  29336. source: "./media/characters/pazuzu/front.svg",
  29337. extra: 877 / 794,
  29338. bottom: 47 / 924
  29339. }
  29340. },
  29341. },
  29342. [
  29343. {
  29344. name: "Macro",
  29345. height: math.unit(300, "meters"),
  29346. default: true
  29347. },
  29348. ]
  29349. ))
  29350. characterMakers.push(() => makeCharacter(
  29351. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29352. {
  29353. side: {
  29354. height: math.unit(10 + 7 / 12, "feet"),
  29355. weight: math.unit(2.5, "tons"),
  29356. name: "Side",
  29357. image: {
  29358. source: "./media/characters/aasha/side.svg",
  29359. extra: 1345 / 1245,
  29360. bottom: 111 / 1456
  29361. }
  29362. },
  29363. back: {
  29364. height: math.unit(10 + 7 / 12, "feet"),
  29365. weight: math.unit(2.5, "tons"),
  29366. name: "Back",
  29367. image: {
  29368. source: "./media/characters/aasha/back.svg",
  29369. extra: 1133 / 1057,
  29370. bottom: 257 / 1390
  29371. }
  29372. },
  29373. },
  29374. [
  29375. {
  29376. name: "Normal",
  29377. height: math.unit(10 + 7 / 12, "feet"),
  29378. default: true
  29379. },
  29380. ]
  29381. ))
  29382. characterMakers.push(() => makeCharacter(
  29383. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29384. {
  29385. front: {
  29386. height: math.unit(6 + 3 / 12, "feet"),
  29387. name: "Front",
  29388. image: {
  29389. source: "./media/characters/nevan/front.svg",
  29390. extra: 704 / 704,
  29391. bottom: 28 / 732
  29392. }
  29393. },
  29394. back: {
  29395. height: math.unit(6 + 3 / 12, "feet"),
  29396. name: "Back",
  29397. image: {
  29398. source: "./media/characters/nevan/back.svg",
  29399. extra: 714 / 714,
  29400. bottom: 21 / 735
  29401. }
  29402. },
  29403. frontFlaccid: {
  29404. height: math.unit(6 + 3 / 12, "feet"),
  29405. name: "Front (Flaccid)",
  29406. image: {
  29407. source: "./media/characters/nevan/front-flaccid.svg",
  29408. extra: 704 / 704,
  29409. bottom: 28 / 732
  29410. }
  29411. },
  29412. frontErect: {
  29413. height: math.unit(6 + 3 / 12, "feet"),
  29414. name: "Front (Erect)",
  29415. image: {
  29416. source: "./media/characters/nevan/front-erect.svg",
  29417. extra: 704 / 704,
  29418. bottom: 28 / 732
  29419. }
  29420. },
  29421. backFlaccid: {
  29422. height: math.unit(6 + 3 / 12, "feet"),
  29423. name: "Back (Flaccid)",
  29424. image: {
  29425. source: "./media/characters/nevan/back-flaccid.svg",
  29426. extra: 714 / 714,
  29427. bottom: 21 / 735
  29428. }
  29429. },
  29430. },
  29431. [
  29432. {
  29433. name: "Normal",
  29434. height: math.unit(6 + 3 / 12, "feet"),
  29435. default: true
  29436. },
  29437. ]
  29438. ))
  29439. characterMakers.push(() => makeCharacter(
  29440. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29441. {
  29442. front: {
  29443. height: math.unit(4, "feet"),
  29444. name: "Front",
  29445. image: {
  29446. source: "./media/characters/arhan/front.svg",
  29447. extra: 3368 / 3133,
  29448. bottom: 0 / 3368
  29449. }
  29450. },
  29451. side: {
  29452. height: math.unit(4, "feet"),
  29453. name: "Side",
  29454. image: {
  29455. source: "./media/characters/arhan/side.svg",
  29456. extra: 3347 / 3105,
  29457. bottom: 0 / 3347
  29458. }
  29459. },
  29460. tongue: {
  29461. height: math.unit(1.42, "feet"),
  29462. name: "Tongue",
  29463. image: {
  29464. source: "./media/characters/arhan/tongue.svg"
  29465. }
  29466. },
  29467. head: {
  29468. height: math.unit(0.85, "feet"),
  29469. name: "Head",
  29470. image: {
  29471. source: "./media/characters/arhan/head.svg"
  29472. }
  29473. },
  29474. },
  29475. [
  29476. {
  29477. name: "Normal",
  29478. height: math.unit(4, "feet"),
  29479. default: true
  29480. },
  29481. ]
  29482. ))
  29483. characterMakers.push(() => makeCharacter(
  29484. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29485. {
  29486. front: {
  29487. height: math.unit(5 + 7.5 / 12, "feet"),
  29488. weight: math.unit(120, "lb"),
  29489. name: "Front",
  29490. image: {
  29491. source: "./media/characters/digi-duncan/front.svg",
  29492. extra: 330 / 326,
  29493. bottom: 16 / 346
  29494. }
  29495. },
  29496. side: {
  29497. height: math.unit(5 + 7.5 / 12, "feet"),
  29498. weight: math.unit(120, "lb"),
  29499. name: "Side",
  29500. image: {
  29501. source: "./media/characters/digi-duncan/side.svg",
  29502. extra: 341 / 337,
  29503. bottom: 1 / 342
  29504. }
  29505. },
  29506. back: {
  29507. height: math.unit(5 + 7.5 / 12, "feet"),
  29508. weight: math.unit(120, "lb"),
  29509. name: "Back",
  29510. image: {
  29511. source: "./media/characters/digi-duncan/back.svg",
  29512. extra: 330 / 326,
  29513. bottom: 12 / 342
  29514. }
  29515. },
  29516. },
  29517. [
  29518. {
  29519. name: "Speck",
  29520. height: math.unit(0.25, "mm")
  29521. },
  29522. {
  29523. name: "Micro",
  29524. height: math.unit(5, "mm")
  29525. },
  29526. {
  29527. name: "Tiny",
  29528. height: math.unit(0.5, "inches"),
  29529. default: true
  29530. },
  29531. {
  29532. name: "Human",
  29533. height: math.unit(5 + 7.5 / 12, "feet")
  29534. },
  29535. {
  29536. name: "Minigiant",
  29537. height: math.unit(8 + 5.25, "feet")
  29538. },
  29539. {
  29540. name: "Giant",
  29541. height: math.unit(2000, "feet")
  29542. },
  29543. {
  29544. name: "Mega",
  29545. height: math.unit(371.1, "miles")
  29546. },
  29547. ]
  29548. ))
  29549. characterMakers.push(() => makeCharacter(
  29550. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29551. {
  29552. front: {
  29553. height: math.unit(2, "meters"),
  29554. weight: math.unit(350, "kg"),
  29555. name: "Front",
  29556. image: {
  29557. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29558. extra: 898 / 838,
  29559. bottom: 9 / 907
  29560. }
  29561. },
  29562. },
  29563. [
  29564. {
  29565. name: "Micro",
  29566. height: math.unit(8, "meters")
  29567. },
  29568. {
  29569. name: "Normal",
  29570. height: math.unit(50, "meters"),
  29571. default: true
  29572. },
  29573. {
  29574. name: "Macro",
  29575. height: math.unit(500, "meters")
  29576. },
  29577. ]
  29578. ))
  29579. characterMakers.push(() => makeCharacter(
  29580. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29581. {
  29582. front: {
  29583. height: math.unit(6 + 6 / 12, "feet"),
  29584. name: "Front",
  29585. image: {
  29586. source: "./media/characters/khardesh/front.svg",
  29587. extra: 888 / 797,
  29588. bottom: 25 / 913
  29589. }
  29590. },
  29591. },
  29592. [
  29593. {
  29594. name: "Normal",
  29595. height: math.unit(6 + 6 / 12, "feet"),
  29596. default: true
  29597. },
  29598. {
  29599. name: "Normal+",
  29600. height: math.unit(4, "meters")
  29601. },
  29602. {
  29603. name: "Macro",
  29604. height: math.unit(50, "meters")
  29605. },
  29606. {
  29607. name: "Macro+",
  29608. height: math.unit(100, "meters")
  29609. },
  29610. {
  29611. name: "Megamacro",
  29612. height: math.unit(20, "km")
  29613. },
  29614. ]
  29615. ))
  29616. characterMakers.push(() => makeCharacter(
  29617. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29618. {
  29619. front: {
  29620. height: math.unit(6, "feet"),
  29621. weight: math.unit(150, "lb"),
  29622. name: "Front",
  29623. image: {
  29624. source: "./media/characters/kosho/front.svg",
  29625. extra: 1847 / 1847,
  29626. bottom: 86 / 1933
  29627. }
  29628. },
  29629. },
  29630. [
  29631. {
  29632. name: "Second-stage micro",
  29633. height: math.unit(0.5, "inches")
  29634. },
  29635. {
  29636. name: "First-stage micro",
  29637. height: math.unit(6, "inches")
  29638. },
  29639. {
  29640. name: "Normal",
  29641. height: math.unit(6, "feet"),
  29642. default: true
  29643. },
  29644. {
  29645. name: "First-stage macro",
  29646. height: math.unit(72, "feet")
  29647. },
  29648. {
  29649. name: "Second-stage macro",
  29650. height: math.unit(864, "feet")
  29651. },
  29652. ]
  29653. ))
  29654. characterMakers.push(() => makeCharacter(
  29655. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29656. {
  29657. normal: {
  29658. height: math.unit(4 + 6 / 12, "feet"),
  29659. name: "Normal",
  29660. image: {
  29661. source: "./media/characters/hydra/normal.svg",
  29662. extra: 2833 / 2634,
  29663. bottom: 68 / 2901
  29664. }
  29665. },
  29666. smol: {
  29667. height: math.unit(0.705, "inches"),
  29668. name: "Smol",
  29669. image: {
  29670. source: "./media/characters/hydra/smol.svg",
  29671. extra: 2715 / 2540,
  29672. bottom: 0 / 2715
  29673. }
  29674. },
  29675. },
  29676. [
  29677. {
  29678. name: "Normal",
  29679. height: math.unit(4 + 6 / 12, "feet"),
  29680. default: true
  29681. }
  29682. ]
  29683. ))
  29684. characterMakers.push(() => makeCharacter(
  29685. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29686. {
  29687. front: {
  29688. height: math.unit(0.6, "cm"),
  29689. name: "Front",
  29690. image: {
  29691. source: "./media/characters/daz/front.svg",
  29692. extra: 1682 / 1164,
  29693. bottom: 42 / 1724
  29694. }
  29695. },
  29696. },
  29697. [
  29698. {
  29699. name: "Normal",
  29700. height: math.unit(0.6, "cm"),
  29701. default: true
  29702. },
  29703. ]
  29704. ))
  29705. characterMakers.push(() => makeCharacter(
  29706. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29707. {
  29708. front: {
  29709. height: math.unit(6, "feet"),
  29710. weight: math.unit(235, "lb"),
  29711. name: "Front",
  29712. image: {
  29713. source: "./media/characters/theo-pangolin/front.svg",
  29714. extra: 1996 / 1969,
  29715. bottom: 115 / 2111
  29716. }
  29717. },
  29718. back: {
  29719. height: math.unit(6, "feet"),
  29720. weight: math.unit(235, "lb"),
  29721. name: "Back",
  29722. image: {
  29723. source: "./media/characters/theo-pangolin/back.svg",
  29724. extra: 1979 / 1979,
  29725. bottom: 40 / 2019
  29726. }
  29727. },
  29728. feral: {
  29729. height: math.unit(2, "feet"),
  29730. weight: math.unit(30, "lb"),
  29731. name: "Feral",
  29732. image: {
  29733. source: "./media/characters/theo-pangolin/feral.svg",
  29734. extra: 803 / 791,
  29735. bottom: 181 / 984
  29736. }
  29737. },
  29738. footFive: {
  29739. height: math.unit(1.43, "feet"),
  29740. name: "Foot (Five Toes)",
  29741. image: {
  29742. source: "./media/characters/theo-pangolin/foot-five.svg"
  29743. }
  29744. },
  29745. footFour: {
  29746. height: math.unit(1.43, "feet"),
  29747. name: "Foot (Four Toes)",
  29748. image: {
  29749. source: "./media/characters/theo-pangolin/foot-four.svg"
  29750. }
  29751. },
  29752. handFour: {
  29753. height: math.unit(0.81, "feet"),
  29754. name: "Hand (Four Fingers)",
  29755. image: {
  29756. source: "./media/characters/theo-pangolin/hand-four.svg"
  29757. }
  29758. },
  29759. handThree: {
  29760. height: math.unit(0.81, "feet"),
  29761. name: "Hand (Three Fingers)",
  29762. image: {
  29763. source: "./media/characters/theo-pangolin/hand-three.svg"
  29764. }
  29765. },
  29766. headFront: {
  29767. height: math.unit(1.37, "feet"),
  29768. name: "Head (Front)",
  29769. image: {
  29770. source: "./media/characters/theo-pangolin/head-front.svg"
  29771. }
  29772. },
  29773. headSide: {
  29774. height: math.unit(1.43, "feet"),
  29775. name: "Head (Side)",
  29776. image: {
  29777. source: "./media/characters/theo-pangolin/head-side.svg"
  29778. }
  29779. },
  29780. tongue: {
  29781. height: math.unit(2.29, "feet"),
  29782. name: "Tongue",
  29783. image: {
  29784. source: "./media/characters/theo-pangolin/tongue.svg"
  29785. }
  29786. },
  29787. },
  29788. [
  29789. {
  29790. name: "Normal",
  29791. height: math.unit(6, "feet")
  29792. },
  29793. {
  29794. name: "Macro",
  29795. height: math.unit(400, "feet"),
  29796. default: true
  29797. },
  29798. ]
  29799. ))
  29800. characterMakers.push(() => makeCharacter(
  29801. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29802. {
  29803. front: {
  29804. height: math.unit(6, "inches"),
  29805. weight: math.unit(0.036, "kg"),
  29806. name: "Front",
  29807. image: {
  29808. source: "./media/characters/renée/front.svg",
  29809. extra: 900 / 886,
  29810. bottom: 8 / 908
  29811. }
  29812. },
  29813. },
  29814. [
  29815. {
  29816. name: "Nano",
  29817. height: math.unit(1, "nm")
  29818. },
  29819. {
  29820. name: "Micro",
  29821. height: math.unit(1, "mm")
  29822. },
  29823. {
  29824. name: "Normal",
  29825. height: math.unit(6, "inches")
  29826. },
  29827. {
  29828. name: "Macro",
  29829. height: math.unit(2000, "feet"),
  29830. default: true
  29831. },
  29832. {
  29833. name: "Megamacro",
  29834. height: math.unit(2, "km")
  29835. },
  29836. {
  29837. name: "Gigamacro",
  29838. height: math.unit(2000, "km")
  29839. },
  29840. {
  29841. name: "Teramacro",
  29842. height: math.unit(250000, "km")
  29843. },
  29844. ]
  29845. ))
  29846. characterMakers.push(() => makeCharacter(
  29847. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29848. {
  29849. front: {
  29850. height: math.unit(4, "meters"),
  29851. weight: math.unit(150, "kg"),
  29852. name: "Front",
  29853. image: {
  29854. source: "./media/characters/caledvwlch/front.svg",
  29855. extra: 1760 / 1551,
  29856. bottom: 28 / 1788
  29857. }
  29858. },
  29859. side: {
  29860. height: math.unit(4, "meters"),
  29861. weight: math.unit(150, "kg"),
  29862. name: "Side",
  29863. image: {
  29864. source: "./media/characters/caledvwlch/side.svg",
  29865. extra: 1605 / 1536,
  29866. bottom: 31 / 1636
  29867. }
  29868. },
  29869. back: {
  29870. height: math.unit(4, "meters"),
  29871. weight: math.unit(150, "kg"),
  29872. name: "Back",
  29873. image: {
  29874. source: "./media/characters/caledvwlch/back.svg",
  29875. extra: 1635 / 1565,
  29876. bottom: 27 / 1662
  29877. }
  29878. },
  29879. },
  29880. [
  29881. {
  29882. name: "\"Incognito\"",
  29883. height: math.unit(4, "meters")
  29884. },
  29885. {
  29886. name: "Small rampage",
  29887. height: math.unit(600, "meters")
  29888. },
  29889. {
  29890. name: "Mega",
  29891. height: math.unit(30, "km")
  29892. },
  29893. {
  29894. name: "Home-size",
  29895. height: math.unit(50, "km"),
  29896. default: true
  29897. },
  29898. {
  29899. name: "Giga",
  29900. height: math.unit(300, "km")
  29901. },
  29902. {
  29903. name: "Lounging",
  29904. height: math.unit(11000, "km")
  29905. },
  29906. {
  29907. name: "Planet snacking",
  29908. height: math.unit(2000000, "km")
  29909. },
  29910. ]
  29911. ))
  29912. characterMakers.push(() => makeCharacter(
  29913. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29914. {
  29915. front: {
  29916. height: math.unit(6, "feet"),
  29917. weight: math.unit(215, "lb"),
  29918. name: "Front",
  29919. image: {
  29920. source: "./media/characters/sapphire-svell/front.svg",
  29921. extra: 495 / 455,
  29922. bottom: 20 / 515
  29923. }
  29924. },
  29925. back: {
  29926. height: math.unit(6, "feet"),
  29927. weight: math.unit(216, "lb"),
  29928. name: "Back",
  29929. image: {
  29930. source: "./media/characters/sapphire-svell/back.svg",
  29931. extra: 497 / 477,
  29932. bottom: 7 / 504
  29933. }
  29934. },
  29935. maw: {
  29936. height: math.unit(1.57, "feet"),
  29937. name: "Maw",
  29938. image: {
  29939. source: "./media/characters/sapphire-svell/maw.svg"
  29940. }
  29941. },
  29942. foot: {
  29943. height: math.unit(1.07, "feet"),
  29944. name: "Foot",
  29945. image: {
  29946. source: "./media/characters/sapphire-svell/foot.svg"
  29947. }
  29948. },
  29949. toering: {
  29950. height: math.unit(1.7, "inch"),
  29951. name: "Toering",
  29952. image: {
  29953. source: "./media/characters/sapphire-svell/toering.svg"
  29954. }
  29955. },
  29956. },
  29957. [
  29958. {
  29959. name: "Normal",
  29960. height: math.unit(300, "feet"),
  29961. default: true
  29962. },
  29963. {
  29964. name: "Augmented",
  29965. height: math.unit(1250, "feet")
  29966. },
  29967. {
  29968. name: "Unleashed",
  29969. height: math.unit(3000, "feet")
  29970. },
  29971. ]
  29972. ))
  29973. characterMakers.push(() => makeCharacter(
  29974. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29975. {
  29976. side: {
  29977. height: math.unit(2 + 3 / 12, "feet"),
  29978. weight: math.unit(110, "lb"),
  29979. name: "Side",
  29980. image: {
  29981. source: "./media/characters/glitch-flux/side.svg",
  29982. extra: 997 / 805,
  29983. bottom: 20 / 1017
  29984. }
  29985. },
  29986. },
  29987. [
  29988. {
  29989. name: "Normal",
  29990. height: math.unit(2 + 3 / 12, "feet"),
  29991. default: true
  29992. },
  29993. ]
  29994. ))
  29995. characterMakers.push(() => makeCharacter(
  29996. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29997. {
  29998. front: {
  29999. height: math.unit(4, "meters"),
  30000. name: "Front",
  30001. image: {
  30002. source: "./media/characters/mid/front.svg",
  30003. extra: 507 / 476,
  30004. bottom: 17 / 524
  30005. }
  30006. },
  30007. back: {
  30008. height: math.unit(4, "meters"),
  30009. name: "Back",
  30010. image: {
  30011. source: "./media/characters/mid/back.svg",
  30012. extra: 519 / 487,
  30013. bottom: 7 / 526
  30014. }
  30015. },
  30016. stuck: {
  30017. height: math.unit(2.2, "meters"),
  30018. name: "Stuck",
  30019. image: {
  30020. source: "./media/characters/mid/stuck.svg",
  30021. extra: 1951 / 1869,
  30022. bottom: 88 / 2039
  30023. }
  30024. }
  30025. },
  30026. [
  30027. {
  30028. name: "Normal",
  30029. height: math.unit(4, "meters"),
  30030. default: true
  30031. },
  30032. {
  30033. name: "Big",
  30034. height: math.unit(10, "meters")
  30035. },
  30036. {
  30037. name: "Macro",
  30038. height: math.unit(800, "meters")
  30039. },
  30040. {
  30041. name: "Megamacro",
  30042. height: math.unit(100, "km")
  30043. },
  30044. {
  30045. name: "Overgrown",
  30046. height: math.unit(1, "parsec")
  30047. },
  30048. ]
  30049. ))
  30050. characterMakers.push(() => makeCharacter(
  30051. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30052. {
  30053. front: {
  30054. height: math.unit(2.5, "meters"),
  30055. weight: math.unit(225, "kg"),
  30056. name: "Front",
  30057. image: {
  30058. source: "./media/characters/iris/front.svg",
  30059. extra: 3348 / 3251,
  30060. bottom: 205 / 3553
  30061. }
  30062. },
  30063. maw: {
  30064. height: math.unit(0.56, "meter"),
  30065. name: "Maw",
  30066. image: {
  30067. source: "./media/characters/iris/maw.svg"
  30068. }
  30069. },
  30070. },
  30071. [
  30072. {
  30073. name: "Mewter cat",
  30074. height: math.unit(1.2, "meters")
  30075. },
  30076. {
  30077. name: "Minimacro",
  30078. height: math.unit(2.5, "meters"),
  30079. default: true
  30080. },
  30081. {
  30082. name: "Macro",
  30083. height: math.unit(180, "meters")
  30084. },
  30085. {
  30086. name: "Megamacro",
  30087. height: math.unit(2746, "meters")
  30088. },
  30089. ]
  30090. ))
  30091. characterMakers.push(() => makeCharacter(
  30092. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30093. {
  30094. front: {
  30095. height: math.unit(6, "feet"),
  30096. weight: math.unit(135, "lb"),
  30097. name: "Front",
  30098. image: {
  30099. source: "./media/characters/axel/front.svg",
  30100. extra: 908 / 908,
  30101. bottom: 58 / 966
  30102. }
  30103. },
  30104. side: {
  30105. height: math.unit(6, "feet"),
  30106. weight: math.unit(135, "lb"),
  30107. name: "Side",
  30108. image: {
  30109. source: "./media/characters/axel/side.svg",
  30110. extra: 958 / 958,
  30111. bottom: 11 / 969
  30112. }
  30113. },
  30114. back: {
  30115. height: math.unit(6, "feet"),
  30116. weight: math.unit(135, "lb"),
  30117. name: "Back",
  30118. image: {
  30119. source: "./media/characters/axel/back.svg",
  30120. extra: 887 / 887,
  30121. bottom: 34 / 921
  30122. }
  30123. },
  30124. head: {
  30125. height: math.unit(1.07, "feet"),
  30126. name: "Head",
  30127. image: {
  30128. source: "./media/characters/axel/head.svg"
  30129. }
  30130. },
  30131. beak: {
  30132. height: math.unit(1.4, "feet"),
  30133. name: "Beak",
  30134. image: {
  30135. source: "./media/characters/axel/beak.svg"
  30136. }
  30137. },
  30138. beakSide: {
  30139. height: math.unit(1.4, "feet"),
  30140. name: "Beak Side",
  30141. image: {
  30142. source: "./media/characters/axel/beak-side.svg"
  30143. }
  30144. },
  30145. sheath: {
  30146. height: math.unit(0.5, "feet"),
  30147. name: "Sheath",
  30148. image: {
  30149. source: "./media/characters/axel/sheath.svg"
  30150. }
  30151. },
  30152. dick: {
  30153. height: math.unit(0.98, "feet"),
  30154. name: "Dick",
  30155. image: {
  30156. source: "./media/characters/axel/dick.svg"
  30157. }
  30158. },
  30159. },
  30160. [
  30161. {
  30162. name: "Macro",
  30163. height: math.unit(68, "meters"),
  30164. default: true
  30165. },
  30166. ]
  30167. ))
  30168. characterMakers.push(() => makeCharacter(
  30169. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30170. {
  30171. front: {
  30172. height: math.unit(3.5, "meters"),
  30173. weight: math.unit(1200, "kg"),
  30174. name: "Front",
  30175. image: {
  30176. source: "./media/characters/joanna/front.svg",
  30177. extra: 1596 / 1488,
  30178. bottom: 29 / 1625
  30179. }
  30180. },
  30181. back: {
  30182. height: math.unit(3.5, "meters"),
  30183. weight: math.unit(1200, "kg"),
  30184. name: "Back",
  30185. image: {
  30186. source: "./media/characters/joanna/back.svg",
  30187. extra: 1594 / 1495,
  30188. bottom: 26 / 1620
  30189. }
  30190. },
  30191. frontShorts: {
  30192. height: math.unit(3.5, "meters"),
  30193. weight: math.unit(1200, "kg"),
  30194. name: "Front (Shorts)",
  30195. image: {
  30196. source: "./media/characters/joanna/front-shorts.svg",
  30197. extra: 1596 / 1488,
  30198. bottom: 29 / 1625
  30199. }
  30200. },
  30201. frontBiker: {
  30202. height: math.unit(3.5, "meters"),
  30203. weight: math.unit(1200, "kg"),
  30204. name: "Front (Biker)",
  30205. image: {
  30206. source: "./media/characters/joanna/front-biker.svg",
  30207. extra: 1596 / 1488,
  30208. bottom: 29 / 1625
  30209. }
  30210. },
  30211. backBiker: {
  30212. height: math.unit(3.5, "meters"),
  30213. weight: math.unit(1200, "kg"),
  30214. name: "Back (Biker)",
  30215. image: {
  30216. source: "./media/characters/joanna/back-biker.svg",
  30217. extra: 1594 / 1495,
  30218. bottom: 88 / 1682
  30219. }
  30220. },
  30221. bikeLeft: {
  30222. height: math.unit(2.4, "meters"),
  30223. weight: math.unit(1600, "kg"),
  30224. name: "Bike (Left)",
  30225. image: {
  30226. source: "./media/characters/joanna/bike-left.svg",
  30227. extra: 720 / 720,
  30228. bottom: 8 / 728
  30229. }
  30230. },
  30231. bikeRight: {
  30232. height: math.unit(2.4, "meters"),
  30233. weight: math.unit(1600, "kg"),
  30234. name: "Bike (Right)",
  30235. image: {
  30236. source: "./media/characters/joanna/bike-right.svg",
  30237. extra: 720 / 720,
  30238. bottom: 8 / 728
  30239. }
  30240. },
  30241. },
  30242. [
  30243. {
  30244. name: "Incognito",
  30245. height: math.unit(3.5, "meters")
  30246. },
  30247. {
  30248. name: "Casual Big",
  30249. height: math.unit(200, "meters")
  30250. },
  30251. {
  30252. name: "Macro",
  30253. height: math.unit(600, "meters")
  30254. },
  30255. {
  30256. name: "Original",
  30257. height: math.unit(20, "km"),
  30258. default: true
  30259. },
  30260. {
  30261. name: "Giga",
  30262. height: math.unit(400, "km")
  30263. },
  30264. {
  30265. name: "Lounging",
  30266. height: math.unit(1500, "km")
  30267. },
  30268. {
  30269. name: "Planetary",
  30270. height: math.unit(200000, "km")
  30271. },
  30272. ]
  30273. ))
  30274. characterMakers.push(() => makeCharacter(
  30275. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30276. {
  30277. front: {
  30278. height: math.unit(6, "feet"),
  30279. weight: math.unit(150, "lb"),
  30280. name: "Front",
  30281. image: {
  30282. source: "./media/characters/hugo-sigil/front.svg",
  30283. extra: 522 / 500,
  30284. bottom: 2 / 524
  30285. }
  30286. },
  30287. back: {
  30288. height: math.unit(6, "feet"),
  30289. weight: math.unit(150, "lb"),
  30290. name: "Back",
  30291. image: {
  30292. source: "./media/characters/hugo-sigil/back.svg",
  30293. extra: 519 / 495,
  30294. bottom: 5 / 524
  30295. }
  30296. },
  30297. maw: {
  30298. height: math.unit(1.4, "feet"),
  30299. weight: math.unit(150, "lb"),
  30300. name: "Maw",
  30301. image: {
  30302. source: "./media/characters/hugo-sigil/maw.svg"
  30303. }
  30304. },
  30305. feet: {
  30306. height: math.unit(1.56, "feet"),
  30307. weight: math.unit(150, "lb"),
  30308. name: "Feet",
  30309. image: {
  30310. source: "./media/characters/hugo-sigil/feet.svg",
  30311. extra: 177 / 177,
  30312. bottom: 12 / 189
  30313. }
  30314. },
  30315. },
  30316. [
  30317. {
  30318. name: "Normal",
  30319. height: math.unit(6, "feet")
  30320. },
  30321. {
  30322. name: "Macro",
  30323. height: math.unit(200, "feet"),
  30324. default: true
  30325. },
  30326. ]
  30327. ))
  30328. characterMakers.push(() => makeCharacter(
  30329. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30330. {
  30331. front: {
  30332. height: math.unit(6, "feet"),
  30333. weight: math.unit(150, "lb"),
  30334. name: "Front",
  30335. image: {
  30336. source: "./media/characters/peri/front.svg",
  30337. extra: 2354 / 2233,
  30338. bottom: 49 / 2403
  30339. }
  30340. },
  30341. },
  30342. [
  30343. {
  30344. name: "Really Small",
  30345. height: math.unit(1, "nm")
  30346. },
  30347. {
  30348. name: "Micro",
  30349. height: math.unit(4, "inches")
  30350. },
  30351. {
  30352. name: "Normal",
  30353. height: math.unit(7, "inches"),
  30354. default: true
  30355. },
  30356. {
  30357. name: "Macro",
  30358. height: math.unit(400, "feet")
  30359. },
  30360. {
  30361. name: "Megamacro",
  30362. height: math.unit(100, "miles")
  30363. },
  30364. ]
  30365. ))
  30366. characterMakers.push(() => makeCharacter(
  30367. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30368. {
  30369. frontSlim: {
  30370. height: math.unit(7, "feet"),
  30371. name: "Front (Slim)",
  30372. image: {
  30373. source: "./media/characters/issilora/front-slim.svg",
  30374. extra: 529 / 449,
  30375. bottom: 53 / 582
  30376. }
  30377. },
  30378. sideSlim: {
  30379. height: math.unit(7, "feet"),
  30380. name: "Side (Slim)",
  30381. image: {
  30382. source: "./media/characters/issilora/side-slim.svg",
  30383. extra: 570 / 480,
  30384. bottom: 30 / 600
  30385. }
  30386. },
  30387. backSlim: {
  30388. height: math.unit(7, "feet"),
  30389. name: "Back (Slim)",
  30390. image: {
  30391. source: "./media/characters/issilora/back-slim.svg",
  30392. extra: 537 / 455,
  30393. bottom: 46 / 583
  30394. }
  30395. },
  30396. frontBuff: {
  30397. height: math.unit(7, "feet"),
  30398. name: "Front (Buff)",
  30399. image: {
  30400. source: "./media/characters/issilora/front-buff.svg",
  30401. extra: 2310 / 2035,
  30402. bottom: 335 / 2645
  30403. }
  30404. },
  30405. head: {
  30406. height: math.unit(1.94, "feet"),
  30407. name: "Head",
  30408. image: {
  30409. source: "./media/characters/issilora/head.svg"
  30410. }
  30411. },
  30412. },
  30413. [
  30414. {
  30415. name: "Minimum",
  30416. height: math.unit(7, "feet")
  30417. },
  30418. {
  30419. name: "Comfortable",
  30420. height: math.unit(17, "feet")
  30421. },
  30422. {
  30423. name: "Fun Size",
  30424. height: math.unit(47, "feet")
  30425. },
  30426. {
  30427. name: "Natural Macro",
  30428. height: math.unit(137, "feet"),
  30429. default: true
  30430. },
  30431. {
  30432. name: "Maximum Kaiju",
  30433. height: math.unit(397, "feet")
  30434. },
  30435. ]
  30436. ))
  30437. characterMakers.push(() => makeCharacter(
  30438. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30439. {
  30440. front: {
  30441. height: math.unit(50 + 9/12, "feet"),
  30442. weight: math.unit(32.8, "tons"),
  30443. name: "Front",
  30444. image: {
  30445. source: "./media/characters/irb'iiritaahn/front.svg",
  30446. extra: 1878/1826,
  30447. bottom: 326/2204
  30448. }
  30449. },
  30450. back: {
  30451. height: math.unit(50 + 9/12, "feet"),
  30452. weight: math.unit(32.8, "tons"),
  30453. name: "Back",
  30454. image: {
  30455. source: "./media/characters/irb'iiritaahn/back.svg",
  30456. extra: 2052/2018,
  30457. bottom: 152/2204
  30458. }
  30459. },
  30460. head: {
  30461. height: math.unit(12.86, "feet"),
  30462. name: "Head",
  30463. image: {
  30464. source: "./media/characters/irb'iiritaahn/head.svg"
  30465. }
  30466. },
  30467. maw: {
  30468. height: math.unit(9.66, "feet"),
  30469. name: "Maw",
  30470. image: {
  30471. source: "./media/characters/irb'iiritaahn/maw.svg"
  30472. }
  30473. },
  30474. frontDick: {
  30475. height: math.unit(8.78461, "feet"),
  30476. name: "Front Dick",
  30477. image: {
  30478. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30479. }
  30480. },
  30481. rearDick: {
  30482. height: math.unit(8.78461, "feet"),
  30483. name: "Rear Dick",
  30484. image: {
  30485. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30486. }
  30487. },
  30488. rearDickUnfolded: {
  30489. height: math.unit(8.78, "feet"),
  30490. name: "Rear Dick (Unfolded)",
  30491. image: {
  30492. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30493. }
  30494. },
  30495. wings: {
  30496. height: math.unit(43, "feet"),
  30497. name: "Wings",
  30498. image: {
  30499. source: "./media/characters/irb'iiritaahn/wings.svg"
  30500. }
  30501. },
  30502. },
  30503. [
  30504. {
  30505. name: "Macro",
  30506. height: math.unit(50 + 9/12, "feet"),
  30507. default: true
  30508. },
  30509. ]
  30510. ))
  30511. characterMakers.push(() => makeCharacter(
  30512. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30513. {
  30514. front: {
  30515. height: math.unit(205, "cm"),
  30516. weight: math.unit(102, "kg"),
  30517. name: "Front",
  30518. image: {
  30519. source: "./media/characters/irbisgreif/front.svg",
  30520. extra: 785/706,
  30521. bottom: 13/798
  30522. }
  30523. },
  30524. back: {
  30525. height: math.unit(205, "cm"),
  30526. weight: math.unit(102, "kg"),
  30527. name: "Back",
  30528. image: {
  30529. source: "./media/characters/irbisgreif/back.svg",
  30530. extra: 713/701,
  30531. bottom: 26/739
  30532. }
  30533. },
  30534. frontDressed: {
  30535. height: math.unit(216, "cm"),
  30536. weight: math.unit(102, "kg"),
  30537. name: "Front-dressed",
  30538. image: {
  30539. source: "./media/characters/irbisgreif/front-dressed.svg",
  30540. extra: 902/776,
  30541. bottom: 14/916
  30542. }
  30543. },
  30544. sideDressed: {
  30545. height: math.unit(195, "cm"),
  30546. weight: math.unit(102, "kg"),
  30547. name: "Side-dressed",
  30548. image: {
  30549. source: "./media/characters/irbisgreif/side-dressed.svg",
  30550. extra: 788/688,
  30551. bottom: 21/809
  30552. }
  30553. },
  30554. backDressed: {
  30555. height: math.unit(216, "cm"),
  30556. weight: math.unit(102, "kg"),
  30557. name: "Back-dressed",
  30558. image: {
  30559. source: "./media/characters/irbisgreif/back-dressed.svg",
  30560. extra: 901/783,
  30561. bottom: 10/911
  30562. }
  30563. },
  30564. dick: {
  30565. height: math.unit(0.49, "feet"),
  30566. name: "Dick",
  30567. image: {
  30568. source: "./media/characters/irbisgreif/dick.svg"
  30569. }
  30570. },
  30571. wingTop: {
  30572. height: math.unit(1.93 , "feet"),
  30573. name: "Wing-top",
  30574. image: {
  30575. source: "./media/characters/irbisgreif/wing-top.svg"
  30576. }
  30577. },
  30578. wingBottom: {
  30579. height: math.unit(1.93 , "feet"),
  30580. name: "Wing-bottom",
  30581. image: {
  30582. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30583. }
  30584. },
  30585. },
  30586. [
  30587. {
  30588. name: "Normal",
  30589. height: math.unit(216, "cm"),
  30590. default: true
  30591. },
  30592. ]
  30593. ))
  30594. characterMakers.push(() => makeCharacter(
  30595. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30596. {
  30597. front: {
  30598. height: math.unit(6, "feet"),
  30599. weight: math.unit(150, "lb"),
  30600. name: "Front",
  30601. image: {
  30602. source: "./media/characters/pride/front.svg",
  30603. extra: 1299/1230,
  30604. bottom: 18/1317
  30605. }
  30606. },
  30607. },
  30608. [
  30609. {
  30610. name: "Normal",
  30611. height: math.unit(7, "feet")
  30612. },
  30613. {
  30614. name: "Mini-macro",
  30615. height: math.unit(11, "feet")
  30616. },
  30617. {
  30618. name: "Macro",
  30619. height: math.unit(15, "meters"),
  30620. default: true
  30621. },
  30622. {
  30623. name: "Macro+",
  30624. height: math.unit(40, "meters")
  30625. },
  30626. ]
  30627. ))
  30628. characterMakers.push(() => makeCharacter(
  30629. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30630. {
  30631. front: {
  30632. height: math.unit(4 + 2 / 12, "feet"),
  30633. weight: math.unit(95, "lb"),
  30634. name: "Front",
  30635. image: {
  30636. source: "./media/characters/vaelophis-nyx/front.svg",
  30637. extra: 2532/2330,
  30638. bottom: 0/2532
  30639. }
  30640. },
  30641. back: {
  30642. height: math.unit(4 + 2 / 12, "feet"),
  30643. weight: math.unit(95, "lb"),
  30644. name: "Back",
  30645. image: {
  30646. source: "./media/characters/vaelophis-nyx/back.svg",
  30647. extra: 2484/2361,
  30648. bottom: 0/2484
  30649. }
  30650. },
  30651. feralSide: {
  30652. height: math.unit(2 + 1/12, "feet"),
  30653. weight: math.unit(20, "lb"),
  30654. name: "Feral (Side)",
  30655. image: {
  30656. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30657. extra: 1721/1581,
  30658. bottom: 70/1791
  30659. }
  30660. },
  30661. feralLazing: {
  30662. height: math.unit(1.08, "feet"),
  30663. weight: math.unit(20, "lb"),
  30664. name: "Feral (Lazing)",
  30665. image: {
  30666. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30667. extra: 822/822,
  30668. bottom: 248/1070
  30669. }
  30670. },
  30671. ear: {
  30672. height: math.unit(0.416, "feet"),
  30673. name: "Ear",
  30674. image: {
  30675. source: "./media/characters/vaelophis-nyx/ear.svg"
  30676. }
  30677. },
  30678. eye: {
  30679. height: math.unit(0.0748, "feet"),
  30680. name: "Eye",
  30681. image: {
  30682. source: "./media/characters/vaelophis-nyx/eye.svg"
  30683. }
  30684. },
  30685. mouth: {
  30686. height: math.unit(0.378, "feet"),
  30687. name: "Mouth",
  30688. image: {
  30689. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30690. }
  30691. },
  30692. spade: {
  30693. height: math.unit(0.55, "feet"),
  30694. name: "Spade",
  30695. image: {
  30696. source: "./media/characters/vaelophis-nyx/spade.svg"
  30697. }
  30698. },
  30699. },
  30700. [
  30701. {
  30702. name: "Normal",
  30703. height: math.unit(4 + 2/12, "feet"),
  30704. default: true
  30705. },
  30706. ]
  30707. ))
  30708. characterMakers.push(() => makeCharacter(
  30709. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30710. {
  30711. front: {
  30712. height: math.unit(7, "feet"),
  30713. weight: math.unit(231, "lb"),
  30714. name: "Front",
  30715. image: {
  30716. source: "./media/characters/flux/front.svg",
  30717. extra: 919/871,
  30718. bottom: 0/919
  30719. }
  30720. },
  30721. back: {
  30722. height: math.unit(7, "feet"),
  30723. weight: math.unit(231, "lb"),
  30724. name: "Back",
  30725. image: {
  30726. source: "./media/characters/flux/back.svg",
  30727. extra: 1040/992,
  30728. bottom: 0/1040
  30729. }
  30730. },
  30731. frontDressed: {
  30732. height: math.unit(7, "feet"),
  30733. weight: math.unit(231, "lb"),
  30734. name: "Front (Dressed)",
  30735. image: {
  30736. source: "./media/characters/flux/front-dressed.svg",
  30737. extra: 919/871,
  30738. bottom: 0/919
  30739. }
  30740. },
  30741. feralSide: {
  30742. height: math.unit(5, "feet"),
  30743. weight: math.unit(150, "lb"),
  30744. name: "Feral (Side)",
  30745. image: {
  30746. source: "./media/characters/flux/feral-side.svg",
  30747. extra: 598/528,
  30748. bottom: 28/626
  30749. }
  30750. },
  30751. head: {
  30752. height: math.unit(1.585, "feet"),
  30753. name: "Head",
  30754. image: {
  30755. source: "./media/characters/flux/head.svg"
  30756. }
  30757. },
  30758. headSide: {
  30759. height: math.unit(1.74, "feet"),
  30760. name: "Head (Side)",
  30761. image: {
  30762. source: "./media/characters/flux/head-side.svg"
  30763. }
  30764. },
  30765. headSideFire: {
  30766. height: math.unit(1.76, "feet"),
  30767. name: "Head (Side, Fire)",
  30768. image: {
  30769. source: "./media/characters/flux/head-side-fire.svg"
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Normal",
  30776. height: math.unit(7, "feet"),
  30777. default: true
  30778. },
  30779. ]
  30780. ))
  30781. characterMakers.push(() => makeCharacter(
  30782. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30783. {
  30784. front: {
  30785. height: math.unit(9, "feet"),
  30786. weight: math.unit(1012, "lb"),
  30787. name: "Front",
  30788. image: {
  30789. source: "./media/characters/ulfra-lupae/front.svg",
  30790. extra: 1083/1011,
  30791. bottom: 67/1150
  30792. }
  30793. },
  30794. },
  30795. [
  30796. {
  30797. name: "Micro",
  30798. height: math.unit(6, "inches")
  30799. },
  30800. {
  30801. name: "Socializing",
  30802. height: math.unit(6 + 5/12, "feet")
  30803. },
  30804. {
  30805. name: "Normal",
  30806. height: math.unit(9, "feet"),
  30807. default: true
  30808. },
  30809. {
  30810. name: "Macro",
  30811. height: math.unit(150, "feet")
  30812. },
  30813. ]
  30814. ))
  30815. characterMakers.push(() => makeCharacter(
  30816. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30817. {
  30818. front: {
  30819. height: math.unit(5 + 2/12, "feet"),
  30820. weight: math.unit(120, "lb"),
  30821. name: "Front",
  30822. image: {
  30823. source: "./media/characters/timber/front.svg",
  30824. extra: 2814/2705,
  30825. bottom: 181/2995
  30826. }
  30827. },
  30828. },
  30829. [
  30830. {
  30831. name: "Normal",
  30832. height: math.unit(5 + 2/12, "feet"),
  30833. default: true
  30834. },
  30835. ]
  30836. ))
  30837. characterMakers.push(() => makeCharacter(
  30838. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30839. {
  30840. front: {
  30841. height: math.unit(5 + 7/12, "feet"),
  30842. weight: math.unit(220, "lb"),
  30843. name: "Front",
  30844. image: {
  30845. source: "./media/characters/nicki/front.svg",
  30846. extra: 453/419,
  30847. bottom: 7/460
  30848. }
  30849. },
  30850. frontAlt: {
  30851. height: math.unit(5 + 7/12, "feet"),
  30852. weight: math.unit(220, "lb"),
  30853. name: "Front-alt",
  30854. image: {
  30855. source: "./media/characters/nicki/front-alt.svg",
  30856. extra: 435/411,
  30857. bottom: 12/447
  30858. }
  30859. },
  30860. back: {
  30861. height: math.unit(5 + 7/12, "feet"),
  30862. weight: math.unit(220, "lb"),
  30863. name: "Back",
  30864. image: {
  30865. source: "./media/characters/nicki/back.svg",
  30866. extra: 440/413,
  30867. bottom: 19/459
  30868. }
  30869. },
  30870. taur: {
  30871. height: math.unit(7 + 6/12, "feet"),
  30872. weight: math.unit(700, "lb"),
  30873. name: "Taur",
  30874. image: {
  30875. source: "./media/characters/nicki/taur.svg",
  30876. extra: 975/773,
  30877. bottom: 0/975
  30878. }
  30879. },
  30880. frontNsfw: {
  30881. height: math.unit(5 + 7/12, "feet"),
  30882. weight: math.unit(220, "lb"),
  30883. name: "Front (NSFW)",
  30884. image: {
  30885. source: "./media/characters/nicki/front-nsfw.svg",
  30886. extra: 453/419,
  30887. bottom: 7/460
  30888. }
  30889. },
  30890. frontNsfwAlt: {
  30891. height: math.unit(5 + 7/12, "feet"),
  30892. weight: math.unit(220, "lb"),
  30893. name: "Front (Alt, NSFW)",
  30894. image: {
  30895. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30896. extra: 435/411,
  30897. bottom: 12/447
  30898. }
  30899. },
  30900. backNsfw: {
  30901. height: math.unit(5 + 7/12, "feet"),
  30902. weight: math.unit(220, "lb"),
  30903. name: "Back (NSFW)",
  30904. image: {
  30905. source: "./media/characters/nicki/back-nsfw.svg",
  30906. extra: 440/413,
  30907. bottom: 19/459
  30908. }
  30909. },
  30910. head: {
  30911. height: math.unit(2.1, "feet"),
  30912. name: "Head",
  30913. image: {
  30914. source: "./media/characters/nicki/head.svg"
  30915. }
  30916. },
  30917. paw: {
  30918. height: math.unit(1.88, "feet"),
  30919. name: "Paw",
  30920. image: {
  30921. source: "./media/characters/nicki/paw.svg"
  30922. }
  30923. },
  30924. },
  30925. [
  30926. {
  30927. name: "Normal",
  30928. height: math.unit(5 + 7/12, "feet"),
  30929. default: true
  30930. },
  30931. ]
  30932. ))
  30933. characterMakers.push(() => makeCharacter(
  30934. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30935. {
  30936. front: {
  30937. height: math.unit(7 + 10/12, "feet"),
  30938. weight: math.unit(3.5, "tons"),
  30939. name: "Front",
  30940. image: {
  30941. source: "./media/characters/lee/front.svg",
  30942. extra: 1773/1615,
  30943. bottom: 86/1859
  30944. }
  30945. },
  30946. hand: {
  30947. height: math.unit(1.78, "feet"),
  30948. name: "Hand",
  30949. image: {
  30950. source: "./media/characters/lee/hand.svg"
  30951. }
  30952. },
  30953. maw: {
  30954. height: math.unit(1.18, "feet"),
  30955. name: "Maw",
  30956. image: {
  30957. source: "./media/characters/lee/maw.svg"
  30958. }
  30959. },
  30960. },
  30961. [
  30962. {
  30963. name: "Normal",
  30964. height: math.unit(7 + 10/12, "feet"),
  30965. default: true
  30966. },
  30967. ]
  30968. ))
  30969. characterMakers.push(() => makeCharacter(
  30970. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30971. {
  30972. front: {
  30973. height: math.unit(9, "feet"),
  30974. name: "Front",
  30975. image: {
  30976. source: "./media/characters/guti/front.svg",
  30977. extra: 4551/4355,
  30978. bottom: 123/4674
  30979. }
  30980. },
  30981. tongue: {
  30982. height: math.unit(1, "feet"),
  30983. name: "Tongue",
  30984. image: {
  30985. source: "./media/characters/guti/tongue.svg"
  30986. }
  30987. },
  30988. paw: {
  30989. height: math.unit(1.18, "feet"),
  30990. name: "Paw",
  30991. image: {
  30992. source: "./media/characters/guti/paw.svg"
  30993. }
  30994. },
  30995. },
  30996. [
  30997. {
  30998. name: "Normal",
  30999. height: math.unit(9, "feet"),
  31000. default: true
  31001. },
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31006. {
  31007. side: {
  31008. height: math.unit(5, "meters"),
  31009. name: "Side",
  31010. image: {
  31011. source: "./media/characters/vesper/side.svg",
  31012. extra: 1605/1518,
  31013. bottom: 0/1605
  31014. }
  31015. },
  31016. },
  31017. [
  31018. {
  31019. name: "Small",
  31020. height: math.unit(5, "meters")
  31021. },
  31022. {
  31023. name: "Sage",
  31024. height: math.unit(100, "meters"),
  31025. default: true
  31026. },
  31027. {
  31028. name: "Fun Size",
  31029. height: math.unit(600, "meters")
  31030. },
  31031. {
  31032. name: "Goddess",
  31033. height: math.unit(20000, "km")
  31034. },
  31035. {
  31036. name: "Maximum",
  31037. height: math.unit(5, "galaxies")
  31038. },
  31039. ]
  31040. ))
  31041. characterMakers.push(() => makeCharacter(
  31042. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31043. {
  31044. front: {
  31045. height: math.unit(6 + 3/12, "feet"),
  31046. weight: math.unit(190, "lb"),
  31047. name: "Front",
  31048. image: {
  31049. source: "./media/characters/gawain/front.svg",
  31050. extra: 2222/2139,
  31051. bottom: 90/2312
  31052. }
  31053. },
  31054. back: {
  31055. height: math.unit(6 + 3/12, "feet"),
  31056. weight: math.unit(190, "lb"),
  31057. name: "Back",
  31058. image: {
  31059. source: "./media/characters/gawain/back.svg",
  31060. extra: 2199/2111,
  31061. bottom: 73/2272
  31062. }
  31063. },
  31064. },
  31065. [
  31066. {
  31067. name: "Normal",
  31068. height: math.unit(6 + 3/12, "feet"),
  31069. default: true
  31070. },
  31071. ]
  31072. ))
  31073. characterMakers.push(() => makeCharacter(
  31074. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31075. {
  31076. side: {
  31077. height: math.unit(3.5, "meters"),
  31078. weight: math.unit(16000, "lb"),
  31079. name: "Side",
  31080. image: {
  31081. source: "./media/characters/dascalti/side.svg",
  31082. extra: 392/273,
  31083. bottom: 47/439
  31084. }
  31085. },
  31086. breath: {
  31087. height: math.unit(7.4, "feet"),
  31088. name: "Breath",
  31089. image: {
  31090. source: "./media/characters/dascalti/breath.svg"
  31091. }
  31092. },
  31093. fed: {
  31094. height: math.unit(3.6, "meters"),
  31095. weight: math.unit(16000, "lb"),
  31096. name: "Fed",
  31097. image: {
  31098. source: "./media/characters/dascalti/fed.svg",
  31099. extra: 1419/820,
  31100. bottom: 95/1514
  31101. }
  31102. },
  31103. },
  31104. [
  31105. {
  31106. name: "Normal",
  31107. height: math.unit(3.5, "meters"),
  31108. default: true
  31109. },
  31110. ]
  31111. ))
  31112. characterMakers.push(() => makeCharacter(
  31113. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31114. {
  31115. front: {
  31116. height: math.unit(3 + 5/12, "feet"),
  31117. name: "Front",
  31118. image: {
  31119. source: "./media/characters/mauve/front.svg",
  31120. extra: 1126/1033,
  31121. bottom: 65/1191
  31122. }
  31123. },
  31124. side: {
  31125. height: math.unit(3 + 5/12, "feet"),
  31126. name: "Side",
  31127. image: {
  31128. source: "./media/characters/mauve/side.svg",
  31129. extra: 1089/1001,
  31130. bottom: 29/1118
  31131. }
  31132. },
  31133. back: {
  31134. height: math.unit(3 + 5/12, "feet"),
  31135. name: "Back",
  31136. image: {
  31137. source: "./media/characters/mauve/back.svg",
  31138. extra: 1173/1053,
  31139. bottom: 109/1282
  31140. }
  31141. },
  31142. },
  31143. [
  31144. {
  31145. name: "Normal",
  31146. height: math.unit(3 + 5/12, "feet"),
  31147. default: true
  31148. },
  31149. ]
  31150. ))
  31151. characterMakers.push(() => makeCharacter(
  31152. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31153. {
  31154. front: {
  31155. height: math.unit(6 + 3/12, "feet"),
  31156. weight: math.unit(430, "lb"),
  31157. name: "Front",
  31158. image: {
  31159. source: "./media/characters/carlos/front.svg",
  31160. extra: 1964/1913,
  31161. bottom: 70/2034
  31162. }
  31163. },
  31164. },
  31165. [
  31166. {
  31167. name: "Normal",
  31168. height: math.unit(6 + 3/12, "feet"),
  31169. default: true
  31170. },
  31171. ]
  31172. ))
  31173. characterMakers.push(() => makeCharacter(
  31174. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31175. {
  31176. back: {
  31177. height: math.unit(5 + 10/12, "feet"),
  31178. weight: math.unit(200, "lb"),
  31179. name: "Back",
  31180. image: {
  31181. source: "./media/characters/jax/back.svg",
  31182. extra: 764/739,
  31183. bottom: 25/789
  31184. }
  31185. },
  31186. },
  31187. [
  31188. {
  31189. name: "Normal",
  31190. height: math.unit(5 + 10/12, "feet"),
  31191. default: true
  31192. },
  31193. ]
  31194. ))
  31195. characterMakers.push(() => makeCharacter(
  31196. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31197. {
  31198. front: {
  31199. height: math.unit(8, "feet"),
  31200. weight: math.unit(250, "lb"),
  31201. name: "Front",
  31202. image: {
  31203. source: "./media/characters/eikthynir/front.svg",
  31204. extra: 1332/1166,
  31205. bottom: 82/1414
  31206. }
  31207. },
  31208. back: {
  31209. height: math.unit(8, "feet"),
  31210. weight: math.unit(250, "lb"),
  31211. name: "Back",
  31212. image: {
  31213. source: "./media/characters/eikthynir/back.svg",
  31214. extra: 1342/1190,
  31215. bottom: 19/1361
  31216. }
  31217. },
  31218. dick: {
  31219. height: math.unit(2.35, "feet"),
  31220. name: "Dick",
  31221. image: {
  31222. source: "./media/characters/eikthynir/dick.svg"
  31223. }
  31224. },
  31225. },
  31226. [
  31227. {
  31228. name: "Normal",
  31229. height: math.unit(8, "feet"),
  31230. default: true
  31231. },
  31232. ]
  31233. ))
  31234. characterMakers.push(() => makeCharacter(
  31235. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31236. {
  31237. front: {
  31238. height: math.unit(99, "meters"),
  31239. weight: math.unit(13000, "tons"),
  31240. name: "Front",
  31241. image: {
  31242. source: "./media/characters/zlmos/front.svg",
  31243. extra: 2202/1992,
  31244. bottom: 315/2517
  31245. }
  31246. },
  31247. },
  31248. [
  31249. {
  31250. name: "Macro",
  31251. height: math.unit(99, "meters"),
  31252. default: true
  31253. },
  31254. ]
  31255. ))
  31256. characterMakers.push(() => makeCharacter(
  31257. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31258. {
  31259. front: {
  31260. height: math.unit(6 + 5/12, "feet"),
  31261. name: "Front",
  31262. image: {
  31263. source: "./media/characters/purri/front.svg",
  31264. extra: 1698/1610,
  31265. bottom: 32/1730
  31266. }
  31267. },
  31268. frontAlt: {
  31269. height: math.unit(6 + 5/12, "feet"),
  31270. name: "Front (Alt)",
  31271. image: {
  31272. source: "./media/characters/purri/front-alt.svg",
  31273. extra: 450/420,
  31274. bottom: 26/476
  31275. }
  31276. },
  31277. boots: {
  31278. height: math.unit(5.5, "feet"),
  31279. name: "Boots",
  31280. image: {
  31281. source: "./media/characters/purri/boots.svg",
  31282. extra: 905/853,
  31283. bottom: 18/923
  31284. }
  31285. },
  31286. lying: {
  31287. height: math.unit(2, "feet"),
  31288. name: "Lying",
  31289. image: {
  31290. source: "./media/characters/purri/lying.svg",
  31291. extra: 940/843,
  31292. bottom: 146/1086
  31293. }
  31294. },
  31295. devious: {
  31296. height: math.unit(1.77, "feet"),
  31297. name: "Devious",
  31298. image: {
  31299. source: "./media/characters/purri/devious.svg",
  31300. extra: 1440/1155,
  31301. bottom: 147/1587
  31302. }
  31303. },
  31304. bean: {
  31305. height: math.unit(1.94, "feet"),
  31306. name: "Bean",
  31307. image: {
  31308. source: "./media/characters/purri/bean.svg"
  31309. }
  31310. },
  31311. },
  31312. [
  31313. {
  31314. name: "Micro",
  31315. height: math.unit(1, "mm")
  31316. },
  31317. {
  31318. name: "Normal",
  31319. height: math.unit(6 + 5/12, "feet"),
  31320. default: true
  31321. },
  31322. {
  31323. name: "Macro :3c",
  31324. height: math.unit(2, "miles")
  31325. },
  31326. ]
  31327. ))
  31328. characterMakers.push(() => makeCharacter(
  31329. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31330. {
  31331. front: {
  31332. height: math.unit(6 + 2/12, "feet"),
  31333. weight: math.unit(250, "lb"),
  31334. name: "Front",
  31335. image: {
  31336. source: "./media/characters/moonlight/front.svg",
  31337. extra: 1044/908,
  31338. bottom: 56/1100
  31339. }
  31340. },
  31341. feral: {
  31342. height: math.unit(3 + 1/12, "feet"),
  31343. weight: math.unit(50, "kg"),
  31344. name: "Feral",
  31345. image: {
  31346. source: "./media/characters/moonlight/feral.svg",
  31347. extra: 3705/2791,
  31348. bottom: 145/3850
  31349. }
  31350. },
  31351. paw: {
  31352. height: math.unit(1, "feet"),
  31353. name: "Paw",
  31354. image: {
  31355. source: "./media/characters/moonlight/paw.svg"
  31356. }
  31357. },
  31358. paws: {
  31359. height: math.unit(0.98, "feet"),
  31360. name: "Paws",
  31361. image: {
  31362. source: "./media/characters/moonlight/paws.svg",
  31363. extra: 939/939,
  31364. bottom: 50/989
  31365. }
  31366. },
  31367. mouth: {
  31368. height: math.unit(0.48, "feet"),
  31369. name: "Mouth",
  31370. image: {
  31371. source: "./media/characters/moonlight/mouth.svg"
  31372. }
  31373. },
  31374. dick: {
  31375. height: math.unit(1.46, "feet"),
  31376. name: "Dick",
  31377. image: {
  31378. source: "./media/characters/moonlight/dick.svg"
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Normal",
  31385. height: math.unit(6 + 2/12, "feet"),
  31386. default: true
  31387. },
  31388. {
  31389. name: "Macro",
  31390. height: math.unit(300, "feet")
  31391. },
  31392. {
  31393. name: "Macro+",
  31394. height: math.unit(1, "mile")
  31395. },
  31396. {
  31397. name: "Mt. Moon",
  31398. height: math.unit(5, "miles")
  31399. },
  31400. {
  31401. name: "Megamacro",
  31402. height: math.unit(15, "miles")
  31403. },
  31404. ]
  31405. ))
  31406. characterMakers.push(() => makeCharacter(
  31407. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31408. {
  31409. back: {
  31410. height: math.unit(6, "feet"),
  31411. weight: math.unit(150, "lb"),
  31412. name: "Back",
  31413. image: {
  31414. source: "./media/characters/sylen/back.svg",
  31415. extra: 1335/1273,
  31416. bottom: 107/1442
  31417. }
  31418. },
  31419. },
  31420. [
  31421. {
  31422. name: "Normal",
  31423. height: math.unit(5 + 5/12, "feet")
  31424. },
  31425. {
  31426. name: "Megamacro",
  31427. height: math.unit(3, "miles"),
  31428. default: true
  31429. },
  31430. ]
  31431. ))
  31432. characterMakers.push(() => makeCharacter(
  31433. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31434. {
  31435. front: {
  31436. height: math.unit(6, "feet"),
  31437. weight: math.unit(190, "lb"),
  31438. name: "Front",
  31439. image: {
  31440. source: "./media/characters/huttser/front.svg",
  31441. extra: 1152/1058,
  31442. bottom: 23/1175
  31443. }
  31444. },
  31445. side: {
  31446. height: math.unit(6, "feet"),
  31447. weight: math.unit(190, "lb"),
  31448. name: "Side",
  31449. image: {
  31450. source: "./media/characters/huttser/side.svg",
  31451. extra: 1174/1065,
  31452. bottom: 18/1192
  31453. }
  31454. },
  31455. back: {
  31456. height: math.unit(6, "feet"),
  31457. weight: math.unit(190, "lb"),
  31458. name: "Back",
  31459. image: {
  31460. source: "./media/characters/huttser/back.svg",
  31461. extra: 1158/1056,
  31462. bottom: 12/1170
  31463. }
  31464. },
  31465. },
  31466. [
  31467. ]
  31468. ))
  31469. characterMakers.push(() => makeCharacter(
  31470. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31471. {
  31472. side: {
  31473. height: math.unit(12 + 9/12, "feet"),
  31474. weight: math.unit(15000, "lb"),
  31475. name: "Side",
  31476. image: {
  31477. source: "./media/characters/faan/side.svg",
  31478. extra: 2747/2697,
  31479. bottom: 0/2747
  31480. }
  31481. },
  31482. front: {
  31483. height: math.unit(12 + 9/12, "feet"),
  31484. weight: math.unit(15000, "lb"),
  31485. name: "Front",
  31486. image: {
  31487. source: "./media/characters/faan/front.svg",
  31488. extra: 607/571,
  31489. bottom: 24/631
  31490. }
  31491. },
  31492. head: {
  31493. height: math.unit(2.85, "feet"),
  31494. name: "Head",
  31495. image: {
  31496. source: "./media/characters/faan/head.svg"
  31497. }
  31498. },
  31499. headAlt: {
  31500. height: math.unit(3.13, "feet"),
  31501. name: "Head-alt",
  31502. image: {
  31503. source: "./media/characters/faan/head-alt.svg"
  31504. }
  31505. },
  31506. },
  31507. [
  31508. {
  31509. name: "Normal",
  31510. height: math.unit(12 + 9/12, "feet"),
  31511. default: true
  31512. },
  31513. ]
  31514. ))
  31515. characterMakers.push(() => makeCharacter(
  31516. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31517. {
  31518. front: {
  31519. height: math.unit(6, "feet"),
  31520. weight: math.unit(300, "lb"),
  31521. name: "Front",
  31522. image: {
  31523. source: "./media/characters/tanio/front.svg",
  31524. extra: 711/673,
  31525. bottom: 25/736
  31526. }
  31527. },
  31528. },
  31529. [
  31530. {
  31531. name: "Normal",
  31532. height: math.unit(6, "feet"),
  31533. default: true
  31534. },
  31535. ]
  31536. ))
  31537. characterMakers.push(() => makeCharacter(
  31538. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31539. {
  31540. front: {
  31541. height: math.unit(3, "inches"),
  31542. name: "Front",
  31543. image: {
  31544. source: "./media/characters/noboru/front.svg",
  31545. extra: 1039/932,
  31546. bottom: 18/1057
  31547. }
  31548. },
  31549. },
  31550. [
  31551. {
  31552. name: "Micro",
  31553. height: math.unit(3, "inches"),
  31554. default: true
  31555. },
  31556. ]
  31557. ))
  31558. characterMakers.push(() => makeCharacter(
  31559. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31560. {
  31561. front: {
  31562. height: math.unit(1.85, "meters"),
  31563. weight: math.unit(80, "kg"),
  31564. name: "Front",
  31565. image: {
  31566. source: "./media/characters/daniel-barrett/front.svg",
  31567. extra: 355/337,
  31568. bottom: 9/364
  31569. }
  31570. },
  31571. },
  31572. [
  31573. {
  31574. name: "Pico",
  31575. height: math.unit(0.0433, "mm")
  31576. },
  31577. {
  31578. name: "Nano",
  31579. height: math.unit(1.5, "mm")
  31580. },
  31581. {
  31582. name: "Micro",
  31583. height: math.unit(5.3, "cm"),
  31584. default: true
  31585. },
  31586. {
  31587. name: "Normal",
  31588. height: math.unit(1.85, "meters")
  31589. },
  31590. {
  31591. name: "Macro",
  31592. height: math.unit(64.7, "meters")
  31593. },
  31594. {
  31595. name: "Megamacro",
  31596. height: math.unit(2.26, "km")
  31597. },
  31598. {
  31599. name: "Gigamacro",
  31600. height: math.unit(79, "km")
  31601. },
  31602. {
  31603. name: "Teramacro",
  31604. height: math.unit(2765, "km")
  31605. },
  31606. {
  31607. name: "Petamacro",
  31608. height: math.unit(96678, "km")
  31609. },
  31610. ]
  31611. ))
  31612. characterMakers.push(() => makeCharacter(
  31613. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31614. {
  31615. front: {
  31616. height: math.unit(30, "meters"),
  31617. weight: math.unit(400, "tons"),
  31618. name: "Front",
  31619. image: {
  31620. source: "./media/characters/zeel/front.svg",
  31621. extra: 2599/2599,
  31622. bottom: 226/2825
  31623. }
  31624. },
  31625. },
  31626. [
  31627. {
  31628. name: "Macro",
  31629. height: math.unit(30, "meters"),
  31630. default: true
  31631. },
  31632. ]
  31633. ))
  31634. characterMakers.push(() => makeCharacter(
  31635. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31636. {
  31637. front: {
  31638. height: math.unit(6 + 7/12, "feet"),
  31639. weight: math.unit(210, "lb"),
  31640. name: "Front",
  31641. image: {
  31642. source: "./media/characters/tarn/front.svg",
  31643. extra: 3517/3220,
  31644. bottom: 91/3608
  31645. }
  31646. },
  31647. back: {
  31648. height: math.unit(6 + 7/12, "feet"),
  31649. weight: math.unit(210, "lb"),
  31650. name: "Back",
  31651. image: {
  31652. source: "./media/characters/tarn/back.svg",
  31653. extra: 3566/3241,
  31654. bottom: 34/3600
  31655. }
  31656. },
  31657. dick: {
  31658. height: math.unit(1.65, "feet"),
  31659. name: "Dick",
  31660. image: {
  31661. source: "./media/characters/tarn/dick.svg"
  31662. }
  31663. },
  31664. paw: {
  31665. height: math.unit(1.80, "feet"),
  31666. name: "Paw",
  31667. image: {
  31668. source: "./media/characters/tarn/paw.svg"
  31669. }
  31670. },
  31671. tongue: {
  31672. height: math.unit(0.97, "feet"),
  31673. name: "Tongue",
  31674. image: {
  31675. source: "./media/characters/tarn/tongue.svg"
  31676. }
  31677. },
  31678. },
  31679. [
  31680. {
  31681. name: "Micro",
  31682. height: math.unit(4, "inches")
  31683. },
  31684. {
  31685. name: "Normal",
  31686. height: math.unit(6 + 7/12, "feet"),
  31687. default: true
  31688. },
  31689. {
  31690. name: "Macro",
  31691. height: math.unit(300, "feet")
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31697. {
  31698. front: {
  31699. height: math.unit(5 + 7/12, "feet"),
  31700. weight: math.unit(80, "kg"),
  31701. name: "Front",
  31702. image: {
  31703. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31704. extra: 3023/2865,
  31705. bottom: 33/3056
  31706. }
  31707. },
  31708. back: {
  31709. height: math.unit(5 + 7/12, "feet"),
  31710. weight: math.unit(80, "kg"),
  31711. name: "Back",
  31712. image: {
  31713. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31714. extra: 3020/2886,
  31715. bottom: 30/3050
  31716. }
  31717. },
  31718. dick: {
  31719. height: math.unit(0.98, "feet"),
  31720. name: "Dick",
  31721. image: {
  31722. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31723. }
  31724. },
  31725. anatomy: {
  31726. height: math.unit(2.86, "feet"),
  31727. name: "Anatomy",
  31728. image: {
  31729. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31730. }
  31731. },
  31732. },
  31733. [
  31734. {
  31735. name: "Really Small",
  31736. height: math.unit(2, "inches")
  31737. },
  31738. {
  31739. name: "Micro",
  31740. height: math.unit(5.583, "inches")
  31741. },
  31742. {
  31743. name: "Normal",
  31744. height: math.unit(5 + 7/12, "feet"),
  31745. default: true
  31746. },
  31747. {
  31748. name: "Macro",
  31749. height: math.unit(67, "feet")
  31750. },
  31751. {
  31752. name: "Megamacro",
  31753. height: math.unit(134, "feet")
  31754. },
  31755. ]
  31756. ))
  31757. characterMakers.push(() => makeCharacter(
  31758. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31759. {
  31760. front: {
  31761. height: math.unit(9, "feet"),
  31762. weight: math.unit(120, "lb"),
  31763. name: "Front",
  31764. image: {
  31765. source: "./media/characters/sally/front.svg",
  31766. extra: 1506/1349,
  31767. bottom: 66/1572
  31768. }
  31769. },
  31770. },
  31771. [
  31772. {
  31773. name: "Normal",
  31774. height: math.unit(9, "feet"),
  31775. default: true
  31776. },
  31777. ]
  31778. ))
  31779. characterMakers.push(() => makeCharacter(
  31780. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31781. {
  31782. front: {
  31783. height: math.unit(8, "feet"),
  31784. weight: math.unit(900, "lb"),
  31785. name: "Front",
  31786. image: {
  31787. source: "./media/characters/owen/front.svg",
  31788. extra: 1761/1657,
  31789. bottom: 74/1835
  31790. }
  31791. },
  31792. side: {
  31793. height: math.unit(8, "feet"),
  31794. weight: math.unit(900, "lb"),
  31795. name: "Side",
  31796. image: {
  31797. source: "./media/characters/owen/side.svg",
  31798. extra: 1797/1734,
  31799. bottom: 30/1827
  31800. }
  31801. },
  31802. back: {
  31803. height: math.unit(8, "feet"),
  31804. weight: math.unit(900, "lb"),
  31805. name: "Back",
  31806. image: {
  31807. source: "./media/characters/owen/back.svg",
  31808. extra: 1796/1706,
  31809. bottom: 59/1855
  31810. }
  31811. },
  31812. maw: {
  31813. height: math.unit(1.76, "feet"),
  31814. name: "Maw",
  31815. image: {
  31816. source: "./media/characters/owen/maw.svg"
  31817. }
  31818. },
  31819. },
  31820. [
  31821. {
  31822. name: "Normal",
  31823. height: math.unit(8, "feet"),
  31824. default: true
  31825. },
  31826. ]
  31827. ))
  31828. characterMakers.push(() => makeCharacter(
  31829. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31830. {
  31831. front: {
  31832. height: math.unit(4, "feet"),
  31833. weight: math.unit(400, "lb"),
  31834. name: "Front",
  31835. image: {
  31836. source: "./media/characters/ryth/front.svg",
  31837. extra: 1920/1748,
  31838. bottom: 42/1962
  31839. }
  31840. },
  31841. back: {
  31842. height: math.unit(4, "feet"),
  31843. weight: math.unit(400, "lb"),
  31844. name: "Back",
  31845. image: {
  31846. source: "./media/characters/ryth/back.svg",
  31847. extra: 1897/1690,
  31848. bottom: 89/1986
  31849. }
  31850. },
  31851. mouth: {
  31852. height: math.unit(1.39, "feet"),
  31853. name: "Mouth",
  31854. image: {
  31855. source: "./media/characters/ryth/mouth.svg"
  31856. }
  31857. },
  31858. tailmaw: {
  31859. height: math.unit(1.23, "feet"),
  31860. name: "Tailmaw",
  31861. image: {
  31862. source: "./media/characters/ryth/tailmaw.svg"
  31863. }
  31864. },
  31865. goia: {
  31866. height: math.unit(12, "feet"),
  31867. weight: math.unit(10800, "lb"),
  31868. name: "Goia",
  31869. image: {
  31870. source: "./media/characters/ryth/goia.svg",
  31871. extra: 3450/3198,
  31872. bottom: 61/3511
  31873. }
  31874. },
  31875. },
  31876. [
  31877. {
  31878. name: "Normal",
  31879. height: math.unit(4, "feet"),
  31880. default: true
  31881. },
  31882. ]
  31883. ))
  31884. characterMakers.push(() => makeCharacter(
  31885. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31886. {
  31887. front: {
  31888. height: math.unit(7, "feet"),
  31889. weight: math.unit(180, "lb"),
  31890. name: "Front",
  31891. image: {
  31892. source: "./media/characters/necrolance/front.svg",
  31893. extra: 1062/947,
  31894. bottom: 41/1103
  31895. }
  31896. },
  31897. back: {
  31898. height: math.unit(7, "feet"),
  31899. weight: math.unit(180, "lb"),
  31900. name: "Back",
  31901. image: {
  31902. source: "./media/characters/necrolance/back.svg",
  31903. extra: 1045/984,
  31904. bottom: 14/1059
  31905. }
  31906. },
  31907. wing: {
  31908. height: math.unit(2.67, "feet"),
  31909. name: "Wing",
  31910. image: {
  31911. source: "./media/characters/necrolance/wing.svg"
  31912. }
  31913. },
  31914. },
  31915. [
  31916. {
  31917. name: "Normal",
  31918. height: math.unit(7, "feet"),
  31919. default: true
  31920. },
  31921. ]
  31922. ))
  31923. characterMakers.push(() => makeCharacter(
  31924. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31925. {
  31926. front: {
  31927. height: math.unit(76, "meters"),
  31928. weight: math.unit(30000, "tons"),
  31929. name: "Front",
  31930. image: {
  31931. source: "./media/characters/tyler/front.svg",
  31932. extra: 1640/1640,
  31933. bottom: 114/1754
  31934. }
  31935. },
  31936. },
  31937. [
  31938. {
  31939. name: "Macro",
  31940. height: math.unit(76, "meters"),
  31941. default: true
  31942. },
  31943. ]
  31944. ))
  31945. characterMakers.push(() => makeCharacter(
  31946. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31947. {
  31948. front: {
  31949. height: math.unit(4 + 11/12, "feet"),
  31950. weight: math.unit(132, "lb"),
  31951. name: "Front",
  31952. image: {
  31953. source: "./media/characters/icey/front.svg",
  31954. extra: 2750/2550,
  31955. bottom: 33/2783
  31956. }
  31957. },
  31958. back: {
  31959. height: math.unit(4 + 11/12, "feet"),
  31960. weight: math.unit(132, "lb"),
  31961. name: "Back",
  31962. image: {
  31963. source: "./media/characters/icey/back.svg",
  31964. extra: 2624/2481,
  31965. bottom: 35/2659
  31966. }
  31967. },
  31968. },
  31969. [
  31970. {
  31971. name: "Normal",
  31972. height: math.unit(4 + 11/12, "feet"),
  31973. default: true
  31974. },
  31975. ]
  31976. ))
  31977. characterMakers.push(() => makeCharacter(
  31978. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31979. {
  31980. front: {
  31981. height: math.unit(100, "feet"),
  31982. weight: math.unit(0, "lb"),
  31983. name: "Front",
  31984. image: {
  31985. source: "./media/characters/smile/front.svg",
  31986. extra: 2983/2912,
  31987. bottom: 162/3145
  31988. }
  31989. },
  31990. back: {
  31991. height: math.unit(100, "feet"),
  31992. weight: math.unit(0, "lb"),
  31993. name: "Back",
  31994. image: {
  31995. source: "./media/characters/smile/back.svg",
  31996. extra: 3143/3031,
  31997. bottom: 91/3234
  31998. }
  31999. },
  32000. head: {
  32001. height: math.unit(26.3, "feet"),
  32002. weight: math.unit(0, "lb"),
  32003. name: "Head",
  32004. image: {
  32005. source: "./media/characters/smile/head.svg"
  32006. }
  32007. },
  32008. collar: {
  32009. height: math.unit(5.3, "feet"),
  32010. weight: math.unit(0, "lb"),
  32011. name: "Collar",
  32012. image: {
  32013. source: "./media/characters/smile/collar.svg"
  32014. }
  32015. },
  32016. },
  32017. [
  32018. {
  32019. name: "Macro",
  32020. height: math.unit(100, "feet"),
  32021. default: true
  32022. },
  32023. ]
  32024. ))
  32025. characterMakers.push(() => makeCharacter(
  32026. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32027. {
  32028. dragon: {
  32029. height: math.unit(26, "feet"),
  32030. weight: math.unit(36, "tons"),
  32031. name: "Dragon",
  32032. image: {
  32033. source: "./media/characters/arimphae/dragon.svg",
  32034. extra: 1574/983,
  32035. bottom: 357/1931
  32036. }
  32037. },
  32038. drake: {
  32039. height: math.unit(9, "feet"),
  32040. weight: math.unit(1.5, "tons"),
  32041. name: "Drake",
  32042. image: {
  32043. source: "./media/characters/arimphae/drake.svg",
  32044. extra: 1120/925,
  32045. bottom: 435/1555
  32046. }
  32047. },
  32048. },
  32049. [
  32050. {
  32051. name: "Small",
  32052. height: math.unit(26*5/9, "feet")
  32053. },
  32054. {
  32055. name: "Normal",
  32056. height: math.unit(26, "feet"),
  32057. default: true
  32058. },
  32059. ]
  32060. ))
  32061. characterMakers.push(() => makeCharacter(
  32062. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32063. {
  32064. front: {
  32065. height: math.unit(8 + 9/12, "feet"),
  32066. name: "Front",
  32067. image: {
  32068. source: "./media/characters/xander/front.svg",
  32069. extra: 848/673,
  32070. bottom: 62/910
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "Normal",
  32077. height: math.unit(8 + 9/12, "feet"),
  32078. default: true
  32079. },
  32080. {
  32081. name: "Gaze Grabber",
  32082. height: math.unit(13 + 8/12, "feet")
  32083. },
  32084. {
  32085. name: "Jaw Dropper",
  32086. height: math.unit(27, "feet")
  32087. },
  32088. {
  32089. name: "Show Stopper",
  32090. height: math.unit(136, "feet")
  32091. },
  32092. {
  32093. name: "Superstar",
  32094. height: math.unit(1.9e6, "miles")
  32095. },
  32096. ]
  32097. ))
  32098. characterMakers.push(() => makeCharacter(
  32099. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32100. {
  32101. side: {
  32102. height: math.unit(2100, "feet"),
  32103. name: "Side",
  32104. image: {
  32105. source: "./media/characters/osiris/side.svg",
  32106. extra: 1105/939,
  32107. bottom: 167/1272
  32108. }
  32109. },
  32110. },
  32111. [
  32112. {
  32113. name: "Macro",
  32114. height: math.unit(2100, "feet"),
  32115. default: true
  32116. },
  32117. ]
  32118. ))
  32119. characterMakers.push(() => makeCharacter(
  32120. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32121. {
  32122. front: {
  32123. height: math.unit(6 + 8/12, "feet"),
  32124. weight: math.unit(225, "lb"),
  32125. name: "Front",
  32126. image: {
  32127. source: "./media/characters/rhys-londe/front.svg",
  32128. extra: 2258/2141,
  32129. bottom: 188/2446
  32130. }
  32131. },
  32132. back: {
  32133. height: math.unit(6 + 8/12, "feet"),
  32134. weight: math.unit(225, "lb"),
  32135. name: "Back",
  32136. image: {
  32137. source: "./media/characters/rhys-londe/back.svg",
  32138. extra: 2237/2137,
  32139. bottom: 63/2300
  32140. }
  32141. },
  32142. frontNsfw: {
  32143. height: math.unit(6 + 8/12, "feet"),
  32144. weight: math.unit(225, "lb"),
  32145. name: "Front (NSFW)",
  32146. image: {
  32147. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32148. extra: 2258/2141,
  32149. bottom: 188/2446
  32150. }
  32151. },
  32152. backNsfw: {
  32153. height: math.unit(6 + 8/12, "feet"),
  32154. weight: math.unit(225, "lb"),
  32155. name: "Back (NSFW)",
  32156. image: {
  32157. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32158. extra: 2237/2137,
  32159. bottom: 63/2300
  32160. }
  32161. },
  32162. dick: {
  32163. height: math.unit(30, "inches"),
  32164. name: "Dick",
  32165. image: {
  32166. source: "./media/characters/rhys-londe/dick.svg"
  32167. }
  32168. },
  32169. maw: {
  32170. height: math.unit(1.6, "feet"),
  32171. name: "Maw",
  32172. image: {
  32173. source: "./media/characters/rhys-londe/maw.svg"
  32174. }
  32175. },
  32176. },
  32177. [
  32178. {
  32179. name: "Normal",
  32180. height: math.unit(6 + 8/12, "feet"),
  32181. default: true
  32182. },
  32183. ]
  32184. ))
  32185. characterMakers.push(() => makeCharacter(
  32186. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32187. {
  32188. front: {
  32189. height: math.unit(3 + 10/12, "feet"),
  32190. weight: math.unit(90, "lb"),
  32191. name: "Front",
  32192. image: {
  32193. source: "./media/characters/taivas-ensim/front.svg",
  32194. extra: 1327/1216,
  32195. bottom: 96/1423
  32196. }
  32197. },
  32198. back: {
  32199. height: math.unit(3 + 10/12, "feet"),
  32200. weight: math.unit(90, "lb"),
  32201. name: "Back",
  32202. image: {
  32203. source: "./media/characters/taivas-ensim/back.svg",
  32204. extra: 1355/1247,
  32205. bottom: 11/1366
  32206. }
  32207. },
  32208. frontNsfw: {
  32209. height: math.unit(3 + 10/12, "feet"),
  32210. weight: math.unit(90, "lb"),
  32211. name: "Front (NSFW)",
  32212. image: {
  32213. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32214. extra: 1327/1216,
  32215. bottom: 96/1423
  32216. }
  32217. },
  32218. backNsfw: {
  32219. height: math.unit(3 + 10/12, "feet"),
  32220. weight: math.unit(90, "lb"),
  32221. name: "Back (NSFW)",
  32222. image: {
  32223. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32224. extra: 1355/1247,
  32225. bottom: 11/1366
  32226. }
  32227. },
  32228. },
  32229. [
  32230. {
  32231. name: "Normal",
  32232. height: math.unit(3 + 10/12, "feet"),
  32233. default: true
  32234. },
  32235. ]
  32236. ))
  32237. characterMakers.push(() => makeCharacter(
  32238. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32239. {
  32240. front: {
  32241. height: math.unit(9 + 6/12, "feet"),
  32242. weight: math.unit(940, "lb"),
  32243. name: "Front",
  32244. image: {
  32245. source: "./media/characters/byliss/front.svg",
  32246. extra: 1327/1290,
  32247. bottom: 82/1409
  32248. }
  32249. },
  32250. back: {
  32251. height: math.unit(9 + 6/12, "feet"),
  32252. weight: math.unit(940, "lb"),
  32253. name: "Back",
  32254. image: {
  32255. source: "./media/characters/byliss/back.svg",
  32256. extra: 1376/1349,
  32257. bottom: 9/1385
  32258. }
  32259. },
  32260. frontNsfw: {
  32261. height: math.unit(9 + 6/12, "feet"),
  32262. weight: math.unit(940, "lb"),
  32263. name: "Front (NSFW)",
  32264. image: {
  32265. source: "./media/characters/byliss/front-nsfw.svg",
  32266. extra: 1327/1290,
  32267. bottom: 82/1409
  32268. }
  32269. },
  32270. backNsfw: {
  32271. height: math.unit(9 + 6/12, "feet"),
  32272. weight: math.unit(940, "lb"),
  32273. name: "Back (NSFW)",
  32274. image: {
  32275. source: "./media/characters/byliss/back-nsfw.svg",
  32276. extra: 1376/1349,
  32277. bottom: 9/1385
  32278. }
  32279. },
  32280. },
  32281. [
  32282. {
  32283. name: "Normal",
  32284. height: math.unit(9 + 6/12, "feet"),
  32285. default: true
  32286. },
  32287. ]
  32288. ))
  32289. characterMakers.push(() => makeCharacter(
  32290. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32291. {
  32292. front: {
  32293. height: math.unit(5 + 2/12, "feet"),
  32294. weight: math.unit(200, "lb"),
  32295. name: "Front",
  32296. image: {
  32297. source: "./media/characters/noraly/front.svg",
  32298. extra: 4985/4773,
  32299. bottom: 150/5135
  32300. }
  32301. },
  32302. full: {
  32303. height: math.unit(5 + 2/12, "feet"),
  32304. weight: math.unit(164, "lb"),
  32305. name: "Full",
  32306. image: {
  32307. source: "./media/characters/noraly/full.svg",
  32308. extra: 1114/1059,
  32309. bottom: 35/1149
  32310. }
  32311. },
  32312. fuller: {
  32313. height: math.unit(5 + 2/12, "feet"),
  32314. weight: math.unit(230, "lb"),
  32315. name: "Fuller",
  32316. image: {
  32317. source: "./media/characters/noraly/fuller.svg",
  32318. extra: 1114/1059,
  32319. bottom: 35/1149
  32320. }
  32321. },
  32322. fullest: {
  32323. height: math.unit(5 + 2/12, "feet"),
  32324. weight: math.unit(300, "lb"),
  32325. name: "Fullest",
  32326. image: {
  32327. source: "./media/characters/noraly/fullest.svg",
  32328. extra: 1114/1059,
  32329. bottom: 35/1149
  32330. }
  32331. },
  32332. },
  32333. [
  32334. {
  32335. name: "Normal",
  32336. height: math.unit(5 + 2/12, "feet"),
  32337. default: true
  32338. },
  32339. ]
  32340. ))
  32341. characterMakers.push(() => makeCharacter(
  32342. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32343. {
  32344. front: {
  32345. height: math.unit(5 + 2/12, "feet"),
  32346. weight: math.unit(210, "lb"),
  32347. name: "Front",
  32348. image: {
  32349. source: "./media/characters/pera/front.svg",
  32350. extra: 1560/1531,
  32351. bottom: 165/1725
  32352. }
  32353. },
  32354. back: {
  32355. height: math.unit(5 + 2/12, "feet"),
  32356. weight: math.unit(210, "lb"),
  32357. name: "Back",
  32358. image: {
  32359. source: "./media/characters/pera/back.svg",
  32360. extra: 1523/1493,
  32361. bottom: 152/1675
  32362. }
  32363. },
  32364. dick: {
  32365. height: math.unit(2.4, "feet"),
  32366. name: "Dick",
  32367. image: {
  32368. source: "./media/characters/pera/dick.svg"
  32369. }
  32370. },
  32371. },
  32372. [
  32373. {
  32374. name: "Normal",
  32375. height: math.unit(5 + 2/12, "feet"),
  32376. default: true
  32377. },
  32378. ]
  32379. ))
  32380. characterMakers.push(() => makeCharacter(
  32381. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32382. {
  32383. front: {
  32384. height: math.unit(12, "feet"),
  32385. weight: math.unit(3200, "lb"),
  32386. name: "Front",
  32387. image: {
  32388. source: "./media/characters/julian/front.svg",
  32389. extra: 2962/2701,
  32390. bottom: 184/3146
  32391. }
  32392. },
  32393. maw: {
  32394. height: math.unit(5.35, "feet"),
  32395. name: "Maw",
  32396. image: {
  32397. source: "./media/characters/julian/maw.svg"
  32398. }
  32399. },
  32400. paw: {
  32401. height: math.unit(3.07, "feet"),
  32402. name: "Paw",
  32403. image: {
  32404. source: "./media/characters/julian/paw.svg"
  32405. }
  32406. },
  32407. },
  32408. [
  32409. {
  32410. name: "Default",
  32411. height: math.unit(12, "feet"),
  32412. default: true
  32413. },
  32414. {
  32415. name: "Big",
  32416. height: math.unit(50, "feet")
  32417. },
  32418. {
  32419. name: "Really Big",
  32420. height: math.unit(1, "mile")
  32421. },
  32422. {
  32423. name: "Extremely Big",
  32424. height: math.unit(100, "miles")
  32425. },
  32426. {
  32427. name: "Planet Hugger",
  32428. height: math.unit(200, "megameters")
  32429. },
  32430. {
  32431. name: "Unreasonably Big",
  32432. height: math.unit(1e300, "meters")
  32433. },
  32434. ]
  32435. ))
  32436. characterMakers.push(() => makeCharacter(
  32437. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32438. {
  32439. solgooleo: {
  32440. height: math.unit(4, "meters"),
  32441. weight: math.unit(6000*1.5, "kg"),
  32442. volume: math.unit(6000, "liters"),
  32443. name: "Solgooleo",
  32444. image: {
  32445. source: "./media/characters/pi/solgooleo.svg",
  32446. extra: 388/331,
  32447. bottom: 29/417
  32448. }
  32449. },
  32450. },
  32451. [
  32452. {
  32453. name: "Normal",
  32454. height: math.unit(4, "meters"),
  32455. default: true
  32456. },
  32457. ]
  32458. ))
  32459. characterMakers.push(() => makeCharacter(
  32460. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32461. {
  32462. front: {
  32463. height: math.unit(8 + 2/12, "feet"),
  32464. weight: math.unit(4, "tons"),
  32465. name: "Front",
  32466. image: {
  32467. source: "./media/characters/shaun/front.svg",
  32468. extra: 1550/1505,
  32469. bottom: 353/1903
  32470. }
  32471. },
  32472. },
  32473. [
  32474. {
  32475. name: "Lorg",
  32476. height: math.unit(8 + 2/12, "feet"),
  32477. default: true
  32478. },
  32479. ]
  32480. ))
  32481. characterMakers.push(() => makeCharacter(
  32482. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32483. {
  32484. front: {
  32485. height: math.unit(7, "feet"),
  32486. name: "Front",
  32487. image: {
  32488. source: "./media/characters/sini/front.svg",
  32489. extra: 726/678,
  32490. bottom: 35/761
  32491. }
  32492. },
  32493. back: {
  32494. height: math.unit(7, "feet"),
  32495. name: "Back",
  32496. image: {
  32497. source: "./media/characters/sini/back.svg",
  32498. extra: 743/701,
  32499. bottom: 12/755
  32500. }
  32501. },
  32502. mawAnthro: {
  32503. height: math.unit(2.14, "feet"),
  32504. name: "Maw (Anthro)",
  32505. image: {
  32506. source: "./media/characters/sini/maw-anthro.svg"
  32507. }
  32508. },
  32509. dick: {
  32510. height: math.unit(1.45, "feet"),
  32511. name: "Dick (Anthro)",
  32512. image: {
  32513. source: "./media/characters/sini/dick-anthro.svg"
  32514. }
  32515. },
  32516. feral: {
  32517. height: math.unit(16, "feet"),
  32518. name: "Feral",
  32519. image: {
  32520. source: "./media/characters/sini/feral.svg",
  32521. extra: 814/605,
  32522. bottom: 11/825
  32523. }
  32524. },
  32525. mawFeral: {
  32526. height: math.unit(5.66, "feet"),
  32527. name: "Maw-feral",
  32528. image: {
  32529. source: "./media/characters/sini/maw-feral.svg"
  32530. }
  32531. },
  32532. footFeral: {
  32533. height: math.unit(5.17, "feet"),
  32534. name: "Foot-feral",
  32535. image: {
  32536. source: "./media/characters/sini/foot-feral.svg"
  32537. }
  32538. },
  32539. },
  32540. [
  32541. {
  32542. name: "Normal",
  32543. height: math.unit(7, "feet"),
  32544. default: true
  32545. },
  32546. ]
  32547. ))
  32548. characterMakers.push(() => makeCharacter(
  32549. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32550. {
  32551. side: {
  32552. height: math.unit(13, "meters"),
  32553. weight: math.unit(9072, "kg"),
  32554. name: "Side",
  32555. image: {
  32556. source: "./media/characters/raylldo/side.svg",
  32557. extra: 403/344,
  32558. bottom: 42/445
  32559. }
  32560. },
  32561. leaping: {
  32562. height: math.unit(12.3, "meters"),
  32563. weight: math.unit(9072, "kg"),
  32564. name: "Leaping",
  32565. image: {
  32566. source: "./media/characters/raylldo/leaping.svg",
  32567. extra: 470/249,
  32568. bottom: 13/483
  32569. }
  32570. },
  32571. flying: {
  32572. height: math.unit(18, "meters"),
  32573. weight: math.unit(9072, "kg"),
  32574. name: "Flying",
  32575. image: {
  32576. source: "./media/characters/raylldo/flying.svg"
  32577. }
  32578. },
  32579. head: {
  32580. height: math.unit(5.85, "meters"),
  32581. name: "Head",
  32582. image: {
  32583. source: "./media/characters/raylldo/head.svg"
  32584. }
  32585. },
  32586. maw: {
  32587. height: math.unit(5.32, "meters"),
  32588. name: "Maw",
  32589. image: {
  32590. source: "./media/characters/raylldo/maw.svg"
  32591. }
  32592. },
  32593. eye: {
  32594. height: math.unit(0.54, "meters"),
  32595. name: "Eye",
  32596. image: {
  32597. source: "./media/characters/raylldo/eye.svg"
  32598. }
  32599. },
  32600. },
  32601. [
  32602. {
  32603. name: "Normal",
  32604. height: math.unit(13, "meters"),
  32605. default: true
  32606. },
  32607. ]
  32608. ))
  32609. characterMakers.push(() => makeCharacter(
  32610. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32611. {
  32612. anthroFront: {
  32613. height: math.unit(9, "feet"),
  32614. weight: math.unit(600, "lb"),
  32615. name: "Anthro (Front)",
  32616. image: {
  32617. source: "./media/characters/glint/anthro-front.svg",
  32618. extra: 1097/1018,
  32619. bottom: 28/1125
  32620. }
  32621. },
  32622. anthroBack: {
  32623. height: math.unit(9, "feet"),
  32624. weight: math.unit(600, "lb"),
  32625. name: "Anthro (Back)",
  32626. image: {
  32627. source: "./media/characters/glint/anthro-back.svg",
  32628. extra: 1154/997,
  32629. bottom: 36/1190
  32630. }
  32631. },
  32632. feral: {
  32633. height: math.unit(11, "feet"),
  32634. weight: math.unit(50000, "lb"),
  32635. name: "Feral",
  32636. image: {
  32637. source: "./media/characters/glint/feral.svg",
  32638. extra: 3035/1585,
  32639. bottom: 1169/4204
  32640. }
  32641. },
  32642. dickAnthro: {
  32643. height: math.unit(0.7, "meters"),
  32644. name: "Dick (Anthro)",
  32645. image: {
  32646. source: "./media/characters/glint/dick-anthro.svg"
  32647. }
  32648. },
  32649. dickFeral: {
  32650. height: math.unit(2.65, "meters"),
  32651. name: "Dick (Feral)",
  32652. image: {
  32653. source: "./media/characters/glint/dick-feral.svg"
  32654. }
  32655. },
  32656. slitHidden: {
  32657. height: math.unit(5.85, "meters"),
  32658. name: "Slit (Hidden)",
  32659. image: {
  32660. source: "./media/characters/glint/slit-hidden.svg"
  32661. }
  32662. },
  32663. slitErect: {
  32664. height: math.unit(5.85, "meters"),
  32665. name: "Slit (Erect)",
  32666. image: {
  32667. source: "./media/characters/glint/slit-erect.svg"
  32668. }
  32669. },
  32670. mawAnthro: {
  32671. height: math.unit(0.63, "meters"),
  32672. name: "Maw (Anthro)",
  32673. image: {
  32674. source: "./media/characters/glint/maw.svg"
  32675. }
  32676. },
  32677. mawFeral: {
  32678. height: math.unit(2.89, "meters"),
  32679. name: "Maw (Feral)",
  32680. image: {
  32681. source: "./media/characters/glint/maw.svg"
  32682. }
  32683. },
  32684. },
  32685. [
  32686. {
  32687. name: "Normal",
  32688. height: math.unit(9, "feet"),
  32689. default: true
  32690. },
  32691. ]
  32692. ))
  32693. characterMakers.push(() => makeCharacter(
  32694. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32695. {
  32696. side: {
  32697. height: math.unit(15, "feet"),
  32698. weight: math.unit(5000, "kg"),
  32699. name: "Side",
  32700. image: {
  32701. source: "./media/characters/kairne/side.svg",
  32702. extra: 979/811,
  32703. bottom: 13/992
  32704. }
  32705. },
  32706. front: {
  32707. height: math.unit(15, "feet"),
  32708. weight: math.unit(5000, "kg"),
  32709. name: "Front",
  32710. image: {
  32711. source: "./media/characters/kairne/front.svg",
  32712. extra: 908/814,
  32713. bottom: 26/934
  32714. }
  32715. },
  32716. sideNsfw: {
  32717. height: math.unit(15, "feet"),
  32718. weight: math.unit(5000, "kg"),
  32719. name: "Side (NSFW)",
  32720. image: {
  32721. source: "./media/characters/kairne/side-nsfw.svg",
  32722. extra: 979/811,
  32723. bottom: 13/992
  32724. }
  32725. },
  32726. frontNsfw: {
  32727. height: math.unit(15, "feet"),
  32728. weight: math.unit(5000, "kg"),
  32729. name: "Front (NSFW)",
  32730. image: {
  32731. source: "./media/characters/kairne/front-nsfw.svg",
  32732. extra: 908/814,
  32733. bottom: 26/934
  32734. }
  32735. },
  32736. dickCaged: {
  32737. height: math.unit(0.65, "meters"),
  32738. name: "Dick-caged",
  32739. image: {
  32740. source: "./media/characters/kairne/dick-caged.svg"
  32741. }
  32742. },
  32743. dick: {
  32744. height: math.unit(0.79, "meters"),
  32745. name: "Dick",
  32746. image: {
  32747. source: "./media/characters/kairne/dick.svg"
  32748. }
  32749. },
  32750. genitals: {
  32751. height: math.unit(1.29, "meters"),
  32752. name: "Genitals",
  32753. image: {
  32754. source: "./media/characters/kairne/genitals.svg"
  32755. }
  32756. },
  32757. maw: {
  32758. height: math.unit(1.73, "meters"),
  32759. name: "Maw",
  32760. image: {
  32761. source: "./media/characters/kairne/maw.svg"
  32762. }
  32763. },
  32764. },
  32765. [
  32766. {
  32767. name: "Normal",
  32768. height: math.unit(15, "feet"),
  32769. default: true
  32770. },
  32771. ]
  32772. ))
  32773. characterMakers.push(() => makeCharacter(
  32774. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32775. {
  32776. front: {
  32777. height: math.unit(5 + 8/12, "feet"),
  32778. weight: math.unit(139, "lb"),
  32779. name: "Front",
  32780. image: {
  32781. source: "./media/characters/biscuit-jackal/front.svg",
  32782. extra: 2106/1961,
  32783. bottom: 58/2164
  32784. }
  32785. },
  32786. back: {
  32787. height: math.unit(5 + 8/12, "feet"),
  32788. weight: math.unit(139, "lb"),
  32789. name: "Back",
  32790. image: {
  32791. source: "./media/characters/biscuit-jackal/back.svg",
  32792. extra: 2132/1976,
  32793. bottom: 57/2189
  32794. }
  32795. },
  32796. werejackal: {
  32797. height: math.unit(6 + 3/12, "feet"),
  32798. weight: math.unit(188, "lb"),
  32799. name: "Werejackal",
  32800. image: {
  32801. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32802. extra: 2373/2178,
  32803. bottom: 53/2426
  32804. }
  32805. },
  32806. },
  32807. [
  32808. {
  32809. name: "Normal",
  32810. height: math.unit(5 + 8/12, "feet"),
  32811. default: true
  32812. },
  32813. ]
  32814. ))
  32815. characterMakers.push(() => makeCharacter(
  32816. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32817. {
  32818. front: {
  32819. height: math.unit(140, "cm"),
  32820. weight: math.unit(45, "kg"),
  32821. name: "Front",
  32822. image: {
  32823. source: "./media/characters/tayra-white/front.svg",
  32824. extra: 2229/2192,
  32825. bottom: 75/2304
  32826. }
  32827. },
  32828. },
  32829. [
  32830. {
  32831. name: "Normal",
  32832. height: math.unit(140, "cm"),
  32833. default: true
  32834. },
  32835. ]
  32836. ))
  32837. characterMakers.push(() => makeCharacter(
  32838. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32839. {
  32840. front: {
  32841. height: math.unit(4 + 5/12, "feet"),
  32842. name: "Front",
  32843. image: {
  32844. source: "./media/characters/scoop/front.svg",
  32845. extra: 1257/1136,
  32846. bottom: 69/1326
  32847. }
  32848. },
  32849. back: {
  32850. height: math.unit(4 + 5/12, "feet"),
  32851. name: "Back",
  32852. image: {
  32853. source: "./media/characters/scoop/back.svg",
  32854. extra: 1321/1152,
  32855. bottom: 32/1353
  32856. }
  32857. },
  32858. maw: {
  32859. height: math.unit(0.68, "feet"),
  32860. name: "Maw",
  32861. image: {
  32862. source: "./media/characters/scoop/maw.svg"
  32863. }
  32864. },
  32865. },
  32866. [
  32867. {
  32868. name: "Really Small",
  32869. height: math.unit(1, "mm")
  32870. },
  32871. {
  32872. name: "Micro",
  32873. height: math.unit(1, "inch")
  32874. },
  32875. {
  32876. name: "Normal",
  32877. height: math.unit(4 + 5/12, "feet"),
  32878. default: true
  32879. },
  32880. {
  32881. name: "Macro",
  32882. height: math.unit(200, "feet")
  32883. },
  32884. {
  32885. name: "Megamacro",
  32886. height: math.unit(3240, "feet")
  32887. },
  32888. {
  32889. name: "Teramacro",
  32890. height: math.unit(2500, "miles")
  32891. },
  32892. ]
  32893. ))
  32894. characterMakers.push(() => makeCharacter(
  32895. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32896. {
  32897. front: {
  32898. height: math.unit(15 + 7/12, "feet"),
  32899. name: "Front",
  32900. image: {
  32901. source: "./media/characters/saphinara/front.svg",
  32902. extra: 604/546,
  32903. bottom: 19/623
  32904. }
  32905. },
  32906. side: {
  32907. height: math.unit(15 + 7/12, "feet"),
  32908. name: "Side",
  32909. image: {
  32910. source: "./media/characters/saphinara/side.svg",
  32911. extra: 605/547,
  32912. bottom: 6/611
  32913. }
  32914. },
  32915. back: {
  32916. height: math.unit(15 + 7/12, "feet"),
  32917. name: "Back",
  32918. image: {
  32919. source: "./media/characters/saphinara/back.svg",
  32920. extra: 591/531,
  32921. bottom: 13/604
  32922. }
  32923. },
  32924. frontTail: {
  32925. height: math.unit(15 + 7/12, "feet"),
  32926. name: "Front (Full Tail)",
  32927. image: {
  32928. source: "./media/characters/saphinara/front-tail.svg",
  32929. extra: 748/547,
  32930. bottom: 66/814
  32931. }
  32932. },
  32933. },
  32934. [
  32935. {
  32936. name: "Normal",
  32937. height: math.unit(15 + 7/12, "feet"),
  32938. default: true
  32939. },
  32940. {
  32941. name: "Angry",
  32942. height: math.unit(30 + 6/12, "feet")
  32943. },
  32944. {
  32945. name: "Enraged",
  32946. height: math.unit(102 + 1/12, "feet")
  32947. },
  32948. ]
  32949. ))
  32950. characterMakers.push(() => makeCharacter(
  32951. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32952. {
  32953. front: {
  32954. height: math.unit(6 + 8/12, "feet"),
  32955. weight: math.unit(300, "lb"),
  32956. name: "Front",
  32957. image: {
  32958. source: "./media/characters/jrain/front.svg",
  32959. extra: 3039/2865,
  32960. bottom: 399/3438
  32961. }
  32962. },
  32963. back: {
  32964. height: math.unit(6 + 8/12, "feet"),
  32965. weight: math.unit(300, "lb"),
  32966. name: "Back",
  32967. image: {
  32968. source: "./media/characters/jrain/back.svg",
  32969. extra: 3089/2938,
  32970. bottom: 172/3261
  32971. }
  32972. },
  32973. head: {
  32974. height: math.unit(2.14, "feet"),
  32975. name: "Head",
  32976. image: {
  32977. source: "./media/characters/jrain/head.svg"
  32978. }
  32979. },
  32980. maw: {
  32981. height: math.unit(1.77, "feet"),
  32982. name: "Maw",
  32983. image: {
  32984. source: "./media/characters/jrain/maw.svg"
  32985. }
  32986. },
  32987. leftHand: {
  32988. height: math.unit(1.1, "feet"),
  32989. name: "Left Hand",
  32990. image: {
  32991. source: "./media/characters/jrain/left-hand.svg"
  32992. }
  32993. },
  32994. rightHand: {
  32995. height: math.unit(1.1, "feet"),
  32996. name: "Right Hand",
  32997. image: {
  32998. source: "./media/characters/jrain/right-hand.svg"
  32999. }
  33000. },
  33001. eye: {
  33002. height: math.unit(0.35, "feet"),
  33003. name: "Eye",
  33004. image: {
  33005. source: "./media/characters/jrain/eye.svg"
  33006. }
  33007. },
  33008. },
  33009. [
  33010. {
  33011. name: "Normal",
  33012. height: math.unit(6 + 8/12, "feet"),
  33013. default: true
  33014. },
  33015. {
  33016. name: "Casually Large",
  33017. height: math.unit(25, "feet")
  33018. },
  33019. {
  33020. name: "Giant",
  33021. height: math.unit(100, "feet")
  33022. },
  33023. {
  33024. name: "Kaiju",
  33025. height: math.unit(300, "feet")
  33026. },
  33027. ]
  33028. ))
  33029. characterMakers.push(() => makeCharacter(
  33030. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33031. {
  33032. dragon: {
  33033. height: math.unit(5, "meters"),
  33034. name: "Dragon",
  33035. image: {
  33036. source: "./media/characters/sabrina/dragon.svg",
  33037. extra: 3670 / 2365,
  33038. bottom: 333 / 4003
  33039. }
  33040. },
  33041. gryphon: {
  33042. height: math.unit(3, "meters"),
  33043. name: "Gryphon",
  33044. image: {
  33045. source: "./media/characters/sabrina/gryphon.svg",
  33046. extra: 1576 / 945,
  33047. bottom: 71 / 1647
  33048. }
  33049. },
  33050. snake: {
  33051. height: math.unit(12, "meters"),
  33052. name: "Snake",
  33053. image: {
  33054. source: "./media/characters/sabrina/snake.svg",
  33055. extra: 1758 / 1320,
  33056. bottom: 186 / 1944
  33057. }
  33058. },
  33059. collar: {
  33060. height: math.unit(1.86, "meters"),
  33061. name: "Collar",
  33062. image: {
  33063. source: "./media/characters/sabrina/collar.svg"
  33064. }
  33065. },
  33066. eye: {
  33067. height: math.unit(0.53, "meters"),
  33068. name: "Eye",
  33069. image: {
  33070. source: "./media/characters/sabrina/eye.svg"
  33071. }
  33072. },
  33073. foot: {
  33074. height: math.unit(1.86, "meters"),
  33075. name: "Foot",
  33076. image: {
  33077. source: "./media/characters/sabrina/foot.svg"
  33078. }
  33079. },
  33080. hand: {
  33081. height: math.unit(1.32, "meters"),
  33082. name: "Hand",
  33083. image: {
  33084. source: "./media/characters/sabrina/hand.svg"
  33085. }
  33086. },
  33087. head: {
  33088. height: math.unit(2.44, "meters"),
  33089. name: "Head",
  33090. image: {
  33091. source: "./media/characters/sabrina/head.svg"
  33092. }
  33093. },
  33094. headAngry: {
  33095. height: math.unit(2.44, "meters"),
  33096. name: "Head (Angry))",
  33097. image: {
  33098. source: "./media/characters/sabrina/head-angry.svg"
  33099. }
  33100. },
  33101. maw: {
  33102. height: math.unit(1.65, "meters"),
  33103. name: "Maw",
  33104. image: {
  33105. source: "./media/characters/sabrina/maw.svg"
  33106. }
  33107. },
  33108. spikes: {
  33109. height: math.unit(1.69, "meters"),
  33110. name: "Spikes",
  33111. image: {
  33112. source: "./media/characters/sabrina/spikes.svg"
  33113. }
  33114. },
  33115. stomach: {
  33116. height: math.unit(1.15, "meters"),
  33117. name: "Stomach",
  33118. image: {
  33119. source: "./media/characters/sabrina/stomach.svg"
  33120. }
  33121. },
  33122. tongue: {
  33123. height: math.unit(1.27, "meters"),
  33124. name: "Tongue",
  33125. image: {
  33126. source: "./media/characters/sabrina/tongue.svg"
  33127. }
  33128. },
  33129. wingDorsal: {
  33130. height: math.unit(4.85, "meters"),
  33131. name: "Wing (Dorsal)",
  33132. image: {
  33133. source: "./media/characters/sabrina/wing-dorsal.svg"
  33134. }
  33135. },
  33136. wingVentral: {
  33137. height: math.unit(4.85, "meters"),
  33138. name: "Wing (Ventral)",
  33139. image: {
  33140. source: "./media/characters/sabrina/wing-ventral.svg"
  33141. }
  33142. },
  33143. },
  33144. [
  33145. {
  33146. name: "Normal",
  33147. height: math.unit(5, "meters"),
  33148. default: true
  33149. },
  33150. ]
  33151. ))
  33152. characterMakers.push(() => makeCharacter(
  33153. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33154. {
  33155. frontMaid: {
  33156. height: math.unit(5 + 5/12, "feet"),
  33157. weight: math.unit(130, "lb"),
  33158. name: "Front (Maid)",
  33159. image: {
  33160. source: "./media/characters/midnight-tales/front-maid.svg",
  33161. extra: 489/454,
  33162. bottom: 61/550
  33163. }
  33164. },
  33165. frontFormal: {
  33166. height: math.unit(5 + 5/12, "feet"),
  33167. weight: math.unit(130, "lb"),
  33168. name: "Front (Formal)",
  33169. image: {
  33170. source: "./media/characters/midnight-tales/front-formal.svg",
  33171. extra: 489/454,
  33172. bottom: 61/550
  33173. }
  33174. },
  33175. back: {
  33176. height: math.unit(5 + 5/12, "feet"),
  33177. weight: math.unit(130, "lb"),
  33178. name: "Back",
  33179. image: {
  33180. source: "./media/characters/midnight-tales/back.svg",
  33181. extra: 498/456,
  33182. bottom: 33/531
  33183. }
  33184. },
  33185. frontBeast: {
  33186. height: math.unit(40, "feet"),
  33187. weight: math.unit(64000, "lb"),
  33188. name: "Front (Beast)",
  33189. image: {
  33190. source: "./media/characters/midnight-tales/front-beast.svg",
  33191. extra: 927/860,
  33192. bottom: 53/980
  33193. }
  33194. },
  33195. backBeast: {
  33196. height: math.unit(40, "feet"),
  33197. weight: math.unit(64000, "lb"),
  33198. name: "Back (Beast)",
  33199. image: {
  33200. source: "./media/characters/midnight-tales/back-beast.svg",
  33201. extra: 929/855,
  33202. bottom: 16/945
  33203. }
  33204. },
  33205. footBeast: {
  33206. height: math.unit(6.7, "feet"),
  33207. name: "Foot (Beast)",
  33208. image: {
  33209. source: "./media/characters/midnight-tales/foot-beast.svg"
  33210. }
  33211. },
  33212. headBeast: {
  33213. height: math.unit(8, "feet"),
  33214. name: "Head (Beast)",
  33215. image: {
  33216. source: "./media/characters/midnight-tales/head-beast.svg"
  33217. }
  33218. },
  33219. },
  33220. [
  33221. {
  33222. name: "Normal",
  33223. height: math.unit(5 + 5 / 12, "feet"),
  33224. default: true
  33225. },
  33226. {
  33227. name: "Macro",
  33228. height: math.unit(25, "feet")
  33229. },
  33230. ]
  33231. ))
  33232. characterMakers.push(() => makeCharacter(
  33233. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33234. {
  33235. front: {
  33236. height: math.unit(5 + 10/12, "feet"),
  33237. name: "Front",
  33238. image: {
  33239. source: "./media/characters/argon/front.svg",
  33240. extra: 2009/1935,
  33241. bottom: 118/2127
  33242. }
  33243. },
  33244. back: {
  33245. height: math.unit(5 + 10/12, "feet"),
  33246. name: "Back",
  33247. image: {
  33248. source: "./media/characters/argon/back.svg",
  33249. extra: 2047/1992,
  33250. bottom: 20/2067
  33251. }
  33252. },
  33253. frontDressed: {
  33254. height: math.unit(5 + 10/12, "feet"),
  33255. name: "Front (Dressed)",
  33256. image: {
  33257. source: "./media/characters/argon/front-dressed.svg",
  33258. extra: 2009/1935,
  33259. bottom: 118/2127
  33260. }
  33261. },
  33262. },
  33263. [
  33264. {
  33265. name: "Normal",
  33266. height: math.unit(5 + 10/12, "feet"),
  33267. default: true
  33268. },
  33269. ]
  33270. ))
  33271. characterMakers.push(() => makeCharacter(
  33272. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33273. {
  33274. front: {
  33275. height: math.unit(8 + 6/12, "feet"),
  33276. weight: math.unit(1150, "lb"),
  33277. name: "Front",
  33278. image: {
  33279. source: "./media/characters/kichi/front.svg",
  33280. extra: 1267/1164,
  33281. bottom: 61/1328
  33282. }
  33283. },
  33284. back: {
  33285. height: math.unit(8 + 6/12, "feet"),
  33286. weight: math.unit(1150, "lb"),
  33287. name: "Back",
  33288. image: {
  33289. source: "./media/characters/kichi/back.svg",
  33290. extra: 1273/1166,
  33291. bottom: 33/1306
  33292. }
  33293. },
  33294. },
  33295. [
  33296. {
  33297. name: "Normal",
  33298. height: math.unit(8 + 6/12, "feet"),
  33299. default: true
  33300. },
  33301. ]
  33302. ))
  33303. characterMakers.push(() => makeCharacter(
  33304. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33305. {
  33306. front: {
  33307. height: math.unit(6, "feet"),
  33308. weight: math.unit(210, "lb"),
  33309. name: "Front",
  33310. image: {
  33311. source: "./media/characters/manetel-greyscale/front.svg",
  33312. extra: 350/312,
  33313. bottom: 8/358
  33314. }
  33315. },
  33316. },
  33317. [
  33318. {
  33319. name: "Micro",
  33320. height: math.unit(2, "inches")
  33321. },
  33322. {
  33323. name: "Normal",
  33324. height: math.unit(6, "feet"),
  33325. default: true
  33326. },
  33327. {
  33328. name: "Minimacro",
  33329. height: math.unit(17, "feet")
  33330. },
  33331. {
  33332. name: "Macro",
  33333. height: math.unit(117, "feet")
  33334. },
  33335. ]
  33336. ))
  33337. characterMakers.push(() => makeCharacter(
  33338. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33339. {
  33340. side: {
  33341. height: math.unit(5 + 1/12, "feet"),
  33342. weight: math.unit(418, "lb"),
  33343. name: "Side",
  33344. image: {
  33345. source: "./media/characters/softpurr/side.svg",
  33346. extra: 1993/1945,
  33347. bottom: 134/2127
  33348. }
  33349. },
  33350. front: {
  33351. height: math.unit(5 + 1/12, "feet"),
  33352. weight: math.unit(418, "lb"),
  33353. name: "Front",
  33354. image: {
  33355. source: "./media/characters/softpurr/front.svg",
  33356. extra: 1950/1856,
  33357. bottom: 174/2124
  33358. }
  33359. },
  33360. paw: {
  33361. height: math.unit(1, "feet"),
  33362. name: "Paw",
  33363. image: {
  33364. source: "./media/characters/softpurr/paw.svg"
  33365. }
  33366. },
  33367. },
  33368. [
  33369. {
  33370. name: "Normal",
  33371. height: math.unit(5 + 1/12, "feet"),
  33372. default: true
  33373. },
  33374. ]
  33375. ))
  33376. characterMakers.push(() => makeCharacter(
  33377. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33378. {
  33379. front: {
  33380. height: math.unit(260, "meters"),
  33381. name: "Front",
  33382. image: {
  33383. source: "./media/characters/anahita/front.svg",
  33384. extra: 665/635,
  33385. bottom: 89/754
  33386. }
  33387. },
  33388. },
  33389. [
  33390. {
  33391. name: "Macro",
  33392. height: math.unit(260, "meters"),
  33393. default: true
  33394. },
  33395. ]
  33396. ))
  33397. characterMakers.push(() => makeCharacter(
  33398. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33399. {
  33400. front: {
  33401. height: math.unit(4 + 10/12, "feet"),
  33402. weight: math.unit(160, "lb"),
  33403. name: "Front",
  33404. image: {
  33405. source: "./media/characters/chip-mouse/front.svg",
  33406. extra: 3528/3408,
  33407. bottom: 0/3528
  33408. }
  33409. },
  33410. frontNsfw: {
  33411. height: math.unit(4 + 10/12, "feet"),
  33412. weight: math.unit(160, "lb"),
  33413. name: "Front (NSFW)",
  33414. image: {
  33415. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33416. extra: 3528/3408,
  33417. bottom: 0/3528
  33418. }
  33419. },
  33420. },
  33421. [
  33422. {
  33423. name: "Normal",
  33424. height: math.unit(4 + 10/12, "feet"),
  33425. default: true
  33426. },
  33427. ]
  33428. ))
  33429. characterMakers.push(() => makeCharacter(
  33430. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33431. {
  33432. side: {
  33433. height: math.unit(10, "feet"),
  33434. weight: math.unit(14000, "lb"),
  33435. name: "Side",
  33436. image: {
  33437. source: "./media/characters/kremm/side.svg",
  33438. extra: 1390/1053,
  33439. bottom: 90/1480
  33440. }
  33441. },
  33442. gut: {
  33443. height: math.unit(5.8, "feet"),
  33444. name: "Gut",
  33445. image: {
  33446. source: "./media/characters/kremm/gut.svg"
  33447. }
  33448. },
  33449. ass: {
  33450. height: math.unit(6.1, "feet"),
  33451. name: "Ass",
  33452. image: {
  33453. source: "./media/characters/kremm/ass.svg"
  33454. }
  33455. },
  33456. jaws: {
  33457. height: math.unit(2.2, "feet"),
  33458. name: "Jaws",
  33459. image: {
  33460. source: "./media/characters/kremm/jaws.svg"
  33461. }
  33462. },
  33463. dick: {
  33464. height: math.unit(4.26, "feet"),
  33465. name: "Dick",
  33466. image: {
  33467. source: "./media/characters/kremm/dick.svg"
  33468. }
  33469. },
  33470. },
  33471. [
  33472. {
  33473. name: "Normal",
  33474. height: math.unit(10, "feet"),
  33475. default: true
  33476. },
  33477. ]
  33478. ))
  33479. characterMakers.push(() => makeCharacter(
  33480. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33481. {
  33482. front: {
  33483. height: math.unit(30, "stories"),
  33484. name: "Front",
  33485. image: {
  33486. source: "./media/characters/kai/front.svg",
  33487. extra: 1892/1718,
  33488. bottom: 162/2054
  33489. }
  33490. },
  33491. },
  33492. [
  33493. {
  33494. name: "Macro",
  33495. height: math.unit(30, "stories"),
  33496. default: true
  33497. },
  33498. ]
  33499. ))
  33500. characterMakers.push(() => makeCharacter(
  33501. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33502. {
  33503. front: {
  33504. height: math.unit(6 + 4/12, "feet"),
  33505. weight: math.unit(145, "lb"),
  33506. name: "Front",
  33507. image: {
  33508. source: "./media/characters/sykes/front.svg",
  33509. extra: 1321 / 1187,
  33510. bottom: 66 / 1387
  33511. }
  33512. },
  33513. back: {
  33514. height: math.unit(6 + 4/12, "feet"),
  33515. weight: math.unit(145, "lb"),
  33516. name: "Back",
  33517. image: {
  33518. source: "./media/characters/sykes/back.svg",
  33519. extra: 1326/1181,
  33520. bottom: 31/1357
  33521. }
  33522. },
  33523. handBack: {
  33524. height: math.unit(0.9, "feet"),
  33525. name: "Hand (Back)",
  33526. image: {
  33527. source: "./media/characters/sykes/hand-back.svg"
  33528. }
  33529. },
  33530. handFront: {
  33531. height: math.unit(0.839, "feet"),
  33532. name: "Hand (Front)",
  33533. image: {
  33534. source: "./media/characters/sykes/hand-front.svg"
  33535. }
  33536. },
  33537. leftFoot: {
  33538. height: math.unit(1.2, "feet"),
  33539. name: "Foot (Left)",
  33540. image: {
  33541. source: "./media/characters/sykes/foot-left.svg"
  33542. }
  33543. },
  33544. rightFoot: {
  33545. height: math.unit(1.2, "feet"),
  33546. name: "Foot (Right)",
  33547. image: {
  33548. source: "./media/characters/sykes/foot-right.svg"
  33549. }
  33550. },
  33551. maw: {
  33552. height: math.unit(1.93, "feet"),
  33553. name: "Maw",
  33554. image: {
  33555. source: "./media/characters/sykes/maw.svg"
  33556. }
  33557. },
  33558. teeth: {
  33559. height: math.unit(0.51, "feet"),
  33560. name: "Teeth",
  33561. image: {
  33562. source: "./media/characters/sykes/teeth.svg"
  33563. }
  33564. },
  33565. tongue: {
  33566. height: math.unit(2.13, "feet"),
  33567. name: "Tongue",
  33568. image: {
  33569. source: "./media/characters/sykes/tongue.svg"
  33570. }
  33571. },
  33572. uvula: {
  33573. height: math.unit(0.16, "feet"),
  33574. name: "Uvula",
  33575. image: {
  33576. source: "./media/characters/sykes/uvula.svg"
  33577. }
  33578. },
  33579. collar: {
  33580. height: math.unit(0.287, "feet"),
  33581. name: "Collar",
  33582. image: {
  33583. source: "./media/characters/sykes/collar.svg"
  33584. }
  33585. },
  33586. },
  33587. [
  33588. {
  33589. name: "Shrunken",
  33590. height: math.unit(5, "inches")
  33591. },
  33592. {
  33593. name: "Normal",
  33594. height: math.unit(6 + 4 / 12, "feet"),
  33595. default: true
  33596. },
  33597. {
  33598. name: "Big",
  33599. height: math.unit(15, "feet")
  33600. },
  33601. ]
  33602. ))
  33603. characterMakers.push(() => makeCharacter(
  33604. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33605. {
  33606. front: {
  33607. height: math.unit(5 + 8/12, "feet"),
  33608. weight: math.unit(190, "lb"),
  33609. name: "Front",
  33610. image: {
  33611. source: "./media/characters/oven-otter/front.svg",
  33612. extra: 1809/1740,
  33613. bottom: 181/1990
  33614. }
  33615. },
  33616. back: {
  33617. height: math.unit(5 + 8/12, "feet"),
  33618. weight: math.unit(190, "lb"),
  33619. name: "Back",
  33620. image: {
  33621. source: "./media/characters/oven-otter/back.svg",
  33622. extra: 1709/1635,
  33623. bottom: 118/1827
  33624. }
  33625. },
  33626. hand: {
  33627. height: math.unit(1.07, "feet"),
  33628. name: "Hand",
  33629. image: {
  33630. source: "./media/characters/oven-otter/hand.svg"
  33631. }
  33632. },
  33633. beans: {
  33634. height: math.unit(1.74, "feet"),
  33635. name: "Beans",
  33636. image: {
  33637. source: "./media/characters/oven-otter/beans.svg"
  33638. }
  33639. },
  33640. },
  33641. [
  33642. {
  33643. name: "Micro",
  33644. height: math.unit(0.5, "inches")
  33645. },
  33646. {
  33647. name: "Normal",
  33648. height: math.unit(5 + 8/12, "feet"),
  33649. default: true
  33650. },
  33651. {
  33652. name: "Macro",
  33653. height: math.unit(250, "feet")
  33654. },
  33655. {
  33656. name: "Really High",
  33657. height: math.unit(420, "feet")
  33658. },
  33659. ]
  33660. ))
  33661. characterMakers.push(() => makeCharacter(
  33662. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33663. {
  33664. front: {
  33665. height: math.unit(5, "meters"),
  33666. weight: math.unit(292000000000000, "kg"),
  33667. name: "Front",
  33668. image: {
  33669. source: "./media/characters/devourer/front.svg",
  33670. extra: 1800/1733,
  33671. bottom: 211/2011
  33672. }
  33673. },
  33674. maw: {
  33675. height: math.unit(1.1, "meter"),
  33676. name: "Maw",
  33677. image: {
  33678. source: "./media/characters/devourer/maw.svg"
  33679. }
  33680. },
  33681. },
  33682. [
  33683. {
  33684. name: "Small",
  33685. height: math.unit(3, "meters")
  33686. },
  33687. {
  33688. name: "Large",
  33689. height: math.unit(5, "meters"),
  33690. default: true
  33691. },
  33692. ]
  33693. ))
  33694. characterMakers.push(() => makeCharacter(
  33695. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33696. {
  33697. front: {
  33698. height: math.unit(6, "feet"),
  33699. weight: math.unit(400, "lb"),
  33700. name: "Front",
  33701. image: {
  33702. source: "./media/characters/ellarby/front.svg",
  33703. extra: 1909/1763,
  33704. bottom: 80/1989
  33705. }
  33706. },
  33707. back: {
  33708. height: math.unit(6, "feet"),
  33709. weight: math.unit(400, "lb"),
  33710. name: "Back",
  33711. image: {
  33712. source: "./media/characters/ellarby/back.svg",
  33713. extra: 1914/1784,
  33714. bottom: 172/2086
  33715. }
  33716. },
  33717. },
  33718. [
  33719. {
  33720. name: "Mischief",
  33721. height: math.unit(18, "inches")
  33722. },
  33723. {
  33724. name: "Trouble",
  33725. height: math.unit(12, "feet")
  33726. },
  33727. {
  33728. name: "Havoc",
  33729. height: math.unit(200, "feet"),
  33730. default: true
  33731. },
  33732. {
  33733. name: "Pandemonium",
  33734. height: math.unit(1, "mile")
  33735. },
  33736. {
  33737. name: "Catastrophe",
  33738. height: math.unit(100, "miles")
  33739. },
  33740. ]
  33741. ))
  33742. characterMakers.push(() => makeCharacter(
  33743. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33744. {
  33745. front: {
  33746. height: math.unit(4.7, "meters"),
  33747. weight: math.unit(6500, "kg"),
  33748. name: "Front",
  33749. image: {
  33750. source: "./media/characters/vex/front.svg",
  33751. extra: 1288/1140,
  33752. bottom: 100/1388
  33753. }
  33754. },
  33755. },
  33756. [
  33757. {
  33758. name: "Normal",
  33759. height: math.unit(4.7, "meters"),
  33760. default: true
  33761. },
  33762. ]
  33763. ))
  33764. characterMakers.push(() => makeCharacter(
  33765. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33766. {
  33767. normal: {
  33768. height: math.unit(6, "feet"),
  33769. weight: math.unit(350, "lb"),
  33770. name: "Normal",
  33771. image: {
  33772. source: "./media/characters/teshy/normal.svg",
  33773. extra: 1795/1735,
  33774. bottom: 16/1811
  33775. }
  33776. },
  33777. monsterFront: {
  33778. height: math.unit(12, "feet"),
  33779. weight: math.unit(4700, "lb"),
  33780. name: "Monster (Front)",
  33781. image: {
  33782. source: "./media/characters/teshy/monster-front.svg",
  33783. extra: 2042/2034,
  33784. bottom: 128/2170
  33785. }
  33786. },
  33787. monsterSide: {
  33788. height: math.unit(12, "feet"),
  33789. weight: math.unit(4700, "lb"),
  33790. name: "Monster (Side)",
  33791. image: {
  33792. source: "./media/characters/teshy/monster-side.svg",
  33793. extra: 2067/2056,
  33794. bottom: 70/2137
  33795. }
  33796. },
  33797. monsterBack: {
  33798. height: math.unit(12, "feet"),
  33799. weight: math.unit(4700, "lb"),
  33800. name: "Monster (Back)",
  33801. image: {
  33802. source: "./media/characters/teshy/monster-back.svg",
  33803. extra: 1921/1914,
  33804. bottom: 171/2092
  33805. }
  33806. },
  33807. },
  33808. [
  33809. {
  33810. name: "Normal",
  33811. height: math.unit(6, "feet"),
  33812. default: true
  33813. },
  33814. ]
  33815. ))
  33816. characterMakers.push(() => makeCharacter(
  33817. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33818. {
  33819. front: {
  33820. height: math.unit(6, "feet"),
  33821. name: "Front",
  33822. image: {
  33823. source: "./media/characters/ramey/front.svg",
  33824. extra: 790/787,
  33825. bottom: 27/817
  33826. }
  33827. },
  33828. },
  33829. [
  33830. {
  33831. name: "Normal",
  33832. height: math.unit(6, "feet"),
  33833. default: true
  33834. },
  33835. ]
  33836. ))
  33837. characterMakers.push(() => makeCharacter(
  33838. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33839. {
  33840. front: {
  33841. height: math.unit(5 + 5/12, "feet"),
  33842. weight: math.unit(120, "lb"),
  33843. name: "Front",
  33844. image: {
  33845. source: "./media/characters/phirae/front.svg",
  33846. extra: 2491/2436,
  33847. bottom: 38/2529
  33848. }
  33849. },
  33850. },
  33851. [
  33852. {
  33853. name: "Normal",
  33854. height: math.unit(5 + 5/12, "feet"),
  33855. default: true
  33856. },
  33857. ]
  33858. ))
  33859. characterMakers.push(() => makeCharacter(
  33860. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33861. {
  33862. front: {
  33863. height: math.unit(5 + 3/12, "feet"),
  33864. name: "Front",
  33865. image: {
  33866. source: "./media/characters/stagglas/front.svg",
  33867. extra: 962/882,
  33868. bottom: 53/1015
  33869. }
  33870. },
  33871. feral: {
  33872. height: math.unit(335, "cm"),
  33873. name: "Feral",
  33874. image: {
  33875. source: "./media/characters/stagglas/feral.svg",
  33876. extra: 1732/1090,
  33877. bottom: 48/1780
  33878. }
  33879. },
  33880. },
  33881. [
  33882. {
  33883. name: "Normal",
  33884. height: math.unit(5 + 3/12, "feet"),
  33885. default: true
  33886. },
  33887. ]
  33888. ))
  33889. characterMakers.push(() => makeCharacter(
  33890. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33891. {
  33892. front: {
  33893. height: math.unit(5 + 4/12, "feet"),
  33894. weight: math.unit(145, "lb"),
  33895. name: "Front",
  33896. image: {
  33897. source: "./media/characters/starra/front.svg",
  33898. extra: 1790/1691,
  33899. bottom: 91/1881
  33900. }
  33901. },
  33902. },
  33903. [
  33904. {
  33905. name: "Normal",
  33906. height: math.unit(5 + 4/12, "feet"),
  33907. default: true
  33908. },
  33909. ]
  33910. ))
  33911. characterMakers.push(() => makeCharacter(
  33912. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33913. {
  33914. front: {
  33915. height: math.unit(2.2, "meters"),
  33916. name: "Front",
  33917. image: {
  33918. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33919. extra: 1194/1005,
  33920. bottom: 25/1219
  33921. }
  33922. },
  33923. },
  33924. [
  33925. {
  33926. name: "Normal",
  33927. height: math.unit(2.2, "meters"),
  33928. default: true
  33929. },
  33930. ]
  33931. ))
  33932. characterMakers.push(() => makeCharacter(
  33933. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33934. {
  33935. side: {
  33936. height: math.unit(8 + 2/12, "feet"),
  33937. weight: math.unit(1240, "lb"),
  33938. name: "Side",
  33939. image: {
  33940. source: "./media/characters/mika-valentine/side.svg",
  33941. extra: 2670/2501,
  33942. bottom: 250/2920
  33943. }
  33944. },
  33945. },
  33946. [
  33947. {
  33948. name: "Normal",
  33949. height: math.unit(8 + 2/12, "feet"),
  33950. default: true
  33951. },
  33952. ]
  33953. ))
  33954. characterMakers.push(() => makeCharacter(
  33955. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33956. {
  33957. front: {
  33958. height: math.unit(7 + 2/12, "feet"),
  33959. name: "Front",
  33960. image: {
  33961. source: "./media/characters/xoltol/front.svg",
  33962. extra: 2212/2124,
  33963. bottom: 84/2296
  33964. }
  33965. },
  33966. side: {
  33967. height: math.unit(7 + 2/12, "feet"),
  33968. name: "Side",
  33969. image: {
  33970. source: "./media/characters/xoltol/side.svg",
  33971. extra: 2273/2197,
  33972. bottom: 26/2299
  33973. }
  33974. },
  33975. hand: {
  33976. height: math.unit(2.5, "feet"),
  33977. name: "Hand",
  33978. image: {
  33979. source: "./media/characters/xoltol/hand.svg"
  33980. }
  33981. },
  33982. },
  33983. [
  33984. {
  33985. name: "Small-ish",
  33986. height: math.unit(5 + 11/12, "feet")
  33987. },
  33988. {
  33989. name: "Normal",
  33990. height: math.unit(7 + 2/12, "feet")
  33991. },
  33992. {
  33993. name: "\"Macro\"",
  33994. height: math.unit(14 + 9/12, "feet"),
  33995. default: true
  33996. },
  33997. {
  33998. name: "Alternate Height",
  33999. height: math.unit(20, "feet")
  34000. },
  34001. {
  34002. name: "Actually Macro",
  34003. height: math.unit(100, "feet")
  34004. },
  34005. ]
  34006. ))
  34007. characterMakers.push(() => makeCharacter(
  34008. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34009. {
  34010. front: {
  34011. height: math.unit(5 + 2/12, "feet"),
  34012. name: "Front",
  34013. image: {
  34014. source: "./media/characters/kotetsu-redwood/front.svg",
  34015. extra: 1053/942,
  34016. bottom: 60/1113
  34017. }
  34018. },
  34019. },
  34020. [
  34021. {
  34022. name: "Normal",
  34023. height: math.unit(5 + 2/12, "feet"),
  34024. default: true
  34025. },
  34026. ]
  34027. ))
  34028. characterMakers.push(() => makeCharacter(
  34029. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34030. {
  34031. front: {
  34032. height: math.unit(2.4, "meters"),
  34033. weight: math.unit(125, "kg"),
  34034. name: "Front",
  34035. image: {
  34036. source: "./media/characters/lilith/front.svg",
  34037. extra: 1590/1513,
  34038. bottom: 203/1793
  34039. }
  34040. },
  34041. },
  34042. [
  34043. {
  34044. name: "Humanoid",
  34045. height: math.unit(2.4, "meters")
  34046. },
  34047. {
  34048. name: "Normal",
  34049. height: math.unit(6, "meters"),
  34050. default: true
  34051. },
  34052. {
  34053. name: "Largest",
  34054. height: math.unit(55, "meters")
  34055. },
  34056. ]
  34057. ))
  34058. characterMakers.push(() => makeCharacter(
  34059. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34060. {
  34061. front: {
  34062. height: math.unit(8 + 4/12, "feet"),
  34063. weight: math.unit(535, "lb"),
  34064. name: "Front",
  34065. image: {
  34066. source: "./media/characters/beh'kah-bolger/front.svg",
  34067. extra: 1660/1603,
  34068. bottom: 37/1697
  34069. }
  34070. },
  34071. },
  34072. [
  34073. {
  34074. name: "Normal",
  34075. height: math.unit(8 + 4/12, "feet"),
  34076. default: true
  34077. },
  34078. {
  34079. name: "Kaiju",
  34080. height: math.unit(250, "feet")
  34081. },
  34082. {
  34083. name: "Still Growing",
  34084. height: math.unit(10, "miles")
  34085. },
  34086. {
  34087. name: "Continental",
  34088. height: math.unit(5000, "miles")
  34089. },
  34090. {
  34091. name: "Final Form",
  34092. height: math.unit(2500000, "miles")
  34093. },
  34094. ]
  34095. ))
  34096. characterMakers.push(() => makeCharacter(
  34097. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34098. {
  34099. front: {
  34100. height: math.unit(7 + 2/12, "feet"),
  34101. weight: math.unit(230, "kg"),
  34102. name: "Front",
  34103. image: {
  34104. source: "./media/characters/tatyana-milewska/front.svg",
  34105. extra: 1199/1150,
  34106. bottom: 86/1285
  34107. }
  34108. },
  34109. },
  34110. [
  34111. {
  34112. name: "Normal",
  34113. height: math.unit(7 + 2/12, "feet"),
  34114. default: true
  34115. },
  34116. {
  34117. name: "Big",
  34118. height: math.unit(12, "feet")
  34119. },
  34120. {
  34121. name: "Minimacro",
  34122. height: math.unit(20, "feet")
  34123. },
  34124. {
  34125. name: "Macro",
  34126. height: math.unit(120, "feet")
  34127. },
  34128. ]
  34129. ))
  34130. characterMakers.push(() => makeCharacter(
  34131. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34132. {
  34133. front: {
  34134. height: math.unit(7 + 8/12, "feet"),
  34135. weight: math.unit(152, "kg"),
  34136. name: "Front",
  34137. image: {
  34138. source: "./media/characters/helen-arri/front.svg",
  34139. extra: 440/423,
  34140. bottom: 14/454
  34141. }
  34142. },
  34143. back: {
  34144. height: math.unit(7 + 8/12, "feet"),
  34145. weight: math.unit(152, "kg"),
  34146. name: "Back",
  34147. image: {
  34148. source: "./media/characters/helen-arri/back.svg",
  34149. extra: 443/426,
  34150. bottom: 8/451
  34151. }
  34152. },
  34153. },
  34154. [
  34155. {
  34156. name: "Normal",
  34157. height: math.unit(7 + 8/12, "feet"),
  34158. default: true
  34159. },
  34160. {
  34161. name: "Big",
  34162. height: math.unit(14, "feet")
  34163. },
  34164. {
  34165. name: "Minimacro",
  34166. height: math.unit(24, "feet")
  34167. },
  34168. {
  34169. name: "Macro",
  34170. height: math.unit(140, "feet")
  34171. },
  34172. ]
  34173. ))
  34174. characterMakers.push(() => makeCharacter(
  34175. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34176. {
  34177. front: {
  34178. height: math.unit(6, "meters"),
  34179. name: "Front",
  34180. image: {
  34181. source: "./media/characters/ehanu-rehu/front.svg",
  34182. extra: 1800/1800,
  34183. bottom: 59/1859
  34184. }
  34185. },
  34186. },
  34187. [
  34188. {
  34189. name: "Normal",
  34190. height: math.unit(6, "meters"),
  34191. default: true
  34192. },
  34193. ]
  34194. ))
  34195. characterMakers.push(() => makeCharacter(
  34196. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34197. {
  34198. front: {
  34199. height: math.unit(7 + 3/12, "feet"),
  34200. name: "Front",
  34201. image: {
  34202. source: "./media/characters/renholder/front.svg",
  34203. extra: 3096/2960,
  34204. bottom: 250/3346
  34205. }
  34206. },
  34207. },
  34208. [
  34209. {
  34210. name: "Normal Bat",
  34211. height: math.unit(7 + 3/12, "feet"),
  34212. default: true
  34213. },
  34214. {
  34215. name: "Slightly Tall Bat",
  34216. height: math.unit(100, "feet")
  34217. },
  34218. {
  34219. name: "Big Bat",
  34220. height: math.unit(1000, "feet")
  34221. },
  34222. {
  34223. name: "City-Sized Bat",
  34224. height: math.unit(200000, "feet")
  34225. },
  34226. {
  34227. name: "Bigger Bat",
  34228. height: math.unit(10000, "miles")
  34229. },
  34230. {
  34231. name: "Solar Sized Bat",
  34232. height: math.unit(100, "AU")
  34233. },
  34234. {
  34235. name: "Galactic Bat",
  34236. height: math.unit(200000, "lightyears")
  34237. },
  34238. {
  34239. name: "Universally Known Bat",
  34240. height: math.unit(1, "universe")
  34241. },
  34242. ]
  34243. ))
  34244. characterMakers.push(() => makeCharacter(
  34245. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34246. {
  34247. front: {
  34248. height: math.unit(6 + 11/12, "feet"),
  34249. weight: math.unit(250, "lb"),
  34250. name: "Front",
  34251. image: {
  34252. source: "./media/characters/cookiecat/front.svg",
  34253. extra: 893/827,
  34254. bottom: 14/907
  34255. }
  34256. },
  34257. },
  34258. [
  34259. {
  34260. name: "Micro",
  34261. height: math.unit(3, "inches")
  34262. },
  34263. {
  34264. name: "Normal",
  34265. height: math.unit(6 + 11/12, "feet"),
  34266. default: true
  34267. },
  34268. {
  34269. name: "Macro",
  34270. height: math.unit(100, "feet")
  34271. },
  34272. {
  34273. name: "Macro+",
  34274. height: math.unit(404, "feet")
  34275. },
  34276. {
  34277. name: "Megamacro",
  34278. height: math.unit(165, "miles")
  34279. },
  34280. {
  34281. name: "Planetary",
  34282. height: math.unit(4600, "miles")
  34283. },
  34284. ]
  34285. ))
  34286. characterMakers.push(() => makeCharacter(
  34287. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34288. {
  34289. front: {
  34290. height: math.unit(10 + 3/12, "feet"),
  34291. weight: math.unit(1500, "lb"),
  34292. name: "Front",
  34293. image: {
  34294. source: "./media/characters/tux-kusanagi/front.svg",
  34295. extra: 944/840,
  34296. bottom: 39/983
  34297. }
  34298. },
  34299. back: {
  34300. height: math.unit(10 + 3/12, "feet"),
  34301. weight: math.unit(1500, "lb"),
  34302. name: "Back",
  34303. image: {
  34304. source: "./media/characters/tux-kusanagi/back.svg",
  34305. extra: 941/842,
  34306. bottom: 28/969
  34307. }
  34308. },
  34309. rump: {
  34310. height: math.unit(5.25, "feet"),
  34311. name: "Rump",
  34312. image: {
  34313. source: "./media/characters/tux-kusanagi/rump.svg"
  34314. }
  34315. },
  34316. beak: {
  34317. height: math.unit(1.54, "feet"),
  34318. name: "Beak",
  34319. image: {
  34320. source: "./media/characters/tux-kusanagi/beak.svg"
  34321. }
  34322. },
  34323. },
  34324. [
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(10 + 3/12, "feet"),
  34328. default: true
  34329. },
  34330. ]
  34331. ))
  34332. characterMakers.push(() => makeCharacter(
  34333. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34334. {
  34335. front: {
  34336. height: math.unit(58, "feet"),
  34337. weight: math.unit(200, "tons"),
  34338. name: "Front",
  34339. image: {
  34340. source: "./media/characters/uzarmazari/front.svg",
  34341. extra: 1575/1455,
  34342. bottom: 152/1727
  34343. }
  34344. },
  34345. back: {
  34346. height: math.unit(58, "feet"),
  34347. weight: math.unit(200, "tons"),
  34348. name: "Back",
  34349. image: {
  34350. source: "./media/characters/uzarmazari/back.svg",
  34351. extra: 1585/1510,
  34352. bottom: 157/1742
  34353. }
  34354. },
  34355. head: {
  34356. height: math.unit(26, "feet"),
  34357. name: "Head",
  34358. image: {
  34359. source: "./media/characters/uzarmazari/head.svg"
  34360. }
  34361. },
  34362. },
  34363. [
  34364. {
  34365. name: "Normal",
  34366. height: math.unit(58, "feet"),
  34367. default: true
  34368. },
  34369. ]
  34370. ))
  34371. characterMakers.push(() => makeCharacter(
  34372. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34373. {
  34374. side: {
  34375. height: math.unit(15, "feet"),
  34376. name: "Side",
  34377. image: {
  34378. source: "./media/characters/akitu/side.svg",
  34379. extra: 1421/1321,
  34380. bottom: 157/1578
  34381. }
  34382. },
  34383. front: {
  34384. height: math.unit(15, "feet"),
  34385. name: "Front",
  34386. image: {
  34387. source: "./media/characters/akitu/front.svg",
  34388. extra: 1435/1326,
  34389. bottom: 232/1667
  34390. }
  34391. },
  34392. },
  34393. [
  34394. {
  34395. name: "Normal",
  34396. height: math.unit(15, "feet"),
  34397. default: true
  34398. },
  34399. ]
  34400. ))
  34401. characterMakers.push(() => makeCharacter(
  34402. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34403. {
  34404. front: {
  34405. height: math.unit(10 + 8/12, "feet"),
  34406. name: "Front",
  34407. image: {
  34408. source: "./media/characters/azalie-croixland/front.svg",
  34409. extra: 1972/1856,
  34410. bottom: 31/2003
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Original Height",
  34417. height: math.unit(5 + 4/12, "feet")
  34418. },
  34419. {
  34420. name: "Normal Height",
  34421. height: math.unit(10 + 8/12, "feet"),
  34422. default: true
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34428. {
  34429. side: {
  34430. height: math.unit(7 + 1/12, "feet"),
  34431. weight: math.unit(245, "lb"),
  34432. name: "Side",
  34433. image: {
  34434. source: "./media/characters/kavus-kazian/side.svg",
  34435. extra: 349/342,
  34436. bottom: 15/364
  34437. }
  34438. },
  34439. },
  34440. [
  34441. {
  34442. name: "Normal",
  34443. height: math.unit(7 + 1/12, "feet"),
  34444. default: true
  34445. },
  34446. ]
  34447. ))
  34448. characterMakers.push(() => makeCharacter(
  34449. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34450. {
  34451. normal: {
  34452. height: math.unit(5 + 11/12, "feet"),
  34453. name: "Normal",
  34454. image: {
  34455. source: "./media/characters/moonlight-rose/normal.svg",
  34456. extra: 1979/1835,
  34457. bottom: 14/1993
  34458. }
  34459. },
  34460. demon: {
  34461. height: math.unit(5, "km"),
  34462. name: "Demon",
  34463. image: {
  34464. source: "./media/characters/moonlight-rose/demon.svg",
  34465. extra: 986/916,
  34466. bottom: 28/1014
  34467. }
  34468. },
  34469. },
  34470. [
  34471. {
  34472. name: "\"Natural\" height",
  34473. height: math.unit(5 + 11/12, "feet")
  34474. },
  34475. {
  34476. name: "Comfortable Size",
  34477. height: math.unit(40, "meters")
  34478. },
  34479. {
  34480. name: "Common Size",
  34481. height: math.unit(50, "km"),
  34482. default: true
  34483. },
  34484. {
  34485. name: "Demonic",
  34486. height: math.unit(1.24415e+21, "meters")
  34487. },
  34488. ]
  34489. ))
  34490. characterMakers.push(() => makeCharacter(
  34491. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34492. {
  34493. front: {
  34494. height: math.unit(16, "feet"),
  34495. weight: math.unit(610, "kg"),
  34496. name: "Front",
  34497. image: {
  34498. source: "./media/characters/huckle/front.svg",
  34499. extra: 1731/1625,
  34500. bottom: 33/1764
  34501. }
  34502. },
  34503. back: {
  34504. height: math.unit(16, "feet"),
  34505. weight: math.unit(610, "kg"),
  34506. name: "Back",
  34507. image: {
  34508. source: "./media/characters/huckle/back.svg",
  34509. extra: 1738/1651,
  34510. bottom: 37/1775
  34511. }
  34512. },
  34513. laughing: {
  34514. height: math.unit(3.75, "feet"),
  34515. name: "Laughing",
  34516. image: {
  34517. source: "./media/characters/huckle/laughing.svg"
  34518. }
  34519. },
  34520. angry: {
  34521. height: math.unit(4.15, "feet"),
  34522. name: "Angry",
  34523. image: {
  34524. source: "./media/characters/huckle/angry.svg"
  34525. }
  34526. },
  34527. },
  34528. [
  34529. {
  34530. name: "Normal",
  34531. height: math.unit(16, "feet"),
  34532. default: true
  34533. },
  34534. {
  34535. name: "Mini Macro",
  34536. height: math.unit(463, "feet")
  34537. },
  34538. {
  34539. name: "Macro",
  34540. height: math.unit(1680, "meters")
  34541. },
  34542. {
  34543. name: "Mega Macro",
  34544. height: math.unit(175, "km")
  34545. },
  34546. {
  34547. name: "Terra Macro",
  34548. height: math.unit(32, "gigameters")
  34549. },
  34550. {
  34551. name: "Multiverse+",
  34552. height: math.unit(2.56e23, "yottameters")
  34553. },
  34554. ]
  34555. ))
  34556. characterMakers.push(() => makeCharacter(
  34557. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34558. {
  34559. front: {
  34560. height: math.unit(6 + 9/12, "feet"),
  34561. weight: math.unit(280, "lb"),
  34562. name: "Front",
  34563. image: {
  34564. source: "./media/characters/candy/front.svg",
  34565. extra: 234/217,
  34566. bottom: 11/245
  34567. }
  34568. },
  34569. },
  34570. [
  34571. {
  34572. name: "Really Small",
  34573. height: math.unit(0.1, "nm")
  34574. },
  34575. {
  34576. name: "Micro",
  34577. height: math.unit(2, "inches")
  34578. },
  34579. {
  34580. name: "Normal",
  34581. height: math.unit(6 + 9/12, "feet"),
  34582. default: true
  34583. },
  34584. {
  34585. name: "Small Macro",
  34586. height: math.unit(69, "feet")
  34587. },
  34588. {
  34589. name: "Macro",
  34590. height: math.unit(160, "feet")
  34591. },
  34592. {
  34593. name: "Megamacro",
  34594. height: math.unit(22000, "miles")
  34595. },
  34596. {
  34597. name: "Gigamacro",
  34598. height: math.unit(50000, "miles")
  34599. },
  34600. ]
  34601. ))
  34602. characterMakers.push(() => makeCharacter(
  34603. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34604. {
  34605. front: {
  34606. height: math.unit(4, "feet"),
  34607. weight: math.unit(90, "lb"),
  34608. name: "Front",
  34609. image: {
  34610. source: "./media/characters/joey-mcdonald/front.svg",
  34611. extra: 1059/852,
  34612. bottom: 33/1092
  34613. }
  34614. },
  34615. back: {
  34616. height: math.unit(4, "feet"),
  34617. weight: math.unit(90, "lb"),
  34618. name: "Back",
  34619. image: {
  34620. source: "./media/characters/joey-mcdonald/back.svg",
  34621. extra: 1077/879,
  34622. bottom: 5/1082
  34623. }
  34624. },
  34625. frontKobold: {
  34626. height: math.unit(4, "feet"),
  34627. weight: math.unit(100, "lb"),
  34628. name: "Front-kobold",
  34629. image: {
  34630. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34631. extra: 1480/1367,
  34632. bottom: 0/1480
  34633. }
  34634. },
  34635. backKobold: {
  34636. height: math.unit(4, "feet"),
  34637. weight: math.unit(100, "lb"),
  34638. name: "Back-kobold",
  34639. image: {
  34640. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34641. extra: 1449/1361,
  34642. bottom: 0/1449
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Normal",
  34649. height: math.unit(4, "feet"),
  34650. default: true
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34656. {
  34657. front: {
  34658. height: math.unit(12 + 6/12, "feet"),
  34659. name: "Front",
  34660. image: {
  34661. source: "./media/characters/kass-lockheed/front.svg",
  34662. extra: 354/343,
  34663. bottom: 9/363
  34664. }
  34665. },
  34666. back: {
  34667. height: math.unit(12 + 6/12, "feet"),
  34668. name: "Back",
  34669. image: {
  34670. source: "./media/characters/kass-lockheed/back.svg",
  34671. extra: 364/352,
  34672. bottom: 3/367
  34673. }
  34674. },
  34675. dick: {
  34676. height: math.unit(3.12, "feet"),
  34677. name: "Dick",
  34678. image: {
  34679. source: "./media/characters/kass-lockheed/dick.svg"
  34680. }
  34681. },
  34682. head: {
  34683. height: math.unit(2.6, "feet"),
  34684. name: "Head",
  34685. image: {
  34686. source: "./media/characters/kass-lockheed/head.svg"
  34687. }
  34688. },
  34689. bleh: {
  34690. height: math.unit(2.85, "feet"),
  34691. name: "Bleh",
  34692. image: {
  34693. source: "./media/characters/kass-lockheed/bleh.svg"
  34694. }
  34695. },
  34696. smug: {
  34697. height: math.unit(2.85, "feet"),
  34698. name: "Smug",
  34699. image: {
  34700. source: "./media/characters/kass-lockheed/smug.svg"
  34701. }
  34702. },
  34703. },
  34704. [
  34705. {
  34706. name: "Normal",
  34707. height: math.unit(12 + 6/12, "feet"),
  34708. default: true
  34709. },
  34710. ]
  34711. ))
  34712. characterMakers.push(() => makeCharacter(
  34713. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34714. {
  34715. front: {
  34716. height: math.unit(6 + 2/12, "feet"),
  34717. name: "Front",
  34718. image: {
  34719. source: "./media/characters/taylor/front.svg",
  34720. extra: 639/495,
  34721. bottom: 12/651
  34722. }
  34723. },
  34724. },
  34725. [
  34726. {
  34727. name: "Normal",
  34728. height: math.unit(6 + 2/12, "feet"),
  34729. default: true
  34730. },
  34731. {
  34732. name: "Big",
  34733. height: math.unit(15, "feet")
  34734. },
  34735. {
  34736. name: "Lorg",
  34737. height: math.unit(80, "feet")
  34738. },
  34739. {
  34740. name: "Too Lorg",
  34741. height: math.unit(120, "feet")
  34742. },
  34743. ]
  34744. ))
  34745. characterMakers.push(() => makeCharacter(
  34746. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34747. {
  34748. front: {
  34749. height: math.unit(15, "feet"),
  34750. name: "Front",
  34751. image: {
  34752. source: "./media/characters/kaizer/front.svg",
  34753. extra: 1612/1436,
  34754. bottom: 43/1655
  34755. }
  34756. },
  34757. },
  34758. [
  34759. {
  34760. name: "Normal",
  34761. height: math.unit(15, "feet"),
  34762. default: true
  34763. },
  34764. ]
  34765. ))
  34766. characterMakers.push(() => makeCharacter(
  34767. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34768. {
  34769. front: {
  34770. height: math.unit(2, "feet"),
  34771. weight: math.unit(30, "lb"),
  34772. name: "Front",
  34773. image: {
  34774. source: "./media/characters/sandy/front.svg",
  34775. extra: 1439/1307,
  34776. bottom: 194/1633
  34777. }
  34778. },
  34779. },
  34780. [
  34781. {
  34782. name: "Normal",
  34783. height: math.unit(2, "feet"),
  34784. default: true
  34785. },
  34786. ]
  34787. ))
  34788. characterMakers.push(() => makeCharacter(
  34789. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34790. {
  34791. front: {
  34792. height: math.unit(3, "feet"),
  34793. name: "Front",
  34794. image: {
  34795. source: "./media/characters/mellvi/front.svg",
  34796. extra: 1831/1630,
  34797. bottom: 58/1889
  34798. }
  34799. },
  34800. },
  34801. [
  34802. {
  34803. name: "Normal",
  34804. height: math.unit(3, "feet"),
  34805. default: true
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34811. {
  34812. front: {
  34813. height: math.unit(5 + 11/12, "feet"),
  34814. weight: math.unit(200, "lb"),
  34815. name: "Front",
  34816. image: {
  34817. source: "./media/characters/shirou/front.svg",
  34818. extra: 2491/2383,
  34819. bottom: 189/2680
  34820. }
  34821. },
  34822. back: {
  34823. height: math.unit(5 + 11/12, "feet"),
  34824. weight: math.unit(200, "lb"),
  34825. name: "Back",
  34826. image: {
  34827. source: "./media/characters/shirou/back.svg",
  34828. extra: 2554/2450,
  34829. bottom: 76/2630
  34830. }
  34831. },
  34832. },
  34833. [
  34834. {
  34835. name: "Normal",
  34836. height: math.unit(5 + 11/12, "feet"),
  34837. default: true
  34838. },
  34839. ]
  34840. ))
  34841. characterMakers.push(() => makeCharacter(
  34842. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34843. {
  34844. front: {
  34845. height: math.unit(6 + 3/12, "feet"),
  34846. weight: math.unit(177, "lb"),
  34847. name: "Front",
  34848. image: {
  34849. source: "./media/characters/noryu/front.svg",
  34850. extra: 973/885,
  34851. bottom: 10/983
  34852. }
  34853. },
  34854. },
  34855. [
  34856. {
  34857. name: "Normal",
  34858. height: math.unit(6 + 3/12, "feet"),
  34859. default: true
  34860. },
  34861. ]
  34862. ))
  34863. characterMakers.push(() => makeCharacter(
  34864. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34865. {
  34866. front: {
  34867. height: math.unit(5 + 6/12, "feet"),
  34868. weight: math.unit(170, "lb"),
  34869. name: "Front",
  34870. image: {
  34871. source: "./media/characters/mevolas-rubenido/front.svg",
  34872. extra: 2109/1901,
  34873. bottom: 96/2205
  34874. }
  34875. },
  34876. },
  34877. [
  34878. {
  34879. name: "Normal",
  34880. height: math.unit(5 + 6/12, "feet"),
  34881. default: true
  34882. },
  34883. ]
  34884. ))
  34885. characterMakers.push(() => makeCharacter(
  34886. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34887. {
  34888. front: {
  34889. height: math.unit(100, "feet"),
  34890. name: "Front",
  34891. image: {
  34892. source: "./media/characters/dee/front.svg",
  34893. extra: 2153/2036,
  34894. bottom: 59/2212
  34895. }
  34896. },
  34897. back: {
  34898. height: math.unit(100, "feet"),
  34899. name: "Back",
  34900. image: {
  34901. source: "./media/characters/dee/back.svg",
  34902. extra: 2183/2058,
  34903. bottom: 75/2258
  34904. }
  34905. },
  34906. foot: {
  34907. height: math.unit(19.43, "feet"),
  34908. name: "Foot",
  34909. image: {
  34910. source: "./media/characters/dee/foot.svg"
  34911. }
  34912. },
  34913. hoof: {
  34914. height: math.unit(20.6, "feet"),
  34915. name: "Hoof",
  34916. image: {
  34917. source: "./media/characters/dee/hoof.svg"
  34918. }
  34919. },
  34920. },
  34921. [
  34922. {
  34923. name: "Macro",
  34924. height: math.unit(100, "feet"),
  34925. default: true
  34926. },
  34927. ]
  34928. ))
  34929. characterMakers.push(() => makeCharacter(
  34930. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34931. {
  34932. front: {
  34933. height: math.unit(5 + 6/12, "feet"),
  34934. name: "Front",
  34935. image: {
  34936. source: "./media/characters/teh/front.svg",
  34937. extra: 1002/847,
  34938. bottom: 62/1064
  34939. }
  34940. },
  34941. },
  34942. [
  34943. {
  34944. name: "Normal",
  34945. height: math.unit(5 + 6/12, "feet"),
  34946. default: true
  34947. },
  34948. ]
  34949. ))
  34950. characterMakers.push(() => makeCharacter(
  34951. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34952. {
  34953. side: {
  34954. height: math.unit(6 + 1/12, "feet"),
  34955. weight: math.unit(204, "lb"),
  34956. name: "Side",
  34957. image: {
  34958. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34959. extra: 974/775,
  34960. bottom: 169/1143
  34961. }
  34962. },
  34963. sitting: {
  34964. height: math.unit(6 + 2/12, "feet"),
  34965. weight: math.unit(204, "lb"),
  34966. name: "Sitting",
  34967. image: {
  34968. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34969. extra: 1175/964,
  34970. bottom: 378/1553
  34971. }
  34972. },
  34973. },
  34974. [
  34975. {
  34976. name: "Normal",
  34977. height: math.unit(6 + 1/12, "feet"),
  34978. default: true
  34979. },
  34980. ]
  34981. ))
  34982. characterMakers.push(() => makeCharacter(
  34983. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34984. {
  34985. front: {
  34986. height: math.unit(6, "inches"),
  34987. name: "Front",
  34988. image: {
  34989. source: "./media/characters/tululi/front.svg",
  34990. extra: 1997/1876,
  34991. bottom: 20/2017
  34992. }
  34993. },
  34994. },
  34995. [
  34996. {
  34997. name: "Normal",
  34998. height: math.unit(6, "inches"),
  34999. default: true
  35000. },
  35001. ]
  35002. ))
  35003. characterMakers.push(() => makeCharacter(
  35004. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35005. {
  35006. front: {
  35007. height: math.unit(4 + 1/12, "feet"),
  35008. name: "Front",
  35009. image: {
  35010. source: "./media/characters/star/front.svg",
  35011. extra: 1493/1189,
  35012. bottom: 48/1541
  35013. }
  35014. },
  35015. },
  35016. [
  35017. {
  35018. name: "Normal",
  35019. height: math.unit(4 + 1/12, "feet"),
  35020. default: true
  35021. },
  35022. ]
  35023. ))
  35024. characterMakers.push(() => makeCharacter(
  35025. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35026. {
  35027. front: {
  35028. height: math.unit(6 + 3/12, "feet"),
  35029. name: "Front",
  35030. image: {
  35031. source: "./media/characters/comet/front.svg",
  35032. extra: 1681/1462,
  35033. bottom: 26/1707
  35034. }
  35035. },
  35036. },
  35037. [
  35038. {
  35039. name: "Normal",
  35040. height: math.unit(6 + 3/12, "feet"),
  35041. default: true
  35042. },
  35043. ]
  35044. ))
  35045. characterMakers.push(() => makeCharacter(
  35046. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35047. {
  35048. front: {
  35049. height: math.unit(950, "feet"),
  35050. name: "Front",
  35051. image: {
  35052. source: "./media/characters/vortex/front.svg",
  35053. extra: 1497/1434,
  35054. bottom: 56/1553
  35055. }
  35056. },
  35057. maw: {
  35058. height: math.unit(285, "feet"),
  35059. name: "Maw",
  35060. image: {
  35061. source: "./media/characters/vortex/maw.svg"
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Macro",
  35068. height: math.unit(950, "feet"),
  35069. default: true
  35070. },
  35071. ]
  35072. ))
  35073. characterMakers.push(() => makeCharacter(
  35074. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35075. {
  35076. front: {
  35077. height: math.unit(600, "feet"),
  35078. weight: math.unit(0.02, "grams"),
  35079. name: "Front",
  35080. image: {
  35081. source: "./media/characters/doodle/front.svg",
  35082. extra: 1578/1413,
  35083. bottom: 37/1615
  35084. }
  35085. },
  35086. },
  35087. [
  35088. {
  35089. name: "Macro",
  35090. height: math.unit(600, "feet"),
  35091. default: true
  35092. },
  35093. ]
  35094. ))
  35095. characterMakers.push(() => makeCharacter(
  35096. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35097. {
  35098. front: {
  35099. height: math.unit(6 + 6/12, "feet"),
  35100. name: "Front",
  35101. image: {
  35102. source: "./media/characters/jai/front.svg",
  35103. extra: 1645/1534,
  35104. bottom: 115/1760
  35105. }
  35106. },
  35107. },
  35108. [
  35109. {
  35110. name: "Normal",
  35111. height: math.unit(6 + 6/12, "feet"),
  35112. default: true
  35113. },
  35114. ]
  35115. ))
  35116. characterMakers.push(() => makeCharacter(
  35117. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35118. {
  35119. front: {
  35120. height: math.unit(6 + 8/12, "feet"),
  35121. name: "Front",
  35122. image: {
  35123. source: "./media/characters/pixel/front.svg",
  35124. extra: 1900/1735,
  35125. bottom: 63/1963
  35126. }
  35127. },
  35128. },
  35129. [
  35130. {
  35131. name: "Normal",
  35132. height: math.unit(6 + 8/12, "feet"),
  35133. default: true
  35134. },
  35135. ]
  35136. ))
  35137. characterMakers.push(() => makeCharacter(
  35138. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35139. {
  35140. front: {
  35141. height: math.unit(4 + 11/12, "feet"),
  35142. weight: math.unit(111, "lb"),
  35143. name: "Front",
  35144. image: {
  35145. source: "./media/characters/rhett/front.svg",
  35146. extra: 1682/1586,
  35147. bottom: 92/1774
  35148. }
  35149. },
  35150. },
  35151. [
  35152. {
  35153. name: "Mini",
  35154. height: math.unit(1 + 1/12, "feet")
  35155. },
  35156. {
  35157. name: "Normal",
  35158. height: math.unit(4 + 11/12, "feet"),
  35159. default: true
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35165. {
  35166. front: {
  35167. height: math.unit(3 + 3/12, "feet"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/penny/front.svg",
  35171. extra: 1406/1311,
  35172. bottom: 26/1432
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(3 + 3/12, "feet"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35186. {
  35187. front: {
  35188. height: math.unit(4 + 11/12, "feet"),
  35189. name: "Front",
  35190. image: {
  35191. source: "./media/characters/monty/front.svg",
  35192. extra: 1479/1209,
  35193. bottom: 0/1479
  35194. }
  35195. },
  35196. },
  35197. [
  35198. {
  35199. name: "Normal",
  35200. height: math.unit(4 + 11/12, "feet"),
  35201. default: true
  35202. },
  35203. ]
  35204. ))
  35205. characterMakers.push(() => makeCharacter(
  35206. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35207. {
  35208. front: {
  35209. height: math.unit(8 + 4/12, "feet"),
  35210. name: "Front",
  35211. image: {
  35212. source: "./media/characters/sterling/front.svg",
  35213. extra: 1420/1236,
  35214. bottom: 27/1447
  35215. }
  35216. },
  35217. },
  35218. [
  35219. {
  35220. name: "Normal",
  35221. height: math.unit(8 + 4/12, "feet"),
  35222. default: true
  35223. },
  35224. ]
  35225. ))
  35226. characterMakers.push(() => makeCharacter(
  35227. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35228. {
  35229. front: {
  35230. height: math.unit(15, "feet"),
  35231. name: "Front",
  35232. image: {
  35233. source: "./media/characters/marble/front.svg",
  35234. extra: 973/937,
  35235. bottom: 32/1005
  35236. }
  35237. },
  35238. },
  35239. [
  35240. {
  35241. name: "Normal",
  35242. height: math.unit(15, "feet"),
  35243. default: true
  35244. },
  35245. ]
  35246. ))
  35247. characterMakers.push(() => makeCharacter(
  35248. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35249. {
  35250. front: {
  35251. height: math.unit(3, "inches"),
  35252. name: "Front",
  35253. image: {
  35254. source: "./media/characters/powder/front.svg",
  35255. extra: 1504/1334,
  35256. bottom: 518/2022
  35257. }
  35258. },
  35259. },
  35260. [
  35261. {
  35262. name: "Normal",
  35263. height: math.unit(3, "inches"),
  35264. default: true
  35265. },
  35266. ]
  35267. ))
  35268. characterMakers.push(() => makeCharacter(
  35269. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35270. {
  35271. front: {
  35272. height: math.unit(4 + 5/12, "feet"),
  35273. name: "Front",
  35274. image: {
  35275. source: "./media/characters/joey-raccoon/front.svg",
  35276. extra: 1273/1197,
  35277. bottom: 0/1273
  35278. }
  35279. },
  35280. },
  35281. [
  35282. {
  35283. name: "Normal",
  35284. height: math.unit(4 + 5/12, "feet"),
  35285. default: true
  35286. },
  35287. ]
  35288. ))
  35289. characterMakers.push(() => makeCharacter(
  35290. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35291. {
  35292. front: {
  35293. height: math.unit(8 + 4/12, "feet"),
  35294. name: "Front",
  35295. image: {
  35296. source: "./media/characters/vick/front.svg",
  35297. extra: 2187/2118,
  35298. bottom: 47/2234
  35299. }
  35300. },
  35301. },
  35302. [
  35303. {
  35304. name: "Normal",
  35305. height: math.unit(8 + 4/12, "feet"),
  35306. default: true
  35307. },
  35308. ]
  35309. ))
  35310. characterMakers.push(() => makeCharacter(
  35311. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35312. {
  35313. front: {
  35314. height: math.unit(5 + 5/12, "feet"),
  35315. name: "Front",
  35316. image: {
  35317. source: "./media/characters/mitsy/front.svg",
  35318. extra: 1842/1695,
  35319. bottom: 0/1842
  35320. }
  35321. },
  35322. },
  35323. [
  35324. {
  35325. name: "Normal",
  35326. height: math.unit(5 + 5/12, "feet"),
  35327. default: true
  35328. },
  35329. ]
  35330. ))
  35331. characterMakers.push(() => makeCharacter(
  35332. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35333. {
  35334. front: {
  35335. height: math.unit(6 + 3/12, "feet"),
  35336. name: "Front",
  35337. image: {
  35338. source: "./media/characters/silvy/front.svg",
  35339. extra: 1995/1836,
  35340. bottom: 225/2220
  35341. }
  35342. },
  35343. },
  35344. [
  35345. {
  35346. name: "Normal",
  35347. height: math.unit(6 + 3/12, "feet"),
  35348. default: true
  35349. },
  35350. ]
  35351. ))
  35352. characterMakers.push(() => makeCharacter(
  35353. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35354. {
  35355. front: {
  35356. height: math.unit(3 + 8/12, "feet"),
  35357. name: "Front",
  35358. image: {
  35359. source: "./media/characters/rodney/front.svg",
  35360. extra: 1956/1747,
  35361. bottom: 31/1987
  35362. }
  35363. },
  35364. frontDressed: {
  35365. height: math.unit(2.9, "feet"),
  35366. name: "Front (Dressed)",
  35367. image: {
  35368. source: "./media/characters/rodney/front-dressed.svg",
  35369. extra: 1382/1241,
  35370. bottom: 385/1767
  35371. }
  35372. },
  35373. },
  35374. [
  35375. {
  35376. name: "Normal",
  35377. height: math.unit(3 + 8/12, "feet"),
  35378. default: true
  35379. },
  35380. ]
  35381. ))
  35382. characterMakers.push(() => makeCharacter(
  35383. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35384. {
  35385. front: {
  35386. height: math.unit(5 + 9/12, "feet"),
  35387. weight: math.unit(194, "lbs"),
  35388. name: "Front",
  35389. image: {
  35390. source: "./media/characters/zakail-sudekai/front.svg",
  35391. extra: 2696/2533,
  35392. bottom: 248/2944
  35393. }
  35394. },
  35395. maw: {
  35396. height: math.unit(1.35, "feet"),
  35397. name: "Maw",
  35398. image: {
  35399. source: "./media/characters/zakail-sudekai/maw.svg"
  35400. }
  35401. },
  35402. },
  35403. [
  35404. {
  35405. name: "Normal",
  35406. height: math.unit(5 + 9/12, "feet"),
  35407. default: true
  35408. },
  35409. ]
  35410. ))
  35411. characterMakers.push(() => makeCharacter(
  35412. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35413. {
  35414. front: {
  35415. height: math.unit(8 + 4/12, "feet"),
  35416. weight: math.unit(1200, "lb"),
  35417. name: "Front",
  35418. image: {
  35419. source: "./media/characters/eleanor/front.svg",
  35420. extra: 1226/1192,
  35421. bottom: 52/1278
  35422. }
  35423. },
  35424. back: {
  35425. height: math.unit(8 + 4/12, "feet"),
  35426. weight: math.unit(1200, "lb"),
  35427. name: "Back",
  35428. image: {
  35429. source: "./media/characters/eleanor/back.svg",
  35430. extra: 1242/1184,
  35431. bottom: 60/1302
  35432. }
  35433. },
  35434. head: {
  35435. height: math.unit(2.62, "feet"),
  35436. name: "Head",
  35437. image: {
  35438. source: "./media/characters/eleanor/head.svg"
  35439. }
  35440. },
  35441. },
  35442. [
  35443. {
  35444. name: "Normal",
  35445. height: math.unit(8 + 4/12, "feet"),
  35446. default: true
  35447. },
  35448. ]
  35449. ))
  35450. characterMakers.push(() => makeCharacter(
  35451. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35452. {
  35453. front: {
  35454. height: math.unit(8 + 4/12, "feet"),
  35455. weight: math.unit(750, "lb"),
  35456. name: "Front",
  35457. image: {
  35458. source: "./media/characters/tanya/front.svg",
  35459. extra: 1749/1615,
  35460. bottom: 33/1782
  35461. }
  35462. },
  35463. },
  35464. [
  35465. {
  35466. name: "Normal",
  35467. height: math.unit(8 + 4/12, "feet"),
  35468. default: true
  35469. },
  35470. ]
  35471. ))
  35472. characterMakers.push(() => makeCharacter(
  35473. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35474. {
  35475. front: {
  35476. height: math.unit(5, "feet"),
  35477. weight: math.unit(225, "lb"),
  35478. name: "Front",
  35479. image: {
  35480. source: "./media/characters/cindy/front.svg",
  35481. extra: 1320/1250,
  35482. bottom: 42/1362
  35483. }
  35484. },
  35485. frontDressed: {
  35486. height: math.unit(5, "feet"),
  35487. weight: math.unit(225, "lb"),
  35488. name: "Front (Dressed)",
  35489. image: {
  35490. source: "./media/characters/cindy/front-dressed.svg",
  35491. extra: 1320/1250,
  35492. bottom: 42/1362
  35493. }
  35494. },
  35495. back: {
  35496. height: math.unit(5, "feet"),
  35497. weight: math.unit(225, "lb"),
  35498. name: "Back",
  35499. image: {
  35500. source: "./media/characters/cindy/back.svg",
  35501. extra: 1384/1346,
  35502. bottom: 14/1398
  35503. }
  35504. },
  35505. },
  35506. [
  35507. {
  35508. name: "Normal",
  35509. height: math.unit(5, "feet"),
  35510. default: true
  35511. },
  35512. ]
  35513. ))
  35514. characterMakers.push(() => makeCharacter(
  35515. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35516. {
  35517. front: {
  35518. height: math.unit(6 + 9/12, "feet"),
  35519. weight: math.unit(440, "lb"),
  35520. name: "Front",
  35521. image: {
  35522. source: "./media/characters/wilbur-owen/front.svg",
  35523. extra: 1575/1448,
  35524. bottom: 72/1647
  35525. }
  35526. },
  35527. back: {
  35528. height: math.unit(6 + 9/12, "feet"),
  35529. weight: math.unit(440, "lb"),
  35530. name: "Back",
  35531. image: {
  35532. source: "./media/characters/wilbur-owen/back.svg",
  35533. extra: 1578/1445,
  35534. bottom: 36/1614
  35535. }
  35536. },
  35537. },
  35538. [
  35539. {
  35540. name: "Normal",
  35541. height: math.unit(6 + 9/12, "feet"),
  35542. default: true
  35543. },
  35544. ]
  35545. ))
  35546. characterMakers.push(() => makeCharacter(
  35547. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35548. {
  35549. front: {
  35550. height: math.unit(6 + 5/12, "feet"),
  35551. weight: math.unit(650, "lb"),
  35552. name: "Front",
  35553. image: {
  35554. source: "./media/characters/keegan/front.svg",
  35555. extra: 2387/2198,
  35556. bottom: 33/2420
  35557. }
  35558. },
  35559. side: {
  35560. height: math.unit(6 + 5/12, "feet"),
  35561. weight: math.unit(650, "lb"),
  35562. name: "Side",
  35563. image: {
  35564. source: "./media/characters/keegan/side.svg",
  35565. extra: 2390/2202,
  35566. bottom: 47/2437
  35567. }
  35568. },
  35569. back: {
  35570. height: math.unit(6 + 5/12, "feet"),
  35571. weight: math.unit(650, "lb"),
  35572. name: "Back",
  35573. image: {
  35574. source: "./media/characters/keegan/back.svg",
  35575. extra: 2418/2268,
  35576. bottom: 15/2433
  35577. }
  35578. },
  35579. frontSfw: {
  35580. height: math.unit(6 + 5/12, "feet"),
  35581. weight: math.unit(650, "lb"),
  35582. name: "Front (SFW)",
  35583. image: {
  35584. source: "./media/characters/keegan/front-sfw.svg",
  35585. extra: 2387/2198,
  35586. bottom: 33/2420
  35587. }
  35588. },
  35589. beans: {
  35590. height: math.unit(1.85, "feet"),
  35591. name: "Beans",
  35592. image: {
  35593. source: "./media/characters/keegan/beans.svg"
  35594. }
  35595. },
  35596. },
  35597. [
  35598. {
  35599. name: "Normal",
  35600. height: math.unit(6 + 5/12, "feet"),
  35601. default: true
  35602. },
  35603. ]
  35604. ))
  35605. characterMakers.push(() => makeCharacter(
  35606. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35607. {
  35608. front: {
  35609. height: math.unit(9, "feet"),
  35610. name: "Front",
  35611. image: {
  35612. source: "./media/characters/colton/front.svg",
  35613. extra: 1589/1326,
  35614. bottom: 139/1728
  35615. }
  35616. },
  35617. },
  35618. [
  35619. {
  35620. name: "Normal",
  35621. height: math.unit(9, "feet"),
  35622. default: true
  35623. },
  35624. ]
  35625. ))
  35626. characterMakers.push(() => makeCharacter(
  35627. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35628. {
  35629. front: {
  35630. height: math.unit(2 + 9/12, "feet"),
  35631. name: "Front",
  35632. image: {
  35633. source: "./media/characters/bora/front.svg",
  35634. extra: 1265/1250,
  35635. bottom: 24/1289
  35636. }
  35637. },
  35638. },
  35639. [
  35640. {
  35641. name: "Normal",
  35642. height: math.unit(2 + 9/12, "feet"),
  35643. default: true
  35644. },
  35645. ]
  35646. ))
  35647. characterMakers.push(() => makeCharacter(
  35648. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35649. {
  35650. front: {
  35651. height: math.unit(8, "feet"),
  35652. name: "Front",
  35653. image: {
  35654. source: "./media/characters/myu-myu/front.svg",
  35655. extra: 1949/1857,
  35656. bottom: 90/2039
  35657. }
  35658. },
  35659. },
  35660. [
  35661. {
  35662. name: "Normal",
  35663. height: math.unit(8, "feet"),
  35664. default: true
  35665. },
  35666. {
  35667. name: "Big",
  35668. height: math.unit(15, "feet")
  35669. },
  35670. {
  35671. name: "BIG",
  35672. height: math.unit(25, "feet")
  35673. },
  35674. ]
  35675. ))
  35676. characterMakers.push(() => makeCharacter(
  35677. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35678. {
  35679. side: {
  35680. height: math.unit(7 + 5/12, "feet"),
  35681. weight: math.unit(2800, "lb"),
  35682. name: "Side",
  35683. image: {
  35684. source: "./media/characters/haloren/side.svg",
  35685. extra: 1793/409,
  35686. bottom: 59/1852
  35687. }
  35688. },
  35689. frontPaw: {
  35690. height: math.unit(2.36, "feet"),
  35691. name: "Front paw",
  35692. image: {
  35693. source: "./media/characters/haloren/front-paw.svg"
  35694. }
  35695. },
  35696. hindPaw: {
  35697. height: math.unit(3.18, "feet"),
  35698. name: "Hind paw",
  35699. image: {
  35700. source: "./media/characters/haloren/hind-paw.svg"
  35701. }
  35702. },
  35703. maw: {
  35704. height: math.unit(5.05, "feet"),
  35705. name: "Maw",
  35706. image: {
  35707. source: "./media/characters/haloren/maw.svg"
  35708. }
  35709. },
  35710. dick: {
  35711. height: math.unit(2.90, "feet"),
  35712. name: "Dick",
  35713. image: {
  35714. source: "./media/characters/haloren/dick.svg"
  35715. }
  35716. },
  35717. },
  35718. [
  35719. {
  35720. name: "Normal",
  35721. height: math.unit(7 + 5/12, "feet"),
  35722. default: true
  35723. },
  35724. {
  35725. name: "Enhanced",
  35726. height: math.unit(14 + 3/12, "feet")
  35727. },
  35728. ]
  35729. ))
  35730. characterMakers.push(() => makeCharacter(
  35731. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35732. {
  35733. front: {
  35734. height: math.unit(171, "cm"),
  35735. name: "Front",
  35736. image: {
  35737. source: "./media/characters/kimmy/front.svg",
  35738. extra: 1491/1435,
  35739. bottom: 53/1544
  35740. }
  35741. },
  35742. },
  35743. [
  35744. {
  35745. name: "Small",
  35746. height: math.unit(9, "cm")
  35747. },
  35748. {
  35749. name: "Normal",
  35750. height: math.unit(171, "cm"),
  35751. default: true
  35752. },
  35753. ]
  35754. ))
  35755. characterMakers.push(() => makeCharacter(
  35756. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35757. {
  35758. front: {
  35759. height: math.unit(8, "feet"),
  35760. weight: math.unit(300, "lb"),
  35761. name: "Front",
  35762. image: {
  35763. source: "./media/characters/galeboomer/front.svg",
  35764. extra: 4651/4415,
  35765. bottom: 162/4813
  35766. }
  35767. },
  35768. back: {
  35769. height: math.unit(8, "feet"),
  35770. weight: math.unit(300, "lb"),
  35771. name: "Back",
  35772. image: {
  35773. source: "./media/characters/galeboomer/back.svg",
  35774. extra: 4544/4314,
  35775. bottom: 16/4560
  35776. }
  35777. },
  35778. frontAlt: {
  35779. height: math.unit(8, "feet"),
  35780. weight: math.unit(300, "lb"),
  35781. name: "Front (Alt)",
  35782. image: {
  35783. source: "./media/characters/galeboomer/front-alt.svg",
  35784. extra: 4458/4228,
  35785. bottom: 68/4526
  35786. }
  35787. },
  35788. maw: {
  35789. height: math.unit(1.2, "feet"),
  35790. name: "Maw",
  35791. image: {
  35792. source: "./media/characters/galeboomer/maw.svg"
  35793. }
  35794. },
  35795. },
  35796. [
  35797. {
  35798. name: "Normal",
  35799. height: math.unit(8, "feet"),
  35800. default: true
  35801. },
  35802. ]
  35803. ))
  35804. characterMakers.push(() => makeCharacter(
  35805. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35806. {
  35807. front: {
  35808. height: math.unit(5 + 9/12, "feet"),
  35809. weight: math.unit(120, "lb"),
  35810. name: "Front",
  35811. image: {
  35812. source: "./media/characters/chyr/front.svg",
  35813. extra: 1323/1254,
  35814. bottom: 63/1386
  35815. }
  35816. },
  35817. back: {
  35818. height: math.unit(5 + 9/12, "feet"),
  35819. weight: math.unit(120, "lb"),
  35820. name: "Back",
  35821. image: {
  35822. source: "./media/characters/chyr/back.svg",
  35823. extra: 1323/1252,
  35824. bottom: 48/1371
  35825. }
  35826. },
  35827. },
  35828. [
  35829. {
  35830. name: "Normal",
  35831. height: math.unit(5 + 9/12, "feet"),
  35832. default: true
  35833. },
  35834. ]
  35835. ))
  35836. characterMakers.push(() => makeCharacter(
  35837. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35838. {
  35839. front: {
  35840. height: math.unit(7, "feet"),
  35841. weight: math.unit(310, "lb"),
  35842. name: "Front",
  35843. image: {
  35844. source: "./media/characters/solarus/front.svg",
  35845. extra: 2415/2021,
  35846. bottom: 103/2518
  35847. }
  35848. },
  35849. back: {
  35850. height: math.unit(7, "feet"),
  35851. weight: math.unit(310, "lb"),
  35852. name: "Back",
  35853. image: {
  35854. source: "./media/characters/solarus/back.svg",
  35855. extra: 2463/2089,
  35856. bottom: 79/2542
  35857. }
  35858. },
  35859. },
  35860. [
  35861. {
  35862. name: "Normal",
  35863. height: math.unit(7, "feet"),
  35864. default: true
  35865. },
  35866. ]
  35867. ))
  35868. characterMakers.push(() => makeCharacter(
  35869. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35870. {
  35871. front: {
  35872. height: math.unit(16, "feet"),
  35873. name: "Front",
  35874. image: {
  35875. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35876. extra: 1844/1780,
  35877. bottom: 58/1902
  35878. }
  35879. },
  35880. winterCoat: {
  35881. height: math.unit(16, "feet"),
  35882. name: "Winter Coat",
  35883. image: {
  35884. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35885. extra: 1807/1775,
  35886. bottom: 69/1876
  35887. }
  35888. },
  35889. },
  35890. [
  35891. {
  35892. name: "Normal",
  35893. height: math.unit(16, "feet"),
  35894. default: true
  35895. },
  35896. {
  35897. name: "Chicago Size",
  35898. height: math.unit(560, "feet")
  35899. },
  35900. ]
  35901. ))
  35902. characterMakers.push(() => makeCharacter(
  35903. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35904. {
  35905. front: {
  35906. height: math.unit(11 + 6/12, "feet"),
  35907. weight: math.unit(1366, "lb"),
  35908. name: "Front",
  35909. image: {
  35910. source: "./media/characters/lexor/front.svg",
  35911. extra: 1560/1481,
  35912. bottom: 211/1771
  35913. }
  35914. },
  35915. back: {
  35916. height: math.unit(11 + 6/12, "feet"),
  35917. weight: math.unit(1366, "lb"),
  35918. name: "Back",
  35919. image: {
  35920. source: "./media/characters/lexor/back.svg",
  35921. extra: 1614/1533,
  35922. bottom: 76/1690
  35923. }
  35924. },
  35925. maw: {
  35926. height: math.unit(3, "feet"),
  35927. name: "Maw",
  35928. image: {
  35929. source: "./media/characters/lexor/maw.svg"
  35930. }
  35931. },
  35932. dick: {
  35933. height: math.unit(2.59, "feet"),
  35934. name: "Dick",
  35935. image: {
  35936. source: "./media/characters/lexor/dick.svg"
  35937. }
  35938. },
  35939. },
  35940. [
  35941. {
  35942. name: "Normal",
  35943. height: math.unit(11 + 6/12, "feet"),
  35944. default: true
  35945. },
  35946. ]
  35947. ))
  35948. characterMakers.push(() => makeCharacter(
  35949. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35950. {
  35951. front: {
  35952. height: math.unit(5 + 8/12, "feet"),
  35953. name: "Front",
  35954. image: {
  35955. source: "./media/characters/magnum/front.svg",
  35956. extra: 942/855,
  35957. bottom: 26/968
  35958. }
  35959. },
  35960. },
  35961. [
  35962. {
  35963. name: "Normal",
  35964. height: math.unit(5 + 8/12, "feet"),
  35965. default: true
  35966. },
  35967. ]
  35968. ))
  35969. characterMakers.push(() => makeCharacter(
  35970. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35971. {
  35972. front: {
  35973. height: math.unit(18 + 4/12, "feet"),
  35974. weight: math.unit(1500, "kg"),
  35975. name: "Front",
  35976. image: {
  35977. source: "./media/characters/solas-sharpsman/front.svg",
  35978. extra: 1698/1589,
  35979. bottom: 0/1698
  35980. }
  35981. },
  35982. },
  35983. [
  35984. {
  35985. name: "Normal",
  35986. height: math.unit(18 + 4/12, "feet"),
  35987. default: true
  35988. },
  35989. ]
  35990. ))
  35991. characterMakers.push(() => makeCharacter(
  35992. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35993. {
  35994. front: {
  35995. height: math.unit(5 + 5/12, "feet"),
  35996. weight: math.unit(180, "lb"),
  35997. name: "Front",
  35998. image: {
  35999. source: "./media/characters/october/front.svg",
  36000. extra: 1800/1650,
  36001. bottom: 0/1800
  36002. }
  36003. },
  36004. frontNsfw: {
  36005. height: math.unit(5 + 5/12, "feet"),
  36006. weight: math.unit(180, "lb"),
  36007. name: "Front (NSFW)",
  36008. image: {
  36009. source: "./media/characters/october/front-nsfw.svg",
  36010. extra: 1392/1307,
  36011. bottom: 42/1434
  36012. }
  36013. },
  36014. },
  36015. [
  36016. {
  36017. name: "Normal",
  36018. height: math.unit(5 + 5/12, "feet"),
  36019. default: true
  36020. },
  36021. ]
  36022. ))
  36023. characterMakers.push(() => makeCharacter(
  36024. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36025. {
  36026. front: {
  36027. height: math.unit(8 + 6/12, "feet"),
  36028. name: "Front",
  36029. image: {
  36030. source: "./media/characters/essynkardi/front.svg",
  36031. extra: 1914/1846,
  36032. bottom: 22/1936
  36033. }
  36034. },
  36035. },
  36036. [
  36037. {
  36038. name: "Normal",
  36039. height: math.unit(8 + 6/12, "feet"),
  36040. default: true
  36041. },
  36042. ]
  36043. ))
  36044. characterMakers.push(() => makeCharacter(
  36045. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36046. {
  36047. front: {
  36048. height: math.unit(6 + 6/12, "feet"),
  36049. weight: math.unit(7, "lb"),
  36050. name: "Front",
  36051. image: {
  36052. source: "./media/characters/icky/front.svg",
  36053. extra: 813/782,
  36054. bottom: 66/879
  36055. }
  36056. },
  36057. back: {
  36058. height: math.unit(6 + 6/12, "feet"),
  36059. weight: math.unit(7, "lb"),
  36060. name: "Back",
  36061. image: {
  36062. source: "./media/characters/icky/back.svg",
  36063. extra: 754/735,
  36064. bottom: 56/810
  36065. }
  36066. },
  36067. },
  36068. [
  36069. {
  36070. name: "Normal",
  36071. height: math.unit(6 + 6/12, "feet"),
  36072. default: true
  36073. },
  36074. ]
  36075. ))
  36076. characterMakers.push(() => makeCharacter(
  36077. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36078. {
  36079. front: {
  36080. height: math.unit(15, "feet"),
  36081. name: "Front",
  36082. image: {
  36083. source: "./media/characters/rojas/front.svg",
  36084. extra: 1462/1408,
  36085. bottom: 95/1557
  36086. }
  36087. },
  36088. back: {
  36089. height: math.unit(15, "feet"),
  36090. name: "Back",
  36091. image: {
  36092. source: "./media/characters/rojas/back.svg",
  36093. extra: 1023/954,
  36094. bottom: 28/1051
  36095. }
  36096. },
  36097. },
  36098. [
  36099. {
  36100. name: "Normal",
  36101. height: math.unit(15, "feet"),
  36102. default: true
  36103. },
  36104. ]
  36105. ))
  36106. characterMakers.push(() => makeCharacter(
  36107. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36108. {
  36109. frontHuman: {
  36110. height: math.unit(5 + 7/12, "feet"),
  36111. name: "Front (Human)",
  36112. image: {
  36113. source: "./media/characters/alek-dryagan/front-human.svg",
  36114. extra: 1687/1667,
  36115. bottom: 69/1756
  36116. }
  36117. },
  36118. backHuman: {
  36119. height: math.unit(5 + 7/12, "feet"),
  36120. name: "Back (Human)",
  36121. image: {
  36122. source: "./media/characters/alek-dryagan/back-human.svg",
  36123. extra: 1670/1649,
  36124. bottom: 65/1735
  36125. }
  36126. },
  36127. frontDemi: {
  36128. height: math.unit(65, "feet"),
  36129. name: "Front (Demi)",
  36130. image: {
  36131. source: "./media/characters/alek-dryagan/front-demi.svg",
  36132. extra: 1669/1642,
  36133. bottom: 49/1718
  36134. }
  36135. },
  36136. backDemi: {
  36137. height: math.unit(65, "feet"),
  36138. name: "Back (Demi)",
  36139. image: {
  36140. source: "./media/characters/alek-dryagan/back-demi.svg",
  36141. extra: 1658/1637,
  36142. bottom: 40/1698
  36143. }
  36144. },
  36145. mawHuman: {
  36146. height: math.unit(0.3, "feet"),
  36147. name: "Maw (Human)",
  36148. image: {
  36149. source: "./media/characters/alek-dryagan/maw-human.svg"
  36150. }
  36151. },
  36152. mawDemi: {
  36153. height: math.unit(3.8, "feet"),
  36154. name: "Maw (Demi)",
  36155. image: {
  36156. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36157. }
  36158. },
  36159. },
  36160. [
  36161. {
  36162. name: "Normal",
  36163. height: math.unit(5 + 7/12, "feet"),
  36164. default: true
  36165. },
  36166. ]
  36167. ))
  36168. characterMakers.push(() => makeCharacter(
  36169. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36170. {
  36171. frontHuman: {
  36172. height: math.unit(5 + 2/12, "feet"),
  36173. name: "Front (Human)",
  36174. image: {
  36175. source: "./media/characters/gen/front-human.svg",
  36176. extra: 1627/1538,
  36177. bottom: 71/1698
  36178. }
  36179. },
  36180. backHuman: {
  36181. height: math.unit(5 + 2/12, "feet"),
  36182. name: "Back (Human)",
  36183. image: {
  36184. source: "./media/characters/gen/back-human.svg",
  36185. extra: 1638/1548,
  36186. bottom: 69/1707
  36187. }
  36188. },
  36189. frontDemi: {
  36190. height: math.unit(5 + 2/12, "feet"),
  36191. name: "Front (Demi)",
  36192. image: {
  36193. source: "./media/characters/gen/front-demi.svg",
  36194. extra: 1627/1538,
  36195. bottom: 71/1698
  36196. }
  36197. },
  36198. backDemi: {
  36199. height: math.unit(5 + 2/12, "feet"),
  36200. name: "Back (Demi)",
  36201. image: {
  36202. source: "./media/characters/gen/back-demi.svg",
  36203. extra: 1638/1548,
  36204. bottom: 69/1707
  36205. }
  36206. },
  36207. },
  36208. [
  36209. {
  36210. name: "Normal",
  36211. height: math.unit(5 + 2/12, "feet"),
  36212. default: true
  36213. },
  36214. ]
  36215. ))
  36216. characterMakers.push(() => makeCharacter(
  36217. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36218. {
  36219. frontImp: {
  36220. height: math.unit(1 + 11/12, "feet"),
  36221. name: "Front (Imp)",
  36222. image: {
  36223. source: "./media/characters/max-kobold/front-imp.svg",
  36224. extra: 1238/1134,
  36225. bottom: 81/1319
  36226. }
  36227. },
  36228. backImp: {
  36229. height: math.unit(1 + 11/12, "feet"),
  36230. name: "Back (Imp)",
  36231. image: {
  36232. source: "./media/characters/max-kobold/back-imp.svg",
  36233. extra: 1334/1175,
  36234. bottom: 34/1368
  36235. }
  36236. },
  36237. frontDemi: {
  36238. height: math.unit(5 + 9/12, "feet"),
  36239. name: "Front (Demi)",
  36240. image: {
  36241. source: "./media/characters/max-kobold/front-demi.svg",
  36242. extra: 1715/1685,
  36243. bottom: 54/1769
  36244. }
  36245. },
  36246. backDemi: {
  36247. height: math.unit(5 + 9/12, "feet"),
  36248. name: "Back (Demi)",
  36249. image: {
  36250. source: "./media/characters/max-kobold/back-demi.svg",
  36251. extra: 1752/1729,
  36252. bottom: 41/1793
  36253. }
  36254. },
  36255. handImp: {
  36256. height: math.unit(0.45, "feet"),
  36257. name: "Hand (Imp)",
  36258. image: {
  36259. source: "./media/characters/max-kobold/hand.svg"
  36260. }
  36261. },
  36262. pawImp: {
  36263. height: math.unit(0.46, "feet"),
  36264. name: "Paw (Imp)",
  36265. image: {
  36266. source: "./media/characters/max-kobold/paw.svg"
  36267. }
  36268. },
  36269. handDemi: {
  36270. height: math.unit(0.80, "feet"),
  36271. name: "Hand (Demi)",
  36272. image: {
  36273. source: "./media/characters/max-kobold/hand.svg"
  36274. }
  36275. },
  36276. pawDemi: {
  36277. height: math.unit(1.1, "feet"),
  36278. name: "Paw (Demi)",
  36279. image: {
  36280. source: "./media/characters/max-kobold/paw.svg"
  36281. }
  36282. },
  36283. headImp: {
  36284. height: math.unit(1.33, "feet"),
  36285. name: "Head (Imp)",
  36286. image: {
  36287. source: "./media/characters/max-kobold/head-imp.svg"
  36288. }
  36289. },
  36290. mawImp: {
  36291. height: math.unit(0.75, "feet"),
  36292. name: "Maw (Imp)",
  36293. image: {
  36294. source: "./media/characters/max-kobold/maw-imp.svg"
  36295. }
  36296. },
  36297. mawDemi: {
  36298. height: math.unit(0.42, "feet"),
  36299. name: "Maw (Demi)",
  36300. image: {
  36301. source: "./media/characters/max-kobold/maw-demi.svg"
  36302. }
  36303. },
  36304. },
  36305. [
  36306. {
  36307. name: "Normal",
  36308. height: math.unit(1 + 11/12, "feet"),
  36309. default: true
  36310. },
  36311. ]
  36312. ))
  36313. characterMakers.push(() => makeCharacter(
  36314. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36315. {
  36316. front: {
  36317. height: math.unit(7 + 5/12, "feet"),
  36318. name: "Front",
  36319. image: {
  36320. source: "./media/characters/carbon/front.svg",
  36321. extra: 1754/1689,
  36322. bottom: 65/1819
  36323. }
  36324. },
  36325. back: {
  36326. height: math.unit(7 + 5/12, "feet"),
  36327. name: "Back",
  36328. image: {
  36329. source: "./media/characters/carbon/back.svg",
  36330. extra: 1762/1695,
  36331. bottom: 24/1786
  36332. }
  36333. },
  36334. frontGigantamax: {
  36335. height: math.unit(150, "feet"),
  36336. name: "Front (Gigantamax)",
  36337. image: {
  36338. source: "./media/characters/carbon/front-gigantamax.svg",
  36339. extra: 1826/1669,
  36340. bottom: 59/1885
  36341. }
  36342. },
  36343. backGigantamax: {
  36344. height: math.unit(150, "feet"),
  36345. name: "Back (Gigantamax)",
  36346. image: {
  36347. source: "./media/characters/carbon/back-gigantamax.svg",
  36348. extra: 1796/1653,
  36349. bottom: 53/1849
  36350. }
  36351. },
  36352. maw: {
  36353. height: math.unit(0.48, "feet"),
  36354. name: "Maw",
  36355. image: {
  36356. source: "./media/characters/carbon/maw.svg"
  36357. }
  36358. },
  36359. mawGigantamax: {
  36360. height: math.unit(7.5, "feet"),
  36361. name: "Maw (Gigantamax)",
  36362. image: {
  36363. source: "./media/characters/carbon/maw-gigantamax.svg"
  36364. }
  36365. },
  36366. },
  36367. [
  36368. {
  36369. name: "Normal",
  36370. height: math.unit(7 + 5/12, "feet"),
  36371. default: true
  36372. },
  36373. ]
  36374. ))
  36375. characterMakers.push(() => makeCharacter(
  36376. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36377. {
  36378. front: {
  36379. height: math.unit(6, "feet"),
  36380. name: "Front",
  36381. image: {
  36382. source: "./media/characters/maverick/front.svg",
  36383. extra: 1672/1661,
  36384. bottom: 85/1757
  36385. }
  36386. },
  36387. back: {
  36388. height: math.unit(6, "feet"),
  36389. name: "Back",
  36390. image: {
  36391. source: "./media/characters/maverick/back.svg",
  36392. extra: 1642/1631,
  36393. bottom: 38/1680
  36394. }
  36395. },
  36396. },
  36397. [
  36398. {
  36399. name: "Normal",
  36400. height: math.unit(6, "feet"),
  36401. default: true
  36402. },
  36403. ]
  36404. ))
  36405. characterMakers.push(() => makeCharacter(
  36406. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36407. {
  36408. front: {
  36409. height: math.unit(15, "feet"),
  36410. weight: math.unit(615, "lb"),
  36411. name: "Front",
  36412. image: {
  36413. source: "./media/characters/grockle/front.svg",
  36414. extra: 1535/1427,
  36415. bottom: 56/1591
  36416. }
  36417. },
  36418. },
  36419. [
  36420. {
  36421. name: "Normal",
  36422. height: math.unit(15, "feet"),
  36423. default: true
  36424. },
  36425. {
  36426. name: "Large",
  36427. height: math.unit(150, "feet")
  36428. },
  36429. {
  36430. name: "Macro",
  36431. height: math.unit(1876, "feet")
  36432. },
  36433. {
  36434. name: "Mega Macro",
  36435. height: math.unit(121940, "feet")
  36436. },
  36437. {
  36438. name: "Giga Macro",
  36439. height: math.unit(750, "km")
  36440. },
  36441. {
  36442. name: "Tera Macro",
  36443. height: math.unit(750000, "km")
  36444. },
  36445. {
  36446. name: "Galactic",
  36447. height: math.unit(1.4e5, "km")
  36448. },
  36449. {
  36450. name: "Godlike",
  36451. height: math.unit(9.8e280, "galaxies")
  36452. },
  36453. ]
  36454. ))
  36455. characterMakers.push(() => makeCharacter(
  36456. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36457. {
  36458. front: {
  36459. height: math.unit(11, "meters"),
  36460. weight: math.unit(20, "tonnes"),
  36461. name: "Front",
  36462. image: {
  36463. source: "./media/characters/alistair/front.svg",
  36464. extra: 1265/1009,
  36465. bottom: 93/1358
  36466. }
  36467. },
  36468. },
  36469. [
  36470. {
  36471. name: "Normal",
  36472. height: math.unit(11, "meters"),
  36473. default: true
  36474. },
  36475. ]
  36476. ))
  36477. characterMakers.push(() => makeCharacter(
  36478. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36479. {
  36480. front: {
  36481. height: math.unit(5 + 8/12, "feet"),
  36482. name: "Front",
  36483. image: {
  36484. source: "./media/characters/haruka/front.svg",
  36485. extra: 2012/1952,
  36486. bottom: 0/2012
  36487. }
  36488. },
  36489. },
  36490. [
  36491. {
  36492. name: "Normal",
  36493. height: math.unit(5 + 8/12, "feet"),
  36494. default: true
  36495. },
  36496. ]
  36497. ))
  36498. characterMakers.push(() => makeCharacter(
  36499. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36500. {
  36501. back: {
  36502. height: math.unit(9, "feet"),
  36503. name: "Back",
  36504. image: {
  36505. source: "./media/characters/vivian-sylveon/back.svg",
  36506. extra: 1853/1714,
  36507. bottom: 0/1853
  36508. }
  36509. },
  36510. },
  36511. [
  36512. {
  36513. name: "Normal",
  36514. height: math.unit(9, "feet"),
  36515. default: true
  36516. },
  36517. {
  36518. name: "Macro",
  36519. height: math.unit(500, "feet")
  36520. },
  36521. {
  36522. name: "Megamacro",
  36523. height: math.unit(600, "miles")
  36524. },
  36525. {
  36526. name: "Gigamacro",
  36527. height: math.unit(30000, "miles")
  36528. },
  36529. ]
  36530. ))
  36531. characterMakers.push(() => makeCharacter(
  36532. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36533. {
  36534. anthro: {
  36535. height: math.unit(5 + 10/12, "feet"),
  36536. weight: math.unit(100, "lb"),
  36537. name: "Anthro",
  36538. image: {
  36539. source: "./media/characters/daiki/anthro.svg",
  36540. extra: 1115/1027,
  36541. bottom: 69/1184
  36542. }
  36543. },
  36544. feral: {
  36545. height: math.unit(200, "feet"),
  36546. name: "Feral",
  36547. image: {
  36548. source: "./media/characters/daiki/feral.svg",
  36549. extra: 1256/313,
  36550. bottom: 39/1295
  36551. }
  36552. },
  36553. feralHead: {
  36554. height: math.unit(171, "feet"),
  36555. name: "Feral Head",
  36556. image: {
  36557. source: "./media/characters/daiki/feral-head.svg"
  36558. }
  36559. },
  36560. manaDragon: {
  36561. height: math.unit(170, "meters"),
  36562. name: "Mana-dragon",
  36563. image: {
  36564. source: "./media/characters/daiki/mana-dragon.svg",
  36565. extra: 763/420,
  36566. bottom: 97/860
  36567. }
  36568. },
  36569. },
  36570. [
  36571. {
  36572. name: "Normal",
  36573. height: math.unit(5 + 10/12, "feet"),
  36574. default: true
  36575. },
  36576. ]
  36577. ))
  36578. characterMakers.push(() => makeCharacter(
  36579. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36580. {
  36581. fullyEquippedFront: {
  36582. height: math.unit(3 + 1/12, "feet"),
  36583. weight: math.unit(24, "lb"),
  36584. name: "Fully Equipped (Front)",
  36585. image: {
  36586. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36587. extra: 687/605,
  36588. bottom: 18/705
  36589. }
  36590. },
  36591. fullyEquippedBack: {
  36592. height: math.unit(3 + 1/12, "feet"),
  36593. weight: math.unit(24, "lb"),
  36594. name: "Fully Equipped (Back)",
  36595. image: {
  36596. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36597. extra: 689/590,
  36598. bottom: 18/707
  36599. }
  36600. },
  36601. dailyWear: {
  36602. height: math.unit(3 + 1/12, "feet"),
  36603. weight: math.unit(24, "lb"),
  36604. name: "Daily Wear",
  36605. image: {
  36606. source: "./media/characters/tea-spot/daily-wear.svg",
  36607. extra: 701/620,
  36608. bottom: 21/722
  36609. }
  36610. },
  36611. maidWork: {
  36612. height: math.unit(3 + 1/12, "feet"),
  36613. weight: math.unit(24, "lb"),
  36614. name: "Maid Work",
  36615. image: {
  36616. source: "./media/characters/tea-spot/maid-work.svg",
  36617. extra: 693/609,
  36618. bottom: 15/708
  36619. }
  36620. },
  36621. },
  36622. [
  36623. {
  36624. name: "Normal",
  36625. height: math.unit(3 + 1/12, "feet"),
  36626. default: true
  36627. },
  36628. ]
  36629. ))
  36630. characterMakers.push(() => makeCharacter(
  36631. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36632. {
  36633. front: {
  36634. height: math.unit(175, "cm"),
  36635. weight: math.unit(75, "kg"),
  36636. name: "Front",
  36637. image: {
  36638. source: "./media/characters/chee/front.svg",
  36639. extra: 1796/1740,
  36640. bottom: 40/1836
  36641. }
  36642. },
  36643. },
  36644. [
  36645. {
  36646. name: "Micro-Micro",
  36647. height: math.unit(1, "nm")
  36648. },
  36649. {
  36650. name: "Micro-erst",
  36651. height: math.unit(1, "micrometer")
  36652. },
  36653. {
  36654. name: "Micro-er",
  36655. height: math.unit(1, "cm")
  36656. },
  36657. {
  36658. name: "Normal",
  36659. height: math.unit(175, "cm"),
  36660. default: true
  36661. },
  36662. {
  36663. name: "Macro",
  36664. height: math.unit(100, "m")
  36665. },
  36666. {
  36667. name: "Macro-er",
  36668. height: math.unit(1, "km")
  36669. },
  36670. {
  36671. name: "Macro-erst",
  36672. height: math.unit(10, "km")
  36673. },
  36674. {
  36675. name: "Macro-Macro",
  36676. height: math.unit(100, "km")
  36677. },
  36678. ]
  36679. ))
  36680. characterMakers.push(() => makeCharacter(
  36681. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36682. {
  36683. front: {
  36684. height: math.unit(11 + 9/12, "feet"),
  36685. weight: math.unit(935, "lb"),
  36686. name: "Front",
  36687. image: {
  36688. source: "./media/characters/kingsley/front.svg",
  36689. extra: 1803/1674,
  36690. bottom: 127/1930
  36691. }
  36692. },
  36693. frontNude: {
  36694. height: math.unit(11 + 9/12, "feet"),
  36695. weight: math.unit(935, "lb"),
  36696. name: "Front (Nude)",
  36697. image: {
  36698. source: "./media/characters/kingsley/front-nude.svg",
  36699. extra: 1803/1674,
  36700. bottom: 127/1930
  36701. }
  36702. },
  36703. },
  36704. [
  36705. {
  36706. name: "Normal",
  36707. height: math.unit(11 + 9/12, "feet"),
  36708. default: true
  36709. },
  36710. ]
  36711. ))
  36712. characterMakers.push(() => makeCharacter(
  36713. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36714. {
  36715. side: {
  36716. height: math.unit(9, "feet"),
  36717. name: "Side",
  36718. image: {
  36719. source: "./media/characters/rymel/side.svg",
  36720. extra: 792/469,
  36721. bottom: 121/913
  36722. }
  36723. },
  36724. maw: {
  36725. height: math.unit(2.4, "meters"),
  36726. name: "Maw",
  36727. image: {
  36728. source: "./media/characters/rymel/maw.svg"
  36729. }
  36730. },
  36731. },
  36732. [
  36733. {
  36734. name: "House Drake",
  36735. height: math.unit(2, "feet")
  36736. },
  36737. {
  36738. name: "Reduced",
  36739. height: math.unit(4.5, "feet")
  36740. },
  36741. {
  36742. name: "Normal",
  36743. height: math.unit(9, "feet"),
  36744. default: true
  36745. },
  36746. ]
  36747. ))
  36748. characterMakers.push(() => makeCharacter(
  36749. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36750. {
  36751. front: {
  36752. height: math.unit(1.74, "meters"),
  36753. weight: math.unit(55, "kg"),
  36754. name: "Front",
  36755. image: {
  36756. source: "./media/characters/rubus/front.svg",
  36757. extra: 1894/1742,
  36758. bottom: 44/1938
  36759. }
  36760. },
  36761. },
  36762. [
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(1.74, "meters"),
  36766. default: true
  36767. },
  36768. ]
  36769. ))
  36770. characterMakers.push(() => makeCharacter(
  36771. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36772. {
  36773. front: {
  36774. height: math.unit(5 + 2/12, "feet"),
  36775. weight: math.unit(112, "lb"),
  36776. name: "Front",
  36777. image: {
  36778. source: "./media/characters/cassie-kingston/front.svg",
  36779. extra: 1438/1390,
  36780. bottom: 47/1485
  36781. }
  36782. },
  36783. },
  36784. [
  36785. {
  36786. name: "Normal",
  36787. height: math.unit(5 + 2/12, "feet"),
  36788. default: true
  36789. },
  36790. {
  36791. name: "Macro",
  36792. height: math.unit(128, "feet")
  36793. },
  36794. {
  36795. name: "Megamacro",
  36796. height: math.unit(2.56, "miles")
  36797. },
  36798. ]
  36799. ))
  36800. characterMakers.push(() => makeCharacter(
  36801. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36802. {
  36803. front: {
  36804. height: math.unit(7, "feet"),
  36805. name: "Front",
  36806. image: {
  36807. source: "./media/characters/fox/front.svg",
  36808. extra: 1798/1703,
  36809. bottom: 55/1853
  36810. }
  36811. },
  36812. back: {
  36813. height: math.unit(7, "feet"),
  36814. name: "Back",
  36815. image: {
  36816. source: "./media/characters/fox/back.svg",
  36817. extra: 1748/1649,
  36818. bottom: 32/1780
  36819. }
  36820. },
  36821. head: {
  36822. height: math.unit(1.95, "feet"),
  36823. name: "Head",
  36824. image: {
  36825. source: "./media/characters/fox/head.svg"
  36826. }
  36827. },
  36828. dick: {
  36829. height: math.unit(1.33, "feet"),
  36830. name: "Dick",
  36831. image: {
  36832. source: "./media/characters/fox/dick.svg"
  36833. }
  36834. },
  36835. foot: {
  36836. height: math.unit(1, "feet"),
  36837. name: "Foot",
  36838. image: {
  36839. source: "./media/characters/fox/foot.svg"
  36840. }
  36841. },
  36842. paw: {
  36843. height: math.unit(0.92, "feet"),
  36844. name: "Paw",
  36845. image: {
  36846. source: "./media/characters/fox/paw.svg"
  36847. }
  36848. },
  36849. },
  36850. [
  36851. {
  36852. name: "Small",
  36853. height: math.unit(3, "inches")
  36854. },
  36855. {
  36856. name: "\"Realistic\"",
  36857. height: math.unit(7, "feet")
  36858. },
  36859. {
  36860. name: "Normal",
  36861. height: math.unit(150, "feet"),
  36862. default: true
  36863. },
  36864. {
  36865. name: "BIG",
  36866. height: math.unit(1200, "feet")
  36867. },
  36868. {
  36869. name: "👀",
  36870. height: math.unit(5, "miles")
  36871. },
  36872. {
  36873. name: "👀👀👀",
  36874. height: math.unit(64, "miles")
  36875. },
  36876. ]
  36877. ))
  36878. characterMakers.push(() => makeCharacter(
  36879. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36880. {
  36881. front: {
  36882. height: math.unit(625, "feet"),
  36883. name: "Front",
  36884. image: {
  36885. source: "./media/characters/asonja-rossa/front.svg",
  36886. extra: 1833/1686,
  36887. bottom: 24/1857
  36888. }
  36889. },
  36890. back: {
  36891. height: math.unit(625, "feet"),
  36892. name: "Back",
  36893. image: {
  36894. source: "./media/characters/asonja-rossa/back.svg",
  36895. extra: 1852/1753,
  36896. bottom: 26/1878
  36897. }
  36898. },
  36899. },
  36900. [
  36901. {
  36902. name: "Macro",
  36903. height: math.unit(625, "feet"),
  36904. default: true
  36905. },
  36906. ]
  36907. ))
  36908. characterMakers.push(() => makeCharacter(
  36909. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36910. {
  36911. side: {
  36912. height: math.unit(8, "feet"),
  36913. name: "Side",
  36914. image: {
  36915. source: "./media/characters/rezukii/side.svg",
  36916. extra: 979/542,
  36917. bottom: 87/1066
  36918. }
  36919. },
  36920. sitting: {
  36921. height: math.unit(14.6, "feet"),
  36922. name: "Sitting",
  36923. image: {
  36924. source: "./media/characters/rezukii/sitting.svg",
  36925. extra: 1023/813,
  36926. bottom: 45/1068
  36927. }
  36928. },
  36929. },
  36930. [
  36931. {
  36932. name: "Tiny",
  36933. height: math.unit(2, "feet")
  36934. },
  36935. {
  36936. name: "Smol",
  36937. height: math.unit(4, "feet")
  36938. },
  36939. {
  36940. name: "Normal",
  36941. height: math.unit(8, "feet"),
  36942. default: true
  36943. },
  36944. {
  36945. name: "Big",
  36946. height: math.unit(12, "feet")
  36947. },
  36948. {
  36949. name: "Macro",
  36950. height: math.unit(30, "feet")
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36956. {
  36957. front: {
  36958. height: math.unit(14, "feet"),
  36959. weight: math.unit(9.5, "tonnes"),
  36960. name: "Front",
  36961. image: {
  36962. source: "./media/characters/dawnheart/front.svg",
  36963. extra: 2792/2675,
  36964. bottom: 64/2856
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Normal",
  36971. height: math.unit(14, "feet"),
  36972. default: true
  36973. },
  36974. ]
  36975. ))
  36976. characterMakers.push(() => makeCharacter(
  36977. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36978. {
  36979. front: {
  36980. height: math.unit(1.7, "m"),
  36981. name: "Front",
  36982. image: {
  36983. source: "./media/characters/gladi/front.svg",
  36984. extra: 1460/1362,
  36985. bottom: 19/1479
  36986. }
  36987. },
  36988. back: {
  36989. height: math.unit(1.7, "m"),
  36990. name: "Back",
  36991. image: {
  36992. source: "./media/characters/gladi/back.svg",
  36993. extra: 1459/1357,
  36994. bottom: 12/1471
  36995. }
  36996. },
  36997. feral: {
  36998. height: math.unit(2.05, "m"),
  36999. name: "Feral",
  37000. image: {
  37001. source: "./media/characters/gladi/feral.svg",
  37002. extra: 821/557,
  37003. bottom: 91/912
  37004. }
  37005. },
  37006. },
  37007. [
  37008. {
  37009. name: "Shortest",
  37010. height: math.unit(70, "cm")
  37011. },
  37012. {
  37013. name: "Normal",
  37014. height: math.unit(1.7, "m")
  37015. },
  37016. {
  37017. name: "Macro",
  37018. height: math.unit(10, "m"),
  37019. default: true
  37020. },
  37021. {
  37022. name: "Tallest",
  37023. height: math.unit(200, "m")
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(5 + 7/12, "feet"),
  37032. weight: math.unit(2, "tons"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/erdno/front.svg",
  37036. extra: 1234/1129,
  37037. bottom: 35/1269
  37038. }
  37039. },
  37040. angled: {
  37041. height: math.unit(5 + 7/12, "feet"),
  37042. weight: math.unit(2, "tons"),
  37043. name: "Angled",
  37044. image: {
  37045. source: "./media/characters/erdno/angled.svg",
  37046. extra: 1185/1139,
  37047. bottom: 36/1221
  37048. }
  37049. },
  37050. side: {
  37051. height: math.unit(5 + 7/12, "feet"),
  37052. weight: math.unit(2, "tons"),
  37053. name: "Side",
  37054. image: {
  37055. source: "./media/characters/erdno/side.svg",
  37056. extra: 1191/1144,
  37057. bottom: 40/1231
  37058. }
  37059. },
  37060. back: {
  37061. height: math.unit(5 + 7/12, "feet"),
  37062. weight: math.unit(2, "tons"),
  37063. name: "Back",
  37064. image: {
  37065. source: "./media/characters/erdno/back.svg",
  37066. extra: 1202/1146,
  37067. bottom: 17/1219
  37068. }
  37069. },
  37070. frontNsfw: {
  37071. height: math.unit(5 + 7/12, "feet"),
  37072. weight: math.unit(2, "tons"),
  37073. name: "Front (NSFW)",
  37074. image: {
  37075. source: "./media/characters/erdno/front-nsfw.svg",
  37076. extra: 1234/1129,
  37077. bottom: 35/1269
  37078. }
  37079. },
  37080. angledNsfw: {
  37081. height: math.unit(5 + 7/12, "feet"),
  37082. weight: math.unit(2, "tons"),
  37083. name: "Angled (NSFW)",
  37084. image: {
  37085. source: "./media/characters/erdno/angled-nsfw.svg",
  37086. extra: 1185/1139,
  37087. bottom: 36/1221
  37088. }
  37089. },
  37090. sideNsfw: {
  37091. height: math.unit(5 + 7/12, "feet"),
  37092. weight: math.unit(2, "tons"),
  37093. name: "Side (NSFW)",
  37094. image: {
  37095. source: "./media/characters/erdno/side-nsfw.svg",
  37096. extra: 1191/1144,
  37097. bottom: 40/1231
  37098. }
  37099. },
  37100. backNsfw: {
  37101. height: math.unit(5 + 7/12, "feet"),
  37102. weight: math.unit(2, "tons"),
  37103. name: "Back (NSFW)",
  37104. image: {
  37105. source: "./media/characters/erdno/back-nsfw.svg",
  37106. extra: 1202/1146,
  37107. bottom: 17/1219
  37108. }
  37109. },
  37110. frontHyper: {
  37111. height: math.unit(5 + 7/12, "feet"),
  37112. weight: math.unit(2, "tons"),
  37113. name: "Front (Hyper)",
  37114. image: {
  37115. source: "./media/characters/erdno/front-hyper.svg",
  37116. extra: 1298/1136,
  37117. bottom: 35/1333
  37118. }
  37119. },
  37120. },
  37121. [
  37122. {
  37123. name: "Normal",
  37124. height: math.unit(5 + 7/12, "feet"),
  37125. default: true
  37126. },
  37127. {
  37128. name: "Big",
  37129. height: math.unit(5.7, "meters")
  37130. },
  37131. {
  37132. name: "Macro",
  37133. height: math.unit(5.7, "kilometers")
  37134. },
  37135. {
  37136. name: "Megamacro",
  37137. height: math.unit(5.7, "earths")
  37138. },
  37139. ]
  37140. ))
  37141. characterMakers.push(() => makeCharacter(
  37142. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37143. {
  37144. front: {
  37145. height: math.unit(5 + 10/12, "feet"),
  37146. weight: math.unit(150, "lb"),
  37147. name: "Front",
  37148. image: {
  37149. source: "./media/characters/jamie/front.svg",
  37150. extra: 1908/1768,
  37151. bottom: 19/1927
  37152. }
  37153. },
  37154. },
  37155. [
  37156. {
  37157. name: "Minimum",
  37158. height: math.unit(2, "cm")
  37159. },
  37160. {
  37161. name: "Micro",
  37162. height: math.unit(3, "inches")
  37163. },
  37164. {
  37165. name: "Normal",
  37166. height: math.unit(5 + 10/12, "feet"),
  37167. default: true
  37168. },
  37169. {
  37170. name: "Macro",
  37171. height: math.unit(150, "feet")
  37172. },
  37173. {
  37174. name: "Megamacro",
  37175. height: math.unit(10000, "m")
  37176. },
  37177. ]
  37178. ))
  37179. characterMakers.push(() => makeCharacter(
  37180. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37181. {
  37182. front: {
  37183. height: math.unit(2, "meters"),
  37184. weight: math.unit(100, "kg"),
  37185. name: "Front",
  37186. image: {
  37187. source: "./media/characters/shiron/front.svg",
  37188. extra: 2103/1985,
  37189. bottom: 98/2201
  37190. }
  37191. },
  37192. back: {
  37193. height: math.unit(2, "meters"),
  37194. weight: math.unit(100, "kg"),
  37195. name: "Back",
  37196. image: {
  37197. source: "./media/characters/shiron/back.svg",
  37198. extra: 2110/2015,
  37199. bottom: 89/2199
  37200. }
  37201. },
  37202. hand: {
  37203. height: math.unit(0.96, "feet"),
  37204. name: "Hand",
  37205. image: {
  37206. source: "./media/characters/shiron/hand.svg"
  37207. }
  37208. },
  37209. foot: {
  37210. height: math.unit(1.464, "feet"),
  37211. name: "Foot",
  37212. image: {
  37213. source: "./media/characters/shiron/foot.svg"
  37214. }
  37215. },
  37216. },
  37217. [
  37218. {
  37219. name: "Normal",
  37220. height: math.unit(2, "meters")
  37221. },
  37222. {
  37223. name: "Macro",
  37224. height: math.unit(500, "meters"),
  37225. default: true
  37226. },
  37227. {
  37228. name: "Megamacro",
  37229. height: math.unit(20, "km")
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37235. {
  37236. front: {
  37237. height: math.unit(6, "feet"),
  37238. name: "Front",
  37239. image: {
  37240. source: "./media/characters/sam/front.svg",
  37241. extra: 849/826,
  37242. bottom: 19/868
  37243. }
  37244. },
  37245. },
  37246. [
  37247. {
  37248. name: "Normal",
  37249. height: math.unit(6, "feet"),
  37250. default: true
  37251. },
  37252. ]
  37253. ))
  37254. characterMakers.push(() => makeCharacter(
  37255. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37256. {
  37257. front: {
  37258. height: math.unit(8 + 4/12, "feet"),
  37259. weight: math.unit(122, "kg"),
  37260. name: "Front",
  37261. image: {
  37262. source: "./media/characters/namori-kurogawa/front.svg",
  37263. extra: 1894/1576,
  37264. bottom: 34/1928
  37265. }
  37266. },
  37267. },
  37268. [
  37269. {
  37270. name: "Normal",
  37271. height: math.unit(8 + 4/12, "feet"),
  37272. default: true
  37273. },
  37274. ]
  37275. ))
  37276. characterMakers.push(() => makeCharacter(
  37277. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37278. {
  37279. front: {
  37280. height: math.unit(9, "feet"),
  37281. weight: math.unit(621, "lb"),
  37282. name: "Front",
  37283. image: {
  37284. source: "./media/characters/unmru/front.svg",
  37285. extra: 1853/1747,
  37286. bottom: 73/1926
  37287. }
  37288. },
  37289. side: {
  37290. height: math.unit(9, "feet"),
  37291. weight: math.unit(621, "lb"),
  37292. name: "Side",
  37293. image: {
  37294. source: "./media/characters/unmru/side.svg",
  37295. extra: 1781/1671,
  37296. bottom: 127/1908
  37297. }
  37298. },
  37299. back: {
  37300. height: math.unit(9, "feet"),
  37301. weight: math.unit(621, "lb"),
  37302. name: "Back",
  37303. image: {
  37304. source: "./media/characters/unmru/back.svg",
  37305. extra: 1894/1765,
  37306. bottom: 75/1969
  37307. }
  37308. },
  37309. dick: {
  37310. height: math.unit(3, "feet"),
  37311. weight: math.unit(35, "lb"),
  37312. name: "Dick",
  37313. image: {
  37314. source: "./media/characters/unmru/dick.svg"
  37315. }
  37316. },
  37317. },
  37318. [
  37319. {
  37320. name: "Normal",
  37321. height: math.unit(9, "feet")
  37322. },
  37323. {
  37324. name: "Natural",
  37325. height: math.unit(27, "feet"),
  37326. default: true
  37327. },
  37328. {
  37329. name: "Giant",
  37330. height: math.unit(90, "feet")
  37331. },
  37332. {
  37333. name: "Kaiju",
  37334. height: math.unit(270, "feet")
  37335. },
  37336. {
  37337. name: "Macro",
  37338. height: math.unit(900, "feet")
  37339. },
  37340. {
  37341. name: "Macro+",
  37342. height: math.unit(2700, "feet")
  37343. },
  37344. {
  37345. name: "Megamacro",
  37346. height: math.unit(9000, "feet")
  37347. },
  37348. {
  37349. name: "City-Crushing",
  37350. height: math.unit(27000, "feet")
  37351. },
  37352. {
  37353. name: "Mountain-Mashing",
  37354. height: math.unit(90000, "feet")
  37355. },
  37356. {
  37357. name: "Earth-Eclipsing",
  37358. height: math.unit(2.7e8, "feet")
  37359. },
  37360. {
  37361. name: "Sol-Swallowing",
  37362. height: math.unit(9e10, "feet")
  37363. },
  37364. {
  37365. name: "Majoris-Munching",
  37366. height: math.unit(2.7e13, "feet")
  37367. },
  37368. ]
  37369. ))
  37370. characterMakers.push(() => makeCharacter(
  37371. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37372. {
  37373. front: {
  37374. height: math.unit(1, "inch"),
  37375. name: "Front",
  37376. image: {
  37377. source: "./media/characters/squeaks-mouse/front.svg",
  37378. extra: 352/308,
  37379. bottom: 25/377
  37380. }
  37381. },
  37382. },
  37383. [
  37384. {
  37385. name: "Micro",
  37386. height: math.unit(1, "inch"),
  37387. default: true
  37388. },
  37389. ]
  37390. ))
  37391. characterMakers.push(() => makeCharacter(
  37392. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37393. {
  37394. side: {
  37395. height: math.unit(35, "feet"),
  37396. name: "Side",
  37397. image: {
  37398. source: "./media/characters/sayko/side.svg",
  37399. extra: 1697/1021,
  37400. bottom: 82/1779
  37401. }
  37402. },
  37403. head: {
  37404. height: math.unit(16, "feet"),
  37405. name: "Head",
  37406. image: {
  37407. source: "./media/characters/sayko/head.svg"
  37408. }
  37409. },
  37410. forepaw: {
  37411. height: math.unit(7.85, "feet"),
  37412. name: "Forepaw",
  37413. image: {
  37414. source: "./media/characters/sayko/forepaw.svg"
  37415. }
  37416. },
  37417. hindpaw: {
  37418. height: math.unit(8.8, "feet"),
  37419. name: "Hindpaw",
  37420. image: {
  37421. source: "./media/characters/sayko/hindpaw.svg"
  37422. }
  37423. },
  37424. },
  37425. [
  37426. {
  37427. name: "Normal",
  37428. height: math.unit(35, "feet"),
  37429. default: true
  37430. },
  37431. {
  37432. name: "Colossus",
  37433. height: math.unit(100, "meters")
  37434. },
  37435. {
  37436. name: "\"Small\" Deity",
  37437. height: math.unit(1, "km")
  37438. },
  37439. {
  37440. name: "\"Large\" Deity",
  37441. height: math.unit(15, "km")
  37442. },
  37443. ]
  37444. ))
  37445. characterMakers.push(() => makeCharacter(
  37446. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37447. {
  37448. front: {
  37449. height: math.unit(6, "feet"),
  37450. weight: math.unit(250, "lb"),
  37451. name: "Front",
  37452. image: {
  37453. source: "./media/characters/mukiro/front.svg",
  37454. extra: 1368/1310,
  37455. bottom: 34/1402
  37456. }
  37457. },
  37458. },
  37459. [
  37460. {
  37461. name: "Normal",
  37462. height: math.unit(6, "feet"),
  37463. default: true
  37464. },
  37465. ]
  37466. ))
  37467. characterMakers.push(() => makeCharacter(
  37468. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37469. {
  37470. front: {
  37471. height: math.unit(12 + 4/12, "feet"),
  37472. name: "Front",
  37473. image: {
  37474. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37475. extra: 1346/1311,
  37476. bottom: 65/1411
  37477. }
  37478. },
  37479. },
  37480. [
  37481. {
  37482. name: "Base",
  37483. height: math.unit(12 + 4/12, "feet"),
  37484. default: true
  37485. },
  37486. {
  37487. name: "Macro",
  37488. height: math.unit(150, "feet")
  37489. },
  37490. {
  37491. name: "Mega",
  37492. height: math.unit(2, "miles")
  37493. },
  37494. {
  37495. name: "Demi God",
  37496. height: math.unit(4, "AU")
  37497. },
  37498. {
  37499. name: "God Size",
  37500. height: math.unit(1, "universe")
  37501. },
  37502. ]
  37503. ))
  37504. characterMakers.push(() => makeCharacter(
  37505. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37506. {
  37507. front: {
  37508. height: math.unit(3 + 3/12, "feet"),
  37509. weight: math.unit(88, "lb"),
  37510. name: "Front",
  37511. image: {
  37512. source: "./media/characters/trey/front.svg",
  37513. extra: 1815/1509,
  37514. bottom: 60/1875
  37515. }
  37516. },
  37517. },
  37518. [
  37519. {
  37520. name: "Normal",
  37521. height: math.unit(3 + 3/12, "feet"),
  37522. default: true
  37523. },
  37524. ]
  37525. ))
  37526. characterMakers.push(() => makeCharacter(
  37527. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37528. {
  37529. front: {
  37530. height: math.unit(4, "meters"),
  37531. name: "Front",
  37532. image: {
  37533. source: "./media/characters/adelonda/front.svg",
  37534. extra: 1077/982,
  37535. bottom: 39/1116
  37536. }
  37537. },
  37538. back: {
  37539. height: math.unit(4, "meters"),
  37540. name: "Back",
  37541. image: {
  37542. source: "./media/characters/adelonda/back.svg",
  37543. extra: 1105/1003,
  37544. bottom: 25/1130
  37545. }
  37546. },
  37547. },
  37548. [
  37549. {
  37550. name: "Normal",
  37551. height: math.unit(4, "meters"),
  37552. default: true
  37553. },
  37554. ]
  37555. ))
  37556. characterMakers.push(() => makeCharacter(
  37557. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37558. {
  37559. front: {
  37560. height: math.unit(8 + 4/12, "feet"),
  37561. weight: math.unit(670, "lb"),
  37562. name: "Front",
  37563. image: {
  37564. source: "./media/characters/acadiel/front.svg",
  37565. extra: 1901/1595,
  37566. bottom: 142/2043
  37567. }
  37568. },
  37569. },
  37570. [
  37571. {
  37572. name: "Normal",
  37573. height: math.unit(8 + 4/12, "feet"),
  37574. default: true
  37575. },
  37576. {
  37577. name: "Macro",
  37578. height: math.unit(200, "feet")
  37579. },
  37580. ]
  37581. ))
  37582. characterMakers.push(() => makeCharacter(
  37583. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37584. {
  37585. front: {
  37586. height: math.unit(6 + 2/12, "feet"),
  37587. weight: math.unit(185, "lb"),
  37588. name: "Front",
  37589. image: {
  37590. source: "./media/characters/kayne-ein/front.svg",
  37591. extra: 1780/1560,
  37592. bottom: 81/1861
  37593. }
  37594. },
  37595. },
  37596. [
  37597. {
  37598. name: "Normal",
  37599. height: math.unit(6 + 2/12, "feet"),
  37600. default: true
  37601. },
  37602. {
  37603. name: "Transformation Stage",
  37604. height: math.unit(15, "feet")
  37605. },
  37606. {
  37607. name: "Macro",
  37608. height: math.unit(150, "feet")
  37609. },
  37610. {
  37611. name: "Earth's Shadow",
  37612. height: math.unit(6200, "miles")
  37613. },
  37614. {
  37615. name: "Universal Demon",
  37616. height: math.unit(28e9, "parsecs")
  37617. },
  37618. {
  37619. name: "Multiverse God",
  37620. height: math.unit(3, "multiverses")
  37621. },
  37622. ]
  37623. ))
  37624. characterMakers.push(() => makeCharacter(
  37625. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37626. {
  37627. front: {
  37628. height: math.unit(5 + 5/12, "feet"),
  37629. name: "Front",
  37630. image: {
  37631. source: "./media/characters/fawn/front.svg",
  37632. extra: 1873/1731,
  37633. bottom: 95/1968
  37634. }
  37635. },
  37636. back: {
  37637. height: math.unit(5 + 5/12, "feet"),
  37638. name: "Back",
  37639. image: {
  37640. source: "./media/characters/fawn/back.svg",
  37641. extra: 1813/1700,
  37642. bottom: 14/1827
  37643. }
  37644. },
  37645. hoof: {
  37646. height: math.unit(1.45, "feet"),
  37647. name: "Hoof",
  37648. image: {
  37649. source: "./media/characters/fawn/hoof.svg"
  37650. }
  37651. },
  37652. },
  37653. [
  37654. {
  37655. name: "Normal",
  37656. height: math.unit(5 + 5/12, "feet"),
  37657. default: true
  37658. },
  37659. ]
  37660. ))
  37661. characterMakers.push(() => makeCharacter(
  37662. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37663. {
  37664. front: {
  37665. height: math.unit(2 + 5/12, "feet"),
  37666. name: "Front",
  37667. image: {
  37668. source: "./media/characters/orion/front.svg",
  37669. extra: 1366/1304,
  37670. bottom: 43/1409
  37671. }
  37672. },
  37673. paw: {
  37674. height: math.unit(0.52, "feet"),
  37675. name: "Paw",
  37676. image: {
  37677. source: "./media/characters/orion/paw.svg"
  37678. }
  37679. },
  37680. },
  37681. [
  37682. {
  37683. name: "Normal",
  37684. height: math.unit(2 + 5/12, "feet"),
  37685. default: true
  37686. },
  37687. ]
  37688. ))
  37689. characterMakers.push(() => makeCharacter(
  37690. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37691. {
  37692. front: {
  37693. height: math.unit(5 + 10/12, "feet"),
  37694. name: "Front",
  37695. image: {
  37696. source: "./media/characters/vera/front.svg",
  37697. extra: 1680/1575,
  37698. bottom: 49/1729
  37699. }
  37700. },
  37701. back: {
  37702. height: math.unit(5 + 10/12, "feet"),
  37703. name: "Back",
  37704. image: {
  37705. source: "./media/characters/vera/back.svg",
  37706. extra: 1700/1588,
  37707. bottom: 18/1718
  37708. }
  37709. },
  37710. arcanine: {
  37711. height: math.unit(6 + 8/12, "feet"),
  37712. name: "Arcanine",
  37713. image: {
  37714. source: "./media/characters/vera/arcanine.svg",
  37715. extra: 1590/1511,
  37716. bottom: 71/1661
  37717. }
  37718. },
  37719. maw: {
  37720. height: math.unit(0.82, "feet"),
  37721. name: "Maw",
  37722. image: {
  37723. source: "./media/characters/vera/maw.svg"
  37724. }
  37725. },
  37726. mawArcanine: {
  37727. height: math.unit(0.97, "feet"),
  37728. name: "Maw (Arcanine)",
  37729. image: {
  37730. source: "./media/characters/vera/maw-arcanine.svg"
  37731. }
  37732. },
  37733. paw: {
  37734. height: math.unit(0.75, "feet"),
  37735. name: "Paw",
  37736. image: {
  37737. source: "./media/characters/vera/paw.svg"
  37738. }
  37739. },
  37740. pawprint: {
  37741. height: math.unit(0.52, "feet"),
  37742. name: "Pawprint",
  37743. image: {
  37744. source: "./media/characters/vera/pawprint.svg"
  37745. }
  37746. },
  37747. },
  37748. [
  37749. {
  37750. name: "Normal",
  37751. height: math.unit(5 + 10/12, "feet"),
  37752. default: true
  37753. },
  37754. {
  37755. name: "Macro",
  37756. height: math.unit(75, "feet")
  37757. },
  37758. ]
  37759. ))
  37760. characterMakers.push(() => makeCharacter(
  37761. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37762. {
  37763. front: {
  37764. height: math.unit(4, "feet"),
  37765. weight: math.unit(40, "lb"),
  37766. name: "Front",
  37767. image: {
  37768. source: "./media/characters/orvan-rabbit/front.svg",
  37769. extra: 1896/1642,
  37770. bottom: 29/1925
  37771. }
  37772. },
  37773. },
  37774. [
  37775. {
  37776. name: "Normal",
  37777. height: math.unit(4, "feet"),
  37778. default: true
  37779. },
  37780. ]
  37781. ))
  37782. characterMakers.push(() => makeCharacter(
  37783. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37784. {
  37785. front: {
  37786. height: math.unit(6, "feet"),
  37787. weight: math.unit(168, "lb"),
  37788. name: "Front",
  37789. image: {
  37790. source: "./media/characters/lisa/front.svg",
  37791. extra: 2065/1867,
  37792. bottom: 46/2111
  37793. }
  37794. },
  37795. back: {
  37796. height: math.unit(6, "feet"),
  37797. weight: math.unit(168, "lb"),
  37798. name: "Back",
  37799. image: {
  37800. source: "./media/characters/lisa/back.svg",
  37801. extra: 1982/1838,
  37802. bottom: 29/2011
  37803. }
  37804. },
  37805. maw: {
  37806. height: math.unit(0.81, "feet"),
  37807. name: "Maw",
  37808. image: {
  37809. source: "./media/characters/lisa/maw.svg"
  37810. }
  37811. },
  37812. paw: {
  37813. height: math.unit(0.9, "feet"),
  37814. name: "Paw",
  37815. image: {
  37816. source: "./media/characters/lisa/paw.svg"
  37817. }
  37818. },
  37819. caribousune: {
  37820. height: math.unit(7 + 2/12, "feet"),
  37821. weight: math.unit(268, "lb"),
  37822. name: "Caribousune",
  37823. image: {
  37824. source: "./media/characters/lisa/caribousune.svg",
  37825. extra: 1843/1633,
  37826. bottom: 29/1872
  37827. }
  37828. },
  37829. frontCaribousune: {
  37830. height: math.unit(7 + 2/12, "feet"),
  37831. weight: math.unit(268, "lb"),
  37832. name: "Front (Caribousune)",
  37833. image: {
  37834. source: "./media/characters/lisa/front-caribousune.svg",
  37835. extra: 1818/1638,
  37836. bottom: 52/1870
  37837. }
  37838. },
  37839. sideCaribousune: {
  37840. height: math.unit(7 + 2/12, "feet"),
  37841. weight: math.unit(268, "lb"),
  37842. name: "Side (Caribousune)",
  37843. image: {
  37844. source: "./media/characters/lisa/side-caribousune.svg",
  37845. extra: 1851/1635,
  37846. bottom: 16/1867
  37847. }
  37848. },
  37849. backCaribousune: {
  37850. height: math.unit(7 + 2/12, "feet"),
  37851. weight: math.unit(268, "lb"),
  37852. name: "Back (Caribousune)",
  37853. image: {
  37854. source: "./media/characters/lisa/back-caribousune.svg",
  37855. extra: 1801/1604,
  37856. bottom: 44/1845
  37857. }
  37858. },
  37859. caribou: {
  37860. height: math.unit(7 + 2/12, "feet"),
  37861. weight: math.unit(268, "lb"),
  37862. name: "Caribou",
  37863. image: {
  37864. source: "./media/characters/lisa/caribou.svg",
  37865. extra: 1843/1633,
  37866. bottom: 29/1872
  37867. }
  37868. },
  37869. frontCaribou: {
  37870. height: math.unit(7 + 2/12, "feet"),
  37871. weight: math.unit(268, "lb"),
  37872. name: "Front (Caribou)",
  37873. image: {
  37874. source: "./media/characters/lisa/front-caribou.svg",
  37875. extra: 1818/1638,
  37876. bottom: 52/1870
  37877. }
  37878. },
  37879. sideCaribou: {
  37880. height: math.unit(7 + 2/12, "feet"),
  37881. weight: math.unit(268, "lb"),
  37882. name: "Side (Caribou)",
  37883. image: {
  37884. source: "./media/characters/lisa/side-caribou.svg",
  37885. extra: 1851/1635,
  37886. bottom: 16/1867
  37887. }
  37888. },
  37889. backCaribou: {
  37890. height: math.unit(7 + 2/12, "feet"),
  37891. weight: math.unit(268, "lb"),
  37892. name: "Back (Caribou)",
  37893. image: {
  37894. source: "./media/characters/lisa/back-caribou.svg",
  37895. extra: 1801/1604,
  37896. bottom: 44/1845
  37897. }
  37898. },
  37899. mawCaribou: {
  37900. height: math.unit(1.45, "feet"),
  37901. name: "Maw (Caribou)",
  37902. image: {
  37903. source: "./media/characters/lisa/maw-caribou.svg"
  37904. }
  37905. },
  37906. mawCaribousune: {
  37907. height: math.unit(1.45, "feet"),
  37908. name: "Maw (Caribousune)",
  37909. image: {
  37910. source: "./media/characters/lisa/maw-caribousune.svg"
  37911. }
  37912. },
  37913. pawCaribousune: {
  37914. height: math.unit(1.61, "feet"),
  37915. name: "Paw (Caribou)",
  37916. image: {
  37917. source: "./media/characters/lisa/paw-caribousune.svg"
  37918. }
  37919. },
  37920. },
  37921. [
  37922. {
  37923. name: "Normal",
  37924. height: math.unit(6, "feet")
  37925. },
  37926. {
  37927. name: "God Size",
  37928. height: math.unit(72, "feet"),
  37929. default: true
  37930. },
  37931. {
  37932. name: "Towering",
  37933. height: math.unit(288, "feet")
  37934. },
  37935. {
  37936. name: "City Size",
  37937. height: math.unit(48384, "feet")
  37938. },
  37939. {
  37940. name: "Continental",
  37941. height: math.unit(4200, "miles")
  37942. },
  37943. {
  37944. name: "Planet Eater",
  37945. height: math.unit(42, "earths")
  37946. },
  37947. {
  37948. name: "Star Swallower",
  37949. height: math.unit(42, "solarradii")
  37950. },
  37951. {
  37952. name: "System Swallower",
  37953. height: math.unit(84000, "AU")
  37954. },
  37955. {
  37956. name: "Galaxy Gobbler",
  37957. height: math.unit(42, "galaxies")
  37958. },
  37959. {
  37960. name: "Universe Devourer",
  37961. height: math.unit(42, "universes")
  37962. },
  37963. {
  37964. name: "Multiverse Muncher",
  37965. height: math.unit(42, "multiverses")
  37966. },
  37967. ]
  37968. ))
  37969. characterMakers.push(() => makeCharacter(
  37970. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37971. {
  37972. front: {
  37973. height: math.unit(36, "feet"),
  37974. name: "Front",
  37975. image: {
  37976. source: "./media/characters/shadow-rat/front.svg",
  37977. extra: 1845/1758,
  37978. bottom: 83/1928
  37979. }
  37980. },
  37981. },
  37982. [
  37983. {
  37984. name: "Macro",
  37985. height: math.unit(36, "feet"),
  37986. default: true
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37992. {
  37993. side: {
  37994. height: math.unit(8, "feet"),
  37995. weight: math.unit(2630, "lb"),
  37996. name: "Side",
  37997. image: {
  37998. source: "./media/characters/torallia/side.svg",
  37999. extra: 2164/2021,
  38000. bottom: 371/2535
  38001. }
  38002. },
  38003. },
  38004. [
  38005. {
  38006. name: "Mortal Interaction",
  38007. height: math.unit(8, "feet")
  38008. },
  38009. {
  38010. name: "Natural",
  38011. height: math.unit(24, "feet"),
  38012. default: true
  38013. },
  38014. {
  38015. name: "Giant",
  38016. height: math.unit(80, "feet")
  38017. },
  38018. {
  38019. name: "Kaiju",
  38020. height: math.unit(240, "feet")
  38021. },
  38022. {
  38023. name: "Macro",
  38024. height: math.unit(800, "feet")
  38025. },
  38026. {
  38027. name: "Macro+",
  38028. height: math.unit(2400, "feet")
  38029. },
  38030. {
  38031. name: "Macro++",
  38032. height: math.unit(8000, "feet")
  38033. },
  38034. {
  38035. name: "City-Crushing",
  38036. height: math.unit(24000, "feet")
  38037. },
  38038. {
  38039. name: "Mountain-Mashing",
  38040. height: math.unit(80000, "feet")
  38041. },
  38042. {
  38043. name: "District Demolisher",
  38044. height: math.unit(240000, "feet")
  38045. },
  38046. {
  38047. name: "Tri-County Terror",
  38048. height: math.unit(800000, "feet")
  38049. },
  38050. {
  38051. name: "State Smasher",
  38052. height: math.unit(2.4e6, "feet")
  38053. },
  38054. {
  38055. name: "Nation Nemesis",
  38056. height: math.unit(8e6, "feet")
  38057. },
  38058. {
  38059. name: "Continent Cracker",
  38060. height: math.unit(2.4e7, "feet")
  38061. },
  38062. {
  38063. name: "Planet-Pillaging",
  38064. height: math.unit(8e7, "feet")
  38065. },
  38066. {
  38067. name: "Earth-Eclipsing",
  38068. height: math.unit(2.4e8, "feet")
  38069. },
  38070. {
  38071. name: "Jovian-Jostling",
  38072. height: math.unit(8e8, "feet")
  38073. },
  38074. {
  38075. name: "Gas Giant Gulper",
  38076. height: math.unit(2.4e9, "feet")
  38077. },
  38078. {
  38079. name: "Astral Annihilator",
  38080. height: math.unit(8e9, "feet")
  38081. },
  38082. {
  38083. name: "Celestial Conqueror",
  38084. height: math.unit(2.4e10, "feet")
  38085. },
  38086. {
  38087. name: "Sol-Swallowing",
  38088. height: math.unit(8e10, "feet")
  38089. },
  38090. {
  38091. name: "Hunter of the Heavens",
  38092. height: math.unit(2.4e13, "feet")
  38093. },
  38094. ]
  38095. ))
  38096. characterMakers.push(() => makeCharacter(
  38097. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38098. {
  38099. front: {
  38100. height: math.unit(6 + 8/12, "feet"),
  38101. name: "Front",
  38102. image: {
  38103. source: "./media/characters/rebecca-pawlson/front.svg",
  38104. extra: 1737/1596,
  38105. bottom: 107/1844
  38106. }
  38107. },
  38108. back: {
  38109. height: math.unit(6 + 8/12, "feet"),
  38110. name: "Back",
  38111. image: {
  38112. source: "./media/characters/rebecca-pawlson/back.svg",
  38113. extra: 1702/1523,
  38114. bottom: 86/1788
  38115. }
  38116. },
  38117. },
  38118. [
  38119. {
  38120. name: "Normal",
  38121. height: math.unit(6 + 8/12, "feet")
  38122. },
  38123. {
  38124. name: "Mini Macro",
  38125. height: math.unit(10, "feet"),
  38126. default: true
  38127. },
  38128. {
  38129. name: "Macro",
  38130. height: math.unit(100, "feet")
  38131. },
  38132. {
  38133. name: "Mega Macro",
  38134. height: math.unit(2500, "feet")
  38135. },
  38136. {
  38137. name: "Giga Macro",
  38138. height: math.unit(50, "miles")
  38139. },
  38140. ]
  38141. ))
  38142. characterMakers.push(() => makeCharacter(
  38143. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38144. {
  38145. front: {
  38146. height: math.unit(7 + 6/12, "feet"),
  38147. weight: math.unit(600, "lb"),
  38148. name: "Front",
  38149. image: {
  38150. source: "./media/characters/moxie-nova/front.svg",
  38151. extra: 1734/1652,
  38152. bottom: 41/1775
  38153. }
  38154. },
  38155. },
  38156. [
  38157. {
  38158. name: "Normal",
  38159. height: math.unit(7 + 6/12, "feet"),
  38160. default: true
  38161. },
  38162. ]
  38163. ))
  38164. characterMakers.push(() => makeCharacter(
  38165. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38166. {
  38167. goat: {
  38168. height: math.unit(4, "feet"),
  38169. weight: math.unit(180, "lb"),
  38170. name: "Goat",
  38171. image: {
  38172. source: "./media/characters/tiffany/goat.svg",
  38173. extra: 1845/1595,
  38174. bottom: 106/1951
  38175. }
  38176. },
  38177. front: {
  38178. height: math.unit(5, "feet"),
  38179. weight: math.unit(150, "lb"),
  38180. name: "Foxcoon",
  38181. image: {
  38182. source: "./media/characters/tiffany/foxcoon.svg",
  38183. extra: 1941/1845,
  38184. bottom: 58/1999
  38185. }
  38186. },
  38187. },
  38188. [
  38189. {
  38190. name: "Normal",
  38191. height: math.unit(5, "feet"),
  38192. default: true
  38193. },
  38194. ]
  38195. ))
  38196. characterMakers.push(() => makeCharacter(
  38197. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38198. {
  38199. front: {
  38200. height: math.unit(8, "feet"),
  38201. weight: math.unit(300, "lb"),
  38202. name: "Front",
  38203. image: {
  38204. source: "./media/characters/raxinath/front.svg",
  38205. extra: 1407/1309,
  38206. bottom: 39/1446
  38207. }
  38208. },
  38209. back: {
  38210. height: math.unit(8, "feet"),
  38211. weight: math.unit(300, "lb"),
  38212. name: "Back",
  38213. image: {
  38214. source: "./media/characters/raxinath/back.svg",
  38215. extra: 1405/1315,
  38216. bottom: 9/1414
  38217. }
  38218. },
  38219. },
  38220. [
  38221. {
  38222. name: "Speck",
  38223. height: math.unit(0.5, "nm")
  38224. },
  38225. {
  38226. name: "Micro",
  38227. height: math.unit(3, "inches")
  38228. },
  38229. {
  38230. name: "Kobold",
  38231. height: math.unit(3, "feet")
  38232. },
  38233. {
  38234. name: "Normal",
  38235. height: math.unit(8, "feet"),
  38236. default: true
  38237. },
  38238. {
  38239. name: "Giant",
  38240. height: math.unit(50, "feet")
  38241. },
  38242. {
  38243. name: "Macro",
  38244. height: math.unit(1000, "feet")
  38245. },
  38246. {
  38247. name: "Megamacro",
  38248. height: math.unit(1, "mile")
  38249. },
  38250. ]
  38251. ))
  38252. characterMakers.push(() => makeCharacter(
  38253. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38254. {
  38255. front: {
  38256. height: math.unit(10, "feet"),
  38257. weight: math.unit(1442, "lb"),
  38258. name: "Front",
  38259. image: {
  38260. source: "./media/characters/mal-dragon/front.svg",
  38261. extra: 1515/1444,
  38262. bottom: 113/1628
  38263. }
  38264. },
  38265. back: {
  38266. height: math.unit(10, "feet"),
  38267. weight: math.unit(1442, "lb"),
  38268. name: "Back",
  38269. image: {
  38270. source: "./media/characters/mal-dragon/back.svg",
  38271. extra: 1527/1434,
  38272. bottom: 25/1552
  38273. }
  38274. },
  38275. },
  38276. [
  38277. {
  38278. name: "Mortal Interaction",
  38279. height: math.unit(10, "feet"),
  38280. default: true
  38281. },
  38282. {
  38283. name: "Large",
  38284. height: math.unit(30, "feet")
  38285. },
  38286. {
  38287. name: "Kaiju",
  38288. height: math.unit(300, "feet")
  38289. },
  38290. {
  38291. name: "Megamacro",
  38292. height: math.unit(10000, "feet")
  38293. },
  38294. {
  38295. name: "Continent Cracker",
  38296. height: math.unit(30000000, "feet")
  38297. },
  38298. {
  38299. name: "Sol-Swallowing",
  38300. height: math.unit(1e11, "feet")
  38301. },
  38302. {
  38303. name: "Light Universal",
  38304. height: math.unit(5, "universes")
  38305. },
  38306. {
  38307. name: "Universe Atoms",
  38308. height: math.unit(1.829e9, "universes")
  38309. },
  38310. {
  38311. name: "Light Multiversal",
  38312. height: math.unit(5, "multiverses")
  38313. },
  38314. {
  38315. name: "Multiverse Atoms",
  38316. height: math.unit(1.829e9, "multiverses")
  38317. },
  38318. {
  38319. name: "Fabric of Time",
  38320. height: math.unit(1e262, "multiverses")
  38321. },
  38322. ]
  38323. ))
  38324. characterMakers.push(() => makeCharacter(
  38325. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38326. {
  38327. front: {
  38328. height: math.unit(9, "feet"),
  38329. weight: math.unit(1050, "lb"),
  38330. name: "Front",
  38331. image: {
  38332. source: "./media/characters/tabitha/front.svg",
  38333. extra: 2083/1994,
  38334. bottom: 68/2151
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Baseline",
  38341. height: math.unit(9, "feet"),
  38342. default: true
  38343. },
  38344. {
  38345. name: "Giant",
  38346. height: math.unit(90, "feet")
  38347. },
  38348. {
  38349. name: "Macro",
  38350. height: math.unit(900, "feet")
  38351. },
  38352. {
  38353. name: "Megamacro",
  38354. height: math.unit(9000, "feet")
  38355. },
  38356. {
  38357. name: "City-Crushing",
  38358. height: math.unit(27000, "feet")
  38359. },
  38360. {
  38361. name: "Mountain-Mashing",
  38362. height: math.unit(90000, "feet")
  38363. },
  38364. {
  38365. name: "Nation Nemesis",
  38366. height: math.unit(9e6, "feet")
  38367. },
  38368. {
  38369. name: "Continent Cracker",
  38370. height: math.unit(27e6, "feet")
  38371. },
  38372. {
  38373. name: "Earth-Eclipsing",
  38374. height: math.unit(2.7e8, "feet")
  38375. },
  38376. {
  38377. name: "Gas Giant Gulper",
  38378. height: math.unit(2.7e9, "feet")
  38379. },
  38380. {
  38381. name: "Sol-Swallowing",
  38382. height: math.unit(9e10, "feet")
  38383. },
  38384. {
  38385. name: "Galaxy Gulper",
  38386. height: math.unit(9, "galaxies")
  38387. },
  38388. {
  38389. name: "Cosmos Churner",
  38390. height: math.unit(9, "universes")
  38391. },
  38392. ]
  38393. ))
  38394. characterMakers.push(() => makeCharacter(
  38395. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38396. {
  38397. front: {
  38398. height: math.unit(160, "cm"),
  38399. weight: math.unit(55, "kg"),
  38400. name: "Front",
  38401. image: {
  38402. source: "./media/characters/tow/front.svg",
  38403. extra: 1751/1722,
  38404. bottom: 74/1825
  38405. }
  38406. },
  38407. },
  38408. [
  38409. {
  38410. name: "Norm",
  38411. height: math.unit(160, "cm")
  38412. },
  38413. {
  38414. name: "Casual",
  38415. height: math.unit(3200, "m"),
  38416. default: true
  38417. },
  38418. {
  38419. name: "Show-Off",
  38420. height: math.unit(160, "km")
  38421. },
  38422. ]
  38423. ))
  38424. characterMakers.push(() => makeCharacter(
  38425. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38426. {
  38427. front: {
  38428. height: math.unit(7 + 11/12, "feet"),
  38429. weight: math.unit(342.8, "lb"),
  38430. name: "Front",
  38431. image: {
  38432. source: "./media/characters/vivian-orca-dragon/front.svg",
  38433. extra: 1890/1865,
  38434. bottom: 28/1918
  38435. }
  38436. },
  38437. },
  38438. [
  38439. {
  38440. name: "Micro",
  38441. height: math.unit(5, "inches")
  38442. },
  38443. {
  38444. name: "Normal",
  38445. height: math.unit(7 + 11/12, "feet"),
  38446. default: true
  38447. },
  38448. {
  38449. name: "Macro",
  38450. height: math.unit(395 + 7/12, "feet")
  38451. },
  38452. ]
  38453. ))
  38454. characterMakers.push(() => makeCharacter(
  38455. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38456. {
  38457. side: {
  38458. height: math.unit(10, "feet"),
  38459. weight: math.unit(1442, "lb"),
  38460. name: "Side",
  38461. image: {
  38462. source: "./media/characters/lotherakon/side.svg",
  38463. extra: 1604/1497,
  38464. bottom: 89/1693
  38465. }
  38466. },
  38467. },
  38468. [
  38469. {
  38470. name: "Mortal Interaction",
  38471. height: math.unit(10, "feet")
  38472. },
  38473. {
  38474. name: "Large",
  38475. height: math.unit(30, "feet"),
  38476. default: true
  38477. },
  38478. {
  38479. name: "Giant",
  38480. height: math.unit(100, "feet")
  38481. },
  38482. {
  38483. name: "Kaiju",
  38484. height: math.unit(300, "feet")
  38485. },
  38486. {
  38487. name: "Macro",
  38488. height: math.unit(1000, "feet")
  38489. },
  38490. {
  38491. name: "Macro+",
  38492. height: math.unit(3000, "feet")
  38493. },
  38494. {
  38495. name: "Megamacro",
  38496. height: math.unit(10000, "feet")
  38497. },
  38498. {
  38499. name: "City-Crushing",
  38500. height: math.unit(30000, "feet")
  38501. },
  38502. {
  38503. name: "Continent Cracker",
  38504. height: math.unit(30e6, "feet")
  38505. },
  38506. {
  38507. name: "Earth Eclipsing",
  38508. height: math.unit(3e8, "feet")
  38509. },
  38510. {
  38511. name: "Gas Giant Gulper",
  38512. height: math.unit(3e9, "feet")
  38513. },
  38514. {
  38515. name: "Sol-Swallowing",
  38516. height: math.unit(1e11, "feet")
  38517. },
  38518. {
  38519. name: "System Swallower",
  38520. height: math.unit(3e14, "feet")
  38521. },
  38522. {
  38523. name: "Galaxy Gulper",
  38524. height: math.unit(10, "galaxies")
  38525. },
  38526. {
  38527. name: "Light Universal",
  38528. height: math.unit(5, "universes")
  38529. },
  38530. {
  38531. name: "Universe Palm",
  38532. height: math.unit(20, "universes")
  38533. },
  38534. {
  38535. name: "Light Multiversal",
  38536. height: math.unit(5, "multiverses")
  38537. },
  38538. {
  38539. name: "Multiverse Palm",
  38540. height: math.unit(20, "multiverses")
  38541. },
  38542. {
  38543. name: "Inferno Incarnate",
  38544. height: math.unit(1e7, "multiverses")
  38545. },
  38546. ]
  38547. ))
  38548. characterMakers.push(() => makeCharacter(
  38549. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38550. {
  38551. front: {
  38552. height: math.unit(8, "feet"),
  38553. weight: math.unit(1200, "lb"),
  38554. name: "Front",
  38555. image: {
  38556. source: "./media/characters/malithee/front.svg",
  38557. extra: 1675/1640,
  38558. bottom: 162/1837
  38559. }
  38560. },
  38561. },
  38562. [
  38563. {
  38564. name: "Mortal Interaction",
  38565. height: math.unit(8, "feet"),
  38566. default: true
  38567. },
  38568. {
  38569. name: "Large",
  38570. height: math.unit(24, "feet")
  38571. },
  38572. {
  38573. name: "Kaiju",
  38574. height: math.unit(240, "feet")
  38575. },
  38576. {
  38577. name: "Megamacro",
  38578. height: math.unit(8000, "feet")
  38579. },
  38580. {
  38581. name: "Continent Cracker",
  38582. height: math.unit(24e6, "feet")
  38583. },
  38584. {
  38585. name: "Earth-Eclipsing",
  38586. height: math.unit(2.4e8, "feet")
  38587. },
  38588. {
  38589. name: "Sol-Swallowing",
  38590. height: math.unit(8e10, "feet")
  38591. },
  38592. {
  38593. name: "Galaxy Gulper",
  38594. height: math.unit(8, "galaxies")
  38595. },
  38596. {
  38597. name: "Light Universal",
  38598. height: math.unit(4, "universes")
  38599. },
  38600. {
  38601. name: "Universe Atoms",
  38602. height: math.unit(1.829e9, "universes")
  38603. },
  38604. {
  38605. name: "Light Multiversal",
  38606. height: math.unit(4, "multiverses")
  38607. },
  38608. {
  38609. name: "Multiverse Atoms",
  38610. height: math.unit(1.829e9, "multiverses")
  38611. },
  38612. {
  38613. name: "Nigh-Omnipresence",
  38614. height: math.unit(8e261, "multiverses")
  38615. },
  38616. ]
  38617. ))
  38618. characterMakers.push(() => makeCharacter(
  38619. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38620. {
  38621. front: {
  38622. height: math.unit(10, "feet"),
  38623. weight: math.unit(1500, "lb"),
  38624. name: "Front",
  38625. image: {
  38626. source: "./media/characters/miles-thestia/front.svg",
  38627. extra: 1812/1727,
  38628. bottom: 86/1898
  38629. }
  38630. },
  38631. back: {
  38632. height: math.unit(10, "feet"),
  38633. weight: math.unit(1500, "lb"),
  38634. name: "Back",
  38635. image: {
  38636. source: "./media/characters/miles-thestia/back.svg",
  38637. extra: 1799/1690,
  38638. bottom: 47/1846
  38639. }
  38640. },
  38641. frontNsfw: {
  38642. height: math.unit(10, "feet"),
  38643. weight: math.unit(1500, "lb"),
  38644. name: "Front (NSFW)",
  38645. image: {
  38646. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38647. extra: 1812/1727,
  38648. bottom: 86/1898
  38649. }
  38650. },
  38651. },
  38652. [
  38653. {
  38654. name: "Mini-Macro",
  38655. height: math.unit(10, "feet"),
  38656. default: true
  38657. },
  38658. ]
  38659. ))
  38660. characterMakers.push(() => makeCharacter(
  38661. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38662. {
  38663. front: {
  38664. height: math.unit(25, "feet"),
  38665. name: "Front",
  38666. image: {
  38667. source: "./media/characters/titan-s-wulf/front.svg",
  38668. extra: 1560/1484,
  38669. bottom: 76/1636
  38670. }
  38671. },
  38672. },
  38673. [
  38674. {
  38675. name: "Smallest",
  38676. height: math.unit(25, "feet"),
  38677. default: true
  38678. },
  38679. {
  38680. name: "Normal",
  38681. height: math.unit(200, "feet")
  38682. },
  38683. {
  38684. name: "Macro",
  38685. height: math.unit(200000, "feet")
  38686. },
  38687. {
  38688. name: "Multiversal Original",
  38689. height: math.unit(10000, "multiverses")
  38690. },
  38691. ]
  38692. ))
  38693. characterMakers.push(() => makeCharacter(
  38694. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38695. {
  38696. front: {
  38697. height: math.unit(8, "feet"),
  38698. weight: math.unit(553, "lb"),
  38699. name: "Front",
  38700. image: {
  38701. source: "./media/characters/tawendeh/front.svg",
  38702. extra: 2365/2268,
  38703. bottom: 83/2448
  38704. }
  38705. },
  38706. frontClothed: {
  38707. height: math.unit(8, "feet"),
  38708. weight: math.unit(553, "lb"),
  38709. name: "Front (Clothed)",
  38710. image: {
  38711. source: "./media/characters/tawendeh/front-clothed.svg",
  38712. extra: 2365/2268,
  38713. bottom: 83/2448
  38714. }
  38715. },
  38716. back: {
  38717. height: math.unit(8, "feet"),
  38718. weight: math.unit(553, "lb"),
  38719. name: "Back",
  38720. image: {
  38721. source: "./media/characters/tawendeh/back.svg",
  38722. extra: 2397/2294,
  38723. bottom: 42/2439
  38724. }
  38725. },
  38726. },
  38727. [
  38728. {
  38729. name: "Mortal Interaction",
  38730. height: math.unit(8, "feet"),
  38731. default: true
  38732. },
  38733. {
  38734. name: "Giant",
  38735. height: math.unit(80, "feet")
  38736. },
  38737. {
  38738. name: "Macro",
  38739. height: math.unit(800, "feet")
  38740. },
  38741. {
  38742. name: "Megamacro",
  38743. height: math.unit(8000, "feet")
  38744. },
  38745. {
  38746. name: "City-Crushing",
  38747. height: math.unit(24000, "feet")
  38748. },
  38749. {
  38750. name: "Mountain-Mashing",
  38751. height: math.unit(80000, "feet")
  38752. },
  38753. {
  38754. name: "Nation Nemesis",
  38755. height: math.unit(8e6, "feet")
  38756. },
  38757. {
  38758. name: "Continent Cracker",
  38759. height: math.unit(24e6, "feet")
  38760. },
  38761. {
  38762. name: "Earth-Eclipsing",
  38763. height: math.unit(2.4e8, "feet")
  38764. },
  38765. {
  38766. name: "Gas Giant Gulper",
  38767. height: math.unit(2.4e9, "feet")
  38768. },
  38769. {
  38770. name: "Sol-Swallowing",
  38771. height: math.unit(8e10, "feet")
  38772. },
  38773. {
  38774. name: "Galaxy Gulper",
  38775. height: math.unit(8, "galaxies")
  38776. },
  38777. {
  38778. name: "Cosmos Churner",
  38779. height: math.unit(8, "universes")
  38780. },
  38781. {
  38782. name: "Omnipotent Otter",
  38783. height: math.unit(80, "universes")
  38784. },
  38785. ]
  38786. ))
  38787. characterMakers.push(() => makeCharacter(
  38788. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38789. {
  38790. front: {
  38791. height: math.unit(2.6, "meters"),
  38792. weight: math.unit(900, "kg"),
  38793. name: "Front",
  38794. image: {
  38795. source: "./media/characters/neesha/front.svg",
  38796. extra: 1803/1653,
  38797. bottom: 128/1931
  38798. }
  38799. },
  38800. },
  38801. [
  38802. {
  38803. name: "Normal",
  38804. height: math.unit(2.6, "meters"),
  38805. default: true
  38806. },
  38807. {
  38808. name: "Macro",
  38809. height: math.unit(50, "meters")
  38810. },
  38811. ]
  38812. ))
  38813. characterMakers.push(() => makeCharacter(
  38814. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38815. {
  38816. front: {
  38817. height: math.unit(5, "feet"),
  38818. weight: math.unit(185, "lb"),
  38819. name: "Front",
  38820. image: {
  38821. source: "./media/characters/kyera/front.svg",
  38822. extra: 1875/1790,
  38823. bottom: 96/1971
  38824. }
  38825. },
  38826. },
  38827. [
  38828. {
  38829. name: "Normal",
  38830. height: math.unit(5, "feet"),
  38831. default: true
  38832. },
  38833. ]
  38834. ))
  38835. characterMakers.push(() => makeCharacter(
  38836. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38837. {
  38838. front: {
  38839. height: math.unit(7 + 6/12, "feet"),
  38840. weight: math.unit(540, "lb"),
  38841. name: "Front",
  38842. image: {
  38843. source: "./media/characters/yuko/front.svg",
  38844. extra: 1282/1222,
  38845. bottom: 101/1383
  38846. }
  38847. },
  38848. frontClothed: {
  38849. height: math.unit(7 + 6/12, "feet"),
  38850. weight: math.unit(540, "lb"),
  38851. name: "Front (Clothed)",
  38852. image: {
  38853. source: "./media/characters/yuko/front-clothed.svg",
  38854. extra: 1282/1222,
  38855. bottom: 101/1383
  38856. }
  38857. },
  38858. },
  38859. [
  38860. {
  38861. name: "Normal",
  38862. height: math.unit(7 + 6/12, "feet"),
  38863. default: true
  38864. },
  38865. {
  38866. name: "Macro",
  38867. height: math.unit(26 + 9/12, "feet")
  38868. },
  38869. {
  38870. name: "Megamacro",
  38871. height: math.unit(300, "feet")
  38872. },
  38873. {
  38874. name: "Gigamacro",
  38875. height: math.unit(5000, "feet")
  38876. },
  38877. {
  38878. name: "Planetary",
  38879. height: math.unit(10000, "miles")
  38880. },
  38881. ]
  38882. ))
  38883. characterMakers.push(() => makeCharacter(
  38884. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38885. {
  38886. front: {
  38887. height: math.unit(8 + 2/12, "feet"),
  38888. weight: math.unit(600, "lb"),
  38889. name: "Front",
  38890. image: {
  38891. source: "./media/characters/deam-nitrel/front.svg",
  38892. extra: 1308/1234,
  38893. bottom: 125/1433
  38894. }
  38895. },
  38896. },
  38897. [
  38898. {
  38899. name: "Normal",
  38900. height: math.unit(8 + 2/12, "feet"),
  38901. default: true
  38902. },
  38903. ]
  38904. ))
  38905. characterMakers.push(() => makeCharacter(
  38906. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38907. {
  38908. front: {
  38909. height: math.unit(6.1, "feet"),
  38910. weight: math.unit(180, "lb"),
  38911. name: "Front",
  38912. image: {
  38913. source: "./media/characters/skyress/front.svg",
  38914. extra: 1045/915,
  38915. bottom: 28/1073
  38916. }
  38917. },
  38918. maw: {
  38919. height: math.unit(1, "feet"),
  38920. name: "Maw",
  38921. image: {
  38922. source: "./media/characters/skyress/maw.svg"
  38923. }
  38924. },
  38925. },
  38926. [
  38927. {
  38928. name: "Normal",
  38929. height: math.unit(6.1, "feet"),
  38930. default: true
  38931. },
  38932. {
  38933. name: "Macro",
  38934. height: math.unit(200, "feet")
  38935. },
  38936. ]
  38937. ))
  38938. characterMakers.push(() => makeCharacter(
  38939. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38940. {
  38941. front: {
  38942. height: math.unit(4 + 2/12, "feet"),
  38943. weight: math.unit(40, "kg"),
  38944. name: "Front",
  38945. image: {
  38946. source: "./media/characters/amethyst-jones/front.svg",
  38947. extra: 1220/1150,
  38948. bottom: 101/1321
  38949. }
  38950. },
  38951. },
  38952. [
  38953. {
  38954. name: "Normal",
  38955. height: math.unit(4 + 2/12, "feet"),
  38956. default: true
  38957. },
  38958. ]
  38959. ))
  38960. characterMakers.push(() => makeCharacter(
  38961. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38962. {
  38963. front: {
  38964. height: math.unit(1.7, "m"),
  38965. weight: math.unit(135, "lb"),
  38966. name: "Front",
  38967. image: {
  38968. source: "./media/characters/jade/front.svg",
  38969. extra: 1818/1767,
  38970. bottom: 32/1850
  38971. }
  38972. },
  38973. back: {
  38974. height: math.unit(1.7, "m"),
  38975. weight: math.unit(135, "lb"),
  38976. name: "Back",
  38977. image: {
  38978. source: "./media/characters/jade/back.svg",
  38979. extra: 1869/1809,
  38980. bottom: 35/1904
  38981. }
  38982. },
  38983. hand: {
  38984. height: math.unit(0.24, "m"),
  38985. name: "Hand",
  38986. image: {
  38987. source: "./media/characters/jade/hand.svg"
  38988. }
  38989. },
  38990. foot: {
  38991. height: math.unit(0.263, "m"),
  38992. name: "Foot",
  38993. image: {
  38994. source: "./media/characters/jade/foot.svg"
  38995. }
  38996. },
  38997. dick: {
  38998. height: math.unit(0.47, "m"),
  38999. name: "Dick",
  39000. image: {
  39001. source: "./media/characters/jade/dick.svg"
  39002. }
  39003. },
  39004. },
  39005. [
  39006. {
  39007. name: "Micro",
  39008. height: math.unit(22, "cm")
  39009. },
  39010. {
  39011. name: "Normal",
  39012. height: math.unit(1.7, "m"),
  39013. default: true
  39014. },
  39015. {
  39016. name: "Macro",
  39017. height: math.unit(152, "m")
  39018. },
  39019. ]
  39020. ))
  39021. characterMakers.push(() => makeCharacter(
  39022. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39023. {
  39024. front: {
  39025. height: math.unit(100, "miles"),
  39026. weight: math.unit(20000, "tons"),
  39027. name: "Front",
  39028. image: {
  39029. source: "./media/characters/cookie/front.svg",
  39030. extra: 1125/1070,
  39031. bottom: 30/1155
  39032. }
  39033. },
  39034. },
  39035. [
  39036. {
  39037. name: "Big",
  39038. height: math.unit(50, "feet")
  39039. },
  39040. {
  39041. name: "Macro",
  39042. height: math.unit(100, "miles"),
  39043. default: true
  39044. },
  39045. {
  39046. name: "Megamacro",
  39047. height: math.unit(90000, "miles")
  39048. },
  39049. ]
  39050. ))
  39051. characterMakers.push(() => makeCharacter(
  39052. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39053. {
  39054. front: {
  39055. height: math.unit(6, "feet"),
  39056. weight: math.unit(145, "lb"),
  39057. name: "Front",
  39058. image: {
  39059. source: "./media/characters/farzian/front.svg",
  39060. extra: 1902/1693,
  39061. bottom: 108/2010
  39062. }
  39063. },
  39064. },
  39065. [
  39066. {
  39067. name: "Macro",
  39068. height: math.unit(500, "feet"),
  39069. default: true
  39070. },
  39071. ]
  39072. ))
  39073. characterMakers.push(() => makeCharacter(
  39074. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39075. {
  39076. front: {
  39077. height: math.unit(3 + 6/12, "feet"),
  39078. weight: math.unit(50, "lb"),
  39079. name: "Front",
  39080. image: {
  39081. source: "./media/characters/kimberly-tilson/front.svg",
  39082. extra: 1400/1322,
  39083. bottom: 36/1436
  39084. }
  39085. },
  39086. back: {
  39087. height: math.unit(3 + 6/12, "feet"),
  39088. weight: math.unit(50, "lb"),
  39089. name: "Back",
  39090. image: {
  39091. source: "./media/characters/kimberly-tilson/back.svg",
  39092. extra: 1370/1307,
  39093. bottom: 20/1390
  39094. }
  39095. },
  39096. },
  39097. [
  39098. {
  39099. name: "Normal",
  39100. height: math.unit(3 + 6/12, "feet"),
  39101. default: true
  39102. },
  39103. ]
  39104. ))
  39105. characterMakers.push(() => makeCharacter(
  39106. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39107. {
  39108. front: {
  39109. height: math.unit(1148, "feet"),
  39110. weight: math.unit(34057, "lb"),
  39111. name: "Front",
  39112. image: {
  39113. source: "./media/characters/harthos/front.svg",
  39114. extra: 1391/1339,
  39115. bottom: 13/1404
  39116. }
  39117. },
  39118. },
  39119. [
  39120. {
  39121. name: "Macro",
  39122. height: math.unit(1148, "feet"),
  39123. default: true
  39124. },
  39125. ]
  39126. ))
  39127. characterMakers.push(() => makeCharacter(
  39128. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39129. {
  39130. front: {
  39131. height: math.unit(15, "feet"),
  39132. name: "Front",
  39133. image: {
  39134. source: "./media/characters/hypatia/front.svg",
  39135. extra: 1653/1591,
  39136. bottom: 79/1732
  39137. }
  39138. },
  39139. },
  39140. [
  39141. {
  39142. name: "Normal",
  39143. height: math.unit(15, "feet")
  39144. },
  39145. {
  39146. name: "Small",
  39147. height: math.unit(300, "feet")
  39148. },
  39149. {
  39150. name: "Macro",
  39151. height: math.unit(2500, "feet"),
  39152. default: true
  39153. },
  39154. {
  39155. name: "Mega Macro",
  39156. height: math.unit(1500, "miles")
  39157. },
  39158. {
  39159. name: "Giga Macro",
  39160. height: math.unit(1.5e6, "miles")
  39161. },
  39162. ]
  39163. ))
  39164. characterMakers.push(() => makeCharacter(
  39165. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39166. {
  39167. front: {
  39168. height: math.unit(6, "feet"),
  39169. weight: math.unit(200, "lb"),
  39170. name: "Front",
  39171. image: {
  39172. source: "./media/characters/wulver/front.svg",
  39173. extra: 1724/1632,
  39174. bottom: 130/1854
  39175. }
  39176. },
  39177. frontNsfw: {
  39178. height: math.unit(6, "feet"),
  39179. weight: math.unit(200, "lb"),
  39180. name: "Front (NSFW)",
  39181. image: {
  39182. source: "./media/characters/wulver/front-nsfw.svg",
  39183. extra: 1724/1632,
  39184. bottom: 130/1854
  39185. }
  39186. },
  39187. },
  39188. [
  39189. {
  39190. name: "Human-Sized",
  39191. height: math.unit(6, "feet")
  39192. },
  39193. {
  39194. name: "Normal",
  39195. height: math.unit(4, "meters"),
  39196. default: true
  39197. },
  39198. {
  39199. name: "Large",
  39200. height: math.unit(6, "m")
  39201. },
  39202. ]
  39203. ))
  39204. characterMakers.push(() => makeCharacter(
  39205. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39206. {
  39207. front: {
  39208. height: math.unit(7, "feet"),
  39209. name: "Front",
  39210. image: {
  39211. source: "./media/characters/maru/front.svg",
  39212. extra: 1595/1570,
  39213. bottom: 0/1595
  39214. }
  39215. },
  39216. },
  39217. [
  39218. {
  39219. name: "Normal",
  39220. height: math.unit(7, "feet"),
  39221. default: true
  39222. },
  39223. {
  39224. name: "Macro",
  39225. height: math.unit(700, "feet")
  39226. },
  39227. {
  39228. name: "Mega Macro",
  39229. height: math.unit(25, "miles")
  39230. },
  39231. ]
  39232. ))
  39233. characterMakers.push(() => makeCharacter(
  39234. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39235. {
  39236. front: {
  39237. height: math.unit(6, "feet"),
  39238. weight: math.unit(170, "lb"),
  39239. name: "Front",
  39240. image: {
  39241. source: "./media/characters/xenon/front.svg",
  39242. extra: 1376/1305,
  39243. bottom: 56/1432
  39244. }
  39245. },
  39246. back: {
  39247. height: math.unit(6, "feet"),
  39248. weight: math.unit(170, "lb"),
  39249. name: "Back",
  39250. image: {
  39251. source: "./media/characters/xenon/back.svg",
  39252. extra: 1328/1259,
  39253. bottom: 95/1423
  39254. }
  39255. },
  39256. maw: {
  39257. height: math.unit(0.52, "feet"),
  39258. name: "Maw",
  39259. image: {
  39260. source: "./media/characters/xenon/maw.svg"
  39261. }
  39262. },
  39263. hand: {
  39264. height: math.unit(0.82, "feet"),
  39265. name: "Hand",
  39266. image: {
  39267. source: "./media/characters/xenon/hand.svg"
  39268. }
  39269. },
  39270. foot: {
  39271. height: math.unit(1.13, "feet"),
  39272. name: "Foot",
  39273. image: {
  39274. source: "./media/characters/xenon/foot.svg"
  39275. }
  39276. },
  39277. },
  39278. [
  39279. {
  39280. name: "Micro",
  39281. height: math.unit(0.8, "inches")
  39282. },
  39283. {
  39284. name: "Normal",
  39285. height: math.unit(6, "feet")
  39286. },
  39287. {
  39288. name: "Macro",
  39289. height: math.unit(50, "feet"),
  39290. default: true
  39291. },
  39292. {
  39293. name: "Macro+",
  39294. height: math.unit(250, "feet")
  39295. },
  39296. {
  39297. name: "Megamacro",
  39298. height: math.unit(1500, "feet")
  39299. },
  39300. ]
  39301. ))
  39302. characterMakers.push(() => makeCharacter(
  39303. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39304. {
  39305. front: {
  39306. height: math.unit(7 + 5/12, "feet"),
  39307. name: "Front",
  39308. image: {
  39309. source: "./media/characters/zane/front.svg",
  39310. extra: 1260/1203,
  39311. bottom: 94/1354
  39312. }
  39313. },
  39314. back: {
  39315. height: math.unit(5.05, "feet"),
  39316. name: "Back",
  39317. image: {
  39318. source: "./media/characters/zane/back.svg",
  39319. extra: 893/829,
  39320. bottom: 30/923
  39321. }
  39322. },
  39323. werewolf: {
  39324. height: math.unit(11, "feet"),
  39325. name: "Werewolf",
  39326. image: {
  39327. source: "./media/characters/zane/werewolf.svg",
  39328. extra: 1383/1323,
  39329. bottom: 89/1472
  39330. }
  39331. },
  39332. foot: {
  39333. height: math.unit(1.46, "feet"),
  39334. name: "Foot",
  39335. image: {
  39336. source: "./media/characters/zane/foot.svg"
  39337. }
  39338. },
  39339. footFront: {
  39340. height: math.unit(0.784, "feet"),
  39341. name: "Foot (Front)",
  39342. image: {
  39343. source: "./media/characters/zane/foot-front.svg"
  39344. }
  39345. },
  39346. dick: {
  39347. height: math.unit(1.95, "feet"),
  39348. name: "Dick",
  39349. image: {
  39350. source: "./media/characters/zane/dick.svg"
  39351. }
  39352. },
  39353. dickWerewolf: {
  39354. height: math.unit(3.77, "feet"),
  39355. name: "Dick (Werewolf)",
  39356. image: {
  39357. source: "./media/characters/zane/dick.svg"
  39358. }
  39359. },
  39360. },
  39361. [
  39362. {
  39363. name: "Normal",
  39364. height: math.unit(7 + 5/12, "feet"),
  39365. default: true
  39366. },
  39367. ]
  39368. ))
  39369. characterMakers.push(() => makeCharacter(
  39370. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39371. {
  39372. front: {
  39373. height: math.unit(6 + 2/12, "feet"),
  39374. weight: math.unit(284, "lb"),
  39375. name: "Front",
  39376. image: {
  39377. source: "./media/characters/benni-desparque/front.svg",
  39378. extra: 1353/1126,
  39379. bottom: 69/1422
  39380. }
  39381. },
  39382. },
  39383. [
  39384. {
  39385. name: "Civilian",
  39386. height: math.unit(6 + 2/12, "feet")
  39387. },
  39388. {
  39389. name: "Normal",
  39390. height: math.unit(98, "feet"),
  39391. default: true
  39392. },
  39393. {
  39394. name: "Kaiju Fighter",
  39395. height: math.unit(268, "feet")
  39396. },
  39397. ]
  39398. ))
  39399. characterMakers.push(() => makeCharacter(
  39400. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39401. {
  39402. front: {
  39403. height: math.unit(5, "feet"),
  39404. weight: math.unit(105, "lb"),
  39405. name: "Front",
  39406. image: {
  39407. source: "./media/characters/maxine/front.svg",
  39408. extra: 1386/1250,
  39409. bottom: 71/1457
  39410. }
  39411. },
  39412. },
  39413. [
  39414. {
  39415. name: "Normal",
  39416. height: math.unit(5, "feet"),
  39417. default: true
  39418. },
  39419. ]
  39420. ))
  39421. characterMakers.push(() => makeCharacter(
  39422. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39423. {
  39424. front: {
  39425. height: math.unit(11 + 7/12, "feet"),
  39426. weight: math.unit(9576, "lb"),
  39427. name: "Front",
  39428. image: {
  39429. source: "./media/characters/scaly/front.svg",
  39430. extra: 888/867,
  39431. bottom: 36/924
  39432. }
  39433. },
  39434. },
  39435. [
  39436. {
  39437. name: "Normal",
  39438. height: math.unit(11 + 7/12, "feet"),
  39439. default: true
  39440. },
  39441. ]
  39442. ))
  39443. characterMakers.push(() => makeCharacter(
  39444. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39445. {
  39446. front: {
  39447. height: math.unit(9, "inches"),
  39448. name: "Front",
  39449. image: {
  39450. source: "./media/characters/saelria/front.svg",
  39451. extra: 662/621,
  39452. bottom: 12/674
  39453. }
  39454. },
  39455. },
  39456. [
  39457. {
  39458. name: "Tiny",
  39459. height: math.unit(9, "inches"),
  39460. default: true
  39461. },
  39462. ]
  39463. ))
  39464. characterMakers.push(() => makeCharacter(
  39465. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39466. {
  39467. front: {
  39468. height: math.unit(80, "meters"),
  39469. weight: math.unit(7000, "tonnes"),
  39470. name: "Front",
  39471. image: {
  39472. source: "./media/characters/tef/front.svg",
  39473. extra: 2036/1991,
  39474. bottom: 54/2090
  39475. }
  39476. },
  39477. back: {
  39478. height: math.unit(80, "meters"),
  39479. weight: math.unit(7000, "tonnes"),
  39480. name: "Back",
  39481. image: {
  39482. source: "./media/characters/tef/back.svg",
  39483. extra: 2036/1991,
  39484. bottom: 54/2090
  39485. }
  39486. },
  39487. },
  39488. [
  39489. {
  39490. name: "Macro",
  39491. height: math.unit(80, "meters"),
  39492. default: true
  39493. },
  39494. ]
  39495. ))
  39496. characterMakers.push(() => makeCharacter(
  39497. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39498. {
  39499. front: {
  39500. height: math.unit(13, "feet"),
  39501. weight: math.unit(6, "tons"),
  39502. name: "Front",
  39503. image: {
  39504. source: "./media/characters/rover/front.svg",
  39505. extra: 1233/1156,
  39506. bottom: 50/1283
  39507. }
  39508. },
  39509. back: {
  39510. height: math.unit(13, "feet"),
  39511. weight: math.unit(6, "tons"),
  39512. name: "Back",
  39513. image: {
  39514. source: "./media/characters/rover/back.svg",
  39515. extra: 1327/1258,
  39516. bottom: 39/1366
  39517. }
  39518. },
  39519. },
  39520. [
  39521. {
  39522. name: "Normal",
  39523. height: math.unit(13, "feet"),
  39524. default: true
  39525. },
  39526. {
  39527. name: "Macro",
  39528. height: math.unit(1300, "feet")
  39529. },
  39530. {
  39531. name: "Megamacro",
  39532. height: math.unit(1300, "miles")
  39533. },
  39534. {
  39535. name: "Gigamacro",
  39536. height: math.unit(1300000, "miles")
  39537. },
  39538. ]
  39539. ))
  39540. characterMakers.push(() => makeCharacter(
  39541. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39542. {
  39543. front: {
  39544. height: math.unit(6, "feet"),
  39545. weight: math.unit(150, "lb"),
  39546. name: "Front",
  39547. image: {
  39548. source: "./media/characters/ariz/front.svg",
  39549. extra: 1401/1346,
  39550. bottom: 5/1406
  39551. }
  39552. },
  39553. },
  39554. [
  39555. {
  39556. name: "Normal",
  39557. height: math.unit(10, "feet"),
  39558. default: true
  39559. },
  39560. ]
  39561. ))
  39562. characterMakers.push(() => makeCharacter(
  39563. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39564. {
  39565. front: {
  39566. height: math.unit(6, "feet"),
  39567. weight: math.unit(140, "lb"),
  39568. name: "Front",
  39569. image: {
  39570. source: "./media/characters/sigrun/front.svg",
  39571. extra: 1418/1359,
  39572. bottom: 27/1445
  39573. }
  39574. },
  39575. },
  39576. [
  39577. {
  39578. name: "Macro",
  39579. height: math.unit(35, "feet"),
  39580. default: true
  39581. },
  39582. ]
  39583. ))
  39584. characterMakers.push(() => makeCharacter(
  39585. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39586. {
  39587. front: {
  39588. height: math.unit(6, "feet"),
  39589. weight: math.unit(150, "lb"),
  39590. name: "Front",
  39591. image: {
  39592. source: "./media/characters/numin/front.svg",
  39593. extra: 1433/1388,
  39594. bottom: 12/1445
  39595. }
  39596. },
  39597. },
  39598. [
  39599. {
  39600. name: "Macro",
  39601. height: math.unit(21.5, "km"),
  39602. default: true
  39603. },
  39604. ]
  39605. ))
  39606. characterMakers.push(() => makeCharacter(
  39607. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39608. {
  39609. front: {
  39610. height: math.unit(6, "feet"),
  39611. weight: math.unit(463, "lb"),
  39612. name: "Front",
  39613. image: {
  39614. source: "./media/characters/melwa/front.svg",
  39615. extra: 1307/1248,
  39616. bottom: 93/1400
  39617. }
  39618. },
  39619. },
  39620. [
  39621. {
  39622. name: "Macro",
  39623. height: math.unit(50, "meters"),
  39624. default: true
  39625. },
  39626. ]
  39627. ))
  39628. characterMakers.push(() => makeCharacter(
  39629. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39630. {
  39631. front: {
  39632. height: math.unit(325, "feet"),
  39633. name: "Front",
  39634. image: {
  39635. source: "./media/characters/zorkaiju/front.svg",
  39636. extra: 1955/1814,
  39637. bottom: 40/1995
  39638. }
  39639. },
  39640. frontExtended: {
  39641. height: math.unit(325, "feet"),
  39642. name: "Front (Extended)",
  39643. image: {
  39644. source: "./media/characters/zorkaiju/front-extended.svg",
  39645. extra: 1955/1814,
  39646. bottom: 40/1995
  39647. }
  39648. },
  39649. side: {
  39650. height: math.unit(325, "feet"),
  39651. name: "Side",
  39652. image: {
  39653. source: "./media/characters/zorkaiju/side.svg",
  39654. extra: 1495/1396,
  39655. bottom: 17/1512
  39656. }
  39657. },
  39658. sideExtended: {
  39659. height: math.unit(325, "feet"),
  39660. name: "Side (Extended)",
  39661. image: {
  39662. source: "./media/characters/zorkaiju/side-extended.svg",
  39663. extra: 1495/1396,
  39664. bottom: 17/1512
  39665. }
  39666. },
  39667. back: {
  39668. height: math.unit(325, "feet"),
  39669. name: "Back",
  39670. image: {
  39671. source: "./media/characters/zorkaiju/back.svg",
  39672. extra: 1959/1821,
  39673. bottom: 31/1990
  39674. }
  39675. },
  39676. backExtended: {
  39677. height: math.unit(325, "feet"),
  39678. name: "Back (Extended)",
  39679. image: {
  39680. source: "./media/characters/zorkaiju/back-extended.svg",
  39681. extra: 1959/1821,
  39682. bottom: 31/1990
  39683. }
  39684. },
  39685. hand: {
  39686. height: math.unit(58.4, "feet"),
  39687. name: "Hand",
  39688. image: {
  39689. source: "./media/characters/zorkaiju/hand.svg"
  39690. }
  39691. },
  39692. handExtended: {
  39693. height: math.unit(61.4, "feet"),
  39694. name: "Hand (Extended)",
  39695. image: {
  39696. source: "./media/characters/zorkaiju/hand-extended.svg"
  39697. }
  39698. },
  39699. foot: {
  39700. height: math.unit(95, "feet"),
  39701. name: "Foot",
  39702. image: {
  39703. source: "./media/characters/zorkaiju/foot.svg"
  39704. }
  39705. },
  39706. leftArm: {
  39707. height: math.unit(59, "feet"),
  39708. name: "Left Arm",
  39709. image: {
  39710. source: "./media/characters/zorkaiju/left-arm.svg"
  39711. }
  39712. },
  39713. rightArm: {
  39714. height: math.unit(59, "feet"),
  39715. name: "Right Arm",
  39716. image: {
  39717. source: "./media/characters/zorkaiju/right-arm.svg"
  39718. }
  39719. },
  39720. tail: {
  39721. height: math.unit(104, "feet"),
  39722. name: "Tail",
  39723. image: {
  39724. source: "./media/characters/zorkaiju/tail.svg"
  39725. }
  39726. },
  39727. tailExtended: {
  39728. height: math.unit(104, "feet"),
  39729. name: "Tail (Extended)",
  39730. image: {
  39731. source: "./media/characters/zorkaiju/tail-extended.svg"
  39732. }
  39733. },
  39734. tailBottom: {
  39735. height: math.unit(104, "feet"),
  39736. name: "Tail Bottom",
  39737. image: {
  39738. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39739. }
  39740. },
  39741. crystal: {
  39742. height: math.unit(27.54, "feet"),
  39743. name: "Crystal",
  39744. image: {
  39745. source: "./media/characters/zorkaiju/crystal.svg"
  39746. }
  39747. },
  39748. },
  39749. [
  39750. {
  39751. name: "Kaiju",
  39752. height: math.unit(325, "feet"),
  39753. default: true
  39754. },
  39755. ]
  39756. ))
  39757. characterMakers.push(() => makeCharacter(
  39758. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39759. {
  39760. front: {
  39761. height: math.unit(6 + 1/12, "feet"),
  39762. weight: math.unit(115, "lb"),
  39763. name: "Front",
  39764. image: {
  39765. source: "./media/characters/bailey-belfry/front.svg",
  39766. extra: 1240/1121,
  39767. bottom: 101/1341
  39768. }
  39769. },
  39770. },
  39771. [
  39772. {
  39773. name: "Normal",
  39774. height: math.unit(6 + 1/12, "feet"),
  39775. default: true
  39776. },
  39777. ]
  39778. ))
  39779. characterMakers.push(() => makeCharacter(
  39780. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39781. {
  39782. side: {
  39783. height: math.unit(4, "meters"),
  39784. weight: math.unit(250, "kg"),
  39785. name: "Side",
  39786. image: {
  39787. source: "./media/characters/blacky/side.svg",
  39788. extra: 1027/919,
  39789. bottom: 43/1070
  39790. }
  39791. },
  39792. maw: {
  39793. height: math.unit(1, "meters"),
  39794. name: "Maw",
  39795. image: {
  39796. source: "./media/characters/blacky/maw.svg"
  39797. }
  39798. },
  39799. paw: {
  39800. height: math.unit(1, "meters"),
  39801. name: "Paw",
  39802. image: {
  39803. source: "./media/characters/blacky/paw.svg"
  39804. }
  39805. },
  39806. },
  39807. [
  39808. {
  39809. name: "Normal",
  39810. height: math.unit(4, "meters"),
  39811. default: true
  39812. },
  39813. ]
  39814. ))
  39815. characterMakers.push(() => makeCharacter(
  39816. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39817. {
  39818. front: {
  39819. height: math.unit(170, "cm"),
  39820. weight: math.unit(66, "kg"),
  39821. name: "Front",
  39822. image: {
  39823. source: "./media/characters/thux-ei/front.svg",
  39824. extra: 1109/1011,
  39825. bottom: 8/1117
  39826. }
  39827. },
  39828. },
  39829. [
  39830. {
  39831. name: "Normal",
  39832. height: math.unit(170, "cm"),
  39833. default: true
  39834. },
  39835. ]
  39836. ))
  39837. characterMakers.push(() => makeCharacter(
  39838. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39839. {
  39840. front: {
  39841. height: math.unit(5, "feet"),
  39842. weight: math.unit(120, "lb"),
  39843. name: "Front",
  39844. image: {
  39845. source: "./media/characters/roxanne-voltaire/front.svg",
  39846. extra: 1901/1779,
  39847. bottom: 53/1954
  39848. }
  39849. },
  39850. },
  39851. [
  39852. {
  39853. name: "Normal",
  39854. height: math.unit(5, "feet"),
  39855. default: true
  39856. },
  39857. {
  39858. name: "Giant",
  39859. height: math.unit(50, "feet")
  39860. },
  39861. {
  39862. name: "Titan",
  39863. height: math.unit(500, "feet")
  39864. },
  39865. {
  39866. name: "Macro",
  39867. height: math.unit(5000, "feet")
  39868. },
  39869. {
  39870. name: "Megamacro",
  39871. height: math.unit(50000, "feet")
  39872. },
  39873. {
  39874. name: "Gigamacro",
  39875. height: math.unit(500000, "feet")
  39876. },
  39877. {
  39878. name: "Teramacro",
  39879. height: math.unit(5e6, "feet")
  39880. },
  39881. ]
  39882. ))
  39883. characterMakers.push(() => makeCharacter(
  39884. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39885. {
  39886. front: {
  39887. height: math.unit(6 + 2/12, "feet"),
  39888. name: "Front",
  39889. image: {
  39890. source: "./media/characters/squeaks/front.svg",
  39891. extra: 1823/1768,
  39892. bottom: 138/1961
  39893. }
  39894. },
  39895. },
  39896. [
  39897. {
  39898. name: "Micro",
  39899. height: math.unit(0.5, "inches")
  39900. },
  39901. {
  39902. name: "Normal",
  39903. height: math.unit(6 + 2/12, "feet"),
  39904. default: true
  39905. },
  39906. {
  39907. name: "Macro",
  39908. height: math.unit(600, "feet")
  39909. },
  39910. ]
  39911. ))
  39912. characterMakers.push(() => makeCharacter(
  39913. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39914. {
  39915. front: {
  39916. height: math.unit(1.72, "meters"),
  39917. name: "Front",
  39918. image: {
  39919. source: "./media/characters/archinger/front.svg",
  39920. extra: 1861/1675,
  39921. bottom: 125/1986
  39922. }
  39923. },
  39924. back: {
  39925. height: math.unit(1.72, "meters"),
  39926. name: "Back",
  39927. image: {
  39928. source: "./media/characters/archinger/back.svg",
  39929. extra: 1844/1701,
  39930. bottom: 104/1948
  39931. }
  39932. },
  39933. cock: {
  39934. height: math.unit(0.59, "feet"),
  39935. name: "Cock",
  39936. image: {
  39937. source: "./media/characters/archinger/cock.svg"
  39938. }
  39939. },
  39940. },
  39941. [
  39942. {
  39943. name: "Normal",
  39944. height: math.unit(1.72, "meters"),
  39945. default: true
  39946. },
  39947. {
  39948. name: "Macro",
  39949. height: math.unit(84, "meters")
  39950. },
  39951. {
  39952. name: "Macro+",
  39953. height: math.unit(112, "meters")
  39954. },
  39955. {
  39956. name: "Macro++",
  39957. height: math.unit(960, "meters")
  39958. },
  39959. {
  39960. name: "Macro+++",
  39961. height: math.unit(4, "km")
  39962. },
  39963. {
  39964. name: "Macro++++",
  39965. height: math.unit(48, "km")
  39966. },
  39967. {
  39968. name: "Macro+++++",
  39969. height: math.unit(4500, "km")
  39970. },
  39971. ]
  39972. ))
  39973. characterMakers.push(() => makeCharacter(
  39974. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39975. {
  39976. front: {
  39977. height: math.unit(5 + 5/12, "feet"),
  39978. name: "Front",
  39979. image: {
  39980. source: "./media/characters/alsnapz/front.svg",
  39981. extra: 1157/1065,
  39982. bottom: 42/1199
  39983. }
  39984. },
  39985. },
  39986. [
  39987. {
  39988. name: "Normal",
  39989. height: math.unit(5 + 5/12, "feet"),
  39990. default: true
  39991. },
  39992. ]
  39993. ))
  39994. characterMakers.push(() => makeCharacter(
  39995. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39996. {
  39997. side: {
  39998. height: math.unit(3.2, "earths"),
  39999. name: "Side",
  40000. image: {
  40001. source: "./media/characters/mag/side.svg",
  40002. extra: 1331/1008,
  40003. bottom: 52/1383
  40004. }
  40005. },
  40006. wing: {
  40007. height: math.unit(1.94, "earths"),
  40008. name: "Wing",
  40009. image: {
  40010. source: "./media/characters/mag/wing.svg"
  40011. }
  40012. },
  40013. dick: {
  40014. height: math.unit(1.8, "earths"),
  40015. name: "Dick",
  40016. image: {
  40017. source: "./media/characters/mag/dick.svg"
  40018. }
  40019. },
  40020. ass: {
  40021. height: math.unit(1.33, "earths"),
  40022. name: "Ass",
  40023. image: {
  40024. source: "./media/characters/mag/ass.svg"
  40025. }
  40026. },
  40027. head: {
  40028. height: math.unit(1.1, "earths"),
  40029. name: "Head",
  40030. image: {
  40031. source: "./media/characters/mag/head.svg"
  40032. }
  40033. },
  40034. maw: {
  40035. height: math.unit(1.62, "earths"),
  40036. name: "Maw",
  40037. image: {
  40038. source: "./media/characters/mag/maw.svg"
  40039. }
  40040. },
  40041. },
  40042. [
  40043. {
  40044. name: "Small",
  40045. height: math.unit(162, "feet")
  40046. },
  40047. {
  40048. name: "Normal",
  40049. height: math.unit(3.2, "earths"),
  40050. default: true
  40051. },
  40052. ]
  40053. ))
  40054. characterMakers.push(() => makeCharacter(
  40055. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40056. {
  40057. front: {
  40058. height: math.unit(512, "feet"),
  40059. weight: math.unit(63509, "tonnes"),
  40060. name: "Front",
  40061. image: {
  40062. source: "./media/characters/vorrel-harroc/front.svg",
  40063. extra: 1075/1063,
  40064. bottom: 62/1137
  40065. }
  40066. },
  40067. },
  40068. [
  40069. {
  40070. name: "Normal",
  40071. height: math.unit(10, "feet")
  40072. },
  40073. {
  40074. name: "Macro",
  40075. height: math.unit(512, "feet"),
  40076. default: true
  40077. },
  40078. {
  40079. name: "Megamacro",
  40080. height: math.unit(256, "miles")
  40081. },
  40082. {
  40083. name: "Gigamacro",
  40084. height: math.unit(4096, "miles")
  40085. },
  40086. ]
  40087. ))
  40088. characterMakers.push(() => makeCharacter(
  40089. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40090. {
  40091. side: {
  40092. height: math.unit(50, "feet"),
  40093. name: "Side",
  40094. image: {
  40095. source: "./media/characters/froimar/side.svg",
  40096. extra: 855/638,
  40097. bottom: 99/954
  40098. }
  40099. },
  40100. },
  40101. [
  40102. {
  40103. name: "Macro",
  40104. height: math.unit(50, "feet"),
  40105. default: true
  40106. },
  40107. ]
  40108. ))
  40109. characterMakers.push(() => makeCharacter(
  40110. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40111. {
  40112. front: {
  40113. height: math.unit(210, "miles"),
  40114. name: "Front",
  40115. image: {
  40116. source: "./media/characters/timothy/front.svg",
  40117. extra: 1007/943,
  40118. bottom: 62/1069
  40119. }
  40120. },
  40121. frontSkirt: {
  40122. height: math.unit(210, "miles"),
  40123. name: "Front (Skirt)",
  40124. image: {
  40125. source: "./media/characters/timothy/front-skirt.svg",
  40126. extra: 1007/943,
  40127. bottom: 62/1069
  40128. }
  40129. },
  40130. frontCoat: {
  40131. height: math.unit(210, "miles"),
  40132. name: "Front (Coat)",
  40133. image: {
  40134. source: "./media/characters/timothy/front-coat.svg",
  40135. extra: 1007/943,
  40136. bottom: 62/1069
  40137. }
  40138. },
  40139. },
  40140. [
  40141. {
  40142. name: "Macro",
  40143. height: math.unit(210, "miles"),
  40144. default: true
  40145. },
  40146. {
  40147. name: "Megamacro",
  40148. height: math.unit(210000, "miles")
  40149. },
  40150. ]
  40151. ))
  40152. characterMakers.push(() => makeCharacter(
  40153. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40154. {
  40155. front: {
  40156. height: math.unit(188, "feet"),
  40157. name: "Front",
  40158. image: {
  40159. source: "./media/characters/pyotr/front.svg",
  40160. extra: 1912/1826,
  40161. bottom: 18/1930
  40162. }
  40163. },
  40164. },
  40165. [
  40166. {
  40167. name: "Macro",
  40168. height: math.unit(188, "feet"),
  40169. default: true
  40170. },
  40171. {
  40172. name: "Megamacro",
  40173. height: math.unit(8, "miles")
  40174. },
  40175. ]
  40176. ))
  40177. characterMakers.push(() => makeCharacter(
  40178. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40179. {
  40180. side: {
  40181. height: math.unit(10, "feet"),
  40182. weight: math.unit(4500, "lb"),
  40183. name: "Side",
  40184. image: {
  40185. source: "./media/characters/ackart/side.svg",
  40186. extra: 1776/1668,
  40187. bottom: 116/1892
  40188. }
  40189. },
  40190. },
  40191. [
  40192. {
  40193. name: "Normal",
  40194. height: math.unit(10, "feet"),
  40195. default: true
  40196. },
  40197. ]
  40198. ))
  40199. characterMakers.push(() => makeCharacter(
  40200. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40201. {
  40202. side: {
  40203. height: math.unit(21, "feet"),
  40204. name: "Side",
  40205. image: {
  40206. source: "./media/characters/nolow/side.svg",
  40207. extra: 1484/1434,
  40208. bottom: 85/1569
  40209. }
  40210. },
  40211. sideErect: {
  40212. height: math.unit(21, "feet"),
  40213. name: "Side-erect",
  40214. image: {
  40215. source: "./media/characters/nolow/side-erect.svg",
  40216. extra: 1484/1434,
  40217. bottom: 85/1569
  40218. }
  40219. },
  40220. },
  40221. [
  40222. {
  40223. name: "Regular",
  40224. height: math.unit(12, "feet")
  40225. },
  40226. {
  40227. name: "Big Chee",
  40228. height: math.unit(21, "feet"),
  40229. default: true
  40230. },
  40231. ]
  40232. ))
  40233. characterMakers.push(() => makeCharacter(
  40234. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40235. {
  40236. front: {
  40237. height: math.unit(7, "feet"),
  40238. weight: math.unit(250, "lb"),
  40239. name: "Front",
  40240. image: {
  40241. source: "./media/characters/nines/front.svg",
  40242. extra: 1741/1607,
  40243. bottom: 41/1782
  40244. }
  40245. },
  40246. side: {
  40247. height: math.unit(7, "feet"),
  40248. weight: math.unit(250, "lb"),
  40249. name: "Side",
  40250. image: {
  40251. source: "./media/characters/nines/side.svg",
  40252. extra: 1854/1735,
  40253. bottom: 93/1947
  40254. }
  40255. },
  40256. back: {
  40257. height: math.unit(7, "feet"),
  40258. weight: math.unit(250, "lb"),
  40259. name: "Back",
  40260. image: {
  40261. source: "./media/characters/nines/back.svg",
  40262. extra: 1748/1615,
  40263. bottom: 20/1768
  40264. }
  40265. },
  40266. },
  40267. [
  40268. {
  40269. name: "Megamacro",
  40270. height: math.unit(99, "km"),
  40271. default: true
  40272. },
  40273. ]
  40274. ))
  40275. characterMakers.push(() => makeCharacter(
  40276. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40277. {
  40278. front: {
  40279. height: math.unit(5 + 10/12, "feet"),
  40280. weight: math.unit(210, "lb"),
  40281. name: "Front",
  40282. image: {
  40283. source: "./media/characters/zenith/front.svg",
  40284. extra: 1531/1452,
  40285. bottom: 198/1729
  40286. }
  40287. },
  40288. back: {
  40289. height: math.unit(5 + 10/12, "feet"),
  40290. weight: math.unit(210, "lb"),
  40291. name: "Back",
  40292. image: {
  40293. source: "./media/characters/zenith/back.svg",
  40294. extra: 1571/1487,
  40295. bottom: 75/1646
  40296. }
  40297. },
  40298. },
  40299. [
  40300. {
  40301. name: "Normal",
  40302. height: math.unit(5 + 10/12, "feet"),
  40303. default: true
  40304. }
  40305. ]
  40306. ))
  40307. characterMakers.push(() => makeCharacter(
  40308. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40309. {
  40310. front: {
  40311. height: math.unit(4, "feet"),
  40312. weight: math.unit(60, "lb"),
  40313. name: "Front",
  40314. image: {
  40315. source: "./media/characters/jasper/front.svg",
  40316. extra: 1450/1379,
  40317. bottom: 19/1469
  40318. }
  40319. },
  40320. },
  40321. [
  40322. {
  40323. name: "Normal",
  40324. height: math.unit(4, "feet"),
  40325. default: true
  40326. },
  40327. ]
  40328. ))
  40329. characterMakers.push(() => makeCharacter(
  40330. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40331. {
  40332. front: {
  40333. height: math.unit(6 + 5/12, "feet"),
  40334. weight: math.unit(290, "lb"),
  40335. name: "Front",
  40336. image: {
  40337. source: "./media/characters/tiberius-thyben/front.svg",
  40338. extra: 757/739,
  40339. bottom: 39/796
  40340. }
  40341. },
  40342. },
  40343. [
  40344. {
  40345. name: "Micro",
  40346. height: math.unit(1.5, "inches")
  40347. },
  40348. {
  40349. name: "Normal",
  40350. height: math.unit(6 + 5/12, "feet"),
  40351. default: true
  40352. },
  40353. {
  40354. name: "Macro",
  40355. height: math.unit(300, "feet")
  40356. },
  40357. ]
  40358. ))
  40359. characterMakers.push(() => makeCharacter(
  40360. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40361. {
  40362. front: {
  40363. height: math.unit(5 + 6/12, "feet"),
  40364. weight: math.unit(60, "kg"),
  40365. name: "Front",
  40366. image: {
  40367. source: "./media/characters/sabre/front.svg",
  40368. extra: 738/671,
  40369. bottom: 27/765
  40370. }
  40371. },
  40372. },
  40373. [
  40374. {
  40375. name: "Teeny",
  40376. height: math.unit(2, "inches")
  40377. },
  40378. {
  40379. name: "Smol",
  40380. height: math.unit(8, "inches")
  40381. },
  40382. {
  40383. name: "Normal",
  40384. height: math.unit(5 + 6/12, "feet"),
  40385. default: true
  40386. },
  40387. {
  40388. name: "Mini-Macro",
  40389. height: math.unit(15, "feet")
  40390. },
  40391. {
  40392. name: "Macro",
  40393. height: math.unit(50, "feet")
  40394. },
  40395. ]
  40396. ))
  40397. characterMakers.push(() => makeCharacter(
  40398. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40399. {
  40400. front: {
  40401. height: math.unit(6 + 4/12, "feet"),
  40402. weight: math.unit(170, "lb"),
  40403. name: "Front",
  40404. image: {
  40405. source: "./media/characters/charlie/front.svg",
  40406. extra: 1348/1228,
  40407. bottom: 15/1363
  40408. }
  40409. },
  40410. },
  40411. [
  40412. {
  40413. name: "Macro",
  40414. height: math.unit(1700, "meters"),
  40415. default: true
  40416. },
  40417. {
  40418. name: "MegaMacro",
  40419. height: math.unit(20400, "meters")
  40420. },
  40421. ]
  40422. ))
  40423. characterMakers.push(() => makeCharacter(
  40424. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40425. {
  40426. front: {
  40427. height: math.unit(6 + 3/12, "feet"),
  40428. weight: math.unit(185, "lb"),
  40429. name: "Front",
  40430. image: {
  40431. source: "./media/characters/susan-grant/front.svg",
  40432. extra: 1351/1327,
  40433. bottom: 26/1377
  40434. }
  40435. },
  40436. },
  40437. [
  40438. {
  40439. name: "Normal",
  40440. height: math.unit(6 + 3/12, "feet"),
  40441. default: true
  40442. },
  40443. {
  40444. name: "Macro",
  40445. height: math.unit(225, "feet")
  40446. },
  40447. {
  40448. name: "Macro+",
  40449. height: math.unit(900, "feet")
  40450. },
  40451. {
  40452. name: "MegaMacro",
  40453. height: math.unit(14400, "feet")
  40454. },
  40455. ]
  40456. ))
  40457. characterMakers.push(() => makeCharacter(
  40458. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40459. {
  40460. front: {
  40461. height: math.unit(5 + 4/12, "feet"),
  40462. weight: math.unit(110, "lb"),
  40463. name: "Front",
  40464. image: {
  40465. source: "./media/characters/axel-isanov/front.svg",
  40466. extra: 1096/1065,
  40467. bottom: 13/1109
  40468. }
  40469. },
  40470. },
  40471. [
  40472. {
  40473. name: "Normal",
  40474. height: math.unit(5 + 4/12, "feet"),
  40475. default: true
  40476. },
  40477. ]
  40478. ))
  40479. characterMakers.push(() => makeCharacter(
  40480. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40481. {
  40482. front: {
  40483. height: math.unit(9, "feet"),
  40484. weight: math.unit(467, "lb"),
  40485. name: "Front",
  40486. image: {
  40487. source: "./media/characters/necahual/front.svg",
  40488. extra: 920/873,
  40489. bottom: 26/946
  40490. }
  40491. },
  40492. back: {
  40493. height: math.unit(9, "feet"),
  40494. weight: math.unit(467, "lb"),
  40495. name: "Back",
  40496. image: {
  40497. source: "./media/characters/necahual/back.svg",
  40498. extra: 930/884,
  40499. bottom: 16/946
  40500. }
  40501. },
  40502. frontUnderwear: {
  40503. height: math.unit(9, "feet"),
  40504. weight: math.unit(467, "lb"),
  40505. name: "Front (Underwear)",
  40506. image: {
  40507. source: "./media/characters/necahual/front-underwear.svg",
  40508. extra: 920/873,
  40509. bottom: 26/946
  40510. }
  40511. },
  40512. frontDressed: {
  40513. height: math.unit(9, "feet"),
  40514. weight: math.unit(467, "lb"),
  40515. name: "Front (Dressed)",
  40516. image: {
  40517. source: "./media/characters/necahual/front-dressed.svg",
  40518. extra: 920/873,
  40519. bottom: 26/946
  40520. }
  40521. },
  40522. },
  40523. [
  40524. {
  40525. name: "Comprsesed",
  40526. height: math.unit(9, "feet")
  40527. },
  40528. {
  40529. name: "Natural",
  40530. height: math.unit(15, "feet"),
  40531. default: true
  40532. },
  40533. {
  40534. name: "Boosted",
  40535. height: math.unit(50, "feet")
  40536. },
  40537. {
  40538. name: "Boosted+",
  40539. height: math.unit(150, "feet")
  40540. },
  40541. {
  40542. name: "Max",
  40543. height: math.unit(500, "feet")
  40544. },
  40545. ]
  40546. ))
  40547. characterMakers.push(() => makeCharacter(
  40548. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40549. {
  40550. front: {
  40551. height: math.unit(22 + 1/12, "feet"),
  40552. weight: math.unit(3200, "lb"),
  40553. name: "Front",
  40554. image: {
  40555. source: "./media/characters/theo-acacia/front.svg",
  40556. extra: 1796/1741,
  40557. bottom: 83/1879
  40558. }
  40559. },
  40560. frontUnderwear: {
  40561. height: math.unit(22 + 1/12, "feet"),
  40562. weight: math.unit(3200, "lb"),
  40563. name: "Front (Underwear)",
  40564. image: {
  40565. source: "./media/characters/theo-acacia/front-underwear.svg",
  40566. extra: 1796/1741,
  40567. bottom: 83/1879
  40568. }
  40569. },
  40570. frontNude: {
  40571. height: math.unit(22 + 1/12, "feet"),
  40572. weight: math.unit(3200, "lb"),
  40573. name: "Front (Nude)",
  40574. image: {
  40575. source: "./media/characters/theo-acacia/front-nude.svg",
  40576. extra: 1796/1741,
  40577. bottom: 83/1879
  40578. }
  40579. },
  40580. },
  40581. [
  40582. {
  40583. name: "Normal",
  40584. height: math.unit(22 + 1/12, "feet"),
  40585. default: true
  40586. },
  40587. ]
  40588. ))
  40589. characterMakers.push(() => makeCharacter(
  40590. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40591. {
  40592. front: {
  40593. height: math.unit(20, "feet"),
  40594. name: "Front",
  40595. image: {
  40596. source: "./media/characters/astra/front.svg",
  40597. extra: 1850/1714,
  40598. bottom: 106/1956
  40599. }
  40600. },
  40601. frontUndressed: {
  40602. height: math.unit(20, "feet"),
  40603. name: "Front (Undressed)",
  40604. image: {
  40605. source: "./media/characters/astra/front-undressed.svg",
  40606. extra: 1926/1749,
  40607. bottom: 0/1926
  40608. }
  40609. },
  40610. hand: {
  40611. height: math.unit(1.53, "feet"),
  40612. name: "Hand",
  40613. image: {
  40614. source: "./media/characters/astra/hand.svg"
  40615. }
  40616. },
  40617. paw: {
  40618. height: math.unit(1.53, "feet"),
  40619. name: "Paw",
  40620. image: {
  40621. source: "./media/characters/astra/paw.svg"
  40622. }
  40623. },
  40624. },
  40625. [
  40626. {
  40627. name: "Smallest",
  40628. height: math.unit(20, "feet")
  40629. },
  40630. {
  40631. name: "Normal",
  40632. height: math.unit(1e9, "miles"),
  40633. default: true
  40634. },
  40635. {
  40636. name: "Larger",
  40637. height: math.unit(5, "multiverses")
  40638. },
  40639. {
  40640. name: "Largest",
  40641. height: math.unit(1e9, "multiverses")
  40642. },
  40643. ]
  40644. ))
  40645. characterMakers.push(() => makeCharacter(
  40646. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40647. {
  40648. front: {
  40649. height: math.unit(8, "feet"),
  40650. name: "Front",
  40651. image: {
  40652. source: "./media/characters/breanna/front.svg",
  40653. extra: 1912/1632,
  40654. bottom: 33/1945
  40655. }
  40656. },
  40657. },
  40658. [
  40659. {
  40660. name: "Smallest",
  40661. height: math.unit(8, "feet")
  40662. },
  40663. {
  40664. name: "Normal",
  40665. height: math.unit(1, "mile"),
  40666. default: true
  40667. },
  40668. {
  40669. name: "Maximum",
  40670. height: math.unit(1500000000000, "lightyears")
  40671. },
  40672. ]
  40673. ))
  40674. characterMakers.push(() => makeCharacter(
  40675. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40676. {
  40677. front: {
  40678. height: math.unit(5 + 11/12, "feet"),
  40679. weight: math.unit(155, "lb"),
  40680. name: "Front",
  40681. image: {
  40682. source: "./media/characters/cai/front.svg",
  40683. extra: 1823/1702,
  40684. bottom: 32/1855
  40685. }
  40686. },
  40687. back: {
  40688. height: math.unit(5 + 11/12, "feet"),
  40689. weight: math.unit(155, "lb"),
  40690. name: "Back",
  40691. image: {
  40692. source: "./media/characters/cai/back.svg",
  40693. extra: 1809/1708,
  40694. bottom: 31/1840
  40695. }
  40696. },
  40697. },
  40698. [
  40699. {
  40700. name: "Normal",
  40701. height: math.unit(5 + 11/12, "feet"),
  40702. default: true
  40703. },
  40704. {
  40705. name: "Big",
  40706. height: math.unit(15, "feet")
  40707. },
  40708. {
  40709. name: "Macro",
  40710. height: math.unit(200, "feet")
  40711. },
  40712. ]
  40713. ))
  40714. characterMakers.push(() => makeCharacter(
  40715. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40716. {
  40717. front: {
  40718. height: math.unit(5 + 6/12, "feet"),
  40719. weight: math.unit(160, "lb"),
  40720. name: "Front",
  40721. image: {
  40722. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40723. extra: 1227/1174,
  40724. bottom: 37/1264
  40725. }
  40726. },
  40727. },
  40728. [
  40729. {
  40730. name: "Macro",
  40731. height: math.unit(444, "meters"),
  40732. default: true
  40733. },
  40734. ]
  40735. ))
  40736. characterMakers.push(() => makeCharacter(
  40737. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40738. {
  40739. front: {
  40740. height: math.unit(18 + 7/12, "feet"),
  40741. name: "Front",
  40742. image: {
  40743. source: "./media/characters/rex/front.svg",
  40744. extra: 1941/1807,
  40745. bottom: 66/2007
  40746. }
  40747. },
  40748. back: {
  40749. height: math.unit(18 + 7/12, "feet"),
  40750. name: "Back",
  40751. image: {
  40752. source: "./media/characters/rex/back.svg",
  40753. extra: 1937/1822,
  40754. bottom: 42/1979
  40755. }
  40756. },
  40757. boot: {
  40758. height: math.unit(3.45, "feet"),
  40759. name: "Boot",
  40760. image: {
  40761. source: "./media/characters/rex/boot.svg"
  40762. }
  40763. },
  40764. paw: {
  40765. height: math.unit(4.17, "feet"),
  40766. name: "Paw",
  40767. image: {
  40768. source: "./media/characters/rex/paw.svg"
  40769. }
  40770. },
  40771. head: {
  40772. height: math.unit(6.728, "feet"),
  40773. name: "Head",
  40774. image: {
  40775. source: "./media/characters/rex/head.svg"
  40776. }
  40777. },
  40778. },
  40779. [
  40780. {
  40781. name: "Nano",
  40782. height: math.unit(18 + 7/12, "feet")
  40783. },
  40784. {
  40785. name: "Micro",
  40786. height: math.unit(1.5, "megameters")
  40787. },
  40788. {
  40789. name: "Normal",
  40790. height: math.unit(440, "megameters"),
  40791. default: true
  40792. },
  40793. {
  40794. name: "Macro",
  40795. height: math.unit(2.5, "gigameters")
  40796. },
  40797. {
  40798. name: "Gigamacro",
  40799. height: math.unit(2, "galaxies")
  40800. },
  40801. ]
  40802. ))
  40803. characterMakers.push(() => makeCharacter(
  40804. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40805. {
  40806. side: {
  40807. height: math.unit(32, "feet"),
  40808. weight: math.unit(250000, "lb"),
  40809. name: "Side",
  40810. image: {
  40811. source: "./media/characters/silverwing/side.svg",
  40812. extra: 1100/1019,
  40813. bottom: 204/1304
  40814. }
  40815. },
  40816. },
  40817. [
  40818. {
  40819. name: "Normal",
  40820. height: math.unit(32, "feet"),
  40821. default: true
  40822. },
  40823. ]
  40824. ))
  40825. characterMakers.push(() => makeCharacter(
  40826. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40827. {
  40828. front: {
  40829. height: math.unit(6 + 6/12, "feet"),
  40830. weight: math.unit(350, "lb"),
  40831. name: "Front",
  40832. image: {
  40833. source: "./media/characters/tristan-hawthorne/front.svg",
  40834. extra: 1159/1124,
  40835. bottom: 37/1196
  40836. }
  40837. },
  40838. },
  40839. [
  40840. {
  40841. name: "Normal",
  40842. height: math.unit(6 + 6/12, "feet"),
  40843. default: true
  40844. },
  40845. ]
  40846. ))
  40847. characterMakers.push(() => makeCharacter(
  40848. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40849. {
  40850. front: {
  40851. height: math.unit(5 + 11/12, "feet"),
  40852. weight: math.unit(190, "lb"),
  40853. name: "Front",
  40854. image: {
  40855. source: "./media/characters/mizu/front.svg",
  40856. extra: 1988/1788,
  40857. bottom: 14/2002
  40858. }
  40859. },
  40860. },
  40861. [
  40862. {
  40863. name: "Normal",
  40864. height: math.unit(5 + 11/12, "feet"),
  40865. default: true
  40866. },
  40867. ]
  40868. ))
  40869. characterMakers.push(() => makeCharacter(
  40870. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40871. {
  40872. front: {
  40873. height: math.unit(6, "feet"),
  40874. name: "Front",
  40875. image: {
  40876. source: "./media/characters/moonlight-rose-terra/front.svg",
  40877. extra: 1434/1252,
  40878. bottom: 48/1482
  40879. }
  40880. },
  40881. },
  40882. [
  40883. {
  40884. name: "TRAPPIST-1D",
  40885. height: math.unit(4992*2, "km")
  40886. },
  40887. {
  40888. name: "Earth",
  40889. height: math.unit(6367*2, "km"),
  40890. default: true
  40891. },
  40892. {
  40893. name: "Kepler-22b",
  40894. height: math.unit(15282*2, "km")
  40895. },
  40896. ]
  40897. ))
  40898. characterMakers.push(() => makeCharacter(
  40899. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40900. {
  40901. front: {
  40902. height: math.unit(6, "feet"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40906. extra: 1851/1712,
  40907. bottom: 0/1851
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Enceladus",
  40914. height: math.unit(513*2, "km")
  40915. },
  40916. {
  40917. name: "Europe",
  40918. height: math.unit(1560*2, "km")
  40919. },
  40920. {
  40921. name: "Neptune",
  40922. height: math.unit(24622*2, "km"),
  40923. default: true
  40924. },
  40925. {
  40926. name: "CoRoT-9b",
  40927. height: math.unit(75067*2, "km")
  40928. },
  40929. ]
  40930. ))
  40931. characterMakers.push(() => makeCharacter(
  40932. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40933. {
  40934. front: {
  40935. height: math.unit(6, "feet"),
  40936. name: "Front",
  40937. image: {
  40938. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40939. extra: 1367/1286,
  40940. bottom: 55/1422
  40941. }
  40942. },
  40943. },
  40944. [
  40945. {
  40946. name: "Saturn",
  40947. height: math.unit(58232*2, "km")
  40948. },
  40949. {
  40950. name: "Jupiter",
  40951. height: math.unit(69911*2, "km"),
  40952. default: true
  40953. },
  40954. {
  40955. name: "HD 100546 b",
  40956. height: math.unit(482938, "km")
  40957. },
  40958. ]
  40959. ))
  40960. characterMakers.push(() => makeCharacter(
  40961. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40962. {
  40963. front: {
  40964. height: math.unit(1.7, "feet"),
  40965. weight: math.unit(50, "lb"),
  40966. name: "Front",
  40967. image: {
  40968. source: "./media/characters/dechroma/front.svg",
  40969. extra: 1095/859,
  40970. bottom: 64/1159
  40971. }
  40972. },
  40973. },
  40974. [
  40975. {
  40976. name: "Normal",
  40977. height: math.unit(1.7, "feet"),
  40978. default: true
  40979. },
  40980. ]
  40981. ))
  40982. characterMakers.push(() => makeCharacter(
  40983. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40984. {
  40985. side: {
  40986. height: math.unit(30, "feet"),
  40987. name: "Side",
  40988. image: {
  40989. source: "./media/characters/veluren-thanazel/side.svg",
  40990. extra: 1611/633,
  40991. bottom: 118/1729
  40992. }
  40993. },
  40994. front: {
  40995. height: math.unit(30, "feet"),
  40996. name: "Front",
  40997. image: {
  40998. source: "./media/characters/veluren-thanazel/front.svg",
  40999. extra: 1486/636,
  41000. bottom: 238/1724
  41001. }
  41002. },
  41003. head: {
  41004. height: math.unit(21.4, "feet"),
  41005. name: "Head",
  41006. image: {
  41007. source: "./media/characters/veluren-thanazel/head.svg"
  41008. }
  41009. },
  41010. genitals: {
  41011. height: math.unit(19.4, "feet"),
  41012. name: "Genitals",
  41013. image: {
  41014. source: "./media/characters/veluren-thanazel/genitals.svg"
  41015. }
  41016. },
  41017. },
  41018. [
  41019. {
  41020. name: "Social",
  41021. height: math.unit(6, "feet")
  41022. },
  41023. {
  41024. name: "Play",
  41025. height: math.unit(12, "feet")
  41026. },
  41027. {
  41028. name: "True",
  41029. height: math.unit(30, "feet"),
  41030. default: true
  41031. },
  41032. ]
  41033. ))
  41034. characterMakers.push(() => makeCharacter(
  41035. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41036. {
  41037. front: {
  41038. height: math.unit(7 + 6/12, "feet"),
  41039. weight: math.unit(500, "kg"),
  41040. name: "Front",
  41041. image: {
  41042. source: "./media/characters/arcturas/front.svg",
  41043. extra: 1700/1500,
  41044. bottom: 145/1845
  41045. }
  41046. },
  41047. },
  41048. [
  41049. {
  41050. name: "Normal",
  41051. height: math.unit(7 + 6/12, "feet"),
  41052. default: true
  41053. },
  41054. ]
  41055. ))
  41056. characterMakers.push(() => makeCharacter(
  41057. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41058. {
  41059. side: {
  41060. height: math.unit(6, "feet"),
  41061. weight: math.unit(2, "tons"),
  41062. name: "Side",
  41063. image: {
  41064. source: "./media/characters/vitaen/side.svg",
  41065. extra: 1157/617,
  41066. bottom: 122/1279
  41067. }
  41068. },
  41069. },
  41070. [
  41071. {
  41072. name: "Normal",
  41073. height: math.unit(6, "feet"),
  41074. default: true
  41075. },
  41076. ]
  41077. ))
  41078. characterMakers.push(() => makeCharacter(
  41079. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41080. {
  41081. front: {
  41082. height: math.unit(19, "feet"),
  41083. name: "Front",
  41084. image: {
  41085. source: "./media/characters/fia-dreamweaver/front.svg",
  41086. extra: 1630/1504,
  41087. bottom: 25/1655
  41088. }
  41089. },
  41090. },
  41091. [
  41092. {
  41093. name: "Normal",
  41094. height: math.unit(19, "feet"),
  41095. default: true
  41096. },
  41097. ]
  41098. ))
  41099. characterMakers.push(() => makeCharacter(
  41100. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41101. {
  41102. front: {
  41103. height: math.unit(5 + 4/12, "feet"),
  41104. name: "Front",
  41105. image: {
  41106. source: "./media/characters/artan/front.svg",
  41107. extra: 1618/1535,
  41108. bottom: 46/1664
  41109. }
  41110. },
  41111. back: {
  41112. height: math.unit(5 + 4/12, "feet"),
  41113. name: "Back",
  41114. image: {
  41115. source: "./media/characters/artan/back.svg",
  41116. extra: 1618/1543,
  41117. bottom: 31/1649
  41118. }
  41119. },
  41120. },
  41121. [
  41122. {
  41123. name: "Normal",
  41124. height: math.unit(5 + 4/12, "feet"),
  41125. default: true
  41126. },
  41127. ]
  41128. ))
  41129. characterMakers.push(() => makeCharacter(
  41130. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41131. {
  41132. side: {
  41133. height: math.unit(182, "cm"),
  41134. weight: math.unit(1000, "lb"),
  41135. name: "Side",
  41136. image: {
  41137. source: "./media/characters/silver-dragon/side.svg",
  41138. extra: 710/287,
  41139. bottom: 88/798
  41140. }
  41141. },
  41142. },
  41143. [
  41144. {
  41145. name: "Normal",
  41146. height: math.unit(182, "cm"),
  41147. default: true
  41148. },
  41149. ]
  41150. ))
  41151. characterMakers.push(() => makeCharacter(
  41152. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41153. {
  41154. side: {
  41155. height: math.unit(6 + 6/12, "feet"),
  41156. weight: math.unit(1.5, "tons"),
  41157. name: "Side",
  41158. image: {
  41159. source: "./media/characters/zephyr/side.svg",
  41160. extra: 1433/586,
  41161. bottom: 109/1542
  41162. }
  41163. },
  41164. },
  41165. [
  41166. {
  41167. name: "Normal",
  41168. height: math.unit(6 + 6/12, "feet"),
  41169. default: true
  41170. },
  41171. ]
  41172. ))
  41173. characterMakers.push(() => makeCharacter(
  41174. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41175. {
  41176. side: {
  41177. height: math.unit(1, "feet"),
  41178. name: "Side",
  41179. image: {
  41180. source: "./media/characters/vixye/side.svg",
  41181. extra: 632/541,
  41182. bottom: 0/632
  41183. }
  41184. },
  41185. },
  41186. [
  41187. {
  41188. name: "Normal",
  41189. height: math.unit(1, "feet"),
  41190. default: true
  41191. },
  41192. {
  41193. name: "True",
  41194. height: math.unit(1e15, "multiverses")
  41195. },
  41196. ]
  41197. ))
  41198. characterMakers.push(() => makeCharacter(
  41199. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41200. {
  41201. front: {
  41202. height: math.unit(8 + 2/12, "feet"),
  41203. weight: math.unit(650, "lb"),
  41204. name: "Front",
  41205. image: {
  41206. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41207. extra: 1174/1137,
  41208. bottom: 82/1256
  41209. }
  41210. },
  41211. back: {
  41212. height: math.unit(8 + 2/12, "feet"),
  41213. weight: math.unit(650, "lb"),
  41214. name: "Back",
  41215. image: {
  41216. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41217. extra: 1204/1157,
  41218. bottom: 46/1250
  41219. }
  41220. },
  41221. },
  41222. [
  41223. {
  41224. name: "Wildform",
  41225. height: math.unit(8 + 2/12, "feet"),
  41226. default: true
  41227. },
  41228. ]
  41229. ))
  41230. characterMakers.push(() => makeCharacter(
  41231. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41232. {
  41233. front: {
  41234. height: math.unit(18, "feet"),
  41235. name: "Front",
  41236. image: {
  41237. source: "./media/characters/cyphin/front.svg",
  41238. extra: 970/886,
  41239. bottom: 42/1012
  41240. }
  41241. },
  41242. back: {
  41243. height: math.unit(18, "feet"),
  41244. name: "Back",
  41245. image: {
  41246. source: "./media/characters/cyphin/back.svg",
  41247. extra: 1009/894,
  41248. bottom: 24/1033
  41249. }
  41250. },
  41251. head: {
  41252. height: math.unit(5.05, "feet"),
  41253. name: "Head",
  41254. image: {
  41255. source: "./media/characters/cyphin/head.svg"
  41256. }
  41257. },
  41258. tailbud: {
  41259. height: math.unit(5, "feet"),
  41260. name: "Tailbud",
  41261. image: {
  41262. source: "./media/characters/cyphin/tailbud.svg"
  41263. }
  41264. },
  41265. },
  41266. [
  41267. ]
  41268. ))
  41269. characterMakers.push(() => makeCharacter(
  41270. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41271. {
  41272. side: {
  41273. height: math.unit(10, "feet"),
  41274. weight: math.unit(6, "tons"),
  41275. name: "Side",
  41276. image: {
  41277. source: "./media/characters/raijin/side.svg",
  41278. extra: 1529/613,
  41279. bottom: 337/1866
  41280. }
  41281. },
  41282. },
  41283. [
  41284. {
  41285. name: "Normal",
  41286. height: math.unit(10, "feet"),
  41287. default: true
  41288. },
  41289. ]
  41290. ))
  41291. characterMakers.push(() => makeCharacter(
  41292. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41293. {
  41294. side: {
  41295. height: math.unit(9, "feet"),
  41296. name: "Side",
  41297. image: {
  41298. source: "./media/characters/nilghais/side.svg",
  41299. extra: 1047/744,
  41300. bottom: 91/1138
  41301. }
  41302. },
  41303. head: {
  41304. height: math.unit(3.14, "feet"),
  41305. name: "Head",
  41306. image: {
  41307. source: "./media/characters/nilghais/head.svg"
  41308. }
  41309. },
  41310. mouth: {
  41311. height: math.unit(4.6, "feet"),
  41312. name: "Mouth",
  41313. image: {
  41314. source: "./media/characters/nilghais/mouth.svg"
  41315. }
  41316. },
  41317. wings: {
  41318. height: math.unit(24, "feet"),
  41319. name: "Wings",
  41320. image: {
  41321. source: "./media/characters/nilghais/wings.svg"
  41322. }
  41323. },
  41324. ass: {
  41325. height: math.unit(6.12, "feet"),
  41326. name: "Ass",
  41327. image: {
  41328. source: "./media/characters/nilghais/ass.svg"
  41329. }
  41330. },
  41331. },
  41332. [
  41333. {
  41334. name: "Normal",
  41335. height: math.unit(9, "feet"),
  41336. default: true
  41337. },
  41338. ]
  41339. ))
  41340. characterMakers.push(() => makeCharacter(
  41341. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41342. {
  41343. regular: {
  41344. height: math.unit(16 + 2/12, "feet"),
  41345. weight: math.unit(2300, "lb"),
  41346. name: "Regular",
  41347. image: {
  41348. source: "./media/characters/zolgar/regular.svg",
  41349. extra: 1246/1004,
  41350. bottom: 124/1370
  41351. }
  41352. },
  41353. boxers: {
  41354. height: math.unit(16 + 2/12, "feet"),
  41355. weight: math.unit(2300, "lb"),
  41356. name: "Boxers",
  41357. image: {
  41358. source: "./media/characters/zolgar/boxers.svg",
  41359. extra: 1246/1004,
  41360. bottom: 124/1370
  41361. }
  41362. },
  41363. armored: {
  41364. height: math.unit(16 + 2/12, "feet"),
  41365. weight: math.unit(2300, "lb"),
  41366. name: "Armored",
  41367. image: {
  41368. source: "./media/characters/zolgar/armored.svg",
  41369. extra: 1246/1004,
  41370. bottom: 124/1370
  41371. }
  41372. },
  41373. goth: {
  41374. height: math.unit(16 + 2/12, "feet"),
  41375. weight: math.unit(2300, "lb"),
  41376. name: "Goth",
  41377. image: {
  41378. source: "./media/characters/zolgar/goth.svg",
  41379. extra: 1246/1004,
  41380. bottom: 124/1370
  41381. }
  41382. },
  41383. },
  41384. [
  41385. {
  41386. name: "Shrunken Down",
  41387. height: math.unit(9 + 2/12, "feet")
  41388. },
  41389. {
  41390. name: "Normal",
  41391. height: math.unit(16 + 2/12, "feet"),
  41392. default: true
  41393. },
  41394. ]
  41395. ))
  41396. characterMakers.push(() => makeCharacter(
  41397. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41398. {
  41399. front: {
  41400. height: math.unit(6, "feet"),
  41401. weight: math.unit(168, "lb"),
  41402. name: "Front",
  41403. image: {
  41404. source: "./media/characters/luca/front.svg",
  41405. extra: 841/667,
  41406. bottom: 102/943
  41407. }
  41408. },
  41409. },
  41410. [
  41411. {
  41412. name: "Normal",
  41413. height: math.unit(6, "feet"),
  41414. default: true
  41415. },
  41416. ]
  41417. ))
  41418. characterMakers.push(() => makeCharacter(
  41419. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41420. {
  41421. side: {
  41422. height: math.unit(7 + 3/12, "feet"),
  41423. weight: math.unit(312, "lb"),
  41424. name: "Side",
  41425. image: {
  41426. source: "./media/characters/zezo/side.svg",
  41427. extra: 1192/1067,
  41428. bottom: 63/1255
  41429. }
  41430. },
  41431. },
  41432. [
  41433. {
  41434. name: "Normal",
  41435. height: math.unit(7 + 3/12, "feet"),
  41436. default: true
  41437. },
  41438. ]
  41439. ))
  41440. characterMakers.push(() => makeCharacter(
  41441. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41442. {
  41443. front: {
  41444. height: math.unit(5 + 5/12, "feet"),
  41445. weight: math.unit(170, "lb"),
  41446. name: "Front",
  41447. image: {
  41448. source: "./media/characters/mayso/front.svg",
  41449. extra: 1215/1108,
  41450. bottom: 16/1231
  41451. }
  41452. },
  41453. },
  41454. [
  41455. {
  41456. name: "Normal",
  41457. height: math.unit(5 + 5/12, "feet"),
  41458. default: true
  41459. },
  41460. ]
  41461. ))
  41462. characterMakers.push(() => makeCharacter(
  41463. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41464. {
  41465. front: {
  41466. height: math.unit(4 + 3/12, "feet"),
  41467. weight: math.unit(80, "lb"),
  41468. name: "Front",
  41469. image: {
  41470. source: "./media/characters/hess/front.svg",
  41471. extra: 1200/1123,
  41472. bottom: 16/1216
  41473. }
  41474. },
  41475. },
  41476. [
  41477. {
  41478. name: "Normal",
  41479. height: math.unit(4 + 3/12, "feet"),
  41480. default: true
  41481. },
  41482. ]
  41483. ))
  41484. characterMakers.push(() => makeCharacter(
  41485. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41486. {
  41487. front: {
  41488. height: math.unit(1.9, "meters"),
  41489. name: "Front",
  41490. image: {
  41491. source: "./media/characters/ashgar/front.svg",
  41492. extra: 1177/1146,
  41493. bottom: 99/1276
  41494. }
  41495. },
  41496. back: {
  41497. height: math.unit(1.9, "meters"),
  41498. name: "Back",
  41499. image: {
  41500. source: "./media/characters/ashgar/back.svg",
  41501. extra: 1201/1183,
  41502. bottom: 53/1254
  41503. }
  41504. },
  41505. feral: {
  41506. height: math.unit(1.4, "meters"),
  41507. name: "Feral",
  41508. image: {
  41509. source: "./media/characters/ashgar/feral.svg",
  41510. extra: 370/345,
  41511. bottom: 45/415
  41512. }
  41513. },
  41514. },
  41515. [
  41516. {
  41517. name: "Normal",
  41518. height: math.unit(1.9, "meters"),
  41519. default: true
  41520. },
  41521. ]
  41522. ))
  41523. characterMakers.push(() => makeCharacter(
  41524. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41525. {
  41526. regular: {
  41527. height: math.unit(6, "feet"),
  41528. weight: math.unit(220, "lb"),
  41529. name: "Regular",
  41530. image: {
  41531. source: "./media/characters/phillip/regular.svg",
  41532. extra: 1373/1277,
  41533. bottom: 75/1448
  41534. }
  41535. },
  41536. dressed: {
  41537. height: math.unit(6, "feet"),
  41538. weight: math.unit(220, "lb"),
  41539. name: "Dressed",
  41540. image: {
  41541. source: "./media/characters/phillip/dressed.svg",
  41542. extra: 1373/1277,
  41543. bottom: 75/1448
  41544. }
  41545. },
  41546. paw: {
  41547. height: math.unit(1.44, "feet"),
  41548. name: "Paw",
  41549. image: {
  41550. source: "./media/characters/phillip/paw.svg"
  41551. }
  41552. },
  41553. },
  41554. [
  41555. {
  41556. name: "Normal",
  41557. height: math.unit(6, "feet"),
  41558. default: true
  41559. },
  41560. ]
  41561. ))
  41562. characterMakers.push(() => makeCharacter(
  41563. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41564. {
  41565. side: {
  41566. height: math.unit(42, "feet"),
  41567. name: "Side",
  41568. image: {
  41569. source: "./media/characters/uvula/side.svg",
  41570. extra: 683/586,
  41571. bottom: 60/743
  41572. }
  41573. },
  41574. front: {
  41575. height: math.unit(42, "feet"),
  41576. name: "Front",
  41577. image: {
  41578. source: "./media/characters/uvula/front.svg",
  41579. extra: 705/613,
  41580. bottom: 54/759
  41581. }
  41582. },
  41583. maw: {
  41584. height: math.unit(23.5, "feet"),
  41585. name: "Maw",
  41586. image: {
  41587. source: "./media/characters/uvula/maw.svg"
  41588. }
  41589. },
  41590. },
  41591. [
  41592. {
  41593. name: "Original Size",
  41594. height: math.unit(14, "inches")
  41595. },
  41596. {
  41597. name: "Human Size",
  41598. height: math.unit(6, "feet")
  41599. },
  41600. {
  41601. name: "Big",
  41602. height: math.unit(42, "feet"),
  41603. default: true
  41604. },
  41605. {
  41606. name: "Bigger",
  41607. height: math.unit(100, "feet")
  41608. },
  41609. ]
  41610. ))
  41611. characterMakers.push(() => makeCharacter(
  41612. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41613. {
  41614. front: {
  41615. height: math.unit(5 + 11/12, "feet"),
  41616. name: "Front",
  41617. image: {
  41618. source: "./media/characters/lannah/front.svg",
  41619. extra: 1208/1113,
  41620. bottom: 97/1305
  41621. }
  41622. },
  41623. },
  41624. [
  41625. {
  41626. name: "Normal",
  41627. height: math.unit(5 + 11/12, "feet"),
  41628. default: true
  41629. },
  41630. ]
  41631. ))
  41632. characterMakers.push(() => makeCharacter(
  41633. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41634. {
  41635. front: {
  41636. height: math.unit(6 + 3/12, "feet"),
  41637. weight: math.unit(3.5, "tons"),
  41638. name: "Front",
  41639. image: {
  41640. source: "./media/characters/emberflame/front.svg",
  41641. extra: 1198/672,
  41642. bottom: 82/1280
  41643. }
  41644. },
  41645. side: {
  41646. height: math.unit(6 + 3/12, "feet"),
  41647. weight: math.unit(3.5, "tons"),
  41648. name: "Side",
  41649. image: {
  41650. source: "./media/characters/emberflame/side.svg",
  41651. extra: 938/527,
  41652. bottom: 56/994
  41653. }
  41654. },
  41655. },
  41656. [
  41657. {
  41658. name: "Normal",
  41659. height: math.unit(6 + 3/12, "feet"),
  41660. default: true
  41661. },
  41662. ]
  41663. ))
  41664. characterMakers.push(() => makeCharacter(
  41665. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41666. {
  41667. side: {
  41668. height: math.unit(17.5, "feet"),
  41669. weight: math.unit(35, "tons"),
  41670. name: "Side",
  41671. image: {
  41672. source: "./media/characters/sophie-ambrose/side.svg",
  41673. extra: 1573/1242,
  41674. bottom: 71/1644
  41675. }
  41676. },
  41677. maw: {
  41678. height: math.unit(7.4, "feet"),
  41679. name: "Maw",
  41680. image: {
  41681. source: "./media/characters/sophie-ambrose/maw.svg"
  41682. }
  41683. },
  41684. },
  41685. [
  41686. {
  41687. name: "Normal",
  41688. height: math.unit(17.5, "feet"),
  41689. default: true
  41690. },
  41691. ]
  41692. ))
  41693. characterMakers.push(() => makeCharacter(
  41694. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41695. {
  41696. front: {
  41697. height: math.unit(280, "feet"),
  41698. weight: math.unit(550, "tons"),
  41699. name: "Front",
  41700. image: {
  41701. source: "./media/characters/king-mugi/front.svg",
  41702. extra: 1102/947,
  41703. bottom: 104/1206
  41704. }
  41705. },
  41706. },
  41707. [
  41708. {
  41709. name: "King Mugi",
  41710. height: math.unit(280, "feet"),
  41711. default: true
  41712. },
  41713. ]
  41714. ))
  41715. characterMakers.push(() => makeCharacter(
  41716. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41717. {
  41718. front: {
  41719. height: math.unit(64, "meters"),
  41720. name: "Front",
  41721. image: {
  41722. source: "./media/characters/nova-fox/front.svg",
  41723. extra: 1310/1246,
  41724. bottom: 65/1375
  41725. }
  41726. },
  41727. },
  41728. [
  41729. {
  41730. name: "Macro",
  41731. height: math.unit(64, "meters"),
  41732. default: true
  41733. },
  41734. ]
  41735. ))
  41736. characterMakers.push(() => makeCharacter(
  41737. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41738. {
  41739. front: {
  41740. height: math.unit(6 + 3/12, "feet"),
  41741. weight: math.unit(170, "lb"),
  41742. name: "Front",
  41743. image: {
  41744. source: "./media/characters/sam-bat/front.svg",
  41745. extra: 1601/1411,
  41746. bottom: 125/1726
  41747. }
  41748. },
  41749. back: {
  41750. height: math.unit(6 + 3/12, "feet"),
  41751. weight: math.unit(170, "lb"),
  41752. name: "Back",
  41753. image: {
  41754. source: "./media/characters/sam-bat/back.svg",
  41755. extra: 1577/1405,
  41756. bottom: 58/1635
  41757. }
  41758. },
  41759. },
  41760. [
  41761. {
  41762. name: "Normal",
  41763. height: math.unit(6 + 3/12, "feet"),
  41764. default: true
  41765. },
  41766. ]
  41767. ))
  41768. characterMakers.push(() => makeCharacter(
  41769. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41770. {
  41771. front: {
  41772. height: math.unit(59, "feet"),
  41773. weight: math.unit(40000, "lb"),
  41774. name: "Front",
  41775. image: {
  41776. source: "./media/characters/inari/front.svg",
  41777. extra: 1884/1350,
  41778. bottom: 95/1979
  41779. }
  41780. },
  41781. },
  41782. [
  41783. {
  41784. name: "Gigantamax",
  41785. height: math.unit(59, "feet"),
  41786. default: true
  41787. },
  41788. ]
  41789. ))
  41790. characterMakers.push(() => makeCharacter(
  41791. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41792. {
  41793. front: {
  41794. height: math.unit(5 + 8/12, "feet"),
  41795. name: "Front",
  41796. image: {
  41797. source: "./media/characters/elizabeth/front.svg",
  41798. extra: 1395/1298,
  41799. bottom: 54/1449
  41800. }
  41801. },
  41802. mouth: {
  41803. height: math.unit(1.97, "feet"),
  41804. name: "Mouth",
  41805. image: {
  41806. source: "./media/characters/elizabeth/mouth.svg"
  41807. }
  41808. },
  41809. foot: {
  41810. height: math.unit(1.17, "feet"),
  41811. name: "Foot",
  41812. image: {
  41813. source: "./media/characters/elizabeth/foot.svg"
  41814. }
  41815. },
  41816. },
  41817. [
  41818. {
  41819. name: "Normal",
  41820. height: math.unit(5 + 8/12, "feet"),
  41821. default: true
  41822. },
  41823. {
  41824. name: "Minimacro",
  41825. height: math.unit(18, "feet")
  41826. },
  41827. {
  41828. name: "Macro",
  41829. height: math.unit(180, "feet")
  41830. },
  41831. ]
  41832. ))
  41833. characterMakers.push(() => makeCharacter(
  41834. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41835. {
  41836. front: {
  41837. height: math.unit(5 + 2/12, "feet"),
  41838. name: "Front",
  41839. image: {
  41840. source: "./media/characters/october-gossamer/front.svg",
  41841. extra: 505/454,
  41842. bottom: 7/512
  41843. }
  41844. },
  41845. back: {
  41846. height: math.unit(5 + 2/12, "feet"),
  41847. name: "Back",
  41848. image: {
  41849. source: "./media/characters/october-gossamer/back.svg",
  41850. extra: 501/454,
  41851. bottom: 11/512
  41852. }
  41853. },
  41854. },
  41855. [
  41856. {
  41857. name: "Normal",
  41858. height: math.unit(5 + 2/12, "feet"),
  41859. default: true
  41860. },
  41861. ]
  41862. ))
  41863. characterMakers.push(() => makeCharacter(
  41864. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41865. {
  41866. front: {
  41867. height: math.unit(5, "feet"),
  41868. name: "Front",
  41869. image: {
  41870. source: "./media/characters/epiglottis/front.svg",
  41871. extra: 923/849,
  41872. bottom: 17/940
  41873. }
  41874. },
  41875. },
  41876. [
  41877. {
  41878. name: "Original Size",
  41879. height: math.unit(10, "inches")
  41880. },
  41881. {
  41882. name: "Human Size",
  41883. height: math.unit(5, "feet"),
  41884. default: true
  41885. },
  41886. {
  41887. name: "Big",
  41888. height: math.unit(25, "feet")
  41889. },
  41890. {
  41891. name: "Bigger",
  41892. height: math.unit(50, "feet")
  41893. },
  41894. {
  41895. name: "oh lawd",
  41896. height: math.unit(75, "feet")
  41897. },
  41898. ]
  41899. ))
  41900. characterMakers.push(() => makeCharacter(
  41901. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41902. {
  41903. front: {
  41904. height: math.unit(2 + 4/12, "feet"),
  41905. weight: math.unit(60, "lb"),
  41906. name: "Front",
  41907. image: {
  41908. source: "./media/characters/lerm/front.svg",
  41909. extra: 796/790,
  41910. bottom: 79/875
  41911. }
  41912. },
  41913. },
  41914. [
  41915. {
  41916. name: "Normal",
  41917. height: math.unit(2 + 4/12, "feet"),
  41918. default: true
  41919. },
  41920. ]
  41921. ))
  41922. characterMakers.push(() => makeCharacter(
  41923. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41924. {
  41925. front: {
  41926. height: math.unit(5.5, "feet"),
  41927. weight: math.unit(130, "lb"),
  41928. name: "Front",
  41929. image: {
  41930. source: "./media/characters/xena-nebadon/front.svg",
  41931. extra: 1828/1730,
  41932. bottom: 79/1907
  41933. }
  41934. },
  41935. },
  41936. [
  41937. {
  41938. name: "Tiny Puppy",
  41939. height: math.unit(3, "inches")
  41940. },
  41941. {
  41942. name: "Normal",
  41943. height: math.unit(5.5, "feet"),
  41944. default: true
  41945. },
  41946. {
  41947. name: "Lotta Lady",
  41948. height: math.unit(12, "feet")
  41949. },
  41950. {
  41951. name: "Pretty Big",
  41952. height: math.unit(100, "feet")
  41953. },
  41954. {
  41955. name: "Big",
  41956. height: math.unit(500, "feet")
  41957. },
  41958. {
  41959. name: "Skyscraper Toys",
  41960. height: math.unit(2500, "feet")
  41961. },
  41962. {
  41963. name: "Plane Catcher",
  41964. height: math.unit(8, "miles")
  41965. },
  41966. {
  41967. name: "Planet Toys",
  41968. height: math.unit(15, "earths")
  41969. },
  41970. {
  41971. name: "Stardust",
  41972. height: math.unit(0.25, "galaxies")
  41973. },
  41974. {
  41975. name: "Snacks",
  41976. height: math.unit(70, "universes")
  41977. },
  41978. ]
  41979. ))
  41980. characterMakers.push(() => makeCharacter(
  41981. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41982. {
  41983. front: {
  41984. height: math.unit(1.6, "meters"),
  41985. weight: math.unit(60, "kg"),
  41986. name: "Front",
  41987. image: {
  41988. source: "./media/characters/bounty/front.svg",
  41989. extra: 1426/1308,
  41990. bottom: 15/1441
  41991. }
  41992. },
  41993. },
  41994. [
  41995. {
  41996. name: "Normal",
  41997. height: math.unit(1.6, "meters"),
  41998. default: true
  41999. },
  42000. {
  42001. name: "Macro",
  42002. height: math.unit(300, "meters")
  42003. },
  42004. ]
  42005. ))
  42006. characterMakers.push(() => makeCharacter(
  42007. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42008. {
  42009. front: {
  42010. height: math.unit(2 + 8/12, "feet"),
  42011. weight: math.unit(15, "lb"),
  42012. name: "Front",
  42013. image: {
  42014. source: "./media/characters/mochi/front.svg",
  42015. extra: 1022/852,
  42016. bottom: 435/1457
  42017. }
  42018. },
  42019. back: {
  42020. height: math.unit(2 + 8/12, "feet"),
  42021. weight: math.unit(15, "lb"),
  42022. name: "Back",
  42023. image: {
  42024. source: "./media/characters/mochi/back.svg",
  42025. extra: 1335/1119,
  42026. bottom: 39/1374
  42027. }
  42028. },
  42029. bird: {
  42030. height: math.unit(2 + 8/12, "feet"),
  42031. weight: math.unit(15, "lb"),
  42032. name: "Bird",
  42033. image: {
  42034. source: "./media/characters/mochi/bird.svg",
  42035. extra: 1251/1113,
  42036. bottom: 178/1429
  42037. }
  42038. },
  42039. kaiju: {
  42040. height: math.unit(154, "feet"),
  42041. weight: math.unit(1e7, "lb"),
  42042. name: "Kaiju",
  42043. image: {
  42044. source: "./media/characters/mochi/kaiju.svg",
  42045. extra: 460/324,
  42046. bottom: 40/500
  42047. }
  42048. },
  42049. head: {
  42050. height: math.unit(1.21, "feet"),
  42051. name: "Head",
  42052. image: {
  42053. source: "./media/characters/mochi/head.svg"
  42054. }
  42055. },
  42056. alternateTail: {
  42057. height: math.unit(2 + 8/12, "feet"),
  42058. weight: math.unit(45, "lb"),
  42059. name: "Alternate Tail",
  42060. image: {
  42061. source: "./media/characters/mochi/alternate-tail.svg",
  42062. extra: 139/76,
  42063. bottom: 45/184
  42064. }
  42065. },
  42066. },
  42067. [
  42068. {
  42069. name: "Micro",
  42070. height: math.unit(2, "inches")
  42071. },
  42072. {
  42073. name: "Normal",
  42074. height: math.unit(2 + 8/12, "feet"),
  42075. default: true
  42076. },
  42077. {
  42078. name: "Macro",
  42079. height: math.unit(106, "feet")
  42080. },
  42081. ]
  42082. ))
  42083. characterMakers.push(() => makeCharacter(
  42084. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42085. {
  42086. front: {
  42087. height: math.unit(5.67, "feet"),
  42088. weight: math.unit(135, "lb"),
  42089. name: "Front",
  42090. image: {
  42091. source: "./media/characters/sarel/front.svg",
  42092. extra: 865/788,
  42093. bottom: 97/962
  42094. }
  42095. },
  42096. back: {
  42097. height: math.unit(5.67, "feet"),
  42098. weight: math.unit(135, "lb"),
  42099. name: "Back",
  42100. image: {
  42101. source: "./media/characters/sarel/back.svg",
  42102. extra: 857/777,
  42103. bottom: 32/889
  42104. }
  42105. },
  42106. chozoan: {
  42107. height: math.unit(5.67, "feet"),
  42108. weight: math.unit(135, "lb"),
  42109. name: "Chozoan",
  42110. image: {
  42111. source: "./media/characters/sarel/chozoan.svg",
  42112. extra: 865/788,
  42113. bottom: 97/962
  42114. }
  42115. },
  42116. current: {
  42117. height: math.unit(5.67, "feet"),
  42118. weight: math.unit(135, "lb"),
  42119. name: "Current",
  42120. image: {
  42121. source: "./media/characters/sarel/current.svg",
  42122. extra: 865/788,
  42123. bottom: 97/962
  42124. }
  42125. },
  42126. head: {
  42127. height: math.unit(1.77, "feet"),
  42128. name: "Head",
  42129. image: {
  42130. source: "./media/characters/sarel/head.svg"
  42131. }
  42132. },
  42133. claws: {
  42134. height: math.unit(1.8, "feet"),
  42135. name: "Claws",
  42136. image: {
  42137. source: "./media/characters/sarel/claws.svg"
  42138. }
  42139. },
  42140. clawsAlt: {
  42141. height: math.unit(1.8, "feet"),
  42142. name: "Claws-alt",
  42143. image: {
  42144. source: "./media/characters/sarel/claws-alt.svg"
  42145. }
  42146. },
  42147. },
  42148. [
  42149. {
  42150. name: "Normal",
  42151. height: math.unit(5.67, "feet"),
  42152. default: true
  42153. },
  42154. ]
  42155. ))
  42156. characterMakers.push(() => makeCharacter(
  42157. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42158. {
  42159. front: {
  42160. height: math.unit(5500, "feet"),
  42161. name: "Front",
  42162. image: {
  42163. source: "./media/characters/alyonia/front.svg",
  42164. extra: 1200/1135,
  42165. bottom: 29/1229
  42166. }
  42167. },
  42168. back: {
  42169. height: math.unit(5500, "feet"),
  42170. name: "Back",
  42171. image: {
  42172. source: "./media/characters/alyonia/back.svg",
  42173. extra: 1205/1138,
  42174. bottom: 10/1215
  42175. }
  42176. },
  42177. },
  42178. [
  42179. {
  42180. name: "Small",
  42181. height: math.unit(10, "feet")
  42182. },
  42183. {
  42184. name: "Macro",
  42185. height: math.unit(500, "feet")
  42186. },
  42187. {
  42188. name: "Mega Macro",
  42189. height: math.unit(5500, "feet"),
  42190. default: true
  42191. },
  42192. {
  42193. name: "Mega Macro+",
  42194. height: math.unit(500000, "feet")
  42195. },
  42196. {
  42197. name: "Giga Macro",
  42198. height: math.unit(3000, "miles")
  42199. },
  42200. {
  42201. name: "Tera Macro",
  42202. height: math.unit(2.8e6, "miles")
  42203. },
  42204. {
  42205. name: "Galactic",
  42206. height: math.unit(120000, "lightyears")
  42207. },
  42208. ]
  42209. ))
  42210. characterMakers.push(() => makeCharacter(
  42211. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42212. {
  42213. werewolf: {
  42214. height: math.unit(8, "feet"),
  42215. weight: math.unit(425, "lb"),
  42216. name: "Werewolf",
  42217. image: {
  42218. source: "./media/characters/autumn/werewolf.svg",
  42219. extra: 2154/2031,
  42220. bottom: 160/2314
  42221. }
  42222. },
  42223. human: {
  42224. height: math.unit(5 + 8/12, "feet"),
  42225. weight: math.unit(150, "lb"),
  42226. name: "Human",
  42227. image: {
  42228. source: "./media/characters/autumn/human.svg",
  42229. extra: 1200/1149,
  42230. bottom: 30/1230
  42231. }
  42232. },
  42233. },
  42234. [
  42235. {
  42236. name: "Normal",
  42237. height: math.unit(8, "feet"),
  42238. default: true
  42239. },
  42240. ]
  42241. ))
  42242. characterMakers.push(() => makeCharacter(
  42243. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42244. {
  42245. front: {
  42246. height: math.unit(8 + 5/12, "feet"),
  42247. weight: math.unit(825, "lb"),
  42248. name: "Front",
  42249. image: {
  42250. source: "./media/characters/cobalt-charizard/front.svg",
  42251. extra: 1268/1155,
  42252. bottom: 122/1390
  42253. }
  42254. },
  42255. side: {
  42256. height: math.unit(8 + 5/12, "feet"),
  42257. weight: math.unit(825, "lb"),
  42258. name: "Side",
  42259. image: {
  42260. source: "./media/characters/cobalt-charizard/side.svg",
  42261. extra: 1348/1257,
  42262. bottom: 58/1406
  42263. }
  42264. },
  42265. gMax: {
  42266. height: math.unit(134 + 11/12, "feet"),
  42267. name: "G-Max",
  42268. image: {
  42269. source: "./media/characters/cobalt-charizard/g-max.svg",
  42270. extra: 1835/1541,
  42271. bottom: 151/1986
  42272. }
  42273. },
  42274. },
  42275. [
  42276. {
  42277. name: "Normal",
  42278. height: math.unit(8 + 5/12, "feet"),
  42279. default: true
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42285. {
  42286. front: {
  42287. height: math.unit(6 + 3/12, "feet"),
  42288. weight: math.unit(210, "lb"),
  42289. name: "Front",
  42290. image: {
  42291. source: "./media/characters/stella/front.svg",
  42292. extra: 3549/3335,
  42293. bottom: 51/3600
  42294. }
  42295. },
  42296. },
  42297. [
  42298. {
  42299. name: "Normal",
  42300. height: math.unit(6 + 3/12, "feet"),
  42301. default: true
  42302. },
  42303. ]
  42304. ))
  42305. characterMakers.push(() => makeCharacter(
  42306. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42307. {
  42308. front: {
  42309. height: math.unit(5, "feet"),
  42310. weight: math.unit(90, "lb"),
  42311. name: "Front",
  42312. image: {
  42313. source: "./media/characters/riley-bishop/front.svg",
  42314. extra: 1450/1428,
  42315. bottom: 152/1602
  42316. }
  42317. },
  42318. },
  42319. [
  42320. {
  42321. name: "Normal",
  42322. height: math.unit(5, "feet"),
  42323. default: true
  42324. },
  42325. ]
  42326. ))
  42327. characterMakers.push(() => makeCharacter(
  42328. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42329. {
  42330. side: {
  42331. height: math.unit(8 + 2/12, "feet"),
  42332. weight: math.unit(500, "kg"),
  42333. name: "Side",
  42334. image: {
  42335. source: "./media/characters/theo-arcanine/side.svg",
  42336. extra: 1342/1074,
  42337. bottom: 111/1453
  42338. }
  42339. },
  42340. },
  42341. [
  42342. {
  42343. name: "Normal",
  42344. height: math.unit(8 + 2/12, "feet"),
  42345. default: true
  42346. },
  42347. ]
  42348. ))
  42349. characterMakers.push(() => makeCharacter(
  42350. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42351. {
  42352. front: {
  42353. height: math.unit(4, "feet"),
  42354. name: "Front",
  42355. image: {
  42356. source: "./media/characters/kali/front.svg",
  42357. extra: 1921/1357,
  42358. bottom: 70/1991
  42359. }
  42360. },
  42361. },
  42362. [
  42363. {
  42364. name: "Normal",
  42365. height: math.unit(4, "feet"),
  42366. default: true
  42367. },
  42368. {
  42369. name: "Macro",
  42370. height: math.unit(32, "meters")
  42371. },
  42372. {
  42373. name: "Macro+",
  42374. height: math.unit(150, "meters")
  42375. },
  42376. {
  42377. name: "Megamacro",
  42378. height: math.unit(7500, "meters")
  42379. },
  42380. {
  42381. name: "Megamacro+",
  42382. height: math.unit(80, "kilometers")
  42383. },
  42384. ]
  42385. ))
  42386. characterMakers.push(() => makeCharacter(
  42387. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42388. {
  42389. side: {
  42390. height: math.unit(5 + 11/12, "feet"),
  42391. weight: math.unit(236, "lb"),
  42392. name: "Side",
  42393. image: {
  42394. source: "./media/characters/gapp/side.svg",
  42395. extra: 775/340,
  42396. bottom: 58/833
  42397. }
  42398. },
  42399. mouth: {
  42400. height: math.unit(2.98, "feet"),
  42401. name: "Mouth",
  42402. image: {
  42403. source: "./media/characters/gapp/mouth.svg"
  42404. }
  42405. },
  42406. },
  42407. [
  42408. {
  42409. name: "Normal",
  42410. height: math.unit(5 + 1/12, "feet"),
  42411. default: true
  42412. },
  42413. ]
  42414. ))
  42415. characterMakers.push(() => makeCharacter(
  42416. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42417. {
  42418. front: {
  42419. height: math.unit(6, "feet"),
  42420. name: "Front",
  42421. image: {
  42422. source: "./media/characters/persephone/front.svg",
  42423. extra: 1895/1717,
  42424. bottom: 96/1991
  42425. }
  42426. },
  42427. back: {
  42428. height: math.unit(6, "feet"),
  42429. name: "Back",
  42430. image: {
  42431. source: "./media/characters/persephone/back.svg",
  42432. extra: 1868/1679,
  42433. bottom: 26/1894
  42434. }
  42435. },
  42436. casual: {
  42437. height: math.unit(6, "feet"),
  42438. name: "Casual",
  42439. image: {
  42440. source: "./media/characters/persephone/casual.svg",
  42441. extra: 1713/1541,
  42442. bottom: 76/1789
  42443. }
  42444. },
  42445. },
  42446. [
  42447. {
  42448. name: "Human Size",
  42449. height: math.unit(6, "feet"),
  42450. default: true
  42451. },
  42452. {
  42453. name: "Galaxy Brain",
  42454. height: math.unit(1, "zettameter")
  42455. },
  42456. ]
  42457. ))
  42458. characterMakers.push(() => makeCharacter(
  42459. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42460. {
  42461. front: {
  42462. height: math.unit(1.85, "meters"),
  42463. name: "Front",
  42464. image: {
  42465. source: "./media/characters/riley-foxthing/front.svg",
  42466. extra: 1495/1354,
  42467. bottom: 122/1617
  42468. }
  42469. },
  42470. frontAlt: {
  42471. height: math.unit(1.85, "meters"),
  42472. name: "Front (Alt)",
  42473. image: {
  42474. source: "./media/characters/riley-foxthing/front-alt.svg",
  42475. extra: 1572/1389,
  42476. bottom: 116/1688
  42477. }
  42478. },
  42479. },
  42480. [
  42481. {
  42482. name: "Normal Sized",
  42483. height: math.unit(1.85, "meters"),
  42484. default: true
  42485. },
  42486. {
  42487. name: "Quite Sizable",
  42488. height: math.unit(5, "meters")
  42489. },
  42490. {
  42491. name: "Rather Large",
  42492. height: math.unit(20, "meters")
  42493. },
  42494. {
  42495. name: "Macro",
  42496. height: math.unit(450, "meters")
  42497. },
  42498. {
  42499. name: "Giga",
  42500. height: math.unit(5, "km")
  42501. },
  42502. ]
  42503. ))
  42504. characterMakers.push(() => makeCharacter(
  42505. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42506. {
  42507. front: {
  42508. height: math.unit(6, "feet"),
  42509. weight: math.unit(200, "lb"),
  42510. name: "Front",
  42511. image: {
  42512. source: "./media/characters/blizzard/front.svg",
  42513. extra: 1136/990,
  42514. bottom: 136/1272
  42515. }
  42516. },
  42517. back: {
  42518. height: math.unit(6, "feet"),
  42519. weight: math.unit(200, "lb"),
  42520. name: "Back",
  42521. image: {
  42522. source: "./media/characters/blizzard/back.svg",
  42523. extra: 1175/1034,
  42524. bottom: 97/1272
  42525. }
  42526. },
  42527. sitting: {
  42528. height: math.unit(3.725, "feet"),
  42529. weight: math.unit(200, "lb"),
  42530. name: "Sitting",
  42531. image: {
  42532. source: "./media/characters/blizzard/sitting.svg",
  42533. extra: 581/485,
  42534. bottom: 90/671
  42535. }
  42536. },
  42537. frontWizard: {
  42538. height: math.unit(7.9, "feet"),
  42539. weight: math.unit(200, "lb"),
  42540. name: "Front (Wizard)",
  42541. image: {
  42542. source: "./media/characters/blizzard/front-wizard.svg"
  42543. }
  42544. },
  42545. backWizard: {
  42546. height: math.unit(7.9, "feet"),
  42547. weight: math.unit(200, "lb"),
  42548. name: "Back (Wizard)",
  42549. image: {
  42550. source: "./media/characters/blizzard/back-wizard.svg"
  42551. }
  42552. },
  42553. frontNsfw: {
  42554. height: math.unit(6, "feet"),
  42555. weight: math.unit(200, "lb"),
  42556. name: "Front (NSFW)",
  42557. image: {
  42558. source: "./media/characters/blizzard/front-nsfw.svg",
  42559. extra: 1136/990,
  42560. bottom: 136/1272
  42561. }
  42562. },
  42563. backNsfw: {
  42564. height: math.unit(6, "feet"),
  42565. weight: math.unit(200, "lb"),
  42566. name: "Back (NSFW)",
  42567. image: {
  42568. source: "./media/characters/blizzard/back-nsfw.svg",
  42569. extra: 1175/1034,
  42570. bottom: 97/1272
  42571. }
  42572. },
  42573. sittingNsfw: {
  42574. height: math.unit(3.725, "feet"),
  42575. weight: math.unit(200, "lb"),
  42576. name: "Sitting (NSFW)",
  42577. image: {
  42578. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42579. extra: 581/485,
  42580. bottom: 90/671
  42581. }
  42582. },
  42583. wizardFrontNsfw: {
  42584. height: math.unit(7.9, "feet"),
  42585. weight: math.unit(200, "lb"),
  42586. name: "Wizard (Front, NSFW)",
  42587. image: {
  42588. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42589. }
  42590. },
  42591. },
  42592. [
  42593. {
  42594. name: "Normal",
  42595. height: math.unit(6, "feet"),
  42596. default: true
  42597. },
  42598. ]
  42599. ))
  42600. characterMakers.push(() => makeCharacter(
  42601. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42602. {
  42603. front: {
  42604. height: math.unit(5 + 2/12, "feet"),
  42605. name: "Front",
  42606. image: {
  42607. source: "./media/characters/lumi/front.svg",
  42608. extra: 1328/1268,
  42609. bottom: 103/1431
  42610. }
  42611. },
  42612. back: {
  42613. height: math.unit(5 + 2/12, "feet"),
  42614. name: "Back",
  42615. image: {
  42616. source: "./media/characters/lumi/back.svg",
  42617. extra: 1381/1327,
  42618. bottom: 43/1424
  42619. }
  42620. },
  42621. },
  42622. [
  42623. {
  42624. name: "Normal",
  42625. height: math.unit(5 + 2/12, "feet"),
  42626. default: true
  42627. },
  42628. ]
  42629. ))
  42630. characterMakers.push(() => makeCharacter(
  42631. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42632. {
  42633. front: {
  42634. height: math.unit(5 + 9/12, "feet"),
  42635. name: "Front",
  42636. image: {
  42637. source: "./media/characters/aliya-cotton/front.svg",
  42638. extra: 577/564,
  42639. bottom: 29/606
  42640. }
  42641. },
  42642. },
  42643. [
  42644. {
  42645. name: "Normal",
  42646. height: math.unit(5 + 9/12, "feet"),
  42647. default: true
  42648. },
  42649. ]
  42650. ))
  42651. characterMakers.push(() => makeCharacter(
  42652. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42653. {
  42654. front: {
  42655. height: math.unit(2.7, "meters"),
  42656. weight: math.unit(25000, "lb"),
  42657. name: "Front",
  42658. image: {
  42659. source: "./media/characters/noah-luxray/front.svg",
  42660. extra: 1644/825,
  42661. bottom: 339/1983
  42662. }
  42663. },
  42664. side: {
  42665. height: math.unit(2.97, "meters"),
  42666. weight: math.unit(25000, "lb"),
  42667. name: "Side",
  42668. image: {
  42669. source: "./media/characters/noah-luxray/side.svg",
  42670. extra: 1319/650,
  42671. bottom: 163/1482
  42672. }
  42673. },
  42674. dick: {
  42675. height: math.unit(7.4, "feet"),
  42676. weight: math.unit(2500, "lb"),
  42677. name: "Dick",
  42678. image: {
  42679. source: "./media/characters/noah-luxray/dick.svg"
  42680. }
  42681. },
  42682. dickAlt: {
  42683. height: math.unit(10.83, "feet"),
  42684. weight: math.unit(2500, "lb"),
  42685. name: "Dick-alt",
  42686. image: {
  42687. source: "./media/characters/noah-luxray/dick-alt.svg"
  42688. }
  42689. },
  42690. },
  42691. [
  42692. {
  42693. name: "BIG",
  42694. height: math.unit(2.7, "meters"),
  42695. default: true
  42696. },
  42697. ]
  42698. ))
  42699. characterMakers.push(() => makeCharacter(
  42700. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42701. {
  42702. standing: {
  42703. height: math.unit(183, "cm"),
  42704. weight: math.unit(68, "kg"),
  42705. name: "Standing",
  42706. image: {
  42707. source: "./media/characters/arion/standing.svg",
  42708. extra: 1869/1807,
  42709. bottom: 93/1962
  42710. }
  42711. },
  42712. reclining: {
  42713. height: math.unit(70.5, "cm"),
  42714. weight: math.unit(68, "lb"),
  42715. name: "Reclining",
  42716. image: {
  42717. source: "./media/characters/arion/reclining.svg",
  42718. extra: 937/870,
  42719. bottom: 63/1000
  42720. }
  42721. },
  42722. },
  42723. [
  42724. {
  42725. name: "Colossus Size, Low",
  42726. height: math.unit(33, "meters"),
  42727. default: true
  42728. },
  42729. {
  42730. name: "Colossus Size, Mid",
  42731. height: math.unit(52, "meters")
  42732. },
  42733. {
  42734. name: "Colossus Size, High",
  42735. height: math.unit(60, "meters")
  42736. },
  42737. {
  42738. name: "Titan Size, Low",
  42739. height: math.unit(91, "meters"),
  42740. },
  42741. {
  42742. name: "Titan Size, Mid",
  42743. height: math.unit(122, "meters")
  42744. },
  42745. {
  42746. name: "Titan Size, High",
  42747. height: math.unit(162, "meters")
  42748. },
  42749. ]
  42750. ))
  42751. characterMakers.push(() => makeCharacter(
  42752. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42753. {
  42754. front: {
  42755. height: math.unit(53, "meters"),
  42756. name: "Front",
  42757. image: {
  42758. source: "./media/characters/stellar-marbey/front.svg",
  42759. extra: 1913/1805,
  42760. bottom: 92/2005
  42761. }
  42762. },
  42763. back: {
  42764. height: math.unit(53, "meters"),
  42765. name: "Back",
  42766. image: {
  42767. source: "./media/characters/stellar-marbey/back.svg",
  42768. extra: 1960/1851,
  42769. bottom: 28/1988
  42770. }
  42771. },
  42772. mouth: {
  42773. height: math.unit(3.5, "meters"),
  42774. name: "Mouth",
  42775. image: {
  42776. source: "./media/characters/stellar-marbey/mouth.svg"
  42777. }
  42778. },
  42779. },
  42780. [
  42781. {
  42782. name: "Macro",
  42783. height: math.unit(53, "meters"),
  42784. default: true
  42785. },
  42786. ]
  42787. ))
  42788. characterMakers.push(() => makeCharacter(
  42789. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42790. {
  42791. front: {
  42792. height: math.unit(8 + 1/12, "feet"),
  42793. weight: math.unit(233, "lb"),
  42794. name: "Front",
  42795. image: {
  42796. source: "./media/characters/matsu/front.svg",
  42797. extra: 832/772,
  42798. bottom: 40/872
  42799. }
  42800. },
  42801. back: {
  42802. height: math.unit(8 + 1/12, "feet"),
  42803. weight: math.unit(233, "lb"),
  42804. name: "Back",
  42805. image: {
  42806. source: "./media/characters/matsu/back.svg",
  42807. extra: 839/780,
  42808. bottom: 47/886
  42809. }
  42810. },
  42811. },
  42812. [
  42813. {
  42814. name: "Normal",
  42815. height: math.unit(8 + 1/12, "feet"),
  42816. default: true
  42817. },
  42818. ]
  42819. ))
  42820. characterMakers.push(() => makeCharacter(
  42821. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42822. {
  42823. front: {
  42824. height: math.unit(4, "feet"),
  42825. weight: math.unit(148, "lb"),
  42826. name: "Front",
  42827. image: {
  42828. source: "./media/characters/thiz/front.svg",
  42829. extra: 1913/1748,
  42830. bottom: 62/1975
  42831. }
  42832. },
  42833. },
  42834. [
  42835. {
  42836. name: "Normal",
  42837. height: math.unit(4, "feet"),
  42838. default: true
  42839. },
  42840. ]
  42841. ))
  42842. characterMakers.push(() => makeCharacter(
  42843. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42844. {
  42845. front: {
  42846. height: math.unit(7 + 6/12, "feet"),
  42847. weight: math.unit(267, "lb"),
  42848. name: "Front",
  42849. image: {
  42850. source: "./media/characters/marcel/front.svg",
  42851. extra: 1221/1096,
  42852. bottom: 76/1297
  42853. }
  42854. },
  42855. },
  42856. [
  42857. {
  42858. name: "Normal",
  42859. height: math.unit(7 + 6/12, "feet"),
  42860. default: true
  42861. },
  42862. ]
  42863. ))
  42864. characterMakers.push(() => makeCharacter(
  42865. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42866. {
  42867. side: {
  42868. height: math.unit(42, "meters"),
  42869. name: "Side",
  42870. image: {
  42871. source: "./media/characters/flake/side.svg",
  42872. extra: 1525/1306,
  42873. bottom: 209/1734
  42874. }
  42875. },
  42876. },
  42877. [
  42878. {
  42879. name: "Normal",
  42880. height: math.unit(42, "meters"),
  42881. default: true
  42882. },
  42883. ]
  42884. ))
  42885. characterMakers.push(() => makeCharacter(
  42886. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  42887. {
  42888. dressed: {
  42889. height: math.unit(6 + 4/12, "feet"),
  42890. weight: math.unit(520, "lb"),
  42891. name: "Dressed",
  42892. image: {
  42893. source: "./media/characters/someonne/dressed.svg",
  42894. extra: 1020/1010,
  42895. bottom: 178/1198
  42896. }
  42897. },
  42898. undressed: {
  42899. height: math.unit(6 + 4/12, "feet"),
  42900. weight: math.unit(520, "lb"),
  42901. name: "Undressed",
  42902. image: {
  42903. source: "./media/characters/someonne/undressed.svg",
  42904. extra: 1019/1014,
  42905. bottom: 169/1188
  42906. }
  42907. },
  42908. },
  42909. [
  42910. {
  42911. name: "Normal",
  42912. height: math.unit(6 + 4/12, "feet"),
  42913. default: true
  42914. },
  42915. ]
  42916. ))
  42917. characterMakers.push(() => makeCharacter(
  42918. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  42919. {
  42920. front: {
  42921. height: math.unit(3, "feet"),
  42922. weight: math.unit(30, "lb"),
  42923. name: "Front",
  42924. image: {
  42925. source: "./media/characters/till/front.svg",
  42926. extra: 892/823,
  42927. bottom: 55/947
  42928. }
  42929. },
  42930. },
  42931. [
  42932. {
  42933. name: "Normal",
  42934. height: math.unit(3, "feet"),
  42935. default: true
  42936. },
  42937. ]
  42938. ))
  42939. characterMakers.push(() => makeCharacter(
  42940. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  42941. {
  42942. front: {
  42943. height: math.unit(9 + 8/12, "feet"),
  42944. weight: math.unit(800, "lb"),
  42945. name: "Front",
  42946. image: {
  42947. source: "./media/characters/sydney-heki/front.svg",
  42948. extra: 1360/1300,
  42949. bottom: 22/1382
  42950. }
  42951. },
  42952. back: {
  42953. height: math.unit(9 + 8/12, "feet"),
  42954. weight: math.unit(800, "lb"),
  42955. name: "Back",
  42956. image: {
  42957. source: "./media/characters/sydney-heki/back.svg",
  42958. extra: 1356/1293,
  42959. bottom: 12/1368
  42960. }
  42961. },
  42962. frontDressed: {
  42963. height: math.unit(9 + 8/12, "feet"),
  42964. weight: math.unit(800, "lb"),
  42965. name: "Front-dressed",
  42966. image: {
  42967. source: "./media/characters/sydney-heki/front-dressed.svg",
  42968. extra: 1360/1300,
  42969. bottom: 22/1382
  42970. }
  42971. },
  42972. },
  42973. [
  42974. {
  42975. name: "Normal",
  42976. height: math.unit(9 + 8/12, "feet"),
  42977. default: true
  42978. },
  42979. {
  42980. name: "Macro",
  42981. height: math.unit(500, "feet")
  42982. },
  42983. {
  42984. name: "Megamacro",
  42985. height: math.unit(3.6, "miles")
  42986. },
  42987. ]
  42988. ))
  42989. characterMakers.push(() => makeCharacter(
  42990. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  42991. {
  42992. front: {
  42993. height: math.unit(200, "cm"),
  42994. weight: math.unit(250, "lb"),
  42995. name: "Front",
  42996. image: {
  42997. source: "./media/characters/fowler-karlsson/front.svg",
  42998. extra: 897/845,
  42999. bottom: 123/1020
  43000. }
  43001. },
  43002. back: {
  43003. height: math.unit(200, "cm"),
  43004. weight: math.unit(250, "lb"),
  43005. name: "Back",
  43006. image: {
  43007. source: "./media/characters/fowler-karlsson/back.svg",
  43008. extra: 999/944,
  43009. bottom: 26/1025
  43010. }
  43011. },
  43012. dick: {
  43013. height: math.unit(1.92, "feet"),
  43014. weight: math.unit(150, "lb"),
  43015. name: "Dick",
  43016. image: {
  43017. source: "./media/characters/fowler-karlsson/dick.svg"
  43018. }
  43019. },
  43020. },
  43021. [
  43022. {
  43023. name: "Normal",
  43024. height: math.unit(200, "cm"),
  43025. default: true
  43026. },
  43027. {
  43028. name: "Smaller Macro",
  43029. height: math.unit(90, "m")
  43030. },
  43031. {
  43032. name: "Macro",
  43033. height: math.unit(150, "m")
  43034. },
  43035. {
  43036. name: "Bigger Macro",
  43037. height: math.unit(300, "m")
  43038. },
  43039. ]
  43040. ))
  43041. characterMakers.push(() => makeCharacter(
  43042. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43043. {
  43044. side: {
  43045. height: math.unit(8 + 2/12, "feet"),
  43046. weight: math.unit(1, "tonne"),
  43047. name: "Side",
  43048. image: {
  43049. source: "./media/characters/rylide/side.svg",
  43050. extra: 1318/1034,
  43051. bottom: 106/1424
  43052. }
  43053. },
  43054. sitting: {
  43055. height: math.unit(303, "cm"),
  43056. weight: math.unit(1, "tonne"),
  43057. name: "Sitting",
  43058. image: {
  43059. source: "./media/characters/rylide/sitting.svg",
  43060. extra: 1303/1103,
  43061. bottom: 36/1339
  43062. }
  43063. },
  43064. },
  43065. [
  43066. {
  43067. name: "Normal",
  43068. height: math.unit(8 + 2/12, "feet"),
  43069. default: true
  43070. },
  43071. ]
  43072. ))
  43073. characterMakers.push(() => makeCharacter(
  43074. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43075. {
  43076. front: {
  43077. height: math.unit(5 + 10/12, "feet"),
  43078. weight: math.unit(160, "lb"),
  43079. name: "Front",
  43080. image: {
  43081. source: "./media/characters/pudask/front.svg",
  43082. extra: 1616/1590,
  43083. bottom: 161/1777
  43084. }
  43085. },
  43086. },
  43087. [
  43088. {
  43089. name: "Ferret Height",
  43090. height: math.unit(2 + 5/12, "feet")
  43091. },
  43092. {
  43093. name: "Canon Height",
  43094. height: math.unit(5 + 10/12, "feet"),
  43095. default: true
  43096. },
  43097. ]
  43098. ))
  43099. characterMakers.push(() => makeCharacter(
  43100. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43101. {
  43102. front: {
  43103. height: math.unit(3 + 6/12, "feet"),
  43104. weight: math.unit(60, "lb"),
  43105. name: "Front",
  43106. image: {
  43107. source: "./media/characters/ramita/front.svg",
  43108. extra: 1402/1232,
  43109. bottom: 62/1464
  43110. }
  43111. },
  43112. dressed: {
  43113. height: math.unit(3 + 6/12, "feet"),
  43114. weight: math.unit(60, "lb"),
  43115. name: "Dressed",
  43116. image: {
  43117. source: "./media/characters/ramita/dressed.svg",
  43118. extra: 1534/1249,
  43119. bottom: 50/1584
  43120. }
  43121. },
  43122. },
  43123. [
  43124. {
  43125. name: "Normal",
  43126. height: math.unit(3 + 6/12, "feet"),
  43127. default: true
  43128. },
  43129. ]
  43130. ))
  43131. characterMakers.push(() => makeCharacter(
  43132. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43133. {
  43134. front: {
  43135. height: math.unit(8, "feet"),
  43136. name: "Front",
  43137. image: {
  43138. source: "./media/characters/ark/front.svg",
  43139. extra: 772/693,
  43140. bottom: 45/817
  43141. }
  43142. },
  43143. },
  43144. [
  43145. {
  43146. name: "Normal",
  43147. height: math.unit(8, "feet"),
  43148. default: true
  43149. },
  43150. ]
  43151. ))
  43152. characterMakers.push(() => makeCharacter(
  43153. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43154. {
  43155. front: {
  43156. height: math.unit(6, "feet"),
  43157. weight: math.unit(250, "lb"),
  43158. volume: math.unit(5/8, "gallons"),
  43159. name: "Front",
  43160. image: {
  43161. source: "./media/characters/ludwig-horn/front.svg",
  43162. extra: 1782/1635,
  43163. bottom: 96/1878
  43164. }
  43165. },
  43166. back: {
  43167. height: math.unit(6, "feet"),
  43168. weight: math.unit(250, "lb"),
  43169. volume: math.unit(5/8, "gallons"),
  43170. name: "Back",
  43171. image: {
  43172. source: "./media/characters/ludwig-horn/back.svg",
  43173. extra: 1874/1729,
  43174. bottom: 27/1901
  43175. }
  43176. },
  43177. dick: {
  43178. height: math.unit(1.05, "feet"),
  43179. weight: math.unit(15, "lb"),
  43180. volume: math.unit(5/8, "gallons"),
  43181. name: "Dick",
  43182. image: {
  43183. source: "./media/characters/ludwig-horn/dick.svg"
  43184. }
  43185. },
  43186. },
  43187. [
  43188. {
  43189. name: "Small",
  43190. height: math.unit(6, "feet")
  43191. },
  43192. {
  43193. name: "Typical",
  43194. height: math.unit(12, "feet"),
  43195. default: true
  43196. },
  43197. {
  43198. name: "Building",
  43199. height: math.unit(80, "feet")
  43200. },
  43201. {
  43202. name: "Town",
  43203. height: math.unit(800, "feet")
  43204. },
  43205. {
  43206. name: "Kingdom",
  43207. height: math.unit(80000, "feet")
  43208. },
  43209. {
  43210. name: "Planet",
  43211. height: math.unit(8000000, "feet")
  43212. },
  43213. {
  43214. name: "Universe",
  43215. height: math.unit(8000000000, "feet")
  43216. },
  43217. {
  43218. name: "Transcended",
  43219. height: math.unit(8e27, "feet")
  43220. },
  43221. ]
  43222. ))
  43223. characterMakers.push(() => makeCharacter(
  43224. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43225. {
  43226. front: {
  43227. height: math.unit(5, "feet"),
  43228. weight: math.unit(50, "kg"),
  43229. name: "Front",
  43230. image: {
  43231. source: "./media/characters/biot-avery/front.svg",
  43232. extra: 1295/1232,
  43233. bottom: 86/1381
  43234. }
  43235. },
  43236. },
  43237. [
  43238. {
  43239. name: "Normal",
  43240. height: math.unit(5, "feet"),
  43241. default: true
  43242. },
  43243. ]
  43244. ))
  43245. characterMakers.push(() => makeCharacter(
  43246. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43247. {
  43248. front: {
  43249. height: math.unit(6, "feet"),
  43250. name: "Front",
  43251. image: {
  43252. source: "./media/characters/kitsune-kiro/front.svg",
  43253. extra: 1270/1158,
  43254. bottom: 42/1312
  43255. }
  43256. },
  43257. frontAlt: {
  43258. height: math.unit(6, "feet"),
  43259. name: "Front-alt",
  43260. image: {
  43261. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43262. extra: 1130/1081,
  43263. bottom: 36/1166
  43264. }
  43265. },
  43266. },
  43267. [
  43268. {
  43269. name: "Smol",
  43270. height: math.unit(3, "feet")
  43271. },
  43272. {
  43273. name: "Normal",
  43274. height: math.unit(6, "feet"),
  43275. default: true
  43276. },
  43277. ]
  43278. ))
  43279. characterMakers.push(() => makeCharacter(
  43280. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43281. {
  43282. front: {
  43283. height: math.unit(6, "feet"),
  43284. weight: math.unit(125, "lb"),
  43285. name: "Front",
  43286. image: {
  43287. source: "./media/characters/jack-thatcher/front.svg",
  43288. extra: 1474/1370,
  43289. bottom: 26/1500
  43290. }
  43291. },
  43292. back: {
  43293. height: math.unit(6, "feet"),
  43294. weight: math.unit(125, "lb"),
  43295. name: "Back",
  43296. image: {
  43297. source: "./media/characters/jack-thatcher/back.svg",
  43298. extra: 1489/1384,
  43299. bottom: 18/1507
  43300. }
  43301. },
  43302. },
  43303. [
  43304. {
  43305. name: "Normal",
  43306. height: math.unit(6, "feet"),
  43307. default: true
  43308. },
  43309. {
  43310. name: "Macro",
  43311. height: math.unit(75, "feet")
  43312. },
  43313. {
  43314. name: "Macro-er",
  43315. height: math.unit(250, "feet")
  43316. },
  43317. ]
  43318. ))
  43319. characterMakers.push(() => makeCharacter(
  43320. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43321. {
  43322. front: {
  43323. height: math.unit(7, "feet"),
  43324. weight: math.unit(110, "kg"),
  43325. name: "Front",
  43326. image: {
  43327. source: "./media/characters/max-hyper/front.svg",
  43328. extra: 1969/1881,
  43329. bottom: 49/2018
  43330. }
  43331. },
  43332. },
  43333. [
  43334. {
  43335. name: "Normal",
  43336. height: math.unit(7, "feet"),
  43337. default: true
  43338. },
  43339. ]
  43340. ))
  43341. characterMakers.push(() => makeCharacter(
  43342. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43343. {
  43344. front: {
  43345. height: math.unit(5 + 5/12, "feet"),
  43346. weight: math.unit(160, "lb"),
  43347. name: "Front",
  43348. image: {
  43349. source: "./media/characters/spook/front.svg",
  43350. extra: 794/791,
  43351. bottom: 54/848
  43352. }
  43353. },
  43354. back: {
  43355. height: math.unit(5 + 5/12, "feet"),
  43356. weight: math.unit(160, "lb"),
  43357. name: "Back",
  43358. image: {
  43359. source: "./media/characters/spook/back.svg",
  43360. extra: 812/798,
  43361. bottom: 32/844
  43362. }
  43363. },
  43364. },
  43365. [
  43366. {
  43367. name: "Normal",
  43368. height: math.unit(5 + 5/12, "feet"),
  43369. default: true
  43370. },
  43371. ]
  43372. ))
  43373. characterMakers.push(() => makeCharacter(
  43374. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43375. {
  43376. front: {
  43377. height: math.unit(18, "feet"),
  43378. name: "Front",
  43379. image: {
  43380. source: "./media/characters/xeaduulix/front.svg",
  43381. extra: 1380/1166,
  43382. bottom: 110/1490
  43383. }
  43384. },
  43385. back: {
  43386. height: math.unit(18, "feet"),
  43387. name: "Back",
  43388. image: {
  43389. source: "./media/characters/xeaduulix/back.svg",
  43390. extra: 1592/1170,
  43391. bottom: 128/1720
  43392. }
  43393. },
  43394. frontNsfw: {
  43395. height: math.unit(18, "feet"),
  43396. name: "Front (NSFW)",
  43397. image: {
  43398. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43399. extra: 1380/1166,
  43400. bottom: 110/1490
  43401. }
  43402. },
  43403. backNsfw: {
  43404. height: math.unit(18, "feet"),
  43405. name: "Back (NSFW)",
  43406. image: {
  43407. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43408. extra: 1592/1170,
  43409. bottom: 128/1720
  43410. }
  43411. },
  43412. },
  43413. [
  43414. {
  43415. name: "Normal",
  43416. height: math.unit(18, "feet"),
  43417. default: true
  43418. },
  43419. ]
  43420. ))
  43421. characterMakers.push(() => makeCharacter(
  43422. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43423. {
  43424. spreadWings: {
  43425. height: math.unit(20, "feet"),
  43426. name: "Spread Wings",
  43427. image: {
  43428. source: "./media/characters/fledge/spread-wings.svg",
  43429. extra: 693/635,
  43430. bottom: 26/719
  43431. }
  43432. },
  43433. front: {
  43434. height: math.unit(20, "feet"),
  43435. name: "Front",
  43436. image: {
  43437. source: "./media/characters/fledge/front.svg",
  43438. extra: 684/637,
  43439. bottom: 18/702
  43440. }
  43441. },
  43442. frontAlt: {
  43443. height: math.unit(20, "feet"),
  43444. name: "Front (Alt)",
  43445. image: {
  43446. source: "./media/characters/fledge/front-alt.svg",
  43447. extra: 708/664,
  43448. bottom: 13/721
  43449. }
  43450. },
  43451. back: {
  43452. height: math.unit(20, "feet"),
  43453. name: "Back",
  43454. image: {
  43455. source: "./media/characters/fledge/back.svg",
  43456. extra: 718/634,
  43457. bottom: 22/740
  43458. }
  43459. },
  43460. head: {
  43461. height: math.unit(5.55, "feet"),
  43462. name: "Head",
  43463. image: {
  43464. source: "./media/characters/fledge/head.svg"
  43465. }
  43466. },
  43467. headAlt: {
  43468. height: math.unit(5.1, "feet"),
  43469. name: "Head (Alt)",
  43470. image: {
  43471. source: "./media/characters/fledge/head-alt.svg"
  43472. }
  43473. },
  43474. },
  43475. [
  43476. {
  43477. name: "Small",
  43478. height: math.unit(6 + 2/12, "feet")
  43479. },
  43480. {
  43481. name: "Big",
  43482. height: math.unit(20, "feet"),
  43483. default: true
  43484. },
  43485. {
  43486. name: "Giant",
  43487. height: math.unit(100, "feet")
  43488. },
  43489. {
  43490. name: "Macro",
  43491. height: math.unit(200, "feet")
  43492. },
  43493. ]
  43494. ))
  43495. characterMakers.push(() => makeCharacter(
  43496. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43497. {
  43498. front: {
  43499. height: math.unit(1, "meter"),
  43500. name: "Front",
  43501. image: {
  43502. source: "./media/characters/atlas-morenai/front.svg",
  43503. extra: 1275/1043,
  43504. bottom: 19/1294
  43505. }
  43506. },
  43507. back: {
  43508. height: math.unit(1, "meter"),
  43509. name: "Back",
  43510. image: {
  43511. source: "./media/characters/atlas-morenai/back.svg",
  43512. extra: 1141/1001,
  43513. bottom: 25/1166
  43514. }
  43515. },
  43516. },
  43517. [
  43518. {
  43519. name: "Normal",
  43520. height: math.unit(1, "meter"),
  43521. default: true
  43522. },
  43523. {
  43524. name: "Magic-Infused",
  43525. height: math.unit(5, "meters")
  43526. },
  43527. ]
  43528. ))
  43529. characterMakers.push(() => makeCharacter(
  43530. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43531. {
  43532. front: {
  43533. height: math.unit(5, "meters"),
  43534. name: "Front",
  43535. image: {
  43536. source: "./media/characters/cintia/front.svg",
  43537. extra: 1312/1228,
  43538. bottom: 38/1350
  43539. }
  43540. },
  43541. back: {
  43542. height: math.unit(5, "meters"),
  43543. name: "Back",
  43544. image: {
  43545. source: "./media/characters/cintia/back.svg",
  43546. extra: 1260/1166,
  43547. bottom: 98/1358
  43548. }
  43549. },
  43550. frontDick: {
  43551. height: math.unit(5, "meters"),
  43552. name: "Front (Dick)",
  43553. image: {
  43554. source: "./media/characters/cintia/front-dick.svg",
  43555. extra: 1312/1228,
  43556. bottom: 38/1350
  43557. }
  43558. },
  43559. backDick: {
  43560. height: math.unit(5, "meters"),
  43561. name: "Back (Dick)",
  43562. image: {
  43563. source: "./media/characters/cintia/back-dick.svg",
  43564. extra: 1260/1166,
  43565. bottom: 98/1358
  43566. }
  43567. },
  43568. bust: {
  43569. height: math.unit(1.97, "meters"),
  43570. name: "Bust",
  43571. image: {
  43572. source: "./media/characters/cintia/bust.svg",
  43573. extra: 617/565,
  43574. bottom: 0/617
  43575. }
  43576. },
  43577. },
  43578. [
  43579. {
  43580. name: "Normal",
  43581. height: math.unit(5, "meters"),
  43582. default: true
  43583. },
  43584. ]
  43585. ))
  43586. //characters
  43587. function makeCharacters() {
  43588. const results = [];
  43589. characterMakers.forEach(character => {
  43590. results.push(character());
  43591. });
  43592. return results;
  43593. }